/** Shopify CDN: Minification failed

Line 725:10 Expected identifier but found whitespace
Line 725:15 Unexpected ";"

**/
/* ==========================
   MY ROUHI — THEME CSS
   ========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --terra: #5C0A1E;
  --terra-light: #7A1030;
  --terra-dark: #3A0512;
  --sand: #C9A84C;
  --charcoal: #2A0A14;
  --warm-gray: #8A7A6A;
  --gold: #C9A84C;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Baskerville', serif;
  background: var(--cream);
  color: #2A0A14;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #2A0A14;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

/* ==========================
   HEADER
   ========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.vB-announce {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  padding: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Libre Baskerville', serif;
}

.vB-header {
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 100;
}

.vB-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.vB-logo-wrap {
  display: flex;
  flex-direction: column;
}

.vB-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vB-logo-ar {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 1px;
}

.site-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-decoration: none;
}

.site-logo span { color: var(--gold); font-style: italic; }

.vB-nav-links,
.header-nav { display: flex; gap: 28px; align-items: center; }

.vB-nav-link,
.nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2A0A14 !important;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Libre Baskerville', serif;
  transition: color 0.2s;
}

.vB-nav-link:hover,
.nav-link:hover { color: var(--gold) !important; }

.vB-cart-btn,
.nav-btn-cart {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s;
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
}

.vB-cart-btn:hover,
.nav-btn-cart:hover { background: var(--gold); color: var(--charcoal) !important; }

/* ==========================
   HERO
   ========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
}

.hero-left::before {
  content: 'روحي';
  position: absolute;
  top: 48px;
  left: 64px;
  font-family: 'Libre Baskerville', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--cream-dark);
  letter-spacing: -2px;
  line-height: 1;
  pointer-events: none;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 380px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold); color: var(--charcoal); }

.btn-ghost {
  background: none;
  color: var(--charcoal);
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.04) 20px,
    rgba(255,255,255,0.04) 40px
  );
}

.hero-product-mock {
  width: 260px;
  height: 320px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-img {
  width: 70%;
  max-width: 320px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.hero-product-label {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  font-weight: 400;
}

.hero-price { color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 4px; }

.floating-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--cream);
  color: var(--terra-dark);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  z-index: 2;
}

/* ==========================
   MARQUEE
   ========================== */
.marquee-bar {
  background: var(--charcoal);
  color: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 48px;
  animation: marquee 18s linear infinite;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Libre Baskerville', serif;
}

.marquee-sep { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================
   SECTIONS SHARED
   ========================== */
.section {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
}

.view-all {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.view-all:hover { color: var(--gold); border-color: var(--gold); }

/* ==========================
   PRODUCTS
   ========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card { cursor: pointer; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-4px); }
.product-img-wrap { display: block; text-decoration: none; }

.product-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.product-card:hover .product-overlay { background: rgba(0,0,0,0.15); }

.quick-add {
  width: 100%;
  background: var(--cream);
  color: var(--charcoal);
  border: none;
  padding: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.3s;
  transform: translateY(8px);
}

.product-card:hover .quick-add { transform: translateY(0); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: white;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}

.product-badge-gold { background: var(--gold); }
.product-name { font-size: 15px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.product-sub { font-size: 12px; color: var(--warm-gray); margin-bottom: 8px; }
.product-price { font-size: 14px; font-weight: 500; color: var(--terra); }

/* ==========================
   BRAND STORY
   ========================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-visual {
  background: var(--terra-dark);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zellige-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  padding: 40px;
  opacity: 0.65;
  width: 100%;
}

.zellige-tile { aspect-ratio: 1; border-radius: 3px; }

.about-content {
  background: var(--charcoal);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 20px;
}

.about-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.about-title em { font-style: italic; color: var(--terra-light); }

.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,234,216,0.7);
  font-weight: 300;
  margin-bottom: 32px;
}

.about-arabic {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  color: var(--terra-light);
}

.about-arabic-tr {
  font-size: 12px;
  color: rgba(240,234,216,0.45);
  letter-spacing: 2px;
}

/* ==========================
   REVIEWS
   ========================== */
.reviews-section {
  background: var(--cream-dark);
  padding: 80px 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--cream);
  padding: 28px;
  border-radius: 4px;
  border: 1px solid var(--sand);
}

.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }

.review-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer { font-size: 12px; color: var(--warm-gray); letter-spacing: 1px; text-transform: uppercase; }

/* ==========================
   EMAIL CTA
   ========================== */
.cta-section {
  background: var(--terra);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'روحي';
  position: absolute;
  font-family: 'Libre Baskerville', serif;
  font-size: 220px;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  position: relative;
}

.cta-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 54px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
}

.cta-input-row {
  display: flex;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 14px;
  font-family: 'Libre Baskerville', serif;
  outline: none;
  border-radius: 2px 0 0 2px;
}

.cta-input::placeholder { color: rgba(255,255,255,0.55); }

.cta-email-btn {
  background: var(--cream);
  color: var(--terra-dark);
  border: none;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}

.cta-email-btn:hover { background: var(--gold); }

.cta-success {
  color: white;
  margin-top: 16px;
  font-size: 14px;
  position: relative;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer { background: var(--charcoal); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,234,216,0.6);
  margin-bottom: 20px;
}/* ==========================
   HERO SPLIT LAYOUT
   ========================== */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vB-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.vB-hero-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vB-hero-img {
  width: 75%;
  max-width: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.vB-hero-placeholder {
  width: 260px;
  height: 320px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

@media (max-width: 768px) {
  .vB-hero { grid-template-columns: 1fr; }
  .vB-hero-left { padding: 60px 24px; }
  .vB-hero-title { font-size: 48px; }
  .vB-hero-right { min-height: 340px; }
}