@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Cinzel:wght@400;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ═══════════════ VARIABLES ═══════════════ */
:root {
  --burg: #6B1E2E;
  --burg-d: #4A1320;
  --gold: #C9943A;
  --gold-l: #E8B86D;
  --gold-d: #A07828;
  --cream: #FAF3E8;
  --warm: #FFF9F0;
  --dark: #1A0A08;
  --dark-2: #2C0E14;
  --text: #2C1810;
  --muted: #7A5C4F;
  --border: rgba(107,30,46,0.15);
  --shadow-sm: 0 2px 12px rgba(107,30,46,0.08);
  --shadow-md: 0 8px 32px rgba(107,30,46,0.12);
  --shadow-lg: 0 20px 60px rgba(107,30,46,0.18);
  --nav-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════ RESET ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(201,148,58,0.15);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(26,10,8,0.97); backdrop-filter: blur(12px); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--cream); white-space: nowrap;
}
.nav-logo em { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; gap: 8px; align-items: center;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(250,243,232,0.6);
  padding: 8px 14px; border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(201,148,58,0.1);
  border: 1px solid rgba(201,148,58,0.25);
  color: var(--gold); transition: var(--transition);
}
.nav-cart-btn:hover { background: rgba(201,148,58,0.2); }
.nav-cart-btn svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--burg); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--gold);
  border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ PAGE WRAPPER ═══════════════ */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ═══════════════ CONTAINERS ═══════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px); max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 60px clamp(20px, 4vw, 48px); max-width: 1200px; margin: 0 auto; }

/* ═══════════════ TYPOGRAPHY ═══════════════ */
.eyebrow {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.eyebrow.dark { color: var(--burg); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--burg); line-height: 1.15; margin-bottom: 16px;
}
.section-title.light { color: var(--cream); }
.section-lead { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.7; }
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px;
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }
.btn-burg {
  background: var(--burg); color: var(--cream);
  border: 2px solid var(--burg);
}
.btn-burg:hover { background: var(--burg-d); border-color: var(--burg-d); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(250,243,232,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-burg {
  background: transparent; color: var(--burg);
  border: 1.5px solid var(--burg);
}
.btn-outline-burg:hover { background: var(--burg); color: var(--cream); }
.btn-sm { padding: 10px 24px; font-size: 9px; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(145deg, #100408 0%, #2C0A14 45%, #5A1826 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 80px 24px;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,148,58,0.1);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: spin 90s linear infinite; pointer-events: none;
}
.hero-ring:nth-child(1) { width: min(700px,120vw); height: min(700px,120vw); }
.hero-ring:nth-child(2) { width: min(500px,90vw); height: min(500px,90vw); border-style: dashed; animation-direction: reverse; animation-duration: 60s; opacity: 0.5; }
.hero-ring:nth-child(3) { width: min(320px,70vw); height: min(320px,70vw); animation-duration: 40s; opacity: 0.35; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 6px; color: var(--gold); margin-bottom: 24px; animation: fadeUp .8s .2s both; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 11vw, 108px);
  color: var(--cream); line-height: 0.9;
  letter-spacing: -2px; animation: fadeUp .8s .4s both;
}
.hero h1 em { color: var(--gold); font-style: italic; display: block; font-size: 1.08em; }
.hero-sub { font-size: clamp(13px,1.8vw,16px); color: rgba(250,243,232,0.5); letter-spacing: 1px; line-height: 1.8; margin-top: 20px; animation: fadeUp .8s .6s both; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; animation: fadeUp .8s .9s both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,148,58,0.12);
  padding: 18px 32px;
  display: flex; justify-content: center;
  gap: clamp(16px, 4vw, 56px); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 2px; color: rgba(250,243,232,0.5);
  white-space: nowrap;
}
.trust-item span:first-child { font-size: 15px; }

/* ═══════════════ PRODUCT CARDS ═══════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.prod-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-img {
  aspect-ratio: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod-img svg { width: 72px; height: 72px; opacity: 0.5; }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 2px;
  padding: 5px 10px; border-radius: 2px;
  background: var(--gold); color: var(--dark);
}
.prod-badge.new { background: var(--burg); color: var(--cream); }
.prod-badge.eid { background: #2C4A1A; color: #9ACD5A; }
.prod-body { padding: 20px; }
.prod-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.prod-stars { color: var(--gold); font-size: 13px; margin-bottom: 2px; }
.prod-reviews { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.prod-price { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--burg); }
.prod-price-old { font-size: 12px; text-decoration: line-through; color: var(--muted); margin-left: 6px; font-weight: 400; }
.prod-actions { display: flex; gap: 8px; margin-top: 14px; }
.prod-actions .btn { flex: 1; justify-content: center; }

/* Product image backgrounds */
.pi-1 { background: linear-gradient(145deg, #2C0A14, #6B1E2E); }
.pi-2 { background: linear-gradient(145deg, #1A0A08, #3C1820); }
.pi-3 { background: linear-gradient(145deg, #0A1A0A, #1E4A22); }
.pi-4 { background: linear-gradient(145deg, #1A1008, #3C2808); }
.pi-5 { background: linear-gradient(145deg, #1A0808, #4A1210); }
.pi-6 { background: linear-gradient(145deg, #0A0E1A, #1A2848); }
.pi-7 { background: linear-gradient(145deg, #200810, #5A1838); }
.pi-8 { background: linear-gradient(145deg, #0A1818, #1A3A30); }

/* ═══════════════ CATEGORY FILTERS ═══════════════ */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px;
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--muted);
  background: #fff; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--burg); color: var(--cream); border-color: var(--burg); }

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 72px clamp(20px, 4vw, 48px) 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-eyebrow { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,60px); color: var(--cream); }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 14px; color: rgba(250,243,232,0.5); margin-top: 12px; letter-spacing: 1px; font-family: 'Cinzel', serif; }

/* ═══════════════ BREADCRUMB ═══════════════ */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 40px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--burg); }

/* ═══════════════ PRODUCT DETAIL ═══════════════ */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.product-gallery .prod-img {
  border-radius: var(--radius-lg); aspect-ratio: 1;
  border: 1px solid var(--border);
}
.product-info .prod-price { font-size: 26px; margin: 12px 0; }
.product-desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 16px 0; }
.product-features { margin: 20px 0; }
.product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.product-features li::before {
  content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0;
}
.qty-ctrl {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; width: fit-content; margin-bottom: 20px;
}
.qty-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text); background: var(--cream);
  transition: var(--transition); border: none; cursor: pointer;
}
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-input {
  width: 52px; text-align: center; border: none;
  border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  padding: 10px 0; font-family: 'Cinzel', serif; font-size: 15px;
  color: var(--text); background: #fff; appearance: textfield;
}
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.product-meta p { font-size: 12px; color: var(--muted); font-family: 'Cinzel', serif; letter-spacing: 1px; margin-bottom: 6px; }
.product-meta strong { color: var(--text); }

/* ═══════════════ CART ═══════════════ */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px;
  color: var(--muted); padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img {
  width: 72px; height: 72px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.cart-item-img svg { width: 32px; height: 32px; opacity: 0.5; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; }
.cart-item-cat { font-size: 11px; color: var(--muted); font-family: 'Cinzel', serif; letter-spacing: 1px; margin-top: 2px; }
.cart-remove { color: var(--muted); font-size: 12px; transition: var(--transition); background: none; border: none; cursor: pointer; }
.cart-remove:hover { color: #C0392B; }
.cart-summary {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.cart-summary h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--burg); margin-bottom: 20px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total { font-family: 'Cinzel', serif; font-size: 17px; font-weight: 600; color: var(--burg); }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--burg); margin-bottom: 12px; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; }

/* ═══════════════ CHECKOUT ═══════════════ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.form-section {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.form-section h3 {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px;
  color: var(--burg); margin-bottom: 20px; text-transform: uppercase;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.form-input {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14px; color: var(--text);
  background: var(--cream); transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); background: #fff; }
.form-input.error { border-color: #C0392B; }
.payment-opts { display: flex; flex-direction: column; gap: 10px; }
.pay-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
}
.pay-opt:hover { border-color: var(--gold); }
.pay-opt.selected { border-color: var(--burg); background: rgba(107,30,46,0.04); }
.pay-opt input { accent-color: var(--burg); }
.pay-opt-label { font-size: 14px; font-weight: 600; color: var(--text); }
.pay-opt-sub { font-size: 11px; color: var(--muted); }
.order-summary-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-item-name { color: var(--text); }
.order-item-price { font-family: 'Cinzel', serif; color: var(--burg); font-weight: 600; }

/* ═══════════════ SUCCESS STATE ═══════════════ */
.order-success {
  text-align: center; padding: 60px 20px;
  display: none;
}
.order-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(107,30,46,0.08); border: 2px solid var(--burg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 28px;
}
.order-success h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--burg); margin-bottom: 12px; }
.order-success p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 480px; margin: 0 auto 24px; }

/* ═══════════════ ABOUT PAGE ═══════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  background: linear-gradient(145deg, var(--dark-2), var(--burg));
  border-radius: var(--radius-lg); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual svg { width: 60%; height: 60%; opacity: 0.6; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.fact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.fact-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--burg); font-weight: 700; }
.fact-label { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h4 { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--burg); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════ CONTACT ═══════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--burg); }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 14px 0 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(107,30,46,0.08); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.contact-item-label { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px; color: var(--muted); }
.contact-item-val { font-size: 14px; color: var(--text); font-weight: 600; margin-top: 2px; }
.whatsapp-cta {
  background: linear-gradient(135deg, #128C7E, #075E54);
  color: #fff; border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  margin-top: 24px; transition: var(--transition);
}
.whatsapp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,94,84,0.3); }
.whatsapp-cta svg { width: 32px; height: 32px; fill: #fff; flex-shrink: 0; }
.whatsapp-cta div h4 { font-size: 16px; font-weight: 700; }
.whatsapp-cta div p { font-size: 12px; opacity: 0.8; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-bg { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 80px 0; }
.testi-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-top: 40px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: var(--radius-lg); padding: 24px;
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: rgba(250,243,232,0.75); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,148,58,0.2); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.testi-name { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; color: var(--gold); }
.testi-city { font-size: 11px; color: rgba(250,243,232,0.4); }

/* ═══════════════ WHY US ═══════════════ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.why-card {
  text-align: center; padding: 32px 20px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--burg); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════ NEWSLETTER ═══════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--burg) 0%, var(--dark-2) 100%);
  padding: 72px clamp(20px,4vw,48px);
  text-align: center;
}
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,44px); color: var(--cream); margin-bottom: 10px; }
.newsletter p { font-size: 15px; color: rgba(250,243,232,0.65); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border-radius: 4px; overflow: hidden; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: none; outline: none;
  font-size: 14px; background: rgba(255,255,255,0.12);
  color: var(--cream); font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(250,243,232,0.45); }
.newsletter-form button {
  padding: 14px 28px; background: var(--gold); color: var(--dark);
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px;
  cursor: pointer; border: none; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-l); }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,148,58,0.12);
  padding: 60px clamp(20px,4vw,48px) 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 48px; border-bottom: 1px solid rgba(201,148,58,0.1);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--cream); margin-bottom: 14px; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-desc { font-size: 13px; color: rgba(250,243,232,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,148,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(250,243,232,0.5);
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 16px; text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(250,243,232,0.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(250,243,232,0.25);
  font-family: 'Cinzel', serif; letter-spacing: 1px; flex-wrap: wrap; gap: 12px;
}
.footer-payments { display: flex; gap: 8px; }
.footer-payments span {
  padding: 4px 10px; border: 1px solid rgba(201,148,58,0.15);
  border-radius: 3px; font-size: 9px; letter-spacing: 1px;
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--dark); color: var(--cream);
  padding: 14px 22px; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
  transform: translateY(20px); opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════ MISC ═══════════════ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gold { color: var(--gold); }
.burg { color: var(--burg); }
.no-products { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .order-summary-box { position: static; }
  .product-layout { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark); padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(201,148,58,0.15);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 16px; }
  .product-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
  .hero h1 { letter-spacing: -1px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-body { padding: 14px; }
  .prod-name { font-size: 14px; }
  .prod-actions { flex-direction: column; }
  .trust-bar { gap: 12px; }
}
