/** Shopify CDN: Minification failed

Line 244:13 Expected identifier but found whitespace
Line 244:14 Unexpected "var("

**/
/* ============================================
   AISHAHJOURNEY — Base Styles
   Palette: Blush Rose | Font: Cairo
   ============================================ */

:root {
  --color-rose:       #e8b4a0;
  --color-rose-light: #f5e6e0;
  --color-rose-pale:  #fdf7f5;
  --color-rose-dark:  #c4806a;
  --color-rose-deep:  #9e5c47;
  --color-cream:      #faf6f3;
  --color-text:       #3a2820;
  --color-text-soft:  #7a5c52;
  --color-text-muted: #b89c95;
  --color-white:      #ffffff;
  --color-border:     #edd9d1;

  --font-main: 'Cairo', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(168,100,80,0.08);
  --shadow-md: 0 4px 20px rgba(168,100,80,0.12);
  --shadow-lg: 0 8px 40px rgba(168,100,80,0.16);

  --max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-main); }
ul { list-style: none; }

/* ---- RTL / LTR ---- */
body.rtl { direction: rtl; text-align: right; }
body.ltr { direction: ltr; text-align: left; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--color-text-soft); line-height: 1.8; }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-soft);
  max-width: 540px;
}
body.rtl .section-subtitle { margin-right: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-rose);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-rose);
  color: var(--color-rose-deep);
}
.btn-outline:hover {
  background: var(--color-rose-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-rose-deep);
  padding: 0.5rem 0;
  border-radius: 0;
  border-bottom: 1.5px solid var(--color-rose);
}
.btn-ghost:hover { color: var(--color-rose-dark); }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-rose    { background: var(--color-rose-light); color: var(--color-rose-deep); }
.badge-digital { background: #ede8f7; color: #6b4fa8; }
.badge-craft   { background: #e8f5ed; color: #3a7d55; }
.badge-prompt  { background: #fff3e8; color: #b86b20; }
.badge-affiliate { background: #e8f0ff; color: #2a52a8; }

/* ---- Section spacing ---- */
.section { padding: var(--spacing-lg) 0; }
.section-sm { padding: var(--spacing-md) 0; }

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-md) 0;
}

/* ---- Card base ---- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ---- Product Card ---- */
.product-card { position: relative; }
.product-card__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-rose-pale);
}
.product-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.05); }
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
}
.product-card__body { padding: 1rem 1.25rem 1.25rem; }
.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}
.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  margin-bottom: 0.75rem;
}
.product-card__price s {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-inline-start: 0.4rem;
}

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ---- Language switcher ---- */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.lang-btn {
  background: none;
  border: 1px solid var(--color-border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-soft);
  transition: all 0.2s;
}
.lang-form { display: contents; }
.lang-form button.lang-btn { font-family: var(--font-main); }
  background: var(--color-rose-light);
  border-color: var(--color-rose);
  color: var(--color-rose-deep);
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--color-rose);
  color: var(--color-white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- Header ---- */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-logo img { height: 40px; width: 40px; object-fit: contain; }
.header-logo__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-rose-deep);
  letter-spacing: -0.01em;
}
.header-nav { display: flex; gap: 0.25rem; align-items: center; }
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--color-rose-deep);
  background: var(--color-rose-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-icon-btn {
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-soft);
  transition: color 0.2s;
  position: relative;
}
.header-icon-btn:hover { color: var(--color-rose-deep); }
.cart-count {
  position: absolute;
  top: -4px; inset-inline-end: -4px;
  background: var(--color-rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-text);
  color: var(--color-rose-light);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand__logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-rose);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-rose-light);
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.social-link:hover {
  background: var(--color-rose);
  color: white;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--color-rose-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--color-text-muted); }
.footer-payment-icons { display: flex; gap: 0.5rem; align-items: center; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --spacing-lg: 3rem; --spacing-xl: 4rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-rose    { color: var(--color-rose-deep); }
.bg-pale      { background: var(--color-rose-pale); }
.bg-light     { background: var(--color-rose-light); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--spacing-sm); }
.hidden { display: none !important; }
.card.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.25rem 1.25rem; }
.product-card__title { flex: 1; margin-bottom: 0.5rem; }
.product-card__price { margin-bottom: 0.5rem; }
.product-card__btn { margin-top: auto; }
