/* ============================================
   A&Z BEAUTY — Global Stylesheet
   Color palette harmonized with logo
   ============================================ */

:root {
  /* Logo-harmonized palette */
  --blush-light: #fdf5ef;
  --blush: #f9e5d9;
  --blush-warm: #f5d4c0;
  --cream: #fdf8f3;
  --ivory: #fffaf5;
  --rose-gold: #c9927a;
  --rose-gold-light: #dfab92;
  --rose-gold-deep: #a6735a;
  --copper: #b8785e;
  --sage: #a8b89a;
  --sage-deep: #7c8b6e;
  --burgundy: #6b2c3d;
  --burgundy-deep: #4a1d2a;
  --wine: #8a3a52;
  --ink: #2a1a20;
  --charcoal: #3d2a30;
  --champagne: #e8d4b8;
  --gold-soft: #d4b896;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,146,122,0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(107,44,61,0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ============ LANGUAGE SWITCHER MODAL ============ */
.lang-modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lang-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lang-modal-inner {
  background: var(--cream);
  padding: 50px 48px;
  border-radius: 28px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(107,44,61,0.25);
  transform: translateY(20px);
  transition: transform 0.4s;
}

.lang-modal.active .lang-modal-inner {
  transform: translateY(0);
}

.lang-modal-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.lang-modal-logo img { width: 100%; height: 100%; object-fit: contain; }

.lang-modal h3 {
  font-size: 26px;
  color: var(--burgundy);
  margin-bottom: 8px;
  font-weight: 500;
}

.lang-modal p {
  font-size: 13px;
  color: rgba(42,26,32,0.6);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}

.lang-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lang-btn {
  background: var(--blush-light);
  border: 1.5px solid transparent;
  padding: 14px 8px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.08em;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover {
  background: var(--blush);
  border-color: var(--rose-gold);
  transform: translateY(-2px);
}

.lang-btn .flag {
  font-size: 22px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: linear-gradient(90deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--burgundy-deep) 100%);
  color: var(--blush-light);
  text-align: center;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}

.topbar strong { color: var(--rose-gold-light); font-weight: 600; }

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  background: rgba(253, 248, 243, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,146,122,0.22);
  z-index: 99;
  padding: 14px 0;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a {
  color: var(--burgundy);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--wine));
  transition: width 0.4s;
}

.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }

.logo {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  cursor: pointer;
}

.logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.logo-text { text-align: left; line-height: 1; }

.logo-mark {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--copper) 0%, var(--rose-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.logo-tag {
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--rose-gold-deep);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

.nav-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-utility a, .nav-utility button {
  color: var(--burgundy);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  font-family: inherit;
  padding: 0;
}

.nav-utility a:hover, .nav-utility button:hover { color: var(--wine); }

.lang-switch {
  padding: 6px 12px !important;
  border: 1px solid rgba(201,146,122,0.3) !important;
  border-radius: 100px;
  transition: all 0.3s !important;
}

.lang-switch:hover {
  border-color: var(--rose-gold) !important;
  background: var(--blush-light);
}

.cart-count {
  background: linear-gradient(135deg, var(--wine), var(--burgundy));
  color: var(--cream);
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(138,58,82,0.3);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding: 60px 80px 80px;
  gap: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 50%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,146,122,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138,58,82,0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,146,122,0.3);
  border-radius: 100px;
  font-weight: 500;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--wine);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1;
  font-weight: 300;
  color: var(--burgundy-deep);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,26,32,0.72);
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  border-radius: 100px;
  box-shadow: 0 12px 32px rgba(107,44,61,0.25);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(107,44,61,0.35);
}

.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  color: var(--burgundy);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 2px solid var(--rose-gold);
  transition: all 0.3s;
  background: none;
}

.btn-secondary:hover { color: var(--wine); border-bottom-color: var(--wine); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,146,122,0.3);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num em { font-style: italic; color: var(--wine); }

.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42,26,32,0.6);
  font-weight: 500;
}

.hero-visual { position: relative; height: 75vh; z-index: 1; }

.hero-visual-main {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 300px 300px 40px 40px;
  box-shadow: 0 40px 80px rgba(107,44,61,0.22);
}

.hero-visual-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74,29,42,0.18) 100%);
  border-radius: 300px 300px 40px 40px;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.3;
  font-style: italic;
  font-weight: 500;
  animation: gentle-spin 30s linear infinite;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(166,115,90,0.35);
}

.hero-badge-inner { padding: 20px; }

.hero-badge small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  margin-top: 6px;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}

@keyframes gentle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-floating {
  position: absolute;
  top: 30px;
  right: -30px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(107,44,61,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 12px var(--sage);
}

.floating-text { font-size: 12px; }
.floating-text strong {
  color: var(--burgundy);
  display: block;
  font-weight: 600;
  font-size: 13px;
}
.floating-text span { color: rgba(42,26,32,0.6); font-size: 11px; }

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(90deg, var(--burgundy-deep) 0%, var(--wine) 50%, var(--burgundy-deep) 100%);
  color: var(--blush-light);
  padding: 26px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
}

.marquee span::before {
  content: '✦';
  color: var(--rose-gold-light);
  margin-right: 60px;
  font-style: normal;
}

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

/* ============ FEATURES STRIP ============ */
.features {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  padding: 60px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1500px;
  margin: 80px auto;
}

.feature { text-align: center; }

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-warm) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(107,44,61,0.08);
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--burgundy-deep);
}

.feature-desc {
  font-size: 13px;
  color: rgba(42,26,32,0.65);
  font-weight: 300;
  line-height: 1.6;
}

/* ============ SECTION BASE ============ */
section { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  padding: 110px 40px 50px;
  max-width: 820px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 22px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  background: var(--blush-light);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--burgundy-deep);
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.section-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(42,26,32,0.7);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ COLLECTION ============ */
.collection {
  padding: 0 60px 140px;
  max-width: 1500px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(107,44,61,0.18);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.3s;
  font-weight: 500;
}

.filter-btn:hover { border-color: var(--rose-gold); color: var(--wine); }

.filter-btn.active {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(107,44,61,0.22);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 50px 30px;
}

.product {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product:hover { transform: translateY(-8px); }

.product-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blush) 0%, var(--champagne) 100%);
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(107,44,61,0.08);
  transition: box-shadow 0.4s;
}

.product:hover .product-image-wrap {
  box-shadow: 0 30px 60px rgba(107,44,61,0.18);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product:hover .product-image { transform: scale(1.08); }

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--cream);
  color: var(--burgundy);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(107,44,61,0.1);
}

.product-tag.rare { background: linear-gradient(135deg, var(--wine), var(--burgundy)); color: var(--cream); }
.product-tag.new { background: linear-gradient(135deg, var(--sage), var(--sage-deep)); color: var(--cream); }
.product-tag.sale { background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold-deep)); color: var(--cream); }

.product-heart {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 16px;
  z-index: 3;
  transition: all 0.3s;
  border: none;
}

.product-heart:hover {
  background: var(--wine);
  color: var(--cream);
  transform: scale(1.1);
}

.product-heart.liked { background: var(--wine); color: var(--cream); }

.product-quick {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(74,29,42,0.95);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 3;
  border: none;
}

.product:hover .product-quick { opacity: 1; transform: translateY(0); }

.product-info { text-align: left; padding: 0 8px; }

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.product-name {
  font-size: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--burgundy-deep);
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--rose-gold-deep);
  font-weight: 500;
}

.product-notes {
  font-size: 13px;
  font-style: italic;
  color: rgba(42,26,32,0.55);
  margin-bottom: 14px;
  font-family: 'Fraunces', serif;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--burgundy);
  font-family: 'Fraunces', serif;
}

.product-price .old {
  text-decoration: line-through;
  color: rgba(42,26,32,0.35);
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
}

.product-price .new-price { color: var(--wine); }

.product-size {
  font-size: 11px;
  color: rgba(42,26,32,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ STORY ============ */
.story {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--wine) 100%);
  color: var(--blush-light);
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,146,122,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.story::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,229,217,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.story-content {
  max-width: 560px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.story-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 24px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,146,122,0.3);
  border-radius: 100px;
}

.story h2 {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.story h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--blush) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.story p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  font-weight: 300;
  opacity: 0.9;
}

.story-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  padding: 28px 32px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--rose-gold-light);
  border-radius: 0 16px 16px 0;
  margin: 40px 0;
  color: var(--cream);
}

.story-sig {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-top: 16px;
  display: block;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
}

.story-visual { position: relative; height: 640px; z-index: 2; }

.story-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.story-img-1 {
  width: 65%; height: 70%;
  top: 0; left: 0;
  background-image: url('../img/heritage1.jpg');
}

.story-img-2 {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  background-image: url('../img/heritage2.jpg');
  border: 4px solid var(--burgundy-deep);
}

.story:hover .story-img-1 { transform: translate(-8px, -8px); }
.story:hover .story-img-2 { transform: translate(8px, 8px); }

/* ============ NOTES ============ */
.notes {
  padding: 20px 60px 140px;
  max-width: 1400px;
  margin: 0 auto;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.note-card {
  background: var(--cream);
  padding: 50px 32px;
  text-align: center;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,146,122,0.2);
}

.note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.note-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(107,44,61,0.15);
  border-color: var(--rose-gold);
}

.note-card:hover::before { opacity: 1; }
.note-card > * { position: relative; z-index: 1; }

.note-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Fraunces', serif;
}

.note-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--burgundy-deep);
}

.note-arabic {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
  font-weight: 600;
}

.note-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(42,26,32,0.7);
  font-weight: 300;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 50%, var(--champagne) 100%);
}

.testimonials::before,
.testimonials::after {
  content: '"';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 400px;
  color: rgba(138,58,82,0.08);
  line-height: 1;
  font-weight: 500;
}

.testimonials::before { top: 40px; left: 60px; }
.testimonials::after { bottom: -120px; right: 60px; transform: rotate(180deg); }

.testimonial-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stars {
  color: var(--rose-gold-deep);
  letter-spacing: 0.5em;
  margin-bottom: 32px;
  font-size: 16px;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--burgundy-deep);
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(107,44,61,0.08);
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--rose-gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
}

.author-info { text-align: left; }

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.author-info span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  font-weight: 500;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  color: var(--blush-light);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,146,122,0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}

.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--rose-gold-light);
  font-family: 'Fraunces', serif;
}

.newsletter h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.newsletter h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--blush) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.newsletter p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 44px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(201,146,122,0.3);
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--blush-light);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 14px 24px;
}

.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: rgba(253,245,239,0.5); }

.newsletter-form button {
  background: linear-gradient(135deg, var(--rose-gold-light) 0%, var(--rose-gold-deep) 100%);
  border: none;
  color: var(--burgundy-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(201,146,122,0.4);
}

.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  font-weight: 500;
  flex-wrap: wrap;
}

.newsletter-perks span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-perks span::before {
  content: '✓';
  color: var(--rose-gold-light);
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--blush-light);
  padding: 90px 60px 30px;
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand .logo-mark {
  font-size: 28px;
  line-height: 1;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 320px;
  font-weight: 300;
  margin-bottom: 24px;
}

.social { display: flex; gap: 12px; }

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,146,122,0.15);
  border: 1px solid rgba(201,146,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}

.social a:hover {
  background: var(--rose-gold-light);
  color: var(--burgundy-deep);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  color: var(--blush-light);
  font-size: 14px;
  opacity: 0.7;
  font-weight: 300;
  transition: all 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--rose-gold-light);
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(201,146,122,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.08em;
}

.footer-bottom .payment {
  display: flex;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RTL SUPPORT (Arabic) ============ */
html[dir="rtl"] body { font-family: 'Outfit', 'Noto Kufi Arabic', sans-serif; }
html[dir="rtl"] .nav-links a::after { left: auto; right: 0; }
html[dir="rtl"] .btn-primary:hover .arrow { transform: translateX(-6px); }
html[dir="rtl"] .hero-badge { left: auto; right: -40px; }
html[dir="rtl"] .hero-floating { right: auto; left: -30px; }
html[dir="rtl"] .story { direction: rtl; }
html[dir="rtl"] .story-quote { border-left: none; border-right: 3px solid var(--rose-gold-light); border-radius: 16px 0 0 16px; }
html[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 6px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 40px 60px;
    text-align: center;
    gap: 60px;
  }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 60vh; order: 2; }
  .hero-visual-main, .hero-visual-main::after { border-radius: 40px; }
  .story { grid-template-columns: 1fr; padding: 100px 40px; gap: 60px; }
  .story-content { margin: 0; }
  .story-visual { height: 500px; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); margin: 80px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 20px; padding: 0 24px; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 32px 20px 60px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .hero-badge { width: 110px; height: 110px; font-size: 13px; left: -20px; bottom: -10px; }
  .hero-floating { right: 10px; padding: 14px 16px; }
  .collection { padding: 0 20px 80px; }
  .story, .newsletter, .testimonials { padding-left: 24px; padding-right: 24px; }
  .notes { padding: 20px 20px 80px; }
  .notes-grid { grid-template-columns: 1fr; gap: 16px; }
  .features { grid-template-columns: 1fr; margin: 60px 20px; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-head { padding: 70px 24px 30px; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 10px 18px; font-size: 11px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }
  .product-name { font-size: 16px; }
  .newsletter-form { flex-direction: column; border-radius: 24px; }
  .newsletter-form button { width: 100%; }
  .newsletter-perks { gap: 16px; font-size: 10px; }
  nav { padding: 12px 0; }
  .nav-utility { gap: 12px; font-size: 10px; }
  .nav-utility a span:not(.cart-count), .nav-utility button span:not(.cart-count) { display: none; }
  .logo img { width: 48px; height: 48px; }
  .logo-mark { font-size: 20px; }
  .logo-tag { font-size: 7px; letter-spacing: 0.3em; }
}
