/* ============================================================
   AL Creations â€” Redesign Preview
   Custom design system (no framework dependency)
   Aesthetic: premium modest fashion â€” plum, gold, cream
   ============================================================ */

:root {
  --plum: #4a1f3d;
  --plum-dark: #35132b;
  --gold: #c9a24b;
  --gold-soft: #e7cf94;
  --cream: #faf6ef;
  --ink: #22202a;
  --muted: #6b6570;
  --line: #ece5da;
  --success: #1f8a5b;
  --danger: #c0392b;
  --shadow-sm: 0 1px 3px rgba(31, 20, 43, .08);
  --shadow-md: 0 8px 24px rgba(31, 20, 43, .10);
  --shadow-lg: 0 18px 48px rgba(31, 20, 43, .16);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.filter-updating { scroll-behavior: auto !important; overflow-anchor: none; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
}
h1, h2, h3, h4 { font-family: "Cormorant Garamond", "Georgia", serif; font-weight: 600; line-height: 1.15; margin: 0 0 .4em; letter-spacing: .2px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  border: 1px solid transparent; border-radius: 999px; padding: 12px 24px; font-weight: 600; font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s; font-family: inherit; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--plum); color: #fff; }
.btn-primary:hover { background: var(--plum-dark); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b8892f); color: #2a1c07; }
.btn-gold:hover { box-shadow: 0 8px 22px rgba(201,162,75,.4); }
.btn-outline { background: transparent; border-color: var(--plum); color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: #fff; }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb257; box-shadow: 0 8px 22px rgba(37,211,102,.35); }

/* ---------- Announcement bar ---------- */
.announce { background: var(--plum-dark); color: var(--gold-soft); text-align: center; font-size: 13px; padding: 8px 12px; letter-spacing: .3px; }
.announce b { color: #fff; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(250,246,239,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 52px; width: auto; max-width: 190px; object-fit: contain; display: block; }
.footer-logo { display: inline-flex; background: #fff; padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.footer-logo img { height: 46px; width: auto; max-width: 190px; object-fit: contain; display: block; }
@media (max-width: 560px) { .brand-logo { height: 42px; max-width: 150px; } }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 60%, #9c7526);
  display: grid; place-items: center; color: var(--plum-dark); font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 20px; box-shadow: var(--shadow-sm); }
.brand-name { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 700; color: var(--plum); line-height: 1; }
.brand-sub { font-size: 10px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }
.nav { display: flex; gap: 22px; margin-left: 12px; }
.nav a { font-size: 14px; font-weight: 500; padding: 6px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .25s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); cursor: pointer; transition: .2s; }
.icon-btn:hover { border-color: var(--plum); color: var(--plum); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--gold); color: #2a1c07; font-size: 11px; font-weight: 700; min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; }
.search-wrap { flex: 1; max-width: 420px; position: relative; }
.search-wrap input { width: 100%; padding: 11px 16px 11px 42px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 14px; font-family: inherit; }
.search-wrap input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15); }
.search-wrap svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.hamburger { display: none; }

/* ---------- Mobile drawer menu ---------- */
.m-overlay { position: fixed; inset: 0; background: rgba(20,8,18,.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 130; }
.m-overlay.show { opacity: 1; visibility: visible; }
.m-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 86%; max-width: 350px; background: var(--cream); z-index: 131; transform: translateX(110%); transition: transform .32s cubic-bezier(.2,.8,.2,1); padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-lg); overflow-y: auto; }
.m-drawer.open { transform: translateX(0); }
.m-drawer-top { display: flex; align-items: center; justify-content: space-between; }
.m-search { position: relative; }
.m-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.m-search input { width: 100%; padding: 12px 16px 12px 42px; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; font-size: 15px; }
.m-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15); }
.m-nav { display: flex; flex-direction: column; }
.m-nav a { padding: 15px 6px; border-bottom: 1px solid var(--line); font-weight: 500; font-size: 16px; color: var(--ink); }
.m-nav a:hover { color: var(--plum); }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(120deg, var(--plum-dark), var(--plum) 55%, #6a3457); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0l8 22 22 8-22 8-8 22-8-22-22-8 22-8z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.02fr; gap: 46px; align-items: center; width: 100%; padding: 64px 20px; max-width: var(--maxw); margin: 0 auto; }
.hero-inner > * { min-width: 0; }
.hero-eyebrow { display: inline-block; color: var(--gold-soft); letter-spacing: 4px; font-size: 12px; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { font-size: 58px; color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-soft); font-style: italic; }
.hero p { font-size: 17px; color: #e9dfe6; max-width: 480px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-collage { position: relative; height: 460px; }
.hero-collage img { position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.12); }
.hero-collage .c1 { width: 55%; height: 78%; left: 0; top: 8%; z-index: 2; }
.hero-collage .c2 { width: 46%; height: 60%; right: 0; top: 0; z-index: 3; }
.hero-collage .c3 { width: 42%; height: 46%; right: 6%; bottom: 0; z-index: 4; }
.hero-badge { position: absolute; z-index: 5; bottom: 12%; left: -14px; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
.hero-badge b { color: var(--plum); font-size: 18px; }

/* Hero reel (replaces the collage) */
.hero-reel-wrap { position: relative; width: 100%; min-width: 0; max-width: 620px; margin-left: auto; }
.hero-reel-wrap::before { content: ""; position: absolute; inset: -10% -8% 2% 8%; background: radial-gradient(circle at 60% 30%, rgba(201,162,75,.4), transparent 66%); filter: blur(38px); z-index: 0; }
.hero-reel { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/11; border-radius: 24px; overflow: hidden; background: #1a0f18; box-shadow: 0 34px 80px rgba(0,0,0,.5); border: 3px solid rgba(231,207,148,.4); }
.hero-reel .stage { border-radius: 20px; }
.hero-badge { position: absolute; z-index: 4; left: -16px; bottom: 52px; }
.reel-mini-cta { position: relative; z-index: 3; display: flex; width: max-content; margin: 16px auto 0; align-items: center; gap: 7px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff; padding: 9px 20px; border-radius: 999px; font-size: 13px; font-weight: 500; backdrop-filter: blur(4px); transition: .2s; }
.reel-mini-cta:hover { background: #fff; color: var(--plum); border-color: #fff; }
.reel-tap { position: absolute; inset: 0; z-index: 6; display: grid; place-items: center; cursor: pointer; background: rgba(14,7,16,.35); transition: opacity .35s; }
.reel-tap .rp { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--plum); display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.4); transition: transform .2s; }
.reel-tap:hover .rp { transform: scale(1.06); }
@media (max-width: 860px) { .hero-reel-wrap { max-width: 420px; margin: 0 auto; } }

/* ---------- Trust strip ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: var(--maxw); margin: 0 auto; padding: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-item .ti-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--plum); flex: none; }
.trust-item b { display: block; font-size: 14px; }
.trust-item small { color: var(--muted); font-size: 12px; }

/* ---------- Section headings ---------- */
.section { padding: 58px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head .eyebrow { color: var(--gold); letter-spacing: 3px; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.section-head h2 { font-size: 40px; margin-top: 6px; }
.section-head p { color: var(--muted); }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); background: #ddd; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(53,19,43,.82), rgba(53,19,43,.05) 55%); }
.cat-card .cat-meta { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; color: #fff; }
.cat-card .cat-meta h3 { color: #fff; font-size: 24px; margin: 0; }
.cat-card .cat-meta span { font-size: 13px; color: var(--gold-soft); }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card { min-width: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s; display: flex; flex-direction: column; position: relative; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #f0ebe2; display: block; }
.card-media img,
.card-media video.card-video { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .6s; display: block; }
.card-media img.alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-media img.alt { opacity: 1; }
.card:hover .card-media img.main { transform: scale(1.04); }
.card-media-empty { width: 100%; height: 100%; background: linear-gradient(145deg, #ebe4d8, #d9d0c2); }
.card-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(45, 27, 46, .72); color: #fff;
  display: grid; place-items: center; font-size: 14px; pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.card:hover .card-play { opacity: 0; transition: opacity .2s; }
.badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: var(--plum); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; letter-spacing: .3px; }
.badge.sale { background: var(--gold); color: #2a1c07; left: auto; right: 10px; }
.wish { position: absolute; bottom: 10px; right: 10px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: .25s; border: none; cursor: pointer; color: var(--plum); }
.card:hover .wish { opacity: 1; transform: translateY(0); }
.wish.active { color: var(--danger); }
.card-body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; }
.card-title { font-family: inherit; font-size: 15px; font-weight: 600; margin: 3px 0 6px; line-height: 1.3; overflow-wrap: anywhere; }
.stars { color: var(--gold); font-size: 12px; display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars small { color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { font-size: 18px; font-weight: 700; color: var(--plum); }
.mrp { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.off { font-size: 12px; color: var(--success); font-weight: 600; }
.card-actions { margin-top: 12px; }

/* ---------- Shop layout ---------- */
.shop-wrap { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 30px; align-items: start; padding: 30px 0 60px; }
.filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px 18px;
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(87,35,70,.25) transparent;
  box-shadow: 0 10px 35px rgba(59,34,48,.055);
  overflow-anchor: none;
  overscroll-behavior: contain;
}
.filters::-webkit-scrollbar { width: 5px; }
.filters::-webkit-scrollbar-thumb { background: rgba(87,35,70,.22); border-radius: 999px; }
.filter-head {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}
.filter-head h3 { margin: 2px 0 0; font: 600 21px/1.15 "Cormorant Garamond", serif; color: var(--plum); }
.filter-kicker { display: block; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.filter-close {
  display: none;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.filter-block { border-bottom: 1px solid var(--line); padding: 17px 0; }
.filter-block:last-child { border-bottom: none; }
.filter-block h4 { font-family: inherit; font-size: 12px; text-transform: uppercase; letter-spacing: 1.1px; color: var(--muted); margin: 0 0 11px; }
.style-filter-block {
  margin: 0 -9px;
  padding: 17px 10px;
  background: linear-gradient(135deg, rgba(87, 35, 70, .06), rgba(199, 157, 75, .08));
  border: 1px solid rgba(87,35,70,.06);
  border-radius: 12px;
}
.style-filter-block h4 { color: var(--plum); margin-bottom: 3px; font-size: 14px; }
.filter-help { margin: 0 0 10px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.style-filter-block .check { font-weight: 500; }
.check { display: flex; align-items: center; gap: 10px; min-height: 36px; padding: 6px 5px; border-radius: 8px; font-size: 13px; cursor: pointer; transition: background .18s, color .18s; }
.check:hover { background: var(--cream); color: var(--plum); }
.check:has(input:checked) { color: var(--plum); font-weight: 600; background: rgba(87,35,70,.055); }
.check input { accent-color: var(--plum); width: 18px; height: 18px; flex: none; cursor: pointer; }
.check .cnt { margin-left: auto; color: var(--muted); font-size: 12px; }
.filter-empty { margin: 0; padding: 10px; border-radius: 8px; background: var(--cream); color: var(--muted); font-size: 12px; line-height: 1.5; }
.filter-footer {
  position: sticky;
  bottom: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 -18px -18px;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}
.filter-footer .btn { flex: 1; padding: 10px 12px; font-size: 12px; }
.filter-clear { padding: 8px 4px; border: 0; background: none; color: var(--muted); font-family: inherit; font-size: 12px; font-weight: 600; line-height: 1; cursor: pointer; }
.filter-clear:hover { color: var(--plum); text-decoration: underline; }
.filter-backdrop { display: none; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; }
.swatch.active { box-shadow: 0 0 0 2px var(--plum); }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; }
.shop-toolbar { display: flex; align-items: center; gap: 14px; min-height: 44px; margin-bottom: 16px; flex-wrap: wrap; }
.shop-toolbar .count { color: var(--muted); font-size: 13px; font-weight: 500; }
.shop-toolbar select { margin-left: auto; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-family: inherit; font-size: 14px; cursor: pointer; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 0; margin-bottom: 18px; overflow-anchor: none; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 13px; }
.chip button { border: none; background: none; cursor: pointer; color: var(--muted); font-size: 15px; line-height: 1; }
.chip.clear { background: var(--plum); color: #fff; cursor: pointer; border-color: var(--plum); }
.prod-grid { overflow-anchor: none; }
.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.filter-toggle { display: none; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.crumb a:hover { color: var(--plum); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 26px 0 60px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: #f0ebe2; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.gallery-main img,
.gallery-main video { width: 100%; height: 100%; object-fit: cover; display: block; background: #111; }
.thumbs .thumb-vid {
  display: grid; place-items: center; background: #2d1b2e; color: #fff;
  font-size: 12px; font-weight: 600; cursor: pointer; border: 2px solid transparent;
}
.thumbs .thumb-vid.active { border-color: var(--plum, #2d1b2e); }
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs img { width: 74px; height: 92px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.thumbs img.active { border-color: var(--plum); }
.pdp-info h1 { font-size: 38px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 12px 0; }
.pdp-price .price { font-size: 30px; }
.pdp-price .off { font-size: 14px; }
.opt-group { margin: 20px 0; }
.opt-group label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); display: block; margin-bottom: 10px; }
.size-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.size-opts button { min-width: 48px; padding: 10px 14px; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; font-family: inherit; font-weight: 500; transition: .2s; }
.size-opts button.active { border-color: var(--plum); background: var(--plum); color: #fff; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 40px; height: 44px; border: none; background: #fff; font-size: 18px; cursor: pointer; color: var(--plum); }
.qty span { width: 44px; text-align: center; font-weight: 600; }
.pdp-cta { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.pdp-cta .btn { flex: 1; min-width: 180px; }
.pdp-feat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 22px; }
.pdp-feat div { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); }
.pdp-feat svg { color: var(--plum); flex: none; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 26px 0 70px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; margin-bottom: 14px; align-items: center; }
.cart-item img,
.cart-item video { width: 92px; height: 112px; object-fit: cover; border-radius: 8px; background: #f0ebe3; }
.review-item img,
.review-item video { width: 62px; height: 76px; object-fit: cover; border-radius: 8px; background: #f0ebe3; }
.mini-image { position: relative; }
.mini-image img,
.mini-image video { width: 50px; height: 61px; object-fit: cover; border-radius: 7px; display: block; background: #f0ebe3; }
.mini-image .thumb-fallback,
.cart-item .thumb-fallback,
.review-item .thumb-fallback {
  width: 50px; height: 61px; border-radius: 7px; background: #efe8df;
  display: grid; place-items: center;
}
.cart-item .thumb-fallback { width: 92px; height: 112px; }
.review-item .thumb-fallback { width: 62px; height: 76px; }
.mini-image span { position: absolute; top: -6px; right: -5px; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--plum); color: #fff; font-size: 9px; }
.cart-item .ci-title { font-weight: 600; }
.cart-item .ci-meta { font-size: 13px; color: var(--muted); }
.cart-item .rm { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 13px; margin-top: 6px; }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 92px; }
.summary h3 { font-size: 24px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.sum-row.total { border-top: 1px dashed var(--line); margin-top: 10px; padding-top: 14px; font-size: 18px; font-weight: 700; color: var(--plum); }
.coupon { display: flex; gap: 8px; margin: 14px 0; }
.coupon input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; }

/* ---------- Checkout ---------- */
.checkout-page { padding-bottom: 72px; }
.checkout-title { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 25px 0 20px; }
.checkout-title .crumb { padding: 0 0 8px; }
.checkout-title h1 { margin: 0; font-size: 42px; color: var(--plum); }
.checkout-title p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.checkout-secure { display: flex; align-items: center; gap: 8px; color: var(--success); font-size: 13px; font-weight: 600; }
.checkout-secure span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: var(--success); }
.checkout-progress { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); max-width: 700px; margin: 8px 0 32px; padding: 0; list-style: none; }
.checkout-progress::before { content: ""; position: absolute; top: 17px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line); }
.checkout-progress li { position: relative; z-index: 1; display: grid; justify-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.checkout-progress li span { display: grid; place-items: center; width: 35px; height: 35px; border: 2px solid var(--line); border-radius: 50%; background: var(--cream); font-weight: 700; }
.checkout-progress li.active, .checkout-progress li.complete { color: var(--plum); }
.checkout-progress li.active span { border-color: var(--plum); background: var(--plum); color: #fff; box-shadow: 0 0 0 5px rgba(87,35,70,.1); }
.checkout-progress li.complete span { border-color: var(--success); background: var(--success); color: transparent; position: relative; }
.checkout-progress li.complete span::after { content: "\2713"; color: #fff; position: absolute; font-size: 16px; line-height: 1; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 30px; align-items: start; }
.checkout-main { display: grid; gap: 14px; }
.checkout-step { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 6px 24px rgba(52,31,43,.04); }
.checkout-step-head { display: flex; align-items: center; gap: 13px; min-height: 82px; padding: 17px 20px; }
.checkout-step-head .step-number { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-weight: 700; font-size: 13px; }
.checkout-step-head h2 { margin: 0; color: var(--plum); font: 600 24px/1.1 "Cormorant Garamond", serif; }
.checkout-step-head p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.checkout-step.active { border-color: rgba(87,35,70,.35); box-shadow: 0 10px 32px rgba(87,35,70,.08); }
.checkout-step.active .step-number { border-color: var(--plum); background: var(--plum); color: #fff; }
.checkout-step.complete .step-number { border-color: var(--success); background: var(--success); color: transparent; position: relative; }
.checkout-step.complete .step-number::after { content: "\2713"; position: absolute; color: #fff; font-size: 15px; line-height: 1; }
.checkout-step.locked { opacity: .72; }
.checkout-step:not(.active) .checkout-form { display: none; }
.step-edit { margin-left: auto; padding: 7px 11px; border: 0; border-radius: 7px; background: var(--cream); color: var(--plum); font-family: inherit; font-size: 12px; font-weight: 600; line-height: 1; cursor: pointer; }
.checkout-form { padding: 5px 20px 22px 67px; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding-top: 19px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span { color: var(--ink); font-size: 12px; font-weight: 600; }
.field small { color: var(--muted); font-weight: 400; }
.field input, .field select { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: #fff; color: var(--ink); font-family: inherit; font-size: 14px; font-weight: 400; line-height: 1.3; transition: border .2s, box-shadow .2s; }
.field input:focus, .field select:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(87,35,70,.09); }
.phone-field { display: flex; align-items: center; min-height: 48px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: border .2s, box-shadow .2s; }
.phone-field:focus-within { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(87,35,70,.09); }
.phone-field b { padding: 0 12px; color: var(--muted); border-right: 1px solid var(--line); font-size: 13px; }
.phone-field input { min-height: 46px; border: 0; box-shadow: none !important; }
.save-check, .terms-check { display: flex; align-items: flex-start; gap: 9px; margin: 15px 0; color: var(--muted); font-size: 12px; cursor: pointer; }
.save-check input, .terms-check input { width: 18px; height: 18px; flex: none; accent-color: var(--plum); }
.checkout-next { min-width: 270px; margin-top: 3px; }
.address-kind { display: flex; align-items: center; gap: 18px; margin: 16px 0; padding: 0; border: 0; }
.address-kind legend { margin-bottom: 8px; font-size: 12px; font-weight: 600; }
.address-kind label { display: flex; align-items: center; gap: 7px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; cursor: pointer; }
.address-kind input { accent-color: var(--plum); }
.checkout-subtitle { margin: 19px 0 10px; color: var(--ink); font-size: 13px; }
.payment-title { margin-top: 24px; }
.choice-list { display: grid; gap: 9px; }
.choice-card { display: grid; grid-template-columns: auto 42px minmax(0, 1fr) auto; align-items: center; gap: 11px; min-height: 68px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: .2s; }
.choice-card:hover { border-color: rgba(87,35,70,.45); background: rgba(87,35,70,.018); }
.choice-card.selected { border-color: var(--plum); background: rgba(87,35,70,.04); box-shadow: 0 0 0 1px var(--plum); }
.choice-card > input { width: 18px; height: 18px; accent-color: var(--plum); }
.choice-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 9px; background: var(--cream); color: var(--plum); font-size: 11px; font-weight: 700; }
.choice-card b, .choice-card small { display: block; }
.choice-card b { font-size: 13px; }
.choice-card small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.choice-card strong { color: var(--plum); font-size: 13px; }
.recommended { padding: 4px 8px; border-radius: 999px; background: #e7f6ed; color: var(--success); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.payment-gateway-note { margin: 13px 0 4px; padding: 12px 14px; border-radius: 10px; background: #f4f7fb; color: #45546a; }
.payment-gateway-note b { font-size: 12px; }
.payment-gateway-note p { margin: 3px 0 0; font-size: 10px; line-height: 1.5; }
.review-address { display: flex; justify-content: space-between; gap: 15px; margin-top: 18px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; }
.review-label { display: block; margin-bottom: 4px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.review-address b { font-size: 13px; }
.review-address p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.review-address button { align-self: start; border: 0; background: none; color: var(--plum); font-size: 11px; font-weight: 600; cursor: pointer; }
.review-items { display: grid; margin: 13px 0; }
.review-item { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.review-item b, .review-item small, .review-item span { display: block; }
.review-item b { font-size: 12px; }
.review-item small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.review-item span { margin-top: 6px; color: var(--success); font-size: 10px; font-weight: 600; }
.review-item strong { color: var(--plum); font-size: 13px; }
.place-order { margin-top: 8px; }
.checkout-legal { margin: 9px 0 0; color: var(--muted); text-align: center; font-size: 9px; }
.checkout-summary { position: sticky; top: 92px; overflow: hidden; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 40px rgba(52,31,43,.07); }
.checkout-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.checkout-summary-head h2 { margin: 0; color: var(--plum); font-size: 26px; }
.checkout-summary-head a { color: var(--plum); font-size: 11px; font-weight: 600; }
.checkout-mini-items { max-height: 225px; overflow-y: auto; padding: 5px 0; }
.checkout-mini-item { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.checkout-mini-item b { display: block; font-size: 10px; line-height: 1.35; }
.checkout-mini-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.checkout-mini-item strong { color: var(--plum); font-size: 11px; }
.checkout-totals { padding: 12px 0; }
.checkout-sum-row { display: flex; justify-content: space-between; gap: 15px; padding: 6px 0; color: var(--muted); font-size: 11px; }
.checkout-sum-row b { color: var(--ink); }
.checkout-sum-row.saving b { color: var(--success); }
.checkout-sum-row.grand { margin-top: 7px; padding-top: 13px; border-top: 1px dashed var(--line); color: var(--plum); font-size: 15px; font-weight: 700; }
.checkout-sum-row.grand b { color: var(--plum); font-size: 18px; }
.checkout-trust { display: flex; justify-content: space-between; gap: 7px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.checkout-empty { padding: 100px 20px; }
.order-success { max-width: 760px; margin: 42px auto 70px; padding: 50px; border: 1px solid var(--line); border-radius: 22px; background: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.success-check { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%; background: var(--success); color: #fff; font-size: 36px; box-shadow: 0 0 0 10px #e8f6ee; }
.success-kicker { color: var(--success); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.order-success h1 { margin: 8px 0; color: var(--plum); font-size: 42px; }
.order-success > p { color: var(--muted); }
.success-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin: 28px 0; border: 1px solid var(--line); border-radius: 12px; background: var(--line); }
.success-details div { padding: 16px 10px; background: #fff; }
.success-details small, .success-details b { display: block; }
.success-details small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.success-details b { margin-top: 5px; color: var(--plum); font-size: 12px; }
.success-actions { display: flex; justify-content: center; gap: 10px; }

/* ---------- Reel band (homepage video section) ---------- */
.reel-band { position: relative; background: radial-gradient(140% 120% at 80% 0%, #6a3457 0%, var(--plum) 40%, var(--plum-dark) 100%); color: #fff; overflow: hidden; }
.reel-band::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0l8 22 22 8-22 8-8 22-8-22-22-8 22-8z' fill='%23ffffff' fill-opacity='0.035'/%3E%3C/svg%3E"); }
.reel-band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 380px; gap: 54px; align-items: center; padding: 70px 20px; }
.reel-copy .eyebrow { color: var(--gold-soft); letter-spacing: 4px; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.reel-copy h2 { font-size: 46px; color: #fff; margin: 8px 0 14px; }
.reel-copy h2 em { color: var(--gold-soft); font-style: italic; }
.reel-copy p { color: #eaddE6; max-width: 460px; font-size: 16px; }
.reel-points { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; max-width: 440px; }
.reel-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #f0e6ee; }
.reel-points li svg { color: var(--gold-soft); flex: none; }
.reel-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Phone mockup */
.phone { justify-self: center; position: relative; width: 300px; max-width: 78vw; aspect-ratio: 9/19; background: #120a10; border-radius: 42px; padding: 12px; box-shadow: 0 40px 90px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 116px; height: 26px; background: #120a10; border-radius: 0 0 16px 16px; z-index: 15; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #1a0f18; }
.phone-glow { position: absolute; inset: -30% -10% auto -10%; height: 60%; background: radial-gradient(circle, rgba(201,162,75,.35), transparent 70%); filter: blur(30px); z-index: 1; pointer-events: none; }
.reel-tap { position: absolute; inset: 0; z-index: 18; display: grid; place-items: center; cursor: pointer; background: rgba(14,7,16,.35); transition: opacity .3s; }
.reel-tap .rp { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--plum); display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.4); }

@media (max-width: 860px) {
  .reel-band-inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .reel-copy p, .reel-points { margin-left: auto; margin-right: auto; }
  .reel-points li { justify-content: center; }
  .reel-cta-row { justify-content: center; }
  .reel-copy h2 { font-size: 36px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--plum-dark); color: #d9ccd4; margin-top: 20px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding: 54px 20px 30px; max-width: var(--maxw); margin: 0 auto; }
.footer h4 { color: #fff; font-family: inherit; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer a { display: block; padding: 5px 0; font-size: 14px; color: #d9ccd4; }
.footer a:hover { color: var(--gold-soft); }
.footer-brand .brand-name { color: #fff; }
.footer p { font-size: 14px; color: #b8a7b3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 18px; font-size: 13px; color: #a693a1; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-lg); z-index: 200; display: flex; align-items: center; gap: 10px; transition: transform .35s cubic-bezier(.2,.9,.3,1.2); font-size: 14px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--gold-soft); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 46px; }
  .cat-grid, .prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .search-wrap { display: none; }
  .hamburger { display: grid; }
  .m-drawer { width: 80%; max-width: 310px; }
  .hero-inner { grid-template-columns: 1fr; gap: 26px; padding: 38px 20px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-reel-wrap { order: -1; margin: 0 auto; }
  .hero-collage { height: 340px; }
  .section { padding: 44px 0; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .shop-wrap { grid-template-columns: minmax(0, 1fr); gap: 0; transition: grid-template-columns .25s ease; }
  .shop-wrap > div:last-child { min-width: 0; }
  .shop-wrap.filter-open { grid-template-columns: 180px minmax(0, 1fr); gap: 14px; }
  .filters {
    display: none;
    position: sticky;
    top: 82px;
    inset: auto;
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 100px);
    z-index: 5;
    margin: 0;
    padding: 0 10px 12px;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    border-width: 1px;
    border-radius: 14px;
    transform: none;
    box-shadow: 0 8px 26px rgba(52,31,43,.07);
  }
  .filters.open {
    display: block;
  }
  .filters .filter-head { padding: 13px 0 11px; }
  .filters .filter-kicker { display: none; }
  .filters .filter-head h3 { font-size: 18px; }
  .filters .filter-close { display: grid; place-items: center; width: 32px; height: 32px; font-size: 20px; }
  .filters .filter-block { padding: 12px 0; }
  .filters .filter-block h4 { margin-bottom: 7px; font-size: 10px; letter-spacing: .8px; }
  .filters .filter-help { margin-bottom: 6px; font-size: 9px; }
  .filters .style-filter-block { margin: 0 -4px; padding: 12px 5px; border-radius: 9px; }
  .filters .style-filter-block h4 { font-size: 11px; }
  .filters .check { min-height: 32px; gap: 6px; padding: 5px 2px; font-size: 11px; line-height: 1.25; }
  .filters .check input { width: 16px; height: 16px; }
  .filters .check .cnt { font-size: 9px; }
  .filters .price-inputs { display: grid; grid-template-columns: 1fr; gap: 5px; }
  .filters .price-inputs span { display: none; }
  .filters .price-inputs input { min-width: 0; padding: 8px; font-size: 10px; }
  .filters .filter-footer { display: grid; gap: 7px; margin: 0 -10px -12px; padding: 10px; }
  .filters .filter-footer .btn { min-width: 0; width: 100%; padding: 9px 5px; font-size: 9px; }
  .filters .filter-clear { order: 2; font-size: 9px; }
  .shop-wrap.filter-open .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .shop-wrap.filter-open .shop-toolbar { align-items: stretch; }
  .shop-wrap.filter-open .shop-toolbar .filter-toggle { flex: 1 1 100%; }
  .shop-wrap.filter-open .shop-toolbar select { margin-left: 0; font-size: 11px; }
  .filter-backdrop, .filter-backdrop.show { display: none; }
  body.filters-visible { overflow: auto; }
  .filter-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .container { padding: 0 14px; }
  .announce { font-size: 11px; padding: 7px 10px; }
  .header-inner { padding: 11px 14px; gap: 10px; }
  .icon-btn { width: 40px; height: 40px; }
  .header-actions > a:first-child { display: none; }

  /* bigger, tap-friendly buttons */
  .btn { padding: 13px 22px; font-size: 15px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }

  /* hero */
  .hero-inner { padding: 30px 16px; gap: 22px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; }
  .hero h1 { font-size: 34px; margin-bottom: 14px; }
  .hero p { font-size: 15px; margin-bottom: 22px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-reel-wrap { width: 100%; max-width: 100%; }
  .hero-reel { aspect-ratio: 4/5; border-radius: 18px; }
  .hero-reel .cap { padding-inline: 6%; }
  .hero-reel .headline { font-size: clamp(24px, 7cqw, 32px) !important; overflow-wrap: anywhere; }
  .hero-reel .sub { font-size: clamp(10px, 2.8cqw, 13px); line-height: 1.45; }
  .hero-reel .eyebrow { font-size: 9px; letter-spacing: 3px; }
  .hero-reel .reel-logo { max-width: 46%; height: auto; max-height: 70px; }
  .hero-badge { transform: scale(.92); left: -6px; bottom: 56px; }

  /* sections tighter */
  .cat-grid, .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .section { padding: 34px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: 30px; }

  /* clean mobile shop controls */
  .crumb { padding-top: 12px; }
  .shop-wrap { padding-top: 18px; }
  .shop-toolbar { gap: 10px; margin-bottom: 14px; }
  .shop-toolbar .filter-toggle { order: 1; flex: 1 1 0; width: 0; min-width: 0; justify-content: center; min-height: 46px; padding-inline: 10px; font-size: 13px; }
  .shop-toolbar select { order: 2; flex: 1 1 0; width: 0; min-width: 0; min-height: 46px; margin-left: 0; font-size: 11px; padding: 10px 8px; }
  .shop-toolbar .count { order: 3; width: 100%; padding-left: 2px; }
  .chips { gap: 6px; margin-bottom: 14px; }
  .chip { padding: 7px 10px; font-size: 12px; }
  .filters { width: 100%; border-radius: 14px; }
  .check { min-height: 44px; padding: 8px 6px; font-size: 14px; }
  .check input { width: 20px; height: 20px; }
  .filter-footer { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .card-body { padding: 11px 11px 13px; }
  .card-cat { font-size: 9px; letter-spacing: .7px; }
  .card-title { font-size: 13px; line-height: 1.32; }
  .stars { font-size: 10px; gap: 3px; margin-bottom: 6px; }
  .stars small { font-size: 8px; }
  .price-row { flex-wrap: wrap; gap: 4px 6px; }
  .price { font-size: 16px; }
  .mrp, .off { font-size: 9px; }
  .card-actions { margin-top: 9px; }
  .card-actions .btn { min-height: 42px; padding: 9px 6px; font-size: 12px; }

  /* one-column, tap-friendly checkout */
  .checkout-page { padding-bottom: 42px; }
  .checkout-title { align-items: flex-start; padding: 18px 0 15px; }
  .checkout-title h1 { font-size: 31px; }
  .checkout-title p { font-size: 12px; }
  .checkout-secure { display: none; }
  .checkout-progress { margin: 4px 0 22px; }
  .checkout-progress::before { top: 15px; }
  .checkout-progress li { font-size: 9px; }
  .checkout-progress li span { width: 31px; height: 31px; }
  .checkout-layout { gap: 14px; }
  .checkout-summary { padding: 16px; border-radius: 14px; }
  .checkout-summary-head h2 { font-size: 23px; }
  .checkout-mini-items { max-height: 150px; }
  .checkout-step { border-radius: 14px; }
  .checkout-step-head { min-height: 72px; padding: 14px; gap: 10px; }
  .checkout-step-head .step-number { width: 31px; height: 31px; }
  .checkout-step-head h2 { font-size: 21px; }
  .checkout-step-head p { font-size: 10px; }
  .checkout-form { padding: 4px 14px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 13px; padding-top: 15px; }
  .field.full { grid-column: auto; }
  .field input, .field select, .phone-field { min-height: 50px; }
  .checkout-next { width: 100%; min-width: 0; }
  .choice-card { grid-template-columns: auto 38px minmax(0, 1fr) auto; min-height: 72px; padding: 10px; gap: 8px; }
  .choice-icon { width: 36px; height: 36px; }
  .recommended { display: none; }
  .review-address { padding: 12px; }
  .review-item { grid-template-columns: 54px 1fr; }
  .review-item img { width: 54px; height: 67px; }
  .review-item > strong { grid-column: 2; margin-top: -15px; }
  .checkout-trust { font-size: 7px; }
  .order-success { margin: 24px 0 45px; padding: 35px 18px; }
  .order-success h1 { font-size: 32px; }
  .success-details { grid-template-columns: 1fr; }
  .success-actions { flex-direction: column; }
  .success-actions .btn { width: 100%; }

  /* product detail + cart tap targets */
  .pdp-cta .btn { min-width: 100%; }
  .size-opts button { min-width: 52px; padding: 12px 16px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px; padding: 40px 16px 24px; }
}
@media (max-width: 460px) {
  .shop-wrap.filter-open { grid-template-columns: 145px minmax(0, 1fr); gap: 8px; }
  .shop-wrap.filter-open .prod-grid { grid-template-columns: minmax(0, 1fr); }
  .shop-wrap.filter-open .shop-toolbar select { display: none; }
  .shop-wrap.filter-open .shop-toolbar .count { font-size: 10px; }
  .shop-wrap.filter-open .chip { max-width: 100%; padding: 6px 8px; font-size: 10px; }
}

/* Kids Abaya size chart on PDP */
.size-guide { margin: 8px 0 18px; }
.size-guide > label { display:block; font-weight:600; font-size:14px; margin-bottom:2px; }
.size-guide-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid rgba(0,0,0,.08); border-radius:12px; }
.size-chart { width:100%; border-collapse:collapse; font-size:13px; min-width:420px; }
.size-chart th, .size-chart td { padding:10px 12px; text-align:left; border-bottom:1px solid rgba(0,0,0,.06); white-space:nowrap; }
.size-chart th { background:#f7f4f1; font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.03em; color:#6b5f5a; }
.size-chart tbody tr.active { background:rgba(122,58,90,.08); }
.size-chart tbody tr.active td { font-weight:500; }
.size-opts { display:flex; flex-wrap:wrap; gap:8px; }

/* ---------- Custom · Hajj & Umrah (homepage) ---------- */
.custom-section {
  position: relative;
  padding: 72px 0 64px;
  color: #f7f1ea;
  overflow: hidden;
}
.custom-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(53,19,43,.94) 0%, rgba(74,31,61,.88) 45%, rgba(42,28,22,.92) 100%),
    url("custom/IMG-20260723-WA0060.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.custom-inner { position: relative; z-index: 1; }
.custom-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.custom-intro { max-width: none; margin-bottom: 0; }
.custom-side-reel-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 480px;
  margin-left: auto;
}
.custom-side-reel-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -8% 2% 8%;
  background: radial-gradient(circle at 60% 30%, rgba(201,162,75,.4), transparent 66%);
  filter: blur(38px);
  z-index: 0;
}
.custom-side-reel {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 24px;
  overflow: hidden;
  background: #1a0f18;
  box-shadow: 0 34px 80px rgba(0,0,0,.5);
  border: 3px solid rgba(231,207,148,.4);
}
.custom-side-reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-side-cap {
  position: absolute;
  left: 0; right: 0; bottom: 7%;
  padding: 0 8%;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}
.custom-side-cap .eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.custom-side-cap .headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
  margin: 0;
}
.custom-side-reel .reel-tap { z-index: 8; }
.custom-side-reel-wrap .hero-badge { z-index: 3; }
.custom-side-reel-wrap .reel-mini-cta {
  border: 0;
  cursor: pointer;
  font: inherit;
}
@media (max-width: 900px) {
  .custom-hero-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .custom-side-reel-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
}

.custom-intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin: 8px 0 14px;
  color: #fff;
}
.custom-intro p { color: rgba(247,241,234,.82); margin: 0 0 18px; font-size: 15.5px; }
.custom-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.custom-pills span {
  border: 1px solid rgba(231,207,148,.35);
  color: var(--gold-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .02em;
}
.custom-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.custom-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}
.custom-offer {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.custom-offer:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
  border-color: rgba(231,207,148,.45);
}
.custom-offer-media { aspect-ratio: 3/4; overflow: hidden; background: #2a1824; }
.custom-offer-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.custom-offer:hover .custom-offer-media img { transform: scale(1.04); }
.custom-offer-body { padding: 14px 14px 16px; }
.custom-offer-body span { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-soft); }
.custom-offer-body h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  margin: 4px 0 8px;
  color: #fff;
  font-weight: 600;
}
.custom-offer .price { color: #fff; font-weight: 600; }
.custom-offer .mrp { color: rgba(255,255,255,.45); margin-left: 8px; text-decoration: line-through; font-size: 13px; }

.custom-videos-head { margin-bottom: 18px; }
.custom-videos-head h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  margin: 6px 0 6px;
  color: #fff;
}
.custom-videos-head p { color: rgba(247,241,234,.7); margin: 0; font-size: 14px; }

.custom-video-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.custom-vid-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #1a1016;
  border: 1px solid rgba(255,255,255,.12);
}
.custom-vid-frame video { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }
.custom-vid-play {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(201,162,75,.95); color: #2a1824;
  font-size: 18px; display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: opacity .2s ease, transform .2s ease;
}
.custom-vid-frame.playing .custom-vid-play { opacity: 0; pointer-events: none; transform: scale(.9); }
.custom-vid-meta { padding: 10px 2px 0; }
.custom-vid-meta b { display: block; color: #fff; font-size: 14px; font-weight: 500; }
.custom-vid-meta small { color: rgba(247,241,234,.65); font-size: 12px; }

@media (max-width: 980px) {
  .custom-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .custom-video-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .custom-section { padding: 52px 0 48px; }
  .custom-offer-grid { grid-template-columns: 1fr; }
  .custom-video-rail { grid-template-columns: 1fr; }
}

.custom-vid-price {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(201,162,75,.95); color: #2a1824;
  font-size: 13px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  pointer-events: none;
}
.custom-vid-frame.playing .custom-vid-price { opacity: .85; }
.custom-vid-shop {
  display: inline-block; margin-top: 6px;
  color: var(--gold-soft); font-size: 13px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(231,207,148,.4);
}
.custom-vid-shop:hover { color: #fff; }
@media (min-width: 981px) {
  .custom-offer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.custom-groups { display: flex; flex-direction: column; gap: 34px; margin-bottom: 48px; }
.custom-group-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px; color: #fff; margin: 0 0 4px; font-weight: 600;
}
.custom-group-sub { color: rgba(247,241,234,.65); margin: 0 0 14px; font-size: 13px; }
.custom-group .custom-offer-grid { margin-bottom: 0; }

/* ---------- Hero promise links + opening spotlight ---------- */
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { line-height: 1.08; }
.hero-copy p b { color: var(--gold-soft); font-weight: 600; }
.hero-promise {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-promise a {
  color: rgba(247,241,234,.88); text-decoration: none;
  font-size: 13px; letter-spacing: .02em;
  position: relative; padding-bottom: 2px;
  transition: color .25s ease;
}
.hero-promise a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.hero-promise a:hover { color: #fff; }
.hero-promise a:hover::after { transform: scaleX(1); }

.open-spotlight {
  position: relative; z-index: 3;
  margin-top: -28px; padding: 0 0 8px;
}
.open-spotlight-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.spot-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 148px; padding: 22px 22px 20px;
  border-radius: 18px; text-decoration: none; color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.spot-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.08), transparent 55%);
  pointer-events: none;
}
.spot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.spot-kicker {
  position: relative; z-index: 1;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 8px;
}
.spot-card strong {
  position: relative; z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px; font-weight: 600; line-height: 1.1;
}
.spot-card em {
  position: relative; z-index: 1;
  font-style: normal; font-size: 13px;
  color: rgba(255,255,255,.78); margin-top: 6px;
}
.spot-custom {
  background:
    linear-gradient(135deg, rgba(53,19,43,.92), rgba(74,31,61,.85)),
    url("custom/IMG-20260723-WA0052.jpg") center/cover;
}
.spot-hajj {
  background:
    linear-gradient(135deg, rgba(42,28,22,.9), rgba(90,50,40,.82)),
    url("custom/IMG-20260723-WA0060.jpg") center/cover;
}


@media (max-width: 860px) {
  .open-spotlight { margin-top: -12px; }
  .open-spotlight-inner { grid-template-columns: 1fr; }
  .spot-card { min-height: 120px; }
  .hero-promise { justify-content: center; }
}

/* ---------- Hero promise links + opening spotlight ---------- */
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { line-height: 1.08; }
.hero-copy p b { color: var(--gold-soft); font-weight: 600; }
.hero-promise {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-promise a {
  color: rgba(247,241,234,.88); text-decoration: none;
  font-size: 13px; letter-spacing: .02em;
  position: relative; padding-bottom: 2px;
  transition: color .25s ease;
}
.hero-promise a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.hero-promise a:hover { color: #fff; }
.hero-promise a:hover::after { transform: scaleX(1); }

.open-spotlight {
  position: relative; z-index: 3;
  margin-top: -28px; padding: 0 0 8px;
}
.open-spotlight-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.spot-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 148px; padding: 22px 22px 20px;
  border-radius: 18px; text-decoration: none; color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.spot-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.08), transparent 55%);
  pointer-events: none;
}
.spot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.spot-kicker {
  position: relative; z-index: 1;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 8px;
}
.spot-card strong {
  position: relative; z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px; font-weight: 600; line-height: 1.1;
}
.spot-card em {
  position: relative; z-index: 1;
  font-style: normal; font-size: 13px;
  color: rgba(255,255,255,.78); margin-top: 6px;
}
.spot-custom {
  background:
    linear-gradient(135deg, rgba(53,19,43,.92), rgba(74,31,61,.85)),
    url("custom/IMG-20260723-WA0052.jpg") center/cover;
}
.spot-hajj {
  background:
    linear-gradient(135deg, rgba(42,28,22,.9), rgba(90,50,40,.82)),
    url("custom/IMG-20260723-WA0060.jpg") center/cover;
}


@media (max-width: 860px) {
  .open-spotlight { margin-top: -12px; }
  .open-spotlight-inner { grid-template-columns: 1fr; }
  .spot-card { min-height: 120px; }
  .hero-promise { justify-content: center; }
}
.spot-shop {
  background:
    linear-gradient(135deg, rgba(53,19,43,.9), rgba(106,52,87,.82)),
    url("https://alcreations.ultragits.com/wp-content/uploads/2026/05/cb356aff-7c96-4193-a736-04344aae7873.jpg") center/cover;
}
/* Order success — WhatsApp + UPI handoff */
.success-pay {
  margin: 22px auto 8px;
  max-width: 520px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.success-pay h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: var(--plum);
}
.success-pay p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.upi-box {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 12px 14px; border-radius: 12px;
  background: var(--cream); border: 1px dashed rgba(74,31,61,.25);
  margin-bottom: 14px;
}
.upi-box code {
  flex: 1 1 180px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  word-break: break-all;
}
.success-pay-actions { margin-top: 4px; justify-content: flex-start; }
.order-success .success-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px;
}

/* Stock / out-of-stock */
.card-oos .card-media img.main { opacity: .72; filter: grayscale(.15); }
.size-opts button.size-oos,
.size-opts button:disabled {
  opacity: .45;
  text-decoration: line-through;
  cursor: not-allowed;
}
.oos-banner {
  display: inline-block;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fdecea;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
}

/* Stock / out-of-stock */
.card-oos .card-media img.main { opacity: .72; filter: grayscale(.15); }
.size-opts button.size-oos,
.size-opts button:disabled {
  opacity: .45;
  text-decoration: line-through;
  cursor: not-allowed;
}
.oos-banner {
  display: inline-block;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fdecea;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
}
