/* ================================================================
   AEMIZA — LUXURY EDITORIAL DESIGN SYSTEM
   ================================================================ */
:root {
  --cream: #F5F1EB;
  --cream-soft: #FBF8F3;
  --maroon: #800000;
  --maroon-deep: #4A0D0D;
  --maroon-ink: #3a0a0a;
  --gold: #c9a24b;
  --gold-light: #e3c98a;
  --black: #000000;
  --ink: #2a2220;
  --muted: #8a7a70;
  --border: #e4d9c8;
  --card: #fffdf9;
  --green: #25d366;
  --nav-h: 76px;
  --topbar-h: 38px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', -apple-system, sans-serif;
  --script: 'Great Vibes', cursive;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
  repeating-linear-gradient(0deg, rgba(128,0,0,.012) 0 1px, transparent 1px 4px),
  repeating-linear-gradient(90deg, rgba(128,0,0,.012) 0 1px, transparent 1px 4px);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ 1. LUXURY PRELOADER (gold script stroke) ============ */
.curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--maroon-deep);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: curtainUp 1s cubic-bezier(.76,0,.24,1) 2.6s forwards;
}
.curtain-inner { text-align: center; }
.curtain-script { width: min(440px, 78vw); height: auto; overflow: visible; }
.curtain-script text {
  font-family: var(--script);
  font-size: 130px;
}
.script-stroke {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.2;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: scriptDraw 2s ease .3s forwards;
}
.script-fill {
  fill: var(--gold-light);
  opacity: 0;
  animation: scriptGlow .8s ease 1.9s forwards;
}
@keyframes scriptDraw { to { stroke-dashoffset: 0; } }
@keyframes scriptGlow { to { opacity: 1; } }
.curtain-tag {
  margin-top: 6px;
  font-size: .8rem; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(245,230,211,.75);
  opacity: 0; transform: translateY(10px);
  animation: curtainTag .7s ease 1.5s forwards;
}
@keyframes curtainTag { to { opacity: 1; transform: translateY(0); } }
@keyframes curtainUp {
  0%   { transform: translateY(0); border-radius: 0; }
  100% { transform: translateY(-102%); border-radius: 0 0 50% 50% / 0 0 8% 8%; }
}
body.loading { overflow: hidden; }

/* ============ LOGO ============ */
.brand-logo { height: 44px; width: auto; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,.25)); }
.logo-text { font-family: var(--sans); font-size: 1.5rem; font-weight: 600; color: var(--cream); }
.footer-logo { font-size: 1.6rem; color: var(--maroon); font-weight: 600; }
.footer-script {
  text-shadow: 0 2px 0 rgba(201,162,75,.55), 0 6px 18px rgba(201,162,75,.35);
}
.hero-title em { text-shadow: 0 3px 14px rgba(201,162,75,.35); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-arabic { font-family: 'Amiri', serif; font-size: 1.3rem; color: var(--gold-light); line-height: 1; direction: rtl; }

/* ============ TOPBAR + NAV ============ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--topbar-h);
  background: var(--maroon-deep);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; letter-spacing: .04em;
}
nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--maroon);
  box-shadow: 0 2px 18px rgba(74,13,13,.35);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { font-size: .95rem; font-weight: 400; color: var(--cream); padding: 6px 2px; position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold-light); transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-icons { display: flex; gap: 18px; align-items: center; }
.nav-icons a, .nav-icons button {
  color: var(--cream); background: none; border: none; cursor: pointer;
  position: relative; display: flex; align-items: center; transition: color .2s; padding: 4px;
}
.nav-icons a:hover, .nav-icons button:hover { color: var(--gold-light); }
.nav-icons svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--maroon-deep);
  font-size: .62rem; font-weight: 600; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.search-bar {
  position: fixed; top: calc(var(--topbar-h) + var(--nav-h)); left: 0; right: 0; z-index: 99;
  background: var(--cream-soft); border-bottom: 1px solid var(--border);
  padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
}
.search-bar.open { max-height: 80px; padding: 16px 24px; }
.search-bar input { width: 100%; max-width: 640px; margin: 0 auto; display: block; padding: 11px 16px; border: 1px solid var(--border); border-radius: 2px; font-family: var(--sans); font-size: .95rem; background: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 15px 38px; border-radius: 2px;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer; border: none; font-family: var(--sans);
  position: relative; overflow: hidden;
}
.btn-maroon {
  background: var(--maroon); color: var(--cream);
  border: 1px solid #C9A86A;
}
.btn-maroon::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(201,168,106,.45) 50%, transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn-maroon:hover {
  background: var(--maroon-deep); transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(128,0,0,.28), 0 0 0 1px #C9A86A;
}
.btn-maroon:hover::after { animation: silkShimmer .9s ease; }
@keyframes silkShimmer {
  from { left: -120%; }
  to   { left: 160%; }
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-deep); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(201,162,75,.4); }
.btn-outline { background: transparent; color: var(--maroon); border: 1px solid var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--gold-light); border: 1px solid var(--gold-light); margin-left: 12px; }
.btn-outline-light:hover { background: rgba(227,201,138,.15); }
.btn-whatsapp { background: var(--green); color: #fff; border-radius: 30px; letter-spacing: .06em; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(37,211,102,.4); }

/* ============ 3. HERO (editorial) ============ */
.hero-editorial {
  margin-top: calc(var(--topbar-h) + var(--nav-h));
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  min-height: 560px;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 30px 24px 70px;
  overflow: hidden;
  background: var(--cream);
}
.hero-kicker {
  font-size: .78rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--maroon); font-weight: 500; margin-bottom: 26px;
  opacity: 0; animation: heroRise 1s ease .9s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 500; line-height: 1.06;
  color: var(--ink);
  max-width: 940px;
  opacity: 0; animation: heroRise 1s ease 1.1s forwards;
}
.hero-title em { font-style: italic; color: var(--maroon); font-weight: 400; }
.hero-sub {
  margin-top: 20px; font-size: 1rem; color: var(--muted);
  max-width: 520px;
  opacity: 0; animation: heroRise 1s ease 1.3s forwards;
}
.hero-cta { margin-top: 28px; opacity: 0; animation: heroRise 1s ease 1.5s forwards; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Spinning vinyl disc */
.spin-disc {
  position: absolute; top: 50%; left: 50%;
  width: min(470px, 66vh); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(128,0,0,.18);
  z-index: 0; pointer-events: none;
  animation: discSpin 40s linear infinite;
}
.spin-disc::before {
  content: ""; position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(128,0,0,.22);
}
.spin-disc::after {
  content: ""; position: absolute; inset: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--maroon) 0%, var(--maroon-deep) 62%, var(--gold) 63%, transparent 65%);
  opacity: .92;
}
.spin-disc .disc-text { position: absolute; inset: 0; animation: none; }
.spin-disc svg { width: 100%; height: 100%; }
.spin-disc svg text {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 4.5px;
  fill: var(--maroon); text-transform: uppercase; opacity: .75;
}
@keyframes discSpin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-editorial > *:not(.spin-disc) { position: relative; z-index: 1; }

/* Floating side images */
.float-img {
  position: absolute; z-index: 1;
  width: clamp(110px, 11vw, 175px);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(74,13,13,.22);
  border: 5px solid #fff;
  opacity: 0;
}
.float-img img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.float-left  { left: max(24px, calc(50% - 620px)); top: 18%; transform: rotate(-5deg); animation: floatIn 1.2s ease 1.6s forwards, floatY 7s ease-in-out 2.8s infinite; }
.float-right { right: max(24px, calc(50% - 620px)); top: 16%; transform: rotate(5deg);  animation: floatIn 1.2s ease 1.8s forwards, floatY 8s ease-in-out 3s infinite; }
.float-left2 { left: max(60px, calc(50% - 560px)); bottom: 14%; transform: rotate(3deg); width: clamp(95px, 8vw, 135px); animation: floatIn 1.2s ease 2s forwards, floatY 9s ease-in-out 3.2s infinite; }
.float-right2 { right: max(60px, calc(50% - 560px)); bottom: 12%; transform: rotate(-4deg); width: clamp(95px, 8vw, 135px); animation: floatIn 1.2s ease 2.2s forwards, floatY 7.5s ease-in-out 3.4s infinite; }
@media (max-width: 1150px) { .float-left2, .float-right2 { display: none; } }
@media (max-width: 980px) { .float-img { display: none; } }
@keyframes floatIn { from { opacity: 0; translate: 0 40px; } to { opacity: 1; translate: 0 0; } }
@keyframes floatY { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--maroon); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: heroRise 1s ease 2.2s forwards;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--maroon), transparent);
  animation: hintDrop 1.8s ease-in-out infinite;
}
@keyframes hintDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ SECTIONS BASE ============ */
section { max-width: 1280px; margin: 0 auto; padding: 100px 24px 30px; }
section h2 {
  font-family: var(--serif);
  text-align: center; font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--ink); font-weight: 500; margin-bottom: 10px;
}
section h2 em { font-style: italic; color: var(--maroon); }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 56px; font-size: 1rem; }
.divider { width: 100px; height: 2px; margin: 18px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); border: none; }
.kicker { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--maroon); font-weight: 500; margin-bottom: 14px; }

/* Curved dividers */
.curve-sep { display: block; width: 100%; height: 90px; margin: 60px 0 -1px; }
.curve-sep.fill-maroon { background: var(--maroon-deep); color: var(--cream); }
.curve-sep svg { width: 100%; height: 100%; display: block; }

/* Full-width maroon band */
.band-maroon {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 100px 24px;
  text-align: center;
}
.band-maroon h2 { color: var(--cream); }
.band-maroon h2 em { color: var(--gold-light); }
.band-maroon .section-sub { color: rgba(245,241,235,.65); }

/* ============ NUMBERS STRIP ============ */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1050px; margin: 60px auto 0; }
.number-item .num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 500; color: var(--gold-light);
  line-height: 1;
}
.number-item .lbl { margin-top: 10px; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,241,235,.7); }
.number-item { position: relative; padding-top: 24px; }
.number-item::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 34px; height: 1px; background: var(--gold); }

/* ============ SPLIT (image center, text left/right) ============ */
.split3 { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 44px; align-items: center; }
.split3 .split-img { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px rgba(74,13,13,.2); }
.split3 .split-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split-text h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--ink); margin-bottom: 16px; }
.split-text h3 em { color: var(--maroon); font-style: italic; }
.split-text p { color: var(--muted); font-size: .98rem; margin-bottom: 16px; }
.split-text .sig { font-family: var(--script); font-size: 2rem; color: var(--maroon); }
.split-right { text-align: right; }

/* ============ 3-COL CARDS (hover → maroon) ============ */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.col-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: background .45s ease, transform .35s ease, box-shadow .35s ease;
}
.col-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .6s ease; }
.col-card .col-body { padding: 26px 26px 30px; }
.col-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; transition: color .3s; }
.col-card p { color: var(--muted); font-size: .94rem; transition: color .3s; }
.col-card:hover { background: var(--maroon); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(128,0,0,.3); }
.col-card:hover h3 { color: var(--cream); }
.col-card:hover p { color: rgba(245,241,235,.75); }
.col-card:hover img { transform: scale(1.05); }

/* ============ MAROON BAND CARDS ============ */
.band-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1100px; margin: 56px auto 0; }
.band-card {
  background: rgba(245,241,235,.05);
  border: 1px solid rgba(227,201,138,.3);
  border-radius: 6px; padding: 38px 30px; text-align: center;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.band-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(245,241,235,.09); }
.band-card .icon { font-size: 2rem; margin-bottom: 16px; }
.band-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--gold-light); margin-bottom: 10px; }
.band-card p { color: rgba(245,241,235,.72); font-size: .94rem; }

/* ============ COLLAGE + TESTIMONIALS ============ */
.finale { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.collage { position: relative; height: 560px; }
.collage img {
  position: absolute; object-fit: cover; border-radius: 6px;
  box-shadow: 0 24px 48px rgba(74,13,13,.22); border: 5px solid #fff;
}
.collage .c1 { width: 52%; top: 0; left: 0; z-index: 2; }
.collage .c2 { width: 44%; top: 14%; right: 0; z-index: 1; }
.collage .c3 { width: 46%; bottom: 0; left: 16%; z-index: 3; }
.finale-text h2 { text-align: left; }
.finale-text .testi { border-left: 2px solid var(--gold); padding-left: 20px; margin: 26px 0; }
.finale-text .testi p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.finale-text .testi .who { font-family: var(--sans); font-style: normal; font-size: .85rem; color: var(--muted); margin-top: 10px; letter-spacing: .08em; text-transform: uppercase; }
.stars { color: var(--gold); letter-spacing: .2em; }

/* ============ SHOP / PRODUCT GRIDS (kept, restyled) ============ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(128,0,0,.16); }
.card .card-img { aspect-ratio: 2/3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 24px 28px; text-align: center; }
.card-body h3 { font-family: var(--serif); color: var(--maroon); font-size: 1.4rem; font-weight: 500; margin-bottom: 2px; }
.card-body .arabic { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.card-body p.desc { color: var(--muted); font-size: .95rem; margin-bottom: 16px; min-height: 3.2em; }
.price { font-size: 1.2rem; font-weight: 600; color: var(--maroon); letter-spacing: .04em; margin-bottom: 18px; }
.price small { display: block; font-size: .8rem; color: var(--muted); font-weight: 300; }
.card-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.card-actions .btn { padding: 11px 22px; font-size: .72rem; }

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.product:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(128,0,0,.14); }
.product .p-img { aspect-ratio: 2/3; overflow: hidden; display: block; }
.product .p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product:hover .p-img img { transform: scale(1.05); }
.product .p-body { padding: 18px 18px 20px; text-align: center; }
.product .p-body h3 { font-family: var(--serif); color: var(--ink); font-size: 1.3rem; font-weight: 500; }
.product .p-body .p-tag { font-size: .75rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin: 4px 0 8px; }
.product .p-body .price { font-size: 1.1rem; font-weight: 600; color: var(--maroon); margin-bottom: 14px; }
.product .p-body .btn { width: 100%; padding: 12px; font-size: .75rem; }

/* Featured collections cards */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.collection-card { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; aspect-ratio: 3/4; display: block; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collection-card:hover img { transform: scale(1.06); }
.collection-card .overlay { position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(17,10,8,.78)); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.collection-card .overlay h3 { font-family: var(--serif); color: #fff; font-size: 1.5rem; font-weight: 500; margin-bottom: 4px; }
.collection-card .overlay span { color: var(--gold-light); font-size: .85rem; }

/* Trust strip */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-item { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 30px 20px; text-align: center; }
.trust-item .icon { font-size: 1.9rem; margin-bottom: 12px; }
.trust-item h4 { color: var(--ink); margin-bottom: 6px; font-size: .95rem; font-weight: 600; }
.trust-item p { color: var(--muted); font-size: .88rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 28px 22px; text-align: center; }
.feature .icon { font-size: 2rem; margin-bottom: 10px; }
.feature h4 { color: var(--ink); margin-bottom: 6px; font-size: .95rem; font-weight: 600; }
.feature p { color: var(--muted); font-size: .92rem; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 30px 28px; text-align: center; }
.review .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .2em; margin-bottom: 14px; }
.review p.quote { color: var(--ink); font-size: .95rem; font-style: italic; margin-bottom: 20px; }
.review .reviewer { display: flex; align-items: center; justify-content: center; gap: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--maroon); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.review .reviewer .name { font-weight: 500; font-size: .92rem; color: var(--ink); }
.review .reviewer .city { font-size: .78rem; color: var(--muted); }

/* Instagram + newsletter + video */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-grid a { aspect-ratio: 1; overflow: hidden; display: block; border-radius: 4px; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta-grid a:hover img { transform: scale(1.08); }
.newsletter { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter p { color: var(--muted); margin-bottom: 22px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-radius: 2px; font-family: var(--sans); font-size: .92rem; background: #fffdf8; }
.newsletter input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
#news-status { margin-top: 12px; font-size: .88rem; color: var(--maroon); min-height: 1.3em; }
.video-wrap { max-width: 860px; margin: 0 auto; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(74,13,13,.18); background: #000; }
.video-wrap video { width: 100%; display: block; aspect-ratio: 16/9; }

/* 5-angle viewer */
.angle-viewer { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 48px; display: grid; grid-template-columns: 1.2fr 1fr; }
.angle-main { background: var(--cream-soft); position: relative; }
.angle-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 2/3; }
.angle-badge { position: absolute; top: 14px; left: 14px; background: rgba(74,13,13,.9); color: var(--gold-light); padding: 6px 16px; border-radius: 2px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; border: 1px solid var(--gold); }
.angle-side { padding: 30px; display: flex; flex-direction: column; }
.angle-side h3 { font-family: var(--serif); color: var(--maroon); font-size: 1.6rem; font-weight: 500; margin-bottom: 2px; }
.angle-side .arabic { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.angle-side .price { text-align: left; margin-bottom: 8px; }
.angle-side p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: auto; }
.thumbs button { border: 2px solid var(--border); border-radius: 4px; overflow: hidden; padding: 0; cursor: pointer; background: none; transition: border-color .2s, transform .2s; }
.thumbs button img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.thumbs button.active { border-color: var(--gold); transform: scale(1.04); }
.thumb-labels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 6px; }
.thumb-labels span { font-size: .68rem; text-align: center; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* Page banner */
.page-banner { margin-top: calc(var(--topbar-h) + var(--nav-h)); padding: 80px 24px 60px; background: var(--cream); color: var(--ink); text-align: center; border-bottom: 1px solid var(--border); }
.page-banner h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; margin-bottom: 8px; }
.page-banner h1 em { color: var(--maroon); font-style: italic; }
.page-banner p { color: var(--muted); font-size: 1.05rem; }
.banner-logo { font-size: 2rem; color: var(--maroon); margin-bottom: 6px; }

/* About / contact / misc */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-grid img { border-radius: 6px; border: 1px solid var(--border); box-shadow: 0 16px 36px rgba(74,13,13,.18); }
.about-text h3 { font-family: var(--serif); color: var(--maroon); font-size: 1.5rem; margin-bottom: 12px; font-weight: 500; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.about-text .highlight { color: var(--maroon); font-weight: 500; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 20px 22px; margin-bottom: 16px; }
.contact-info .info-item .icon { font-size: 1.6rem; }
.contact-info .info-item h4 { color: var(--ink); margin-bottom: 2px; font-size: .95rem; font-weight: 600; }
.contact-info .info-item p { color: var(--muted); font-size: .95rem; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 32px; }
.contact-form label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink); margin: 14px 0 6px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 2px; font-size: .95rem; font-family: var(--sans); background: #fffdf8; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 18px; width: 100%; }
#form-status { margin-top: 12px; text-align: center; font-size: .92rem; min-height: 1.4em; }

/* Bridal page pieces */
.bridal-hero { margin-top: calc(var(--topbar-h) + var(--nav-h)); min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(40,5,5,.62), rgba(40,5,5,.55)), url("bridal/noor-5-flow.png") center 22%/cover no-repeat; color: #fff; padding: 90px 24px 70px; }
.bridal-hero-content { max-width: 760px; }
.bridal-hero .kicker { color: var(--gold-light); }
.bridal-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 500; line-height: 1.12; margin-bottom: 18px; }
.bridal-hero p { font-size: 1.08rem; opacity: .95; max-width: 620px; margin: 0 auto 30px; }
.cities-strip { background: var(--maroon-deep); overflow: hidden; white-space: nowrap; border-bottom: 2px solid var(--gold); padding: 12px 0; }
.cities-track { display: inline-block; animation: marquee 40s linear infinite; }
.cities-track span { color: var(--gold-light); font-size: .92rem; letter-spacing: .1em; margin: 0 22px; text-transform: uppercase; }
.cities-track span::after { content: "·"; margin-left: 44px; opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; max-width: 1000px; margin: 0 auto; }
.city-chip { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 16px 18px; display: flex; flex-direction: column; gap: 2px; text-align: center; transition: transform .2s, box-shadow .2s; }
.city-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(128,0,0,.12); }
.city-chip .city-pin { font-size: 1.2rem; }
.city-chip strong { color: var(--maroon); font-weight: 600; font-size: 1rem; }
.city-chip small { color: var(--muted); font-size: .8rem; }
.retail-note { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: 12px; margin-bottom: 18px; }
.custom-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; }
.custom-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.step-num { min-width: 38px; height: 38px; border-radius: 50%; background: var(--maroon); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.05rem; }
.custom-step h4 { color: var(--maroon); font-weight: 600; margin-bottom: 4px; }
.custom-step p { color: var(--muted); font-size: .94rem; }
.custom-img img { border-radius: 6px; border: 1px solid var(--border); box-shadow: 0 16px 36px rgba(74,13,13,.18); }

/* ============ HANDWRITTEN LOVE NOTE ============ */
.love-note {
  margin-top: 16px;
  background: #F5E6D3;
  border: 1px solid #e2cbac;
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 18px 20px 14px;
  position: relative;
  box-shadow: 0 10px 24px rgba(128,0,0,.1);
}
.love-note::before {
  content: "✦";
  position: absolute; top: -9px; left: 22px;
  background: #F5E6D3; padding: 0 8px;
  color: var(--gold); font-size: .9rem;
}
.love-note p {
  font-family: 'Dancing Script', cursive;
  font-size: 1.28rem; line-height: 1.4;
  color: var(--maroon);
}
.love-note .note-sign {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.05rem; color: var(--muted);
}
.love-note .note-sign .heart { color: var(--maroon); font-size: .95rem; }
.love-note .note-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ============ OUR NEW COLLECTION banner (shop) ============ */
.newcol-wrap { padding-top: calc(var(--topbar-h) + var(--nav-h) + 70px); }
.newcol {
  position: relative;
  display: flex; justify-content: center;
  padding: 90px 150px 90px 40px;
}
.newcol-card {
  position: relative;
  background: #F5E6D3;
  width: min(680px, 80%);
  min-height: 600px;
  border-radius: 4px;
  padding: 54px 48px;
  box-shadow: 0 30px 70px rgba(128,0,0,.14);
}
.newcol-text { position: relative; z-index: 1; }
.newcol-small {
  font-family: var(--sans);
  font-size: .95rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.newcol-big {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 3.9rem);
  font-weight: 700; line-height: 1;
  color: var(--maroon);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .02em;
}
.newcol-sub {
  position: absolute; left: 150px; bottom: 44px;
  font-size: .92rem; color: var(--ink);
  max-width: 260px; margin-top: 0;
}
.newcol-img {
  position: absolute; z-index: 2;
  width: 215px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(74,13,13,.3);
}
.newcol-img img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.newcol-img-top    { top: -40px; right: -120px; }
.newcol-img-bottom { bottom: -40px; left: -34px; }

.newcol-side {
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.newcol-side .star { color: var(--gold); font-size: .95rem; }
.newcol-side .line { width: 1px; height: 60px; background: var(--maroon); opacity: .4; }
.newcol-side .side-text {
  writing-mode: vertical-rl;
  font-size: .82rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--maroon); font-weight: 500;
}

@media (max-width: 900px) {
  .newcol-wrap { padding-top: calc(var(--topbar-h) + var(--nav-h) + 24px); }
  .newcol { padding: 16px 14px 30px; }
  .newcol-card {
    width: 100%;
    min-height: 0;
    display: flex; align-items: center; gap: 16px;
    padding: 22px 20px;
    box-shadow: 0 20px 46px rgba(128,0,0,.14);
  }
  .newcol-text { flex: 1; min-width: 0; }
  .newcol-small { font-size: .8rem; letter-spacing: .24em; margin-left: 8px; }
  .newcol-big { font-size: clamp(1.9rem, 8.5vw, 2.5rem); margin-top: 4px; }
  .newcol-sub {
    position: static;
    margin-top: 14px;
    max-width: 100%;
    font-size: .88rem;
  }
  .newcol-img { width: 96px; border-radius: 16px; }
  .newcol-img-top {
    position: static; order: 2; flex-shrink: 0;
    transform: rotate(3deg);
    margin-top: -34px;
  }
  .newcol-img-bottom {
    position: static; order: 3; flex-shrink: 0;
    transform: rotate(-4deg);
    margin-top: 44px; margin-left: -14px;
  }
  .newcol-side { display: none; }
}

/* ============ 5-ANGLE AUTO SLIDER ============ */
.slider-viewer {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; margin-bottom: 52px;
  display: grid; grid-template-columns: 1.25fr 1fr;
  box-shadow: 0 6px 22px rgba(74,13,13,.08);
}
.slider-stage {
  position: relative; overflow: hidden;
  background: var(--cream-soft);
  aspect-ratio: 2/3;
  cursor: zoom-in;
}
.slider-stage .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .9s ease;
}
.slider-stage .slide.active { opacity: 1; }
.slider-stage .slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 3.2s ease-out;
  transform-origin: var(--zx, 50%) var(--zy, 50%);
}
.slider-stage:hover .slide.active img { transform: scale(1.9); }
.zoom-hint {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  background: rgba(245,241,235,.9); color: var(--maroon);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px; border: 1px solid var(--gold);
}
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(245,241,235,.9); color: var(--maroon);
  border: 1px solid var(--gold); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.slider-stage:hover .slide-arrow { opacity: 1; }
.slide-arrow.prev { left: 12px; }
.slide-arrow.next { right: 12px; }
.slide-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; gap: 7px;
}
.slide-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(245,241,235,.55); cursor: pointer; transition: background .3s, transform .3s;
}
.slide-dots button.active { background: var(--gold); transform: scale(1.3); }
.slide-labels { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.slide-labels span {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px;
  color: var(--muted); transition: all .3s;
}
.slide-labels span.active { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

/* ============ FINDER ============ */
.finder-groups {
  display: flex; flex-direction: column; gap: 22px;
  max-width: 780px; margin: 0 auto 10px;
}
.finder-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.finder-q {
  font-family: var(--serif); font-size: 1.15rem; color: var(--maroon);
  min-width: 150px; text-align: right; font-style: italic;
}
.finder-btn {
  padding: 11px 26px; border-radius: 30px;
  border: 1px solid var(--maroon); background: transparent; color: var(--maroon);
  font-family: var(--sans); font-size: .9rem; cursor: pointer;
  transition: all .25s ease;
}
.finder-btn:hover { background: rgba(128,0,0,.08); }
.finder-btn.active { background: var(--maroon); color: #F5E6D3; box-shadow: 0 8px 20px rgba(128,0,0,.3); }
.finder-result { max-width: 1180px; margin: 20px auto 0; }
.finder-hint { text-align: center; color: var(--muted); font-style: italic; padding: 20px 0; }
.finder-result .products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.finder-result .products .product { animation: finderIn .5s ease both; }
.finder-result .products .product:nth-child(2) { animation-delay: .08s; }
.finder-result .products .product:nth-child(3) { animation-delay: .16s; }
.finder-result .products .product:nth-child(4) { animation-delay: .24s; }
@keyframes finderIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ============ OFFER BAR ============ */
.offer-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--maroon);
  color: #F5E6D3;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 12px 56px 12px 24px;
  box-shadow: 0 -6px 24px rgba(74,13,13,.4);
  transform: translateY(110%);
  transition: transform .5s ease;
}
.offer-bar.show { transform: translateY(0); }
.offer-text { font-size: .92rem; }
.offer-text strong { color: var(--gold-light); }
.offer-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 600; font-size: 1.05rem;
  background: rgba(0,0,0,.25); border: 1px solid var(--gold);
  padding: 5px 14px; border-radius: 4px; color: var(--gold-light);
  letter-spacing: .08em;
}
.offer-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(245,230,211,.7);
  font-size: 1rem; cursor: pointer; padding: 6px;
}
.offer-close:hover { color: #fff; }

/* ============ WA LABEL ============ */
.wa-float { width: auto; border-radius: 30px; padding: 0 18px; gap: 10px; height: 56px; }
.wa-float .wa-label { font-size: .85rem; font-weight: 500; white-space: nowrap; }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }

/* ============ AEMIZA GIRLS ============ */
.girls-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.girl { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 3/4; }
.girl img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.girl:hover img { transform: scale(1.08); }
.girl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 35%, rgba(74,13,13,.92));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; opacity: 0; transition: opacity .4s ease;
}
.girl:hover .girl-overlay { opacity: 1; }
.girl-overlay p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: #F5E6D3; line-height: 1.3; }
.girl-overlay span { font-size: .74rem; color: var(--gold-light); margin-top: 6px; letter-spacing: .06em; }

@media (max-width: 1020px) {
  .girls-grid { grid-template-columns: repeat(3, 1fr); }
  .finder-result .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .slider-viewer { grid-template-columns: 1fr; }
  .finder-q { text-align: center; min-width: 100%; }
  .offer-bar { flex-direction: column; gap: 8px; padding: 12px 48px 12px 16px; text-align: center; }
}
@media (max-width: 640px) {
  .girls-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-result .products { grid-template-columns: 1fr; }
  .offer-text { font-size: .8rem; }
}

/* WhatsApp float + toast */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.cart-toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--maroon); color: var(--cream); padding: 13px 28px; border-radius: 4px; border: 1px solid var(--gold); font-size: .88rem; z-index: 200; opacity: 0; transition: transform .35s ease, opacity .35s ease; }
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-slow { opacity: 0; transform: translateY(70px); transition: opacity 1.4s cubic-bezier(.22,.61,.36,1), transform 1.4s cubic-bezier(.22,.61,.36,1); }
.reveal-slow.visible { opacity: 1; transform: translateY(0); }

/* ============ 5. FOOTER (maroon + beige luxury) ============ */
footer {
  margin-top: 90px;
  background: var(--maroon);
  color: #FFFEFB;
  position: relative;
  overflow: hidden;
  padding: 76px 24px 44px;
  text-align: center;
}
.footer-big {
  position: absolute; left: 50%; bottom: -4vw;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 19vw; font-weight: 600; line-height: .8;
  color: #9B1B1B; opacity: .9;
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .02em;
}
footer > *:not(.footer-big) { position: relative; z-index: 1; }
.footer-script {
  font-family: var(--script);
  font-size: 3.6rem;
  color: #F5E6D3;
  line-height: 1.1;
  margin-bottom: 10px;
}
footer .foot-contact { font-size: .92rem; color: rgba(245,230,211,.85); margin-bottom: 6px; }
footer .foot-contact a { color: var(--gold-light); }
footer .foot-links { display: flex; gap: 34px; justify-content: center; margin: 26px 0 30px; flex-wrap: wrap; }
footer .foot-links a { font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: #F5E6D3; opacity: .85; transition: opacity .2s, color .2s; }
footer .foot-links a:hover { opacity: 1; color: var(--gold-light); }
footer .foot-note { font-size: .84rem; color: rgba(245,230,211,.6); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .products, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 860px) {
  .collections, .cols3, .band-cards, .reviews { grid-template-columns: 1fr; }
  .split3 { grid-template-columns: 1fr; gap: 30px; }
  .split-right { text-align: left; }
  .finale { grid-template-columns: 1fr; }
  .collage { height: 420px; }
  .angle-viewer { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .custom-grid { grid-template-columns: 1fr; }
  .float-left2, .float-right2 { display: none; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: calc(var(--topbar-h) + var(--nav-h)); right: 0; left: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--maroon); box-shadow: 0 10px 20px rgba(74,13,13,.3);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { padding: 14px 24px; border-top: 1px solid rgba(245,241,235,.15); }
  .products, .shop-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .newsletter form { flex-direction: column; }
  .btn-outline-light { margin-left: 0; margin-top: 10px; }
  .float-img { display: none; }
  .footer-big { font-size: 24vw; }
  section { padding: 70px 20px 20px; }
}
