/* ===================================================
   MAHAMAYA LUXURY KURTIS — PREMIUM STYLESHEET
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --maroon: #5a0f1c;
  --maroon-dark: #3d0a12;
  --maroon-light: #7d1528;
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --gold-pale: #f5e9c8;
  --cream: #fdf8f0;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --text-dark: #1a0a0f;
  --text-mid: #5a3a42;
  --text-light: #9a7a82;
  --border: rgba(201,168,76,0.2);
  --shadow-soft: 0 4px 20px rgba(90,15,28,0.08);
  --shadow-mid: 0 8px 35px rgba(90,15,28,0.14);
  --shadow-strong: 0 20px 60px rgba(90,15,28,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }

a { text-decoration:none; color:inherit; }

ul { list-style:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:#f0e8d8; }
::-webkit-scrollbar-thumb { background:linear-gradient(var(--gold),var(--maroon)); border-radius:3px; }

/* ── PAGE LOADER ── */
#page-loader {
  position:fixed; inset:0; z-index:99999;
  background:var(--maroon-dark);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.loaded { opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo-text {
  font-family:var(--font-display);
  font-size:3.5rem; font-weight:600;
  color:var(--gold-light);
  letter-spacing:0.15em;
  animation: logoShimmer 1.5s ease-in-out infinite alternate;
}
@keyframes logoShimmer {
  from { opacity:0.6; transform:scale(0.97); }
  to   { opacity:1;   transform:scale(1); }
}
.loader-dots { display:flex; gap:10px; }
.loader-dots span {
  width:10px; height:10px; border-radius:50%;
  background:var(--gold);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2){ animation-delay:.2s; }
.loader-dots span:nth-child(3){ animation-delay:.4s; }
@keyframes dotPulse {
  0%,80%,100%{ transform:scale(0.6); opacity:0.5; }
  40%{ transform:scale(1.1); opacity:1; }
}

/* ── TOP ANNOUNCEMENT BAR ── */
.announcement-bar {
  background:var(--maroon-dark);
  color:var(--gold-pale);
  text-align:center;
  padding:9px 1rem;
  font-size:0.82rem; font-weight:500; letter-spacing:0.08em;
  position:relative; overflow:hidden;
}
.announcement-bar span {
  display:inline-flex; align-items:center; gap:12px;
}
.announcement-bar .sep { color:var(--gold); opacity:0.5; }

/* ── HEADER ── */
.site-header {
  position:sticky; top:0; z-index:1000;
  background:var(--maroon);
  border-bottom:2px solid rgba(201,168,76,0.3);
}
.header-inner {
  max-width:1400px; margin:0 auto;
  padding:0 1.5rem;
  display:flex; align-items:center; gap:1.2rem;
  height:68px;
}
.header-logo {
  font-family:var(--font-display);
  font-size:1.7rem; font-weight:700;
  color:var(--gold-light); white-space:nowrap; flex-shrink:0;
  letter-spacing:0.04em;
}
.header-logo span { color:var(--cream); font-weight:300; }

/* Search bar */
.header-search {
  flex:1; display:flex; max-width:580px;
  border-radius:8px; overflow:hidden;
  border:1.5px solid rgba(201,168,76,0.35);
  transition: border-color 0.3s;
}
.header-search:focus-within { border-color:var(--gold-light); }
.header-search input {
  flex:1; padding:0.6rem 1rem;
  border:none; outline:none; font-family:var(--font-body);
  font-size:0.9rem; background:rgba(255,255,255,0.08);
  color:var(--cream);
}
.header-search input::placeholder { color:rgba(248,244,236,0.5); }
.header-search button {
  padding:0 1.1rem; background:var(--gold);
  border:none; cursor:pointer; color:var(--maroon-dark);
  font-size:1rem; transition:var(--transition);
}
.header-search button:hover { background:var(--gold-light); }

/* Header actions */
.header-actions { display:flex; align-items:center; gap:0.3rem; margin-left:auto; flex-shrink:0; }
.header-action-btn {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  padding:0.4rem 0.7rem; cursor:pointer;
  color:var(--cream); background:none; border:none;
  font-family:var(--font-body); transition:var(--transition);
  border-radius:6px; min-width:52px;
}
.header-action-btn:hover { background:rgba(255,255,255,0.08); color:var(--gold-light); }
.header-action-btn i { font-size:1.1rem; }
.header-action-btn span { font-size:0.72rem; font-weight:500; }
.cart-count {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--gold); color:var(--maroon-dark);
  font-size:0.65rem; font-weight:700;
  width:16px; height:16px; border-radius:50%;
  position:absolute; top:4px; right:4px;
}
.cart-wrapper { position:relative; }
.hamburger-btn {
  display:none; background:none; border:none; cursor:pointer;
  color:var(--cream); font-size:1.4rem; padding:0.4rem;
}

/* ── BOTTOM NAV (MOBILE) ── */
.bottom-nav {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:999;
  background:var(--maroon-dark);
  border-top:1px solid rgba(201,168,76,0.3);
  grid-template-columns:repeat(5,1fr);
  padding-bottom:env(safe-area-inset-bottom);
}
.bottom-nav-item {
  display:flex; flex-direction:column; align-items:center;
  padding:8px 4px; color:rgba(248,244,236,0.6);
  font-size:0.65rem; font-weight:500; gap:3px;
  cursor:pointer; transition:var(--transition);
  background:none; border:none; font-family:var(--font-body);
}
.bottom-nav-item i { font-size:1.1rem; }
.bottom-nav-item.active,
.bottom-nav-item:hover { color:var(--gold-light); }
.bottom-nav-home-btn {
  background:var(--gold);
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--maroon-dark); font-size:1.2rem;
  margin-top:-16px;
  box-shadow:0 -4px 20px rgba(201,168,76,0.5);
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position:fixed; top:0; left:0; width:82%; max-width:340px;
  height:100vh; z-index:9999;
  background:var(--maroon-dark);
  transform:translateX(-100%);
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y:auto;
  display:flex; flex-direction:column;
}
.mobile-drawer.open { transform:translateX(0); }
.drawer-overlay {
  position:fixed; inset:0; z-index:9998;
  background:rgba(0,0,0,0.5);
  opacity:0; visibility:hidden; transition:var(--transition);
}
.drawer-overlay.show { opacity:1; visibility:visible; }
.drawer-header {
  padding:1.5rem;
  border-bottom:1px solid rgba(201,168,76,0.2);
  display:flex; align-items:center; justify-content:space-between;
}
.drawer-logo {
  font-family:var(--font-display);
  font-size:1.5rem; font-weight:700; color:var(--gold-light);
}
.drawer-close {
  background:none; border:none; color:var(--cream);
  font-size:1.3rem; cursor:pointer; padding:0.3rem;
}
.drawer-nav { padding:1rem 0; flex:1; }
.drawer-nav a {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.5rem; color:var(--cream);
  font-size:1rem; font-weight:500; transition:var(--transition);
  border-left:3px solid transparent;
}
.drawer-nav a:hover, .drawer-nav a.active {
  color:var(--gold-light);
  background:rgba(201,168,76,0.08);
  border-left-color:var(--gold);
}
.drawer-nav a i { width:20px; text-align:center; }
.drawer-contact {
  padding:1.5rem;
  border-top:1px solid rgba(201,168,76,0.2);
}
.drawer-contact p { color:rgba(248,244,236,0.6); font-size:0.85rem; margin-bottom:0.8rem; }
.drawer-contact a { color:var(--gold-light); display:block; font-size:0.9rem; margin-bottom:0.5rem; }

/* ── MAIN NAV (DESKTOP) ── */
.main-nav {
  background:rgba(90,15,28,0.97);
  border-bottom:1px solid rgba(201,168,76,0.15);
}
.main-nav-inner {
  max-width:1400px; margin:0 auto;
  padding:0 1.5rem;
  display:flex; align-items:center; gap:0.3rem;
  height:44px; overflow-x:auto;
}
.main-nav-inner::-webkit-scrollbar { height:0; }
.nav-link {
  white-space:nowrap; padding:0 1rem;
  color:rgba(248,244,236,0.85); font-size:0.9rem; font-weight:500;
  transition:var(--transition); border-radius:4px; height:44px;
  display:inline-flex; align-items:center; gap:6px;
}
.nav-link:hover, .nav-link.active { color:var(--gold-light); background:rgba(255,255,255,0.06); }
.nav-link.active { color:var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  background:linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  padding:3rem 1.5rem;
  text-align:center;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 120%, rgba(201,168,76,0.15) 0%, transparent 65%);
}
.page-hero h1 {
  font-family:var(--font-display); font-size:clamp(2rem,5vw,3.5rem);
  color:var(--gold-light); position:relative;
}
.page-hero p { color:rgba(248,244,236,0.8); margin-top:0.5rem; font-size:1rem; position:relative; }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width:1400px; margin:0 auto;
  padding:0.9rem 1.5rem;
  display:flex; align-items:center; gap:0.5rem;
  font-size:0.82rem; color:var(--text-light);
}
.breadcrumb a { color:var(--maroon); font-weight:500; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--text-light); }

/* ── BUTTONS ── */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  padding:0.85rem 2rem;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color:var(--maroon-dark); font-weight:700; font-size:0.95rem;
  border:none; border-radius:8px; cursor:pointer;
  font-family:var(--font-body); letter-spacing:0.04em;
  transition:var(--transition);
  box-shadow:0 4px 18px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(201,168,76,0.5);
}
.btn-primary:active { transform:translateY(0); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:0.8rem 1.8rem;
  background:transparent;
  color:var(--maroon); font-weight:600; font-size:0.9rem;
  border:2px solid var(--maroon); border-radius:8px; cursor:pointer;
  font-family:var(--font-body); transition:var(--transition);
}
.btn-outline:hover { background:var(--maroon); color:var(--cream); }

.btn-gold-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:0.75rem 1.5rem;
  background:transparent;
  color:var(--gold); font-weight:600; font-size:0.88rem;
  border:1.5px solid var(--gold); border-radius:8px; cursor:pointer;
  font-family:var(--font-body); transition:var(--transition);
}
.btn-gold-outline:hover { background:var(--gold); color:var(--maroon-dark); }

/* ── SECTION ── */
.section { padding:4.5rem 0; }
.section-sm { padding:2.5rem 0; }
.container { max-width:1400px; margin:0 auto; padding:0 1.5rem; }

.section-head { text-align:center; margin-bottom:3rem; }
.section-head .eyebrow {
  display:inline-block;
  font-size:0.78rem; font-weight:700; letter-spacing:0.18em;
  color:var(--gold); text-transform:uppercase; margin-bottom:0.7rem;
}
.section-head h2 {
  font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem);
  color:var(--maroon); line-height:1.15;
}
.section-head h2 em { font-style:italic; color:var(--text-mid); }
.divider-gold {
  display:flex; align-items:center; gap:12px;
  justify-content:center; margin-top:1rem;
}
.divider-gold::before, .divider-gold::after {
  content:''; flex:1; max-width:80px; height:1.5px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.divider-gold::after { background:linear-gradient(270deg,transparent,var(--gold)); }
.divider-gold i { color:var(--gold); font-size:0.85rem; }

/* ── TRUST BADGES ── */
.trust-bar {
  background:var(--white);
  border-top:1px solid var(--cream-dark);
  border-bottom:1px solid var(--cream-dark);
}
.trust-bar-inner {
  max-width:1400px; margin:0 auto; padding:0 1.5rem;
  display:grid; grid-template-columns:repeat(4,1fr);
  divide-x:1px solid var(--cream-dark);
}
.trust-item {
  display:flex; align-items:center; gap:1rem;
  padding:1.2rem 1.5rem;
  border-right:1px solid var(--cream-dark);
}
.trust-item:last-child { border-right:none; }
.trust-icon {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream-dark));
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.trust-icon i { color:var(--gold); font-size:1.1rem; }
.trust-text strong { display:block; font-size:0.88rem; font-weight:700; color:var(--maroon); }
.trust-text span { font-size:0.78rem; color:var(--text-light); }

/* ── HERO SLIDER ── */
.hero-slider { position:relative; overflow:hidden; background:var(--maroon-dark); }
.slide {
  position:absolute; inset:0; opacity:0;
  transition:opacity 0.9s ease;
}
.slide.active { opacity:1; position:relative; }
.slide-inner {
  height:clamp(420px,70vh,650px);
  display:flex; align-items:center;
  padding:3rem 1.5rem;
  position:relative;
}
.slide-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center top;
}
.slide-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(61,10,18,0.92) 0%, rgba(90,15,28,0.7) 50%, rgba(90,15,28,0.3) 100%);
}
.slide-content {
  position:relative; z-index:2;
  max-width:580px;
  animation:slideUp 0.8s ease forwards;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.slide-eyebrow {
  display:inline-block;
  font-size:0.78rem; font-weight:700; letter-spacing:0.2em;
  color:var(--gold); text-transform:uppercase; margin-bottom:1rem;
  padding:0.3rem 0.8rem; border:1px solid var(--gold);
  border-radius:4px;
}
.slide-content h1 {
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,4rem);
  color:var(--cream); line-height:1.1; margin-bottom:0.8rem;
}
.slide-content h1 em { color:var(--gold-light); font-style:italic; }
.slide-content p { color:rgba(248,244,236,0.85); font-size:1.05rem; margin-bottom:2rem; max-width:460px; }
.slide-actions { display:flex; gap:1rem; flex-wrap:wrap; }

.slider-dots {
  position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%);
  display:flex; gap:8px; z-index:3;
}
.slider-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(248,244,236,0.4); cursor:pointer; transition:var(--transition);
  border:none; padding:0;
}
.slider-dot.active { background:var(--gold); width:24px; border-radius:4px; }

.slider-arrows {
  position:absolute; top:50%; transform:translateY(-50%);
  width:100%; display:flex; justify-content:space-between;
  padding:0 1rem; pointer-events:none; z-index:3;
}
.slider-arrow {
  width:44px; height:44px; border-radius:50%;
  background:rgba(61,10,18,0.6); backdrop-filter:blur(8px);
  border:1px solid rgba(201,168,76,0.3);
  color:var(--cream); font-size:1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  pointer-events:all; transition:var(--transition);
}
.slider-arrow:hover { background:var(--gold); color:var(--maroon-dark); }

/* ── CATEGORY PILLS ── */
.cat-scroll-wrap {
  padding:1.5rem 0;
  background:var(--white);
  border-bottom:1px solid var(--cream-dark);
}
.cat-scroll {
  display:flex; gap:0.8rem; overflow-x:auto;
  padding:0 1.5rem; scroll-snap-type:x mandatory;
}
.cat-scroll::-webkit-scrollbar { height:0; }
.cat-pill {
  flex-shrink:0; scroll-snap-align:start;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  cursor:pointer; transition:var(--transition);
}
.cat-pill-icon {
  width:68px; height:68px; border-radius:50%;
  background:var(--cream); border:2px solid transparent;
  overflow:hidden; display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.cat-pill-icon i { font-size:1.5rem; color:var(--maroon); }
.cat-pill:hover .cat-pill-icon,
.cat-pill.active .cat-pill-icon {
  border-color:var(--gold); background:var(--gold-pale);
  box-shadow:0 4px 15px rgba(201,168,76,0.3);
}
.cat-pill span { font-size:0.75rem; font-weight:600; color:var(--text-mid); white-space:nowrap; }
.cat-pill.active span { color:var(--maroon); }

/* ── PRODUCT GRID ── */
.product-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(230px,1fr));
  gap:1.5rem;
}

/* ── PRODUCT CARD ── */
.product-card {
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
  position:relative;
  border:1px solid var(--border);
  display:flex; flex-direction:column;
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-strong);
  border-color:var(--gold);
}
.product-img-wrap {
  position:relative; overflow:hidden;
  aspect-ratio:3/4; background:var(--cream-dark);
}
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform:scale(1.07); }
.product-badge {
  position:absolute; top:10px; left:10px;
  background:var(--maroon); color:var(--cream);
  font-size:0.68rem; font-weight:700; letter-spacing:0.06em;
  padding:4px 10px; border-radius:4px; text-transform:uppercase;
}
.product-badge.gold { background:var(--gold); color:var(--maroon-dark); }
.product-wishlist {
  position:absolute; top:10px; right:10px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,0.9); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; border:none; color:var(--text-light);
  font-size:0.95rem; transition:var(--transition);
  opacity:0; transform:translateY(-4px);
}
.product-card:hover .product-wishlist { opacity:1; transform:translateY(0); }
.product-wishlist:hover { color:var(--maroon); background:white; }
.product-wishlist.liked { color:var(--maroon); opacity:1; }

.quick-buy {
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(61,10,18,0.92); backdrop-filter:blur(8px);
  color:var(--gold-light); font-size:0.85rem; font-weight:600;
  padding:0.7rem; text-align:center; cursor:pointer;
  border:none; font-family:var(--font-body);
  transform:translateY(100%); transition:transform 0.35s ease;
  letter-spacing:0.06em;
}
.product-card:hover .quick-buy { transform:translateY(0); }

.product-body {
  padding:1rem 1.1rem 1.2rem;
  display:flex; flex-direction:column; gap:0.6rem; flex:1;
}
.product-category {
  font-size:0.7rem; font-weight:700; letter-spacing:0.12em;
  color:var(--gold); text-transform:uppercase;
}
.product-name {
  font-family:var(--font-display); font-size:1.08rem;
  color:var(--maroon); line-height:1.3; font-weight:600;
}
.product-stars { display:flex; align-items:center; gap:5px; }
.stars { color:var(--gold); font-size:0.75rem; }
.review-count { font-size:0.73rem; color:var(--text-light); }
.product-price-row {
  display:flex; align-items:baseline; gap:8px; flex-wrap:wrap;
}
.price-current {
  font-size:1.2rem; font-weight:700; color:var(--maroon);
}
.price-original {
  font-size:0.85rem; color:var(--text-light); text-decoration:line-through;
}
.price-save {
  font-size:0.75rem; font-weight:700; color:#2eaa5a;
  background:#e8f8ef; padding:2px 7px; border-radius:4px;
}
.product-sizes {
  display:flex; gap:5px; flex-wrap:wrap;
}
.size-chip {
  font-size:0.68rem; font-weight:600; padding:3px 7px;
  border:1px solid var(--cream-dark); border-radius:4px;
  color:var(--text-mid); cursor:pointer; transition:var(--transition);
  background:none;
}
.size-chip:hover { border-color:var(--maroon); color:var(--maroon); }
.size-chip.active { border-color:var(--maroon); background:var(--maroon); color:var(--cream); }

.product-cta {
  margin-top:auto;
  display:grid; grid-template-columns:1fr auto; gap:8px;
}
.btn-whatsapp {
  display:flex; align-items:center; justify-content:center; gap:6px;
  padding:0.65rem;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:white; border:none; border-radius:8px; cursor:pointer;
  font-family:var(--font-body); font-size:0.82rem; font-weight:600;
  transition:var(--transition);
}
.btn-whatsapp:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,0.4); }
.btn-cart {
  width:40px; display:flex; align-items:center; justify-content:center;
  background:var(--gold-pale); color:var(--maroon);
  border:1.5px solid var(--gold); border-radius:8px; cursor:pointer;
  font-size:1rem; transition:var(--transition);
}
.btn-cart:hover { background:var(--gold); }

/* ── FEATURES STRIP ── */
.features-strip {
  background:linear-gradient(135deg,var(--maroon-dark),var(--maroon));
  padding:2.5rem 0; overflow:hidden;
}
.features-strip-inner {
  display:flex; gap:2rem; overflow-x:auto;
  padding:0 1.5rem; max-width:1400px; margin:0 auto;
}
.features-strip-inner::-webkit-scrollbar { height:0; }
.feature-chip {
  flex-shrink:0;
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.07);
  padding:1rem 1.5rem; border-radius:12px;
  border:1px solid rgba(201,168,76,0.2);
}
.feature-chip i { font-size:1.5rem; color:var(--gold-light); }
.feature-chip strong { display:block; color:var(--cream); font-size:0.9rem; }
.feature-chip span { font-size:0.78rem; color:rgba(248,244,236,0.6); }

/* ── BANNER STRIP ── */
.banner-strip {
  display:grid; grid-template-columns:2fr 1fr; gap:1.5rem;
  max-width:1400px; margin:0 auto; padding:0 1.5rem;
}
.banner-card {
  border-radius:var(--radius); overflow:hidden;
  position:relative; min-height:220px;
  display:flex; align-items:flex-end;
  cursor:pointer;
}
.banner-card-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.banner-card-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(61,10,18,0.85) 0%, transparent 60%);
}
.banner-card-content {
  position:relative; z-index:1; padding:1.5rem;
}
.banner-card-content h3 {
  font-family:var(--font-display); color:var(--gold-light);
  font-size:1.6rem; margin-bottom:0.3rem;
}
.banner-card-content p { color:rgba(248,244,236,0.8); font-size:0.9rem; margin-bottom:0.8rem; }

/* ── TESTIMONIALS ── */
.testimonials { background:var(--cream); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem;
}
.testimonial-card {
  background:var(--white); border-radius:var(--radius);
  padding:1.8rem; box-shadow:var(--shadow-soft);
  border:1px solid var(--border); transition:var(--transition);
}
.testimonial-card:hover { box-shadow:var(--shadow-mid); border-color:var(--gold); }
.testi-stars { color:var(--gold); font-size:0.9rem; margin-bottom:0.8rem; }
.testi-text { color:var(--text-mid); font-size:0.95rem; line-height:1.7; margin-bottom:1.2rem; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:10px; }
.testi-avatar {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream-dark));
  display:flex; align-items:center; justify-content:center;
  color:var(--maroon); font-weight:700; font-size:1rem;
  font-family:var(--font-display);
}
.testi-name { font-weight:600; color:var(--maroon); font-size:0.9rem; }
.testi-city { font-size:0.75rem; color:var(--text-light); }

/* ── NEWSLETTER ── */
.newsletter-section {
  background:linear-gradient(135deg,var(--maroon-dark),var(--maroon));
  padding:4rem 1.5rem; text-align:center; position:relative; overflow:hidden;
}
.newsletter-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.newsletter-section > * { position:relative; z-index:1; }
.newsletter-section .eyebrow {
  display:inline-block; color:var(--gold);
  font-size:0.78rem; font-weight:700; letter-spacing:0.18em;
  text-transform:uppercase; margin-bottom:0.6rem;
}
.newsletter-section h2 {
  font-family:var(--font-display); font-size:clamp(1.8rem,4vw,3rem);
  color:var(--cream); margin-bottom:0.6rem;
}
.newsletter-section p { color:rgba(248,244,236,0.75); margin-bottom:2rem; }
.newsletter-form {
  display:flex; gap:0; max-width:480px; margin:0 auto;
  border-radius:8px; overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
}
.newsletter-form input {
  flex:1; padding:0.9rem 1.2rem;
  border:none; outline:none; font-family:var(--font-body); font-size:0.95rem;
  background:rgba(255,255,255,0.12); color:var(--cream);
}
.newsletter-form input::placeholder { color:rgba(248,244,236,0.5); }
.newsletter-form button {
  padding:0.9rem 1.5rem; background:var(--gold);
  color:var(--maroon-dark); border:none; cursor:pointer;
  font-family:var(--font-body); font-weight:700; font-size:0.9rem;
  transition:var(--transition); white-space:nowrap;
}
.newsletter-form button:hover { background:var(--gold-light); }

/* ── INSTAGRAM STRIP ── */
.insta-strip { background:var(--white); padding:3rem 0 0; }
.insta-grid {
  display:grid; grid-template-columns:repeat(6,1fr); gap:4px;
  margin-top:2rem;
}
.insta-item {
  aspect-ratio:1; overflow:hidden; cursor:pointer; position:relative;
}
.insta-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.insta-item:hover img { transform:scale(1.1); }
.insta-overlay {
  position:absolute; inset:0;
  background:rgba(90,15,28,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition);
}
.insta-item:hover .insta-overlay { opacity:1; }
.insta-overlay i { color:white; font-size:1.5rem; }

/* ── FOOTER ── */
.site-footer {
  background:var(--maroon-dark);
  color:rgba(248,244,236,0.8);
  padding-top:4rem;
}
.footer-main {
  max-width:1400px; margin:0 auto;
  padding:0 1.5rem 3rem;
  display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:3rem;
}
.footer-brand .brand-name {
  font-family:var(--font-display); font-size:2rem;
  color:var(--gold-light); display:block; margin-bottom:0.3rem;
}
.footer-brand .brand-tagline {
  font-size:0.82rem; color:rgba(248,244,236,0.5);
  letter-spacing:0.12em; text-transform:uppercase; margin-bottom:1.2rem;
}
.footer-brand p { font-size:0.88rem; line-height:1.7; margin-bottom:1.5rem; }
.footer-socials { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(201,168,76,0.2);
  display:flex; align-items:center; justify-content:center;
  color:rgba(248,244,236,0.7); font-size:0.9rem; cursor:pointer;
  transition:var(--transition);
}
.social-btn:hover { background:var(--gold); color:var(--maroon-dark); border-color:var(--gold); }

.footer-col h4 {
  color:var(--gold-light); font-size:0.88rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; margin-bottom:1.2rem;
  padding-bottom:0.6rem; border-bottom:1px solid rgba(201,168,76,0.15);
}
.footer-col ul li { margin-bottom:0.6rem; }
.footer-col ul a {
  font-size:0.88rem; color:rgba(248,244,236,0.7);
  transition:var(--transition); display:inline-flex; align-items:center; gap:6px;
}
.footer-col ul a:hover { color:var(--gold-light); padding-left:4px; }
.footer-col ul a i { font-size:0.7rem; opacity:0.5; }

.footer-contact-item { display:flex; gap:10px; margin-bottom:1rem; align-items:flex-start; }
.footer-contact-item i {
  color:var(--gold); font-size:0.9rem; margin-top:2px; flex-shrink:0;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size:0.87rem; color:rgba(248,244,236,0.7);
  transition:var(--transition);
}
.footer-contact-item a:hover { color:var(--gold-light); }

.footer-bottom {
  border-top:1px solid rgba(201,168,76,0.12);
  padding:1.2rem 1.5rem;
  max-width:1400px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:0.8rem;
}
.footer-bottom p { font-size:0.82rem; }
.footer-bottom-links { display:flex; gap:1.2rem; }
.footer-bottom-links a { font-size:0.82rem; color:rgba(248,244,236,0.5); }
.footer-bottom-links a:hover { color:var(--gold-light); }

/* ── FLOATING BTNS ── */
.float-group {
  position:fixed; bottom:2rem; right:1.5rem;
  display:flex; flex-direction:column; gap:0.7rem; z-index:900;
}
.float-btn {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; cursor:pointer; border:none;
  box-shadow:0 4px 18px rgba(0,0,0,0.25); transition:var(--transition);
}
.float-whatsapp { background:#25D366; color:white; }
.float-whatsapp:hover { transform:scale(1.1); box-shadow:0 8px 28px rgba(37,211,102,0.5); }
.float-top { background:var(--maroon); color:var(--gold-light); opacity:0; pointer-events:none; }
.float-top.visible { opacity:1; pointer-events:all; }
.float-top:hover { transform:scale(1.1); background:var(--maroon-light); }

/* ── ABOUT PAGE ── */
.about-hero-split {
  display:grid; grid-template-columns:1fr 1fr; min-height:500px;
}
.about-hero-img { overflow:hidden; }
.about-hero-img img { width:100%; height:100%; object-fit:cover; }
.about-hero-text {
  background:var(--maroon-dark);
  padding:4rem 3rem; display:flex; flex-direction:column; justify-content:center;
}
.about-hero-text h1 {
  font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3.5rem);
  color:var(--gold-light); line-height:1.1; margin-bottom:1rem;
}
.about-hero-text p { color:rgba(248,244,236,0.8); font-size:1rem; line-height:1.8; margin-bottom:1.2rem; }
.about-hero-text ul { margin-top:1rem; display:flex; flex-direction:column; gap:0.8rem; }
.about-hero-text ul li {
  display:flex; align-items:center; gap:10px;
  color:rgba(248,244,236,0.85); font-size:0.95rem;
}
.about-hero-text ul li i { color:var(--gold); }

.stats-strip {
  background:var(--white);
  display:grid; grid-template-columns:repeat(4,1fr);
}
.stat-item {
  text-align:center; padding:2.5rem 1rem;
  border-right:1px solid var(--cream-dark);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:var(--font-display); font-size:3rem; font-weight:700;
  color:var(--maroon); line-height:1;
}
.stat-label { font-size:0.85rem; color:var(--text-light); margin-top:0.3rem; }

.values-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:1.5rem;
}
.value-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem; text-align:center;
  box-shadow:var(--shadow-soft); border:1px solid var(--border);
  transition:var(--transition);
}
.value-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-mid); border-color:var(--gold); }
.value-icon {
  width:64px; height:64px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream-dark));
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1rem;
}
.value-icon i { color:var(--gold); font-size:1.4rem; }
.value-card h3 { font-family:var(--font-display); font-size:1.3rem; color:var(--maroon); margin-bottom:0.5rem; }
.value-card p { color:var(--text-mid); font-size:0.9rem; line-height:1.65; }

/* ── GALLERY PAGE ── */
.gallery-filter-bar {
  display:flex; gap:0.7rem; flex-wrap:wrap;
  padding:1.5rem 0;
}
.filter-btn {
  padding:0.5rem 1.2rem; border-radius:20px;
  border:1.5px solid var(--cream-dark); background:var(--white);
  color:var(--text-mid); font-size:0.85rem; font-weight:600;
  cursor:pointer; font-family:var(--font-body); transition:var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color:var(--maroon); background:var(--maroon); color:var(--cream);
}
.gallery-masonry {
  columns:4; gap:1rem;
}
.gallery-masonry .gal-item {
  break-inside:avoid; margin-bottom:1rem;
  border-radius:12px; overflow:hidden;
  position:relative; cursor:pointer;
}
.gallery-masonry .gal-item img {
  width:100%; display:block; transition:transform 0.5s ease;
}
.gallery-masonry .gal-item:hover img { transform:scale(1.05); }
.gal-overlay {
  position:absolute; inset:0;
  background:rgba(61,10,18,0.55);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition);
}
.gal-item:hover .gal-overlay { opacity:1; }
.gal-overlay i { color:white; font-size:1.8rem; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display:grid; grid-template-columns:1fr 1.4fr; gap:3rem;
  align-items:start; padding:3rem 0;
}
.contact-info-card {
  background:var(--maroon-dark); border-radius:var(--radius);
  padding:2.5rem; color:var(--cream);
}
.contact-info-card h2 {
  font-family:var(--font-display); font-size:2rem; color:var(--gold-light); margin-bottom:0.5rem;
}
.contact-info-card > p { color:rgba(248,244,236,0.7); margin-bottom:2rem; }
.cinfo-item {
  display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem;
}
.cinfo-icon {
  width:44px; height:44px; border-radius:10px; flex-shrink:0;
  background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.2);
  display:flex; align-items:center; justify-content:center; color:var(--gold-light);
  font-size:1rem;
}
.cinfo-item strong { display:block; color:var(--gold-light); font-size:0.82rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:3px; }
.cinfo-item a, .cinfo-item span { color:rgba(248,244,236,0.8); font-size:0.9rem; }
.cinfo-item a:hover { color:var(--gold-light); }

.contact-form-card {
  background:var(--white); border-radius:var(--radius);
  padding:2.5rem; box-shadow:var(--shadow-mid); border:1px solid var(--border);
}
.contact-form-card h2 { font-family:var(--font-display); font-size:2rem; color:var(--maroon); margin-bottom:0.3rem; }
.contact-form-card > p { color:var(--text-light); margin-bottom:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:1rem; }
.form-group label { font-size:0.82rem; font-weight:700; color:var(--text-mid); letter-spacing:0.06em; text-transform:uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding:0.85rem 1rem; border:1.5px solid var(--cream-dark);
  border-radius:8px; font-family:var(--font-body); font-size:0.95rem;
  color:var(--text-dark); background:var(--cream); transition:var(--transition);
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); background:var(--white); }
.form-group textarea { resize:vertical; min-height:130px; }

/* ── SHOP PAGE LAYOUT ── */
.shop-layout {
  display:grid; grid-template-columns:260px 1fr; gap:2rem;
  align-items:start;
}
.filter-sidebar {
  background:var(--white); border-radius:var(--radius);
  padding:1.5rem; box-shadow:var(--shadow-soft);
  border:1px solid var(--border); position:sticky; top:125px;
}
.filter-sidebar h3 { font-family:var(--font-display); font-size:1.3rem; color:var(--maroon); margin-bottom:1.2rem; }
.filter-group { margin-bottom:1.5rem; border-bottom:1px solid var(--cream-dark); padding-bottom:1.5rem; }
.filter-group:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.filter-group h4 { font-size:0.8rem; font-weight:700; letter-spacing:0.1em; color:var(--text-mid); text-transform:uppercase; margin-bottom:0.8rem; }
.filter-check-item {
  display:flex; align-items:center; gap:8px; margin-bottom:0.5rem; cursor:pointer;
}
.filter-check-item input[type="checkbox"] { accent-color:var(--maroon); width:15px; height:15px; }
.filter-check-item span { font-size:0.88rem; color:var(--text-mid); }
.filter-check-item:hover span { color:var(--maroon); }
.price-range { display:flex; flex-direction:column; gap:0.5rem; }
.price-range input[type="range"] { accent-color:var(--maroon); width:100%; }
.price-labels { display:flex; justify-content:space-between; font-size:0.8rem; color:var(--text-light); }

.shop-toolbar {
  display:flex; align-items:center; justify-content:space-between;
  background:var(--white); padding:0.8rem 1.2rem;
  border-radius:8px; margin-bottom:1.5rem;
  box-shadow:var(--shadow-soft); border:1px solid var(--border);
  flex-wrap:wrap; gap:0.8rem;
}
.shop-toolbar .result-count { font-size:0.88rem; color:var(--text-light); }
.shop-toolbar .result-count strong { color:var(--maroon); }
.sort-select {
  padding:0.45rem 0.8rem; border:1.5px solid var(--cream-dark);
  border-radius:6px; font-family:var(--font-body); font-size:0.85rem;
  color:var(--text-dark); background:var(--cream); outline:none;
  cursor:pointer;
}
.sort-select:focus { border-color:var(--gold); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity:0; transform:translateY(30px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width:1200px) {
  .footer-main { grid-template-columns:1fr 1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .gallery-masonry { columns:3; }
  .trust-bar-inner { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:none; }
}

@media (max-width:992px) {
  .shop-layout { grid-template-columns:1fr; }
  .filter-sidebar { display:none; }
  .about-hero-split { grid-template-columns:1fr; }
  .about-hero-img { height:300px; }
  .about-hero-text { padding:2.5rem 2rem; }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .banner-strip { grid-template-columns:1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .insta-grid { grid-template-columns:repeat(3,1fr); }
  .footer-main { grid-template-columns:1fr 1fr; gap:2rem; }
  .footer-brand { grid-column:1/-1; }
  .gallery-masonry { columns:2; }
}

@media (max-width:768px) {
  .announcement-bar { font-size:0.75rem; }
  .header-search { display:none; }
  .hamburger-btn { display:flex; }
  .header-action-btn span { display:none; }
  .main-nav { display:none; }
  .bottom-nav { display:grid; }
  .trust-bar-inner { grid-template-columns:1fr 1fr; }
  .trust-item:nth-child(2) { border-right:none; }
  .trust-item:nth-child(3) { border-right:none; }
  .trust-item:nth-child(4) { border-right:none; }
  .product-grid { grid-template-columns:repeat(2,1fr); gap:0.8rem; }
  .footer-main { grid-template-columns:1fr; }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .form-row { grid-template-columns:1fr; }
  .insta-grid { grid-template-columns:repeat(3,1fr); }
  body { padding-bottom:70px; }
  .float-group { bottom:5.5rem; }
  .newsletter-form { flex-direction:column; border-radius:8px; }
  .newsletter-form input,
  .newsletter-form button { border-radius:8px; width:100%; }
}

@media (max-width:480px) {
  .product-grid { grid-template-columns:repeat(2,1fr); gap:0.6rem; }
  .product-body { padding:0.75rem; }
  .product-name { font-size:0.9rem; }
  .price-current { font-size:1rem; }
  .product-cta { grid-template-columns:1fr; }
  .btn-cart { display:none; }
  .about-hero-text { padding:2rem 1.5rem; }
  .gallery-masonry { columns:2; }
  .insta-grid { grid-template-columns:repeat(2,1fr); }
  .cat-pill-icon { width:56px; height:56px; }
  .footer-main { padding:0 1.2rem 2rem; }
  .trust-bar-inner { grid-template-columns:1fr; }
  .trust-item { border-right:none; border-bottom:1px solid var(--cream-dark); }
}
