/* SinghBros Mart — Royal Antique Theme v2
   Palette: Burgundy #7A1C1C | Gold #C9A84C | Ivory #FBF7EF | Charcoal #1C1A18
   Fonts: Playfair Display (headings) + Inter (body) */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;font-size:16px;line-height:1.6;color:#3a3330;background:#fff;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#7A1C1C;text-decoration:none;transition:color .2s}
a:hover{color:#C9A84C}
ul{list-style:none}
ol li{list-style:none} /* prevents numbered list-item rendering in breadcrumbs */
button,input,select,textarea{font-family:inherit;font-size:inherit}
:focus-visible{outline:2px solid #C9A84C;outline-offset:2px}

/* ─── CSS VARIABLES ────────────────────────────────────────── */
:root{
  /* Brand - Burgundy (memorable, royal, antique) */
  --maroon:#7A1C1C;
  --maroon-dark:#5C1515;
  --maroon-light:#9B2626;
  /* Gold accent */
  --gold:#C9A84C;
  --gold-dark:#a8873d;
  --gold-light:#e8d5a3;
  --gold-warm:#d4a843;
  /* Neutrals */
  --dark:#1C1A18;
  --dark2:#2c2a28;
  --mid:#5a5550;
  --light:#FBF7EF;   /* warm ivory - replaces cold gray */
  --light2:#F5EED9;
  --cream:#FDFAF4;
  --border:#e0d5c0;
  --border-dark:#c8bfa8;
  --white:#fff;
  /* Navy accent for nautical sections */
  --navy:#0D2137;
  --navy-light:#1a3a5c;
  /* Feedback */
  --success:#2d8c5e;
  --error:#c0392b;
  /* Shadows */
  --shadow:0 2px 16px rgba(0,0,0,.08);
  --shadow-md:0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.14);
  --shadow-maroon:0 4px 20px rgba(122,28,28,.25);
  --radius:4px;
  --radius-lg:8px;
  --radius-xl:12px;
  --transition:.2s ease;
}

/* ─── ACCESSIBILITY ─────────────────────────────────────────── */
/* Visually hidden but accessible to screen readers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* Skip link — shows on focus for keyboard users only */
a.sr-only:focus{position:fixed;top:8px;left:8px;z-index:9999;width:auto;height:auto;padding:10px 20px;background:var(--maroon);color:#fff;border-radius:var(--radius);clip:auto;white-space:normal;font-weight:700;font-size:14px;box-shadow:var(--shadow-lg)}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5{font-family:'Playfair Display',Georgia,serif;line-height:1.2;color:#1A1A1A;font-weight:700}
h1{font-size:clamp(28px,5vw,48px)}
h2{font-size:clamp(22px,4vw,36px)}
h3{font-size:clamp(18px,3vw,26px)}
h4{font-size:20px}
h5{font-size:17px}
p{margin-bottom:1rem;color:#444}
.text-gold{color:var(--gold)}
.text-dark{color:var(--dark)}
.text-center{text-align:center}
.text-sm{font-size:13px}
.font-serif{font-family:'Playfair Display',Georgia,serif}

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container{max-width:1280px;margin:0 auto;padding:0 20px}
.container-sm{max-width:800px;margin:0 auto;padding:0 20px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.flex{display:flex}
.flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.gap-1{gap:8px}
.gap-2{gap:16px}
.gap-3{gap:24px}
section{padding:60px 0;content-visibility:auto;contain-intrinsic-size:0 500px}

/* ─── TOPBAR ───────────────────────────────────────────────── */
.topbar{background:var(--maroon);color:rgba(255,255,255,.82);font-size:12.5px;padding:8px 0;text-align:center}
.topbar a{color:var(--gold-light);transition:color .2s}
.topbar a:hover{color:#fff}
.topbar .topbar-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.topbar .free-ship{font-weight:700;color:#fff;letter-spacing:.2px}
.topbar .topbar-contact{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.topbar .topbar-contact a{color:rgba(255,255,255,.85)}
.topbar .topbar-contact a:hover{color:#fff}
.topbar .social-links{display:flex;align-items:center;gap:6px}
.topbar .social-links a{width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.8);font-size:13px;transition:all .2s;text-decoration:none}
.topbar .social-links a:hover{background:var(--gold);color:#fff}

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:1000;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:20px}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0}
.logo-icon{width:48px;height:48px}
.logo-text .site-name{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--dark);line-height:1}
.logo-text .tagline{font-size:11px;color:var(--gold);letter-spacing:1.5px;text-transform:uppercase;margin-top:2px}
.logo-img{height:48px;width:auto;max-width:180px;object-fit:contain;display:block}

/* ─── MAIN NAV ─────────────────────────────────────────────── */
.main-nav{display:flex;align-items:center;gap:4px}
.main-nav > li{position:relative}
.main-nav > li > a{display:block;padding:10px 14px;font-size:14px;font-weight:600;color:var(--dark);letter-spacing:.3px;border-radius:var(--radius);transition:background var(--transition),color var(--transition)}
.main-nav > li > a:hover,.main-nav > li.active > a{color:var(--gold);background:var(--light)}
.main-nav > li > a .arrow{font-size:10px;margin-left:4px;transition:transform .2s}
.main-nav > li:hover > a .arrow{transform:rotate(180deg)}

/* Mega Menu */
.mega-menu{position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:28px;display:none;width:760px;z-index:999}
.main-nav > li:hover .mega-menu{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.mega-menu-col h4{font-size:11px;text-transform:uppercase;letter-spacing:1.2px;color:var(--gold);margin-bottom:10px;font-family:'Inter',sans-serif;padding-bottom:6px;border-bottom:1px solid var(--border)}
.mega-menu-col a{display:block;padding:4px 0;font-size:13px;color:#444;transition:color .2s}
.mega-menu-col a:hover{color:var(--gold);padding-left:4px}

/* Header Icons */
.header-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.header-icon{position:relative;display:flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:var(--radius);color:var(--dark);font-size:20px;cursor:pointer;transition:background var(--transition),color var(--transition);text-decoration:none}
.header-icon:hover{background:var(--light);color:var(--gold)}
.header-icon .badge{position:absolute;top:4px;right:4px;background:var(--gold);color:#fff;font-size:10px;font-weight:700;min-width:16px;height:16px;border-radius:8px;display:flex;align-items:center;justify-content:center;padding:0 4px;line-height:1}
.cart-total{font-size:12px;font-weight:700;color:var(--gold);margin-left:4px;white-space:nowrap}
.search-form{display:flex;border:2px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color .3s,box-shadow .3s;background:#fff;flex:1;max-width:480px}
.search-form:focus-within{border-color:var(--maroon);box-shadow:0 0 0 3px rgba(122,28,28,.10)}
.search-form input{padding:11px 16px;border:none;outline:none;font-size:14px;flex:1;min-width:0;background:transparent;color:var(--dark)}
.search-form input::placeholder{color:#aaa}
.search-form button{background:var(--maroon);border:none;color:#fff;padding:0 20px;cursor:pointer;font-size:16px;transition:background .2s;display:flex;align-items:center;gap:6px;font-weight:600;white-space:nowrap;min-width:52px}
.search-form button:hover{background:var(--maroon-dark)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--dark);border-radius:2px;transition:.3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile Nav */
.mobile-nav{display:none;position:fixed;inset:0;background:#fff;z-index:2000;overflow-y:auto;padding:20px}
.mobile-nav.open{display:block}
.mobile-nav-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding-bottom:16px;border-bottom:1px solid var(--border)}
.mobile-nav a{display:block;padding:13px 0;border-bottom:1px solid var(--border);font-size:16px;color:var(--dark);font-weight:500}
.mobile-nav a:hover{color:var(--gold)}
.mobile-nav-categories{padding:16px 0}
.mobile-nav-categories h4{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#999;margin-bottom:12px}

/* ─── CINEMATIC HERO (Issue 4.1) ──────────────────────────── */
.hero-cinema{position:relative;overflow:hidden;height:620px;background:var(--dark)}
@media(max-width:768px){.hero-cinema{height:520px}}
@media(max-width:480px){.hero-cinema{height:460px}}

.hero-cinema-slide{position:absolute;inset:0;opacity:0;transition:opacity .9s ease;pointer-events:none}
.hero-cinema-slide.active{opacity:1;pointer-events:auto}

.hero-cinema-bg{position:absolute;inset:0;background-size:cover;background-position:center;
  transform:scale(1.03);transition:transform 8s ease;filter:brightness(.75)}
.hero-cinema-slide.active .hero-cinema-bg{transform:scale(1)}
.hero-cinema-bg--fallback{background:linear-gradient(135deg,#1a1a1a 0%,#2a1a00 100%)}

.hero-cinema-overlay{position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.38) 55%,rgba(0,0,0,.12) 100%)}

.hero-cinema-content{position:absolute;inset:0;display:flex;align-items:center}
.hero-cinema-text{max-width:620px;padding-left:16px}
.hero-eyebrow{font-size:11px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);
  margin-bottom:16px;display:block;font-family:'Inter',sans-serif}
.hero-heading{font-size:clamp(32px,5.5vw,62px);font-weight:900;color:#fff;line-height:1.1;
  margin-bottom:20px;text-shadow:0 3px 16px rgba(0,0,0,.4);font-family:'Playfair Display',serif}
.hero-sub{font-size:clamp(15px,2vw,18px);color:rgba(255,255,255,.82);margin-bottom:32px;
  max-width:500px;line-height:1.65}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap}
.hero-btn-ghost{background:transparent;border:2px solid rgba(255,255,255,.65);color:#fff}
.hero-btn-ghost:hover{background:rgba(255,255,255,.12);border-color:#fff;color:#fff}

/* Floating trust badge */
.hero-trust-badge{position:absolute;bottom:72px;right:28px;
  background:rgba(255,255,255,.1);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);border-radius:24px;
  color:#fff;font-size:12px;font-weight:600;padding:8px 16px;white-space:nowrap;
  display:flex;align-items:center;gap:6px}
.hero-trust-star{color:var(--gold);font-size:14px}
@media(max-width:600px){.hero-trust-badge{display:none}}

/* Dots */
.hero-cinema-dots{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:5}
.hero-cinema-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);
  border:none;cursor:pointer;transition:all .25s;padding:0}
.hero-cinema-dot.active{background:var(--gold);width:24px;border-radius:4px}

/* Arrows */
.hero-cinema-arrow{position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.12);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.2);
  color:#fff;width:48px;height:48px;border-radius:50%;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,border-color .2s;z-index:5}
.hero-cinema-arrow:hover{background:var(--gold);border-color:var(--gold)}
.hero-cinema-prev{left:20px}
.hero-cinema-next{right:20px}
@media(max-width:480px){.hero-cinema-arrow{width:38px;height:38px}}

/* Scroll indicator */
.hero-scroll-indicator{position:absolute;bottom:18px;left:28px;
  display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.5);font-size:11px;
  letter-spacing:2px;text-transform:uppercase;text-decoration:none;transition:color .2s;z-index:5}
.hero-scroll-indicator:hover{color:var(--gold)}
.hero-scroll-indicator svg{animation:bounce-y 2s infinite}
@keyframes bounce-y{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}

/* ─── TRUST BAR V2 (Issue 4.2) ────────────────────────────── */
.trust-bar-v2{background:#fff;border-top:1px solid var(--border);border-bottom:3px solid var(--gold);
  padding:22px 0;position:relative;z-index:1}
.trust-bar-v2-inner{display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:16px}
.trust-item-v2{display:flex;align-items:center;gap:12px;flex:1;min-width:160px;
  padding:0 8px}
.trust-icon-v2{width:44px;height:44px;background:var(--light);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  color:var(--gold);border:1px solid var(--border)}
.trust-item-v2 div{display:flex;flex-direction:column}
.trust-item-v2 strong{font-size:13px;font-weight:700;color:var(--dark);line-height:1.3}
.trust-item-v2 span{font-size:11px;color:#888;margin-top:2px}
@media(max-width:768px){
  .trust-bar-v2-inner{gap:12px;justify-content:center}
  .trust-item-v2{min-width:130px;flex:0 1 calc(50% - 12px)}
}
@media(max-width:400px){.trust-item-v2{flex:0 1 100%}}

/* Keep old trust-bar selector for any pages still using it */
.trust-bar{background:var(--light);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:20px 0}
.trust-items{display:flex;justify-content:center;gap:48px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:600;color:var(--dark)}
.trust-item .icon{font-size:22px;color:var(--gold)}

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 28px;border-radius:var(--radius-lg);font-weight:600;font-size:15px;cursor:pointer;border:2px solid transparent;transition:all var(--transition);white-space:nowrap;min-height:44px;letter-spacing:.2px}
/* Primary = Burgundy (memorable brand color) */
.btn-primary{background:var(--maroon);color:#fff;border-color:var(--maroon)}
.btn-primary:hover{background:var(--maroon-dark);border-color:var(--maroon-dark);color:#fff;transform:translateY(-1px);box-shadow:var(--shadow-maroon)}
/* Gold outline = secondary CTA */
.btn-outline{background:transparent;color:var(--maroon);border-color:var(--maroon)}
.btn-outline:hover{background:var(--maroon);color:#fff}
/* Gold filled = accent CTA */
.btn-gold{background:var(--gold);color:#fff;border-color:var(--gold)}
.btn-gold:hover{background:var(--gold-dark);border-color:var(--gold-dark);color:#fff}
.btn-dark{background:var(--dark);color:#fff;border-color:var(--dark)}
.btn-dark:hover{background:var(--dark2);color:#fff}
.btn-white{background:#fff;color:var(--maroon);border-color:#fff}
.btn-white:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.btn-sm{padding:8px 18px;font-size:13px;min-height:36px}
.btn-lg{padding:16px 36px;font-size:17px;min-height:52px}
.btn-block{width:100%;display:flex}
.btn-whatsapp{background:#25D366;color:#fff;border-color:#25D366}
.btn-whatsapp:hover{background:#1da851;color:#fff;transform:translateY(-1px)}
/* Google sign-in button */
.btn-google{background:#fff;color:#3c4043;border-color:#dadce0;box-shadow:0 1px 3px rgba(0,0,0,.1)}
.btn-google:hover{background:#f8f9fa;border-color:#c6c6c6;box-shadow:0 2px 6px rgba(0,0,0,.15)}

/* ─── TRUST BAR ────────────────────────────────────────────── */
.trust-bar{background:var(--light);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:20px 0}
.trust-items{display:flex;justify-content:center;gap:48px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:600;color:var(--dark)}
.trust-item .icon{font-size:22px;color:var(--gold)}

/* ─── SECTION HEADERS ──────────────────────────────────────── */
.section-header{text-align:center;margin-bottom:40px}
.section-header .eyebrow{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:10px;font-family:'Inter',sans-serif}
.section-header h2{margin-bottom:12px}
.section-header p{color:#666;max-width:560px;margin:0 auto}
.section-divider{display:flex;align-items:center;justify-content:center;gap:16px;margin:12px 0}
.section-divider::before,.section-divider::after{content:'';flex:1;max-width:60px;height:1px;background:var(--gold)}
.section-divider span{color:var(--gold);font-size:18px}

/* ─── CATEGORY CARDS ───────────────────────────────────────── */
.category-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:20px}
.category-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:1;cursor:pointer;group:hover}
.category-card img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.category-card:hover img{transform:scale(1.07)}
.category-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,26,26,.85) 0%,rgba(26,26,26,.1) 60%);display:flex;align-items:flex-end;padding:20px}
.category-card-name{color:#fff;font-family:'Playfair Display',serif;font-size:17px;font-weight:700;text-shadow:0 2px 4px rgba(0,0,0,.5)}
.category-card-count{color:var(--gold-light);font-size:12px;margin-top:3px}
.category-card:hover .category-card-overlay{background:linear-gradient(to top,rgba(26,26,26,.9) 0%,rgba(26,26,26,.3) 60%)}

/* ─── PRODUCT CARDS ────────────────────────────────────────── */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px}
.product-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow var(--transition),transform var(--transition);position:relative}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.product-card-img{position:relative;aspect-ratio:1;overflow:hidden;background:var(--light)}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-card-badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:5px;z-index:1}
.badge{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;letter-spacing:.5px;text-transform:uppercase}
.badge-sale{background:#e74c3c;color:#fff}
.badge-new{background:var(--gold);color:#fff}
.badge-handmade{background:var(--dark);color:var(--gold)}
.badge-out{background:#999;color:#fff}
.product-card-actions{position:absolute;top:10px;right:10px;display:flex;flex-direction:column;gap:6px;opacity:0;transform:translateX(10px);transition:all .25s}
.product-card:hover .product-card-actions{opacity:1;transform:translateX(0)}
.product-action-btn{width:36px;height:36px;background:#fff;border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#555;font-size:16px;transition:all .2s;text-decoration:none}
.product-action-btn:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.product-action-btn.wishlisted{color:#e74c3c;background:#fff2f2;border-color:#e74c3c}
.product-card-body{padding:16px}
.product-card-category{font-size:11px;color:#999;text-transform:uppercase;letter-spacing:.8px;margin-bottom:5px}
.product-card-name{font-family:'Playfair Display',serif;font-size:16px;font-weight:700;color:var(--dark);margin-bottom:10px;line-height:1.3}
.product-card-name a{color:var(--dark);text-decoration:none}
.product-card-name a:hover{color:var(--gold)}
.product-card-rating{display:flex;align-items:center;gap:6px;margin-bottom:10px}
.product-card-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;padding-top:12px;border-top:1px solid var(--border)}
.price{font-size:18px;font-weight:700;color:var(--dark)}
.price-sale{font-size:18px;font-weight:700;color:#e74c3c}
.price-orig{font-size:14px;color:#999;text-decoration:line-through;margin-left:4px}
.price-badge{display:inline-block;background:#e74c3c;color:#fff;font-size:10px;font-weight:700;padding:2px 6px;border-radius:10px;margin-left:4px}
.add-to-cart-btn{background:var(--maroon);color:#fff;border:none;border-radius:var(--radius-lg);padding:8px 16px;font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;min-height:36px;flex-shrink:0}
.add-to-cart-btn:hover{background:var(--maroon-dark);transform:translateY(-1px)}
.add-to-cart-btn:disabled{background:#ccc;cursor:not-allowed}

/* Stars */
.stars{color:var(--gold);font-size:14px;letter-spacing:1px}
.star-empty{color:#ddd}
.review-count{font-size:12px;color:#999}

/* ─── SALE BANNER ──────────────────────────────────────────── */
.sale-banner{background:linear-gradient(135deg,var(--maroon-dark) 0%,var(--maroon) 50%,#4a0e0e 100%);padding:60px 0;text-align:center;position:relative;overflow:hidden}
.sale-banner::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.sale-banner h2{color:#fff;margin-bottom:12px}
.sale-banner .pct{font-size:80px;font-weight:900;color:var(--gold);line-height:1;display:block;font-family:'Playfair Display',serif}
.sale-banner p{color:rgba(255,255,255,.7);margin-bottom:24px;font-size:17px}

/* ─── WHY CHOOSE US ────────────────────────────────────────── */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:32px}
.why-item{text-align:center;padding:28px 20px;border:1px solid var(--border);border-radius:var(--radius-lg);transition:box-shadow .2s}
.why-item:hover{box-shadow:var(--shadow)}
.why-icon{font-size:42px;margin-bottom:16px;display:block}
.why-item h4{margin-bottom:8px;color:var(--dark)}
.why-item p{font-size:14px;color:#666;margin:0}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials{background:var(--light)}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.testimonial-card{background:#fff;border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow)}
.testimonial-header{display:flex;gap:16px;align-items:center;margin-bottom:16px}
.testimonial-avatar{width:50px;height:50px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;font-weight:700;font-family:'Playfair Display',serif;flex-shrink:0}
.testimonial-meta h5{margin:0;color:var(--dark)}
.testimonial-meta .location{font-size:12px;color:#999}
.testimonial-text{color:#555;font-style:italic;line-height:1.7;margin-bottom:12px}

/* ─── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow .2s}
.blog-card:hover{box-shadow:var(--shadow-lg)}
.blog-card-img{aspect-ratio:16/9;overflow:hidden;background:var(--light)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:20px}
.blog-card-meta{font-size:12px;color:#999;margin-bottom:8px;display:flex;gap:12px}
.blog-card h3{font-size:18px;margin-bottom:10px}
.blog-card h3 a{color:var(--dark)}
.blog-card h3 a:hover{color:var(--gold)}
.blog-card p{font-size:14px;color:#666;margin-bottom:16px}

/* ─── NEWSLETTER ───────────────────────────────────────────── */
.newsletter{background:linear-gradient(135deg,var(--maroon-dark) 0%,var(--navy) 100%);padding:60px 0;text-align:center}
.newsletter h2{color:#fff;margin-bottom:8px}
.newsletter p{color:rgba(255,255,255,.7);margin-bottom:28px}
.newsletter-form{display:flex;max-width:480px;margin:0 auto;gap:0;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.3)}
.newsletter-form input{flex:1;padding:14px 20px;border:none;font-size:15px;outline:none}
.newsletter-form button{background:var(--gold);color:var(--dark);border:none;padding:14px 24px;font-size:15px;font-weight:700;cursor:pointer;white-space:nowrap;transition:background .2s}
.newsletter-form button:hover{background:var(--gold-warm)}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer{background:#111;color:#aaa;font-size:14px}
.footer-top{padding:60px 0 40px;display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:40px}
.footer-brand .logo-text .site-name{color:#fff}
.footer-brand .logo-text .tagline{color:var(--gold)}
.footer-brand p{margin-top:16px;color:#888;line-height:1.7;font-size:13px}
.footer-social{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.footer-social a{width:36px;height:36px;background:#222;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#aaa;font-size:16px;transition:all .2s;text-decoration:none}
.footer-social a:hover{background:var(--gold);color:#fff}
.footer-col h4{color:#fff;font-size:14px;letter-spacing:1px;text-transform:uppercase;margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid #333;font-family:'Inter',sans-serif}
.footer-col ul li{margin-bottom:8px}
.footer-col ul a{color:#888;transition:color .2s;font-size:13px}
.footer-col ul a:hover{color:var(--gold)}
.footer-contact li{display:flex;gap:10px;color:#888;margin-bottom:12px;font-size:13px;align-items:flex-start}
.footer-contact .icon{color:var(--gold);flex-shrink:0;margin-top:2px}
.footer-bottom{border-top:1px solid #222;padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{color:#666;font-size:12px;margin:0}
.footer-payments{display:flex;gap:8px;align-items:center}
.payment-icon{background:#222;border-radius:4px;padding:4px 10px;font-size:11px;color:#aaa;font-weight:600}

/* ─── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumbs{padding:14px 0;border-bottom:1px solid var(--border);margin-bottom:0;background:var(--light)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:4px;align-items:center;font-size:13px;color:#999}
.breadcrumbs a{color:#777}
.breadcrumbs a:hover{color:var(--gold)}
.breadcrumbs .sep{color:#ccc;margin:0 2px}
.breadcrumbs [aria-current]{color:var(--dark);font-weight:600}

/* ─── SHOP / CATEGORY PAGE ─────────────────────────────────── */
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:32px;padding:40px 0}
.shop-sidebar{position:sticky;top:80px;height:fit-content}
.sidebar-widget{border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px;margin-bottom:20px}
.sidebar-widget h4{font-size:14px;text-transform:uppercase;letter-spacing:1px;color:var(--dark);margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(--border);font-family:'Inter',sans-serif}
.filter-list li{margin-bottom:6px}
.filter-list label{display:flex;align-items:center;gap:8px;cursor:pointer;font-size:14px;color:#555}
.filter-list input[type=checkbox]{width:16px;height:16px;accent-color:var(--gold)}
.filter-list .count{margin-left:auto;background:var(--light);border-radius:10px;padding:1px 7px;font-size:11px;color:#999}
.price-range-inputs{display:flex;gap:10px;margin-top:12px}
.price-range-inputs input{width:100%;padding:8px;border:1px solid var(--border);border-radius:var(--radius);font-size:13px;text-align:center}
.shop-main-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;flex-wrap:wrap;gap:12px}
.results-count{font-size:14px;color:#666}
.sort-select{padding:8px 14px;border:1px solid var(--border);border-radius:var(--radius);font-size:14px;background:#fff;cursor:pointer}
.category-banner{background:linear-gradient(135deg,var(--dark) 0%,#2a1a00 100%);padding:50px 0;text-align:center;margin-bottom:32px}
.category-banner h1{color:#fff;margin-bottom:8px}
.category-banner p{color:rgba(255,255,255,.7);max-width:500px;margin:0 auto}

/* ─── PRODUCT PAGE ─────────────────────────────────────────── */
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;padding:40px 0}
.product-gallery{}
.gallery-main{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);background:var(--light);cursor:zoom-in;aspect-ratio:1}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.gallery-thumb{width:70px;height:70px;border-radius:var(--radius);overflow:hidden;border:2px solid var(--border);cursor:pointer;transition:border-color .2s;flex-shrink:0}
.gallery-thumb:hover,.gallery-thumb.active{border-color:var(--gold)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-info{}
.product-info .category-link{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:var(--gold);text-decoration:none}
.product-info h1{font-size:clamp(22px,3.5vw,34px);margin:10px 0 14px;line-height:1.25}
.product-rating-row{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.product-price-block{margin:20px 0;padding:20px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.product-price-block .price-sale{font-size:30px;font-weight:700}
.product-price-block .price-orig{font-size:18px}
.product-price-block .you-save{font-size:13px;color:#2ecc71;margin-top:6px;display:block}
.short-desc{color:#555;line-height:1.7;margin:16px 0}
.product-actions{margin:24px 0;display:flex;gap:12px;flex-wrap:wrap}
.qty-selector{display:flex;align-items:center;border:2px solid var(--border);border-radius:var(--radius);overflow:hidden}
.qty-btn{width:40px;height:48px;background:var(--light);border:none;font-size:18px;cursor:pointer;transition:background .2s}
.qty-btn:hover{background:var(--gold);color:#fff}
.qty-input{width:56px;height:48px;border:none;text-align:center;font-size:16px;font-weight:600;border-left:1px solid var(--border);border-right:1px solid var(--border)}
.product-badges{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0}
.product-badge-item{display:flex;align-items:center;gap:6px;font-size:13px;color:#555;background:var(--light);padding:6px 12px;border-radius:20px}
.product-badge-item .icon{color:var(--gold)}
.product-share{margin-top:20px;display:flex;gap:10px;align-items:center}
.product-share span{font-size:13px;color:#999}
.share-btn{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;transition:opacity .2s;text-decoration:none}
.share-btn:hover{opacity:.8}
.share-facebook{background:#3b5998;color:#fff}
.share-pinterest{background:#e60023;color:#fff}
.share-twitter{background:#1da1f2;color:#fff}
.share-whatsapp{background:#25d366;color:#fff}
.product-tabs{margin-top:40px}
.tab-nav{display:flex;gap:0;border-bottom:2px solid var(--border);flex-wrap:wrap}
.tab-btn{padding:12px 20px;font-size:14px;font-weight:600;color:#777;background:none;border:none;cursor:pointer;border-bottom:3px solid transparent;margin-bottom:-2px;transition:all .2s}
.tab-btn.active,.tab-btn:hover{color:var(--gold);border-bottom-color:var(--gold)}
.tab-content{display:none;padding:24px 0;line-height:1.8;color:#555}
.tab-content.active{display:block}
.tab-content h4{color:var(--dark);margin:16px 0 8px}
.tab-content ul{list-style:disc;padding-left:20px;color:#555}
.tab-content ul li{margin-bottom:6px;font-size:15px}

/* Sticky WhatsApp float */
.whatsapp-float{position:fixed;bottom:28px;right:24px;z-index:999;background:#25D366;color:#fff;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:0 4px 16px rgba(37,211,102,.4);transition:transform .2s;text-decoration:none}
.whatsapp-float:hover{transform:scale(1.1);color:#fff}

/* ─── CART PAGE ─────────────────────────────────────────────── */
.cart-layout{display:grid;grid-template-columns:1fr 360px;gap:32px;padding:40px 0;align-items:start}
.cart-table{width:100%;border-collapse:collapse}
.cart-table th{text-align:left;padding:12px 16px;font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#999;border-bottom:2px solid var(--border);font-family:'Inter',sans-serif}
.cart-table td{padding:16px;border-bottom:1px solid var(--border);vertical-align:middle}
.cart-item-img{width:80px;height:80px;border-radius:var(--radius);object-fit:cover;border:1px solid var(--border)}
.cart-item-name{font-weight:600;color:var(--dark);font-size:15px}
.cart-item-sku{font-size:12px;color:#999;margin-top:3px}
.cart-remove{color:#ccc;font-size:20px;cursor:pointer;background:none;border:none;padding:4px;transition:color .2s}
.cart-remove:hover{color:#e74c3c}
.order-summary-card{background:var(--light);border-radius:var(--radius-lg);padding:24px;border:1px solid var(--border)}
.order-summary-card h3{margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.summary-row{display:flex;justify-content:space-between;margin-bottom:12px;font-size:14px}
.summary-row.total{font-size:17px;font-weight:700;padding-top:12px;border-top:2px solid var(--gold);color:var(--dark);margin-top:4px}
.summary-row.discount{color:#2ecc71;font-weight:600}
.coupon-form{display:flex;gap:8px;margin:16px 0}
.coupon-form input{flex:1;padding:10px 14px;border:1px solid var(--border);border-radius:var(--radius);font-size:14px}

/* ─── CHECKOUT ──────────────────────────────────────────────── */
.checkout-layout{display:grid;grid-template-columns:1fr 380px;gap:32px;padding:40px 0;align-items:start}
.checkout-section{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px;margin-bottom:20px}
.checkout-section h3{margin-bottom:20px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:600;color:#555;margin-bottom:6px;text-transform:uppercase;letter-spacing:.5px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:var(--radius);font-size:15px;transition:border-color .2s;background:#fff}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold)}
.form-group .input-error{border-color:#e74c3c}
.form-error{font-size:12px;color:#e74c3c;margin-top:4px}
.payment-methods{display:flex;flex-direction:column;gap:12px}
.payment-method{border:2px solid var(--border);border-radius:var(--radius);padding:14px 16px;cursor:pointer;transition:border-color .2s;display:flex;align-items:center;gap:12px}
.payment-method:hover{border-color:var(--gold)}
.payment-method.selected{border-color:var(--gold);background:rgba(201,168,76,.05)}
.payment-method input[type=radio]{width:18px;height:18px;accent-color:var(--gold)}
.payment-method-name{font-weight:600;font-size:15px}
.payment-method-desc{font-size:12px;color:#999;margin-top:2px}
.trust-badges{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:16px}
.trust-badge{display:flex;align-items:center;gap:6px;font-size:12px;color:#666;background:var(--light);padding:6px 12px;border-radius:20px}

/* ─── MY ACCOUNT ────────────────────────────────────────────── */
.account-layout{display:grid;grid-template-columns:240px 1fr;gap:32px;padding:40px 0;align-items:start}
.account-sidebar{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;position:sticky;top:80px}
.account-sidebar .user-info{background:var(--dark);padding:24px;text-align:center}
.account-sidebar .user-avatar{width:64px;height:64px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:26px;font-weight:700;color:#fff;font-family:'Playfair Display',serif;margin:0 auto 12px}
.account-sidebar .user-name{color:#fff;font-size:16px;font-weight:600}
.account-sidebar .user-email{color:#aaa;font-size:12px;margin-top:3px}
.account-nav a,.account-nav-link{display:flex;align-items:center;gap:12px;padding:13px 20px;border-bottom:1px solid var(--border);color:#555;font-size:14px;font-weight:500;transition:all .2s;text-decoration:none}
.account-nav a:hover,.account-nav a.active,.account-nav-link:hover,.account-nav-link.active{color:var(--gold);background:var(--light);padding-left:24px}
.account-nav-icon{width:20px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#999}
.account-nav-link.active .account-nav-icon,.account-nav-link:hover .account-nav-icon{color:var(--gold)}
.account-nav-logout{color:#e74c3c !important}
.account-nav-logout:hover{color:#c0392b !important;background:#fff5f5 !important}
.account-nav .icon{width:20px;text-align:center;color:#999;flex-shrink:0}
.account-nav a.active .icon,.account-nav a:hover .icon{color:var(--gold)}
.order-status{display:inline-block;padding:3px 12px;border-radius:20px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}
.status-pending{background:#fff3cd;color:#856404}
.status-processing{background:#cce5ff;color:#004085}
.status-completed{background:#d4edda;color:#155724}
.status-cancelled{background:#f8d7da;color:#721c24}
.status-on_hold{background:#e2d9f3;color:#6f42c1}
.status-refunded{background:#f5c6cb;color:#721c24}

/* Order timeline */
.order-timeline{position:relative;padding-left:30px}
.order-timeline::before{content:'';position:absolute;left:9px;top:0;bottom:0;width:2px;background:var(--border)}
.timeline-item{position:relative;margin-bottom:20px}
.timeline-dot{position:absolute;left:-30px;top:3px;width:18px;height:18px;border-radius:50%;background:var(--gold);border:3px solid #fff;box-shadow:0 0 0 2px var(--gold)}
.timeline-date{font-size:12px;color:#999;margin-bottom:2px}
.timeline-status{font-weight:600;color:var(--dark)}
.timeline-note{font-size:13px;color:#666;margin-top:3px}

/* ─── ADMIN PANEL ───────────────────────────────────────────── */
.admin-body{background:#f4f6f9;min-height:100vh;font-size:14px}
.admin-sidebar{width:240px;background:#1A1A1A;position:fixed;top:0;left:0;height:100vh;overflow-y:auto;z-index:100;transition:transform .3s}
.admin-logo{padding:20px 24px;border-bottom:1px solid #333;display:flex;align-items:center;gap:10px}
.admin-logo span{color:var(--gold);font-family:'Playfair Display',serif;font-size:16px;font-weight:700}
.admin-nav{padding:12px 0}
.admin-nav a{display:flex;align-items:center;gap:12px;padding:11px 24px;color:#aaa;font-size:13px;font-weight:500;transition:all .2s;text-decoration:none;border-left:3px solid transparent}
.admin-nav a:hover,.admin-nav a.active{color:#fff;background:rgba(255,255,255,.05);border-left-color:var(--gold)}
.admin-nav a .icon{width:18px;text-align:center;flex-shrink:0}
.admin-nav .nav-section{padding:16px 24px 6px;font-size:10px;letter-spacing:1.5px;color:#555;text-transform:uppercase}
.admin-main{margin-left:240px;min-height:100vh;display:flex;flex-direction:column}
.admin-topbar{background:#fff;border-bottom:1px solid #e5e7eb;padding:0 24px;height:60px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:50;box-shadow:0 1px 3px rgba(0,0,0,.06)}
.admin-topbar h1{font-size:18px;color:#1A1A1A;font-family:'Playfair Display',serif}
.admin-content{flex:1;padding:28px}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-bottom:28px}
.stat-card{background:#fff;border-radius:var(--radius-lg);padding:20px 24px;border:1px solid #e5e7eb;display:flex;align-items:center;gap:16px}
.stat-icon{width:50px;height:50px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0}
.stat-icon.gold{background:rgba(201,168,76,.1);color:var(--gold)}
.stat-icon.blue{background:rgba(59,130,246,.1);color:#3b82f6}
.stat-icon.green{background:rgba(16,185,129,.1);color:#10b981}
.stat-icon.red{background:rgba(239,68,68,.1);color:#ef4444}
.stat-value{font-size:26px;font-weight:700;color:#1A1A1A;line-height:1}
.stat-label{font-size:12px;color:#999;margin-top:3px;text-transform:uppercase;letter-spacing:.5px}
.stat-trend{font-size:11px;margin-top:4px}
.stat-trend.up{color:#10b981}
.stat-trend.down{color:#ef4444}
.admin-table-card{background:#fff;border-radius:var(--radius-lg);border:1px solid #e5e7eb;overflow:hidden}
.admin-table-header{padding:16px 20px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #e5e7eb}
.admin-table-header h3{font-size:15px;color:#1A1A1A}
table.data-table{width:100%;border-collapse:collapse}
.data-table th{padding:11px 16px;text-align:left;font-size:11px;text-transform:uppercase;letter-spacing:.8px;color:#9ca3af;border-bottom:1px solid #e5e7eb;font-weight:600;background:#f9fafb}
.data-table td{padding:13px 16px;border-bottom:1px solid #f3f4f6;color:#374151;vertical-align:middle;font-size:13px}
.data-table tr:hover td{background:#fafafa}
.data-table tr:last-child td{border-bottom:none}
.data-table .actions{display:flex;gap:6px}
.action-btn{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:var(--radius);font-size:14px;border:1px solid #e5e7eb;cursor:pointer;text-decoration:none;transition:all .2s;background:#fff}
.action-btn:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.action-btn.danger:hover{background:#ef4444;border-color:#ef4444}
.admin-form{background:#fff;border-radius:var(--radius-lg);border:1px solid #e5e7eb;padding:28px}
.admin-form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.admin-field{margin-bottom:20px}
.admin-field label{display:block;font-size:12px;font-weight:600;color:#374151;margin-bottom:6px;text-transform:uppercase;letter-spacing:.5px}
.admin-field input,.admin-field select,.admin-field textarea{width:100%;padding:10px 14px;border:1px solid #d1d5db;border-radius:var(--radius);font-size:14px;transition:border-color .2s}
.admin-field input:focus,.admin-field select:focus,.admin-field textarea:focus{outline:none;border-color:var(--gold)}
.admin-field textarea{min-height:120px;resize:vertical}
.image-upload-zone{border:2px dashed var(--border);border-radius:var(--radius-lg);padding:40px;text-align:center;cursor:pointer;transition:border-color .2s}
.image-upload-zone:hover,.image-upload-zone.dragover{border-color:var(--gold);background:rgba(201,168,76,.02)}
.image-preview-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:10px;margin-top:16px}
.image-preview-item{position:relative;aspect-ratio:1;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}
.image-preview-item img{width:100%;height:100%;object-fit:cover}
.image-preview-remove{position:absolute;top:4px;right:4px;background:rgba(239,68,68,.9);color:#fff;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;cursor:pointer;border:none;line-height:1}
.low-stock-badge{background:#fff3cd;color:#856404;padding:2px 8px;border-radius:10px;font-size:11px;font-weight:600}
.stock-badge-in{background:#d1fae5;color:#065f46;padding:2px 8px;border-radius:10px;font-size:11px;font-weight:600}
.stock-badge-out{background:#fee2e2;color:#991b1b;padding:2px 8px;border-radius:10px;font-size:11px;font-weight:600}

/* ─── ALERTS ────────────────────────────────────────────────── */
.alert{padding:14px 18px;border-radius:var(--radius);margin:12px 0;font-size:14px;border:1px solid;display:flex;align-items:center;gap:10px}
.alert-success{background:#d4edda;color:#155724;border-color:#c3e6cb}
.alert-error{background:#f8d7da;color:#721c24;border-color:#f5c6cb}
.alert-info{background:#cce5ff;color:#004085;border-color:#b8daff}
.alert-warning{background:#fff3cd;color:#856404;border-color:#ffeeba}

/* ─── PAGINATION ────────────────────────────────────────────── */
.pagination ul{display:flex;gap:6px;justify-content:center;flex-wrap:wrap;margin:40px 0}
.pagination li a,.pagination li span{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid var(--border);border-radius:var(--radius);font-size:14px;color:#555;transition:all .2s;text-decoration:none}
.pagination li.active a,.pagination li a:hover{background:var(--gold);color:#fff;border-color:var(--gold)}

/* ─── FORMS ─────────────────────────────────────────────────── */
.form-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:36px;max-width:480px;margin:0 auto;box-shadow:var(--shadow)}
.form-card h2{margin-bottom:8px}
.form-card p{color:#666;margin-bottom:24px;font-size:14px}
.divider{text-align:center;color:#999;position:relative;margin:20px 0}
.divider::before{content:'';position:absolute;left:0;right:0;top:50%;height:1px;background:var(--border)}
.divider span{background:#fff;padding:0 14px;position:relative;font-size:13px}

/* ─── RANGE SLIDER ──────────────────────────────────────────── */
input[type=range]{-webkit-appearance:none;width:100%;height:4px;background:var(--border);border-radius:2px;outline:none}
input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:18px;height:18px;background:var(--gold);border-radius:50%;cursor:pointer;box-shadow:0 1px 4px rgba(0,0,0,.2)}

/* ─── TABS ───────────────────────────────────────────────────── */
.tabs-container .tab-pane{display:none}
.tabs-container .tab-pane.active{display:block}

/* ─── LOADING ───────────────────────────────────────────────── */
.spinner{width:24px;height:24px;border:3px solid rgba(201,168,76,.3);border-top-color:var(--gold);border-radius:50%;animation:spin .7s linear infinite;display:inline-block}
@keyframes spin{to{transform:rotate(360deg)}}

/* ─── MODALS ─────────────────────────────────────────────────── */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:2000;align-items:center;justify-content:center}
.modal-overlay.open{display:flex}
.modal{background:#fff;border-radius:var(--radius-lg);padding:32px;max-width:560px;width:90%;max-height:90vh;overflow-y:auto;position:relative;box-shadow:var(--shadow-lg)}
.modal-close{position:absolute;top:16px;right:16px;background:none;border:none;font-size:22px;cursor:pointer;color:#999;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%}
.modal-close:hover{background:var(--light);color:var(--dark)}

/* ─── QUICK VIEW ─────────────────────────────────────────────── */
.quick-view-modal .modal{max-width:800px}
.quick-view-layout{display:grid;grid-template-columns:1fr 1fr;gap:28px}

/* ─── TOAST ──────────────────────────────────────────────────── */
.toast-container{position:fixed;bottom:24px;left:24px;z-index:9999;display:flex;flex-direction:column;gap:8px}
.toast{background:var(--dark);color:#fff;padding:12px 18px;border-radius:var(--radius);font-size:14px;box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:10px;opacity:0;transform:translateY(8px);transition:opacity .25s,transform .25s;max-width:360px}
.toast.toast-visible{opacity:1;transform:translateY(0)}
.toast.success,.toast.toast-success{border-left:4px solid #2ecc71}
.toast.error,.toast.toast-error{border-left:4px solid #e74c3c}
.toast.info,.toast.toast-info{border-left:4px solid var(--gold)}
.toast.warning,.toast.toast-warning{border-left:4px solid #f39c12}

/* Wishlist button — wishlisted state */
.wishlist-btn.wishlisted svg path{fill:currentColor}
.wishlist-btn.wishlisted{color:#e74c3c}
.wishlist-btn svg path{transition:fill .2s}

/* ATC success state */
.add-to-cart-btn.atc-success{background:#2ecc71;border-color:#2ecc71}

/* Header SVG icons */
.header-icon svg{display:block;transition:stroke .2s}
.header-icon:hover svg{stroke:var(--gold)}
@keyframes slideUp{from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px){
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
  .product-layout{gap:32px}
  .shop-layout{grid-template-columns:220px 1fr}
}

@media(max-width:768px){
  .topbar .topbar-inner{justify-content:center}
  .topbar .social-links{display:none}
  .main-nav{display:none}
  .hamburger{display:flex}
  .search-form input{width:140px}
  .hero-slide.active{height:420px}
  .hero-text{padding:0 20px}
  .hero-text h1{font-size:26px}
  .trust-items{gap:20px}
  .products-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .footer-top{grid-template-columns:1fr;gap:24px}
  .shop-layout{grid-template-columns:1fr}
  .shop-sidebar{display:none;position:static}
  .shop-sidebar.open{display:block}
  .product-layout{grid-template-columns:1fr}
  .cart-layout{grid-template-columns:1fr}
  .checkout-layout{grid-template-columns:1fr}
  .account-layout{grid-template-columns:1fr}
  .account-sidebar{position:static}
  .admin-sidebar{transform:translateX(-100%)}
  .admin-sidebar.open{transform:translateX(0)}
  .admin-main{margin-left:0}
  .form-row{grid-template-columns:1fr}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .quick-view-layout{grid-template-columns:1fr}
}

@media(max-width:480px){
  .hero-slide.active{height:320px}
  .products-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .product-card-body{padding:12px}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:1fr 1fr}
  .btn-lg{font-size:15px;padding:14px 24px}
  section{padding:40px 0}
  .trust-items{flex-direction:column;align-items:center;gap:12px}
}

/* ─── SHOP / CATEGORY ADDITIONS ─────────────────────────────── */
.cat-banner{background:linear-gradient(135deg,var(--dark) 0%,#2a1a00 100%);padding:50px 0;text-align:center;position:relative;overflow:hidden}
.cat-banner-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.cat-banner .container{position:relative;z-index:1}
.cat-banner h1{color:#fff;margin-bottom:8px}
.cat-banner p{color:rgba(255,255,255,.75);max-width:520px;margin:0 auto}

.cat-pills-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.cat-pill-link{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:20px;font-size:13px;font-weight:600;border:1px solid var(--border);color:#555;background:#fff;transition:all .2s;text-decoration:none}
.cat-pill-link:hover,.cat-pill-link.active{background:var(--gold);color:#fff;border-color:var(--gold)}
.cat-pill{background:var(--light);color:#999;font-size:11px;padding:1px 6px;border-radius:10px;margin-left:4px}

.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:10px}
.shop-main{min-width:0}

.sidebar-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#888;margin-bottom:10px;padding-bottom:6px;border-bottom:1px solid var(--border)}

.price-range-wrap{padding:8px 0}
.price-slider{width:100%;margin-bottom:10px}
.price-input-group{display:flex;align-items:center;gap:8px}
.price-input-group input{width:80px;padding:7px 10px;border:1px solid var(--border);border-radius:var(--radius);font-size:13px;text-align:center}
.price-input-group span{color:#999;font-size:13px}

/* ─── BLOG POST PAGE ─────────────────────────────────────────── */
.blog-post-layout{display:grid;grid-template-columns:1fr 300px;gap:40px;padding:40px 0;align-items:start}
.blog-article{min-width:0}
.blog-sidebar{min-width:0}
.blog-sidebar .sidebar-widget{border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px;margin-bottom:24px}
.blog-sidebar .sidebar-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#888;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid var(--border)}
.blog-featured{border-radius:var(--radius-lg);overflow:hidden;margin-bottom:24px;border:1px solid var(--border)}
.blog-featured img{width:100%;height:360px;object-fit:cover}

.blog-post-content{line-height:1.85;color:#444;font-size:16px}
.blog-post-content h2,.blog-post-content h3,.blog-post-content h4{color:var(--dark);margin:28px 0 12px}
.blog-post-content p{margin-bottom:1.2em}
.blog-post-content ul,.blog-post-content ol{padding-left:24px;margin-bottom:1.2em}
.blog-post-content ul li,.blog-post-content ol li{margin-bottom:6px}
.blog-post-content img{border-radius:var(--radius);max-width:100%;margin:12px 0}
.blog-post-content blockquote{border-left:4px solid var(--gold);padding:12px 20px;background:var(--light);border-radius:0 var(--radius) var(--radius) 0;font-style:italic;color:#555;margin:20px 0}

.author-box{display:flex;gap:20px;align-items:flex-start;padding:24px;background:var(--light);border-radius:var(--radius-lg);margin-top:32px;border:1px solid var(--border)}
.author-box .avatar{width:64px;height:64px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;color:#fff;font-size:26px;font-weight:700;flex-shrink:0;font-family:'Playfair Display',serif}
.author-box .name{font-weight:700;font-size:16px;margin-bottom:4px}
.author-box .bio{font-size:13px;color:#666;line-height:1.6}

.blog-nav{display:flex;gap:16px;margin-top:32px}
.blog-nav-prev,.blog-nav-next{flex:1;padding:16px;border:1px solid var(--border);border-radius:var(--radius-lg);font-size:13px;color:#555;transition:border-color .2s;text-decoration:none}
.blog-nav-prev:hover,.blog-nav-next:hover{border-color:var(--gold);color:var(--gold)}
.blog-nav-next{text-align:right}
.blog-nav .dir{font-size:11px;color:#999;margin-bottom:4px;display:block;text-transform:uppercase;letter-spacing:1px}
.blog-nav .ttl{font-weight:600;color:var(--dark);font-size:14px}

.share-bar{display:flex;align-items:center;gap:10px;margin:20px 0;padding:16px;background:var(--light);border-radius:var(--radius-lg)}
.share-bar span{font-size:13px;color:#666;font-weight:600}

.blog-cat-tag{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:600;background:var(--light);color:var(--gold);border:1px solid var(--gold-light);margin-right:4px;text-decoration:none}
.blog-cat-tag:hover{background:var(--gold);color:#fff}

.sidebar-post{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--border)}
.sidebar-post:last-child{border-bottom:none}
.sidebar-post img{width:56px;height:56px;object-fit:cover;border-radius:var(--radius);flex-shrink:0}
.sidebar-post .title{font-size:13px;font-weight:600;color:var(--dark);line-height:1.35;margin-bottom:3px}
.sidebar-post .date{font-size:11px;color:#999}
.sidebar-post .title a{color:var(--dark);text-decoration:none}
.sidebar-post .title a:hover{color:var(--gold)}

.sidebar-product{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--border)}
.sidebar-product:last-child{border-bottom:none}
.sidebar-product img{width:52px;height:52px;object-fit:cover;border-radius:var(--radius);flex-shrink:0;border:1px solid var(--border)}
.sidebar-product .name{font-size:13px;font-weight:600;color:var(--dark);line-height:1.3;margin-bottom:2px}
.sidebar-product .name a{color:var(--dark);text-decoration:none}
.sidebar-product .name a:hover{color:var(--gold)}
.sidebar-product .price{font-size:13px;font-weight:700;color:var(--gold)}

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-info-item{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px}
.contact-info-item .icon{width:44px;height:44px;background:var(--light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;border:1px solid var(--border)}
.contact-info-item h5{margin:0 0 4px;font-size:15px;color:var(--dark)}
.contact-info-item p{margin:0;font-size:14px;color:#666}
.contact-info-item a{color:var(--gold)}

/* ─── CHECKOUT ADDITIONS ─────────────────────────────────────── */
.shipping-method-card{border:2px solid var(--border);border-radius:var(--radius);padding:14px 16px;cursor:pointer;transition:border-color .2s;display:flex;align-items:center;gap:12px;margin-bottom:8px}
.shipping-method-card:hover,.shipping-method-card.selected{border-color:var(--gold)}
.payment-method-card{border:2px solid var(--border);border-radius:var(--radius);padding:14px 16px;cursor:pointer;transition:border-color .2s;display:flex;align-items:center;gap:12px;margin-bottom:8px}
.payment-method-card:hover,.payment-method-card.selected{border-color:var(--gold);background:rgba(201,168,76,.03)}

.logged-in-notice{background:var(--light);border:1px solid var(--border);border-radius:var(--radius);padding:10px 14px;font-size:13px;color:#555;margin-bottom:16px}
.logged-in-notice strong{color:var(--dark)}

.gift-wrap-box{border:2px solid var(--border);border-radius:var(--radius-lg);padding:16px;margin-top:12px;transition:border-color .2s}
.gift-wrap-box.active{border-color:var(--gold);background:rgba(201,168,76,.03)}
.gift-wrap-label{display:flex;align-items:center;gap:10px;cursor:pointer;font-size:15px;font-weight:600}
.gift-wrap-label input{width:18px;height:18px;accent-color:var(--gold)}

/* ─── ADDRESS CARDS (My Account) ─────────────────────────────── */
.address-cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.address-saved-card{border:1px solid var(--border);border-radius:var(--radius-lg);padding:18px;background:#fff;position:relative}
.address-saved-card .default-label{display:inline-block;background:var(--gold);color:#fff;font-size:10px;font-weight:700;padding:2px 8px;border-radius:10px;margin-bottom:8px;text-transform:uppercase;letter-spacing:.5px}
.address-saved-card .addr-name{font-weight:700;font-size:15px;margin-bottom:4px}
.address-saved-card .addr-line{font-size:13px;color:#666;line-height:1.6}
.address-saved-card .addr-actions{margin-top:14px;display:flex;gap:8px}
.address-radio-card{border:2px solid var(--border);border-radius:var(--radius-lg);padding:14px 16px;cursor:pointer;transition:border-color .2s;display:flex;gap:12px;align-items:flex-start;margin-bottom:8px}
.address-radio-card.selected,.address-radio-card:has(input:checked){border-color:var(--gold);background:rgba(201,168,76,.04)}
.address-radio-card input[type=radio]{margin-top:2px;accent-color:var(--gold);width:16px;height:16px;flex-shrink:0}

/* ─── POLICY PAGES ───────────────────────────────────────────── */
.policy-content{max-width:860px;margin:0 auto;line-height:1.85;font-size:16px;color:#444}
.policy-content h2{margin:36px 0 12px;font-size:22px;color:var(--dark)}
.policy-content h3{margin:24px 0 10px;font-size:18px;color:var(--dark)}
.policy-content p{margin-bottom:1.2em}
.policy-content ul,.policy-content ol{padding-left:24px;margin-bottom:1.2em}
.policy-content li{margin-bottom:6px}
.policy-nav{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px}
.policy-nav a{padding:7px 16px;border-radius:20px;font-size:13px;font-weight:600;border:1px solid var(--border);color:#555;text-decoration:none;transition:all .2s}
.policy-nav a.active,.policy-nav a:hover{background:var(--gold);color:#fff;border-color:var(--gold)}

/* ─── ORDER CONFIRMATION ─────────────────────────────────────── */
.order-badge{display:inline-block;padding:3px 12px;border-radius:20px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}
.order-badge.status-pending,.order-badge.status-processing{background:#fff3e0;color:#f39c12}
.order-badge.status-shipped{background:#e3f2fd;color:#2196F3}
.order-badge.status-delivered,.order-badge.status-completed{background:#e8f5e9;color:#27ae60}
.order-badge.status-cancelled,.order-badge.status-refunded{background:#fce8e8;color:#e74c3c}
.order-badge.status-on_hold,.order-badge.status-quoted{background:#f3e5f5;color:#9b59b6}

/* ─── EMPTY STATE ────────────────────────────────────────────── */
.empty-state{text-align:center;padding:60px 20px}
.empty-icon{font-size:60px;display:block;margin-bottom:16px;line-height:1}
.empty-state h3{margin-bottom:8px;color:var(--dark)}
.empty-state p{color:#888;max-width:400px;margin:0 auto 20px}

/* ─── SEARCH AUTOCOMPLETE ────────────────────────────────────── */
.search-dropdown{position:absolute;top:calc(100% + 4px);left:0;right:0;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);z-index:500;max-height:420px;overflow-y:auto}
.search-dropdown-item{display:flex;gap:12px;align-items:center;padding:10px 14px;cursor:pointer;transition:background .15s;text-decoration:none;color:inherit;border-bottom:1px solid #f5f5f5}
.search-dropdown-item:last-child{border-bottom:none}
.search-dropdown-item:hover{background:var(--light)}
.search-dropdown-item img{width:44px;height:44px;object-fit:cover;border-radius:var(--radius);border:1px solid var(--border);flex-shrink:0}
.search-dropdown-item .name{font-size:14px;font-weight:600;color:var(--dark);line-height:1.3}
.search-dropdown-item .sub{font-size:12px;color:#888;margin-top:2px}
.search-dropdown-item .price{font-weight:700;color:var(--gold);font-size:13px}
.search-dropdown-type{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#bbb;padding:6px 14px 4px;background:#fafafa}

/* ─── TRACK ORDER ────────────────────────────────────────────── */
.track-result{border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px;margin-top:24px}
.track-steps{display:flex;justify-content:space-between;position:relative;margin:24px 0 8px}
.track-steps::before{content:'';position:absolute;top:20px;left:0;right:0;height:3px;background:var(--border);z-index:0}
.track-step{text-align:center;position:relative;z-index:1;flex:1}
.track-step-dot{width:40px;height:40px;border-radius:50%;background:var(--border);display:flex;align-items:center;justify-content:center;margin:0 auto 8px;font-size:18px;border:3px solid #fff;box-shadow:0 0 0 2px var(--border)}
.track-step.done .track-step-dot{background:var(--gold);border-color:#fff;box-shadow:0 0 0 2px var(--gold)}
.track-step .label{font-size:12px;color:#999;font-weight:600}
.track-step.done .label{color:var(--gold)}

/* ─── CUSTOM ORDERS PAGE ─────────────────────────────────────── */
.custom-process-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:20px;margin:40px 0}
.custom-step{text-align:center;padding:24px 16px;border:1px solid var(--border);border-radius:var(--radius-lg)}
.custom-step-num{width:44px;height:44px;border-radius:50%;background:var(--gold);color:#fff;font-weight:700;font-size:18px;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-family:'Playfair Display',serif}
.custom-step h5{margin-bottom:6px;color:var(--dark)}
.custom-step p{font-size:13px;color:#666;margin:0}

/* ══════════════════════════════════════════════════════════════
   ISSUE 6 — ADMIN MEDIA MANAGER
   ══════════════════════════════════════════════════════════════ */
.media-manager-layout{display:grid;grid-template-columns:1fr 300px;gap:20px;align-items:start}
@media(max-width:1024px){.media-manager-layout{grid-template-columns:1fr}}
.media-main-area{min-width:0}

/* Drop zone */
.media-drop-target{border:2px dashed #ddd;border-radius:12px;padding:32px;text-align:center;cursor:pointer;transition:border-color .2s;display:flex;flex-direction:column;align-items:center}
.media-drop-target:hover{border-color:var(--gold)}

/* Grid */
.media-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:10px}
.media-item{border:2px solid transparent;border-radius:8px;overflow:hidden;background:#f9f9f9;cursor:pointer;position:relative;transition:border-color .2s,box-shadow .2s}
.media-item:hover,.media-item:focus{border-color:var(--gold);outline:none}
.media-item.selected{border-color:var(--gold);box-shadow:0 0 0 2px rgba(201,168,76,.3)}
.media-item--no-alt .media-item-img::after{content:'';display:none}
.media-item-no-alt-badge{position:absolute;top:4px;right:4px;background:#e74c3c;color:#fff;font-size:10px;font-weight:800;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:2;line-height:1}
.media-item-check{position:absolute;top:4px;left:4px;z-index:3}
.media-item-check input{width:16px;height:16px;accent-color:var(--gold);cursor:pointer}
.media-item-img{aspect-ratio:1;overflow:hidden;background:#eee}
.media-item-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.media-item:hover .media-item-img img{transform:scale(1.05)}
.media-item-meta{padding:6px 8px}
.media-item-name{font-size:11px;color:#555;word-break:break-all;line-height:1.3;margin-bottom:2px}
.media-item-size{font-size:10px;color:#aaa}

/* Detail panel — WordPress style */
.media-detail-panel{background:#fff;border:1px solid #ddd;border-radius:8px;position:sticky;top:80px;flex-direction:column;overflow:hidden;box-shadow:var(--shadow)}
.mdp-header{background:#f1f1f1;border-bottom:1px solid #ddd;padding:12px 16px;display:flex;justify-content:space-between;align-items:center}
.mdp-title{font-size:13px;font-weight:600;color:#333}
.mdp-close{background:none;border:none;font-size:18px;cursor:pointer;color:#777;line-height:1;padding:0 4px}
.mdp-close:hover{color:#e74c3c}
.mdp-preview{padding:16px;background:#f9f9f9;border-bottom:1px solid #eee;text-align:center}
.mdp-meta-row{padding:10px 14px;border-bottom:1px solid #eee;display:flex;flex-direction:column;gap:2px}
.mdp-filename,.mdp-date,.mdp-size,.mdp-dims{font-size:11px;color:#666}
.mdp-filename{font-weight:600;color:#333;word-break:break-all}
.mdp-fields{padding:14px}
.mdp-field{margin-bottom:12px}
.mdp-label{display:block;font-size:12px;font-weight:600;color:#555;margin-bottom:4px;display:flex;justify-content:space-between;align-items:center}
.mdp-tip{font-size:10px;color:#aaa;font-weight:400}
.mdp-input{width:100%;padding:7px 10px;border:1px solid #ddd;border-radius:4px;font-size:13px;font-family:inherit;box-sizing:border-box;transition:border-color .2s}
.mdp-input:focus{outline:none;border-color:var(--gold)}
.mdp-copy-btn{font-size:11px;font-weight:600;color:var(--gold);background:none;border:none;cursor:pointer;padding:0}
.mdp-copy-btn:hover{text-decoration:underline}
.mdp-actions{display:flex;gap:8px;margin-top:14px}

/* ── 404 page ────────────────────────────────────────────────── */
.error-404-page{padding:60px 0 80px}
.e404-hero{text-align:center;max-width:600px;margin:0 auto 56px}
.e404-number{font-size:clamp(80px,15vw,160px);font-weight:900;color:var(--border);line-height:1;font-family:'Playfair Display',serif;margin-bottom:-20px}
.e404-title{font-size:clamp(24px,4vw,36px);margin-bottom:12px}
.e404-sub{color:#666;font-size:16px;line-height:1.7;margin-bottom:32px}
.e404-search-form{display:flex;max-width:480px;margin:0 auto 24px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.e404-search-form input{flex:1;padding:14px 18px;border:1px solid var(--border);border-right:none;font-size:15px;border-radius:var(--radius) 0 0 var(--radius);outline:none}
.e404-search-form input:focus{border-color:var(--gold)}
.e404-search-form button{background:var(--gold);color:#fff;border:none;padding:0 20px;font-size:14px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:6px;white-space:nowrap;border-radius:0 var(--radius) var(--radius) 0}
.e404-ctas{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.e404-section-title{font-size:20px;margin-bottom:20px;text-align:center}
.e404-cats{margin-bottom:48px}
.e404-cat-pills{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.e404-cat-pill{display:inline-block;padding:8px 18px;background:var(--light);border:1px solid var(--border);border-radius:20px;font-size:13px;font-weight:600;color:var(--dark);text-decoration:none;transition:all .2s}
.e404-cat-pill:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.e404-products{margin-bottom:40px}

/* ─── PRINT ──────────────────────────────────────────────────── */
@media print{
  .site-header,.topbar,.site-footer,.whatsapp-float{display:none}
  .container{max-width:100%}
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────────── */
@media(max-width:900px){
  .blog-post-layout{grid-template-columns:1fr}
  .blog-sidebar{display:none}
}
@media(max-width:768px){
  .address-cards-grid{grid-template-columns:1fr}
  .blog-nav{flex-direction:column}
  .custom-process-steps{grid-template-columns:repeat(2,1fr)}
  .track-steps{flex-wrap:wrap;gap:16px}
  .track-steps::before{display:none}
}

/* ── Checkout order summary sidebar ─────────────────────────── */
.order-summary{background:var(--light);border-radius:var(--radius-lg);padding:24px;border:1px solid var(--border)}
.order-summary-title{margin:0 0 20px;padding-bottom:14px;border-bottom:1px solid var(--border);font-size:16px;font-weight:700}
.checkout-items{display:flex;flex-direction:column;gap:12px;margin-bottom:16px}
.checkout-item{display:grid;grid-template-columns:68px 1fr auto;align-items:center;gap:12px}
.checkout-item-img{position:relative;width:56px;height:56px;border-radius:6px;overflow:hidden;background:var(--border)}
.checkout-item-img img{width:100%;height:100%;object-fit:cover}
.checkout-item-qty{
  position:absolute;top:-6px;right:-6px;background:var(--dark);color:#fff;
  font-size:11px;font-weight:700;width:18px;height:18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;line-height:1
}
.checkout-item-name{font-size:14px;color:var(--text);font-weight:500;line-height:1.4}
.checkout-item-price{font-size:14px;font-weight:700;white-space:nowrap}
.checkout-divider{height:1px;background:var(--border);margin:14px 0}

/* ── Order row totals (checkout + confirmation + track) ─────── */
.order-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:6px 0;font-size:14px;color:var(--text-light)
}
.order-total{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0 0;font-size:16px;font-weight:700;color:var(--dark);
  border-top:2px solid var(--gold);margin-top:6px
}
.order-total span:last-child{color:var(--gold)}

/* ── Order detail section (track-order, order-confirmation) ─── */
.order-detail-section{padding:20px;background:var(--light);border-radius:var(--radius-lg);border:1px solid var(--border)}
.order-detail-section h4{margin:0 0 10px;font-size:15px;font-weight:700;color:var(--dark)}

/* ── Order tracking timeline steps ──────────────────────────── */
.timeline-step{display:flex;flex-direction:column;align-items:center;gap:8px;flex:1;position:relative}
.timeline-step:not(:last-child)::after{
  content:'';position:absolute;top:14px;left:50%;width:100%;height:2px;
  background:var(--border);z-index:0
}
.timeline-step.done:not(:last-child)::after{background:var(--gold)}
.timeline-dot{
  width:28px;height:28px;border-radius:50%;background:var(--border);border:3px solid #fff;
  display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;
  color:#fff;z-index:1;position:relative
}
.timeline-step.done .timeline-dot{background:var(--gold)}
.timeline-label{font-size:12px;font-weight:600;color:var(--text-light);text-align:center}
.timeline-step.done .timeline-label{color:var(--dark)}
.order-timeline{display:flex;justify-content:space-between;margin:24px 0;position:relative}

/* ── Social share buttons ────────────────────────────────────── */
.share-fb{background:#1877f2;color:#fff}
.share-tw{background:#1da1f2;color:#fff}

/* ══════════════════════════════════════════════════════════════
   4.3 CATEGORY GRID — Flipkart Style
   ══════════════════════════════════════════════════════════════ */
.cat-section{padding:60px 0;background:var(--light)}
.cat-flip-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}
.cat-flip-card{display:flex;flex-direction:column;border-radius:var(--radius-lg);overflow:hidden;background:#fff;border:1px solid var(--border);text-decoration:none;transition:box-shadow .25s,transform .25s;cursor:pointer}
.cat-flip-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.12);transform:translateY(-4px)}
.cat-flip-img-wrap{position:relative;aspect-ratio:1;overflow:hidden;background:var(--light)}
.cat-flip-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.cat-flip-card:hover .cat-flip-img-wrap img{transform:scale(1.05)}
.cat-flip-new{position:absolute;top:8px;left:8px;background:var(--gold);color:#fff;font-size:10px;font-weight:800;padding:2px 8px;border-radius:10px;letter-spacing:.5px;text-transform:uppercase}
.cat-flip-info{padding:10px 12px;display:flex;flex-direction:column;gap:2px}
.cat-flip-name{font-size:13px;font-weight:700;color:var(--dark);line-height:1.3}
.cat-flip-count{font-size:11px;color:#999}
@media(max-width:480px){.cat-flip-grid{grid-template-columns:repeat(2,1fr)}}

/* ══════════════════════════════════════════════════════════════
   4.4 FEATURED STRIP — Horizontal Scroll
   ══════════════════════════════════════════════════════════════ */
.featured-strip-section{padding:60px 0;background:#fff}
.strip-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:24px}
.strip-title{font-size:clamp(20px,3vw,28px);color:var(--dark);margin:0;display:flex;align-items:center}
.strip-sub{font-size:13px;color:#888;margin:4px 0 0}
.strip-view-all{font-size:14px;font-weight:600;color:var(--gold);white-space:nowrap;text-decoration:none}
.strip-view-all:hover{text-decoration:underline}
.products-scroll-wrap{position:relative}
.products-scroll{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:8px;-webkit-overflow-scrolling:touch}
.products-scroll::-webkit-scrollbar{display:none}
.products-scroll .product-card{flex:0 0 220px;scroll-snap-align:start}
.scroll-arrow{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;z-index:2;transition:background .2s;color:var(--dark)}
.scroll-arrow:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.scroll-arrow-left{left:-20px}
.scroll-arrow-right{right:-20px}
@media(max-width:768px){.scroll-arrow{display:none}.products-scroll .product-card{flex:0 0 180px}}

/* ══════════════════════════════════════════════════════════════
   4.5 WHY US — 3-Column Parchment
   ══════════════════════════════════════════════════════════════ */
.why-us-section{padding:70px 0;background:var(--light)}
.why-us-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:0}
.why-us-card{background:#fff;border-radius:var(--radius-lg);padding:36px 28px;text-align:center;border:1px solid var(--border);transition:box-shadow .25s,transform .25s;position:relative}
.why-us-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.why-us-card--featured{border-color:var(--gold);border-width:2px}
.why-us-card--featured::before{content:'Most Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--gold);color:#fff;font-size:10px;font-weight:700;padding:3px 12px;border-radius:10px;letter-spacing:.5px}
.why-us-icon{width:72px;height:72px;background:var(--light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;border:1px solid var(--border)}
.why-us-card h4{font-size:18px;margin-bottom:12px;color:var(--dark)}
.why-us-card p{font-size:14px;color:#666;line-height:1.7;margin:0}
@media(max-width:768px){.why-us-grid{grid-template-columns:1fr}}

/* ══════════════════════════════════════════════════════════════
   4.6 INSTAGRAM TEASER
   ══════════════════════════════════════════════════════════════ */
.insta-section{background:#1a1a1a}
.insta-header{padding:40px 0 20px;text-align:center;background:#1a1a1a}
.insta-header .eyebrow{color:var(--gold)}
.insta-header h2{color:#fff}
.insta-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:3px}
.insta-cell{position:relative;aspect-ratio:1;overflow:hidden;background:#222;display:block}
.insta-cell img{width:100%;height:100%;object-fit:cover;transition:transform .4s,filter .3s}
.insta-cell:hover img{transform:scale(1.08);filter:brightness(.7)}
.insta-cell-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}
.insta-cell:hover .insta-cell-overlay{opacity:1}
@media(max-width:768px){.insta-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:480px){.insta-grid{grid-template-columns:repeat(2,1fr)}}

/* ══════════════════════════════════════════════════════════════
   ISSUE 5 — PRODUCT PAGE (Flipkart style)
   ══════════════════════════════════════════════════════════════ */

/* Sticky info column on desktop */
.product-info-sticky{position:sticky;top:80px;align-self:start}
.product-title{font-size:clamp(20px,3vw,28px);font-weight:700;line-height:1.3;margin:8px 0 14px}
.product-sku{font-size:12px;color:#999;margin-left:10px}

/* Price block — Flipkart style */
.ppb-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.ppb-sale{font-size:32px;font-weight:800;color:var(--dark)}
.ppb-mrp{font-size:18px;color:#999;text-decoration:line-through}
.ppb-pct{font-size:16px;font-weight:700;color:#2ecc71}
.ppb-price{font-size:32px;font-weight:800;color:var(--dark)}
.ppb-save{font-size:13px;color:#2ecc71;margin-top:4px;font-weight:600}

/* Key highlights box */
.product-highlights-box{background:var(--light);border-radius:var(--radius);padding:16px 20px;margin:18px 0;border-left:3px solid var(--gold)}
.phb-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--dark);margin-bottom:10px}
.phb-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.phb-list li{display:flex;align-items:flex-start;gap:8px;font-size:14px;color:#444;line-height:1.5}
.phb-desc{font-size:14px;color:#555;line-height:1.65;margin:0}

/* Delivery box */
.product-delivery-box{display:flex;align-items:flex-start;gap:12px;padding:14px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);margin:16px 0}
.pdb-icon{color:var(--gold);flex-shrink:0;margin-top:1px}
.pdb-label{font-size:12px;color:#999;display:block;text-transform:uppercase;letter-spacing:.5px;margin-bottom:2px}
.pdb-value{font-size:14px;color:#444}

/* Stock row */
.product-stock-row{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.stock-badge{display:inline-flex;align-items:center;gap:4px;font-size:13px;font-weight:700;padding:4px 12px;border-radius:12px}
.stock-in{background:#d4edda;color:#155724}
.stock-out{background:#f8d7da;color:#721c24}
.stock-ship{font-size:12px;color:#666}

/* ATC block */
.product-atc-block{margin-bottom:16px}
.product-atc-btns{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.product-atc-main{flex:1;min-width:160px;gap:8px}

/* Assurance strip */
.product-assurance{display:flex;gap:20px;flex-wrap:wrap;padding:14px 0;border-top:1px solid var(--border);margin-top:12px}
.pa-item{display:flex;align-items:center;gap:6px;font-size:12px;color:#555;font-weight:500}
.pa-item svg{color:var(--gold)}

/* Bulk inquiry */
.bulk-inquiry-details{border:1px solid var(--border);border-radius:var(--radius);padding:14px;margin:12px 0;font-size:14px}
.bulk-inquiry-details summary{cursor:pointer;font-weight:600;color:var(--dark);user-select:none}
.bulk-inquiry-details summary:hover{color:var(--gold)}

/* Gallery fullsize button */
.gallery-fullsize-btn{position:absolute;bottom:12px;right:12px;background:rgba(26,26,26,.7);color:#fff;border:1px solid rgba(255,255,255,.3);border-radius:var(--radius);padding:6px 10px;font-size:11px;cursor:pointer;display:flex;align-items:center;gap:5px;transition:background .2s;z-index:4;font-weight:600}
.gallery-fullsize-btn:hover{background:var(--gold);border-color:var(--gold)}

/* Offers box */
.offers-box{background:#fffdf5;border:1px solid #ffe0a3;border-radius:var(--radius);padding:14px 16px;margin:14px 0}
.offers-box-title{font-size:13px;font-weight:700;color:var(--dark);display:flex;align-items:center;gap:6px;margin-bottom:10px}
.offers-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.offers-list li{font-size:13px;color:#555;padding-left:16px;position:relative}
.offers-list li::before{content:'›';position:absolute;left:0;color:var(--gold);font-weight:700}
.offers-list strong{color:var(--dark)}

/* Delivery checker */
.delivery-check-box{border:1px solid var(--border);border-radius:var(--radius);padding:14px;margin:14px 0}
.dcb-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#888;margin-bottom:8px}
.dcb-row{display:flex;gap:8px}
.dcb-input{flex:1;padding:8px 12px;border:1px solid var(--border);border-radius:var(--radius);font-size:14px}
.dcb-result{font-size:13px;margin-top:8px;min-height:18px}

/* Reviews section */
.reviews-section{margin:56px 0;border-top:2px solid var(--border);padding-top:40px}
.reviews-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}
.reviews-title{font-size:clamp(20px,3vw,26px);margin:0}
.reviews-summary{display:grid;grid-template-columns:auto 1fr;gap:32px;align-items:center;background:var(--light);border-radius:var(--radius-lg);padding:24px;margin-bottom:28px}
.rs-big-score{text-align:center}
.rs-number{font-size:56px;font-weight:900;color:var(--dark);line-height:1;font-family:'Playfair Display',serif}
.rs-count{font-size:13px;color:#888;margin-top:4px}
.rs-bars{display:flex;flex-direction:column;gap:6px}
.rs-bar-row{display:flex;align-items:center;gap:8px;font-size:13px}
.rs-bar-label{width:20px;text-align:right;color:#555;flex-shrink:0}
.rs-bar-track{flex:1;height:8px;background:#e0e0e0;border-radius:4px;overflow:hidden}
.rs-bar-fill{height:100%;background:var(--gold);border-radius:4px;transition:width .3s}
.rs-bar-count{width:24px;color:#888;flex-shrink:0}
.review-summary-mini{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.rsm-score{font-size:36px;font-weight:900;color:var(--dark);font-family:'Playfair Display',serif}
@media(max-width:600px){.reviews-summary{grid-template-columns:1fr}}

/* Review cards */
.reviews-list{display:flex;flex-direction:column;gap:0}
.review-card{display:grid;grid-template-columns:48px 1fr;gap:16px;padding:20px 0;border-bottom:1px solid var(--border)}
.review-avatar{width:44px;height:44px;border-radius:50%;background:var(--gold);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;flex-shrink:0;font-family:'Playfair Display',serif}
.review-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:6px}
.review-author{font-size:15px;color:var(--dark)}
.review-verified{font-size:11px;font-weight:700;color:#2ecc71;background:#d4edda;padding:2px 8px;border-radius:10px}
.review-date{font-size:12px;color:#999;margin-left:auto}
.review-title-text{font-weight:700;font-size:14px;margin-bottom:4px;color:var(--dark)}
.review-body{color:#555;line-height:1.65;font-size:14px;margin:0}
.reviews-empty{color:#999;font-size:15px;text-align:center;padding:32px 0}

/* Write review form */
.write-review-wrap{background:var(--light);border-radius:var(--radius-lg);padding:28px;margin-top:24px;border:1px solid var(--border)}
.wrf-title{margin-bottom:20px}

/* Related products section */
.related-section{margin:48px 0 0;border-top:1px solid var(--border);padding-top:40px}

/* Mobile pinned ATC bar */
.mobile-atc-bar{display:none;position:fixed;bottom:0;left:0;right:0;background:#fff;border-top:2px solid var(--border);padding:10px 16px;z-index:200;box-shadow:0 -2px 12px rgba(0,0,0,.1);align-items:center;justify-content:space-between;gap:12px}
.mobile-atc-price{font-size:20px;font-weight:800;color:var(--dark)}
.mobile-atc-btn{flex:1;min-height:44px}
@media(max-width:768px){
  .mobile-atc-bar{display:flex}
  .product-info-sticky{position:static}
  body{padding-bottom:80px} /* space for pinned bar */
}

/* ══════════════════════════════════════════════════════════════
   FIX 1 — PRODUCT IMAGE GALLERY: Zoom + Lightbox
   ══════════════════════════════════════════════════════════════ */
.gallery-main-wrap{position:relative;cursor:zoom-in}
.gallery-nav-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(26,26,26,.55);color:#fff;border:none;width:40px;height:40px;border-radius:50%;font-size:24px;cursor:pointer;z-index:5;display:flex;align-items:center;justify-content:center;transition:background .2s;line-height:1}
.gallery-nav-btn:hover{background:var(--gold)}
.gallery-prev{left:10px}
.gallery-next{right:10px}
.zoom-lens{position:absolute;width:100px;height:100px;border:2px solid var(--gold);border-radius:2px;background:rgba(201,168,76,.15);pointer-events:none;display:none;z-index:4}
.zoom-result{display:none;position:absolute;left:calc(100% + 16px);top:0;width:100%;height:100%;border:1px solid var(--border);border-radius:var(--radius-lg);background-repeat:no-repeat;background-color:#fff;box-shadow:var(--shadow-lg);z-index:10}
@media(max-width:991px){.zoom-result{display:none!important}.zoom-lens{display:none!important}}

/* Lightbox */
#product-lightbox{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center}
.lb-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.92);cursor:zoom-out}
.lb-content{position:relative;z-index:1;display:flex;align-items:center;gap:16px;max-width:95vw;max-height:95vh}
.lb-img-wrap{display:flex;align-items:center;justify-content:center}
.lb-img{max-width:85vw;max-height:88vh;object-fit:contain;border-radius:4px;display:block}
.lb-close{position:fixed;top:18px;right:22px;background:rgba(255,255,255,.15);border:none;color:#fff;font-size:22px;width:42px;height:42px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.lb-close:hover{background:var(--gold)}
.lb-arrow{background:rgba(255,255,255,.15);color:#fff;border:none;width:48px;height:48px;border-radius:50%;font-size:28px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s;line-height:1}
.lb-arrow:hover{background:var(--gold)}
.lb-counter{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.7);font-size:14px}

/* ══════════════════════════════════════════════════════════════
   FIX 5 — MOBILE RESPONSIVENESS
   ══════════════════════════════════════════════════════════════ */

/* Product card title: max 2 lines */
.product-card-name a{
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}

/* Add to Cart button: full width + 44px min on mobile */
@media(max-width:600px){
  .add-to-cart-btn{width:100%;min-height:44px;font-size:14px;padding:10px 16px}
  .product-card-footer{flex-direction:column;align-items:stretch;gap:8px}
}

/* Touch targets 44×44 */
.product-action-btn{min-width:44px;min-height:44px;width:44px;height:44px}
.wishlist-btn{min-width:44px;min-height:44px}
.cart-qty-btn,.qty-btn{min-width:44px;min-height:44px}

/* Hero slider mobile */
@media(max-width:600px){
  .hero-slide.active{height:420px}
  .hero-text{padding:0 0 0 20px;max-width:100%}
  .hero-text h1{font-size:clamp(22px,6vw,32px)}
  .hero-text p{font-size:14px;margin-bottom:18px}
  .hero-text .btn{padding:12px 20px;font-size:14px}
  .hero-text .btn+.btn{margin-left:8px}
}

/* Mobile filter sidebar — slide up from bottom */
@media(max-width:768px){
  .shop-layout{grid-template-columns:1fr;gap:16px}
  .shop-sidebar{position:fixed;bottom:0;left:0;right:0;top:auto;height:80vh;z-index:500;background:#fff;border-radius:20px 20px 0 0;box-shadow:0 -4px 24px rgba(0,0,0,.15);transform:translateY(100%);transition:transform .35s ease;overflow-y:auto;padding:20px 20px 40px}
  .shop-sidebar.open{transform:translateY(0)}
  .sidebar-close{display:flex;margin-left:auto}
  .shop-sidebar::before{content:'';display:block;width:40px;height:4px;background:#ddd;border-radius:2px;margin:0 auto 16px}
  .filter-toggle-bar{display:flex;align-items:center;justify-content:space-between;padding:10px 0;margin-bottom:8px}
}
@media(min-width:769px){.sidebar-close{display:none}}

/* Mobile nav accordion */
.mobile-nav-group{border-bottom:1px solid var(--border)}
.mobile-nav-group-header{display:flex;justify-content:space-between;align-items:center;padding:13px 0;font-size:16px;font-weight:600;color:var(--dark);cursor:pointer;user-select:none}
.mobile-nav-group-header .chevron{transition:transform .25s;font-size:12px;color:#999}
.mobile-nav-group.open .chevron{transform:rotate(180deg)}
.mobile-nav-group-body{display:none;padding:0 0 8px 16px}
.mobile-nav-group.open .mobile-nav-group-body{display:block}
.mobile-nav-group-body a{padding:9px 0;font-size:14px;border-bottom:none;color:#555}

/* Quick View modal */
#quick-view-modal{position:fixed;inset:0;z-index:8000;display:none;align-items:center;justify-content:center}
#quick-view-modal.open{display:flex}
.qv-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6);cursor:pointer}
.qv-content{position:relative;z-index:1;background:#fff;border-radius:var(--radius-lg);max-width:780px;width:95%;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg)}
.qv-body{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:24px}
@media(max-width:600px){.qv-body{grid-template-columns:1fr}}
.qv-close{position:absolute;top:12px;right:14px;background:none;border:none;font-size:22px;cursor:pointer;color:#999;line-height:1}
.qv-img{aspect-ratio:1;border-radius:var(--radius);overflow:hidden;background:var(--light)}
.qv-img img{width:100%;height:100%;object-fit:cover}
.qv-info .qv-name{font-size:18px;font-weight:700;font-family:'Playfair Display',serif;color:var(--dark);margin-bottom:10px}
.qv-info .qv-price{font-size:22px;font-weight:700;color:var(--dark);margin-bottom:12px}
.qv-info .qv-desc{font-size:14px;color:#555;line-height:1.65;margin-bottom:16px}
.qv-info .qv-atc{width:100%;margin-bottom:8px}
.qv-info .qv-view-full{display:block;text-align:center;font-size:13px;color:var(--gold);margin-top:6px}

/* Notify Me button for out-of-stock */
.notify-me-btn{background:var(--dark);color:#fff;border:2px solid var(--dark);border-radius:var(--radius);padding:8px 14px;font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;min-height:44px;width:100%}
.notify-me-btn:hover{background:#333}

/* ══════════════════════════════════════════════════════════════
   FIX 10 — MISC UI FIXES
   ══════════════════════════════════════════════════════════════ */
/* WhatsApp float — ensure always visible */
.whatsapp-float{position:fixed;bottom:28px;right:24px;z-index:999;background:#25D366;color:#fff;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:0 4px 16px rgba(37,211,102,.4);transition:transform .2s;text-decoration:none}
.whatsapp-float:hover{transform:scale(1.1);color:#fff}
.whatsapp-float svg{width:28px;height:28px;fill:#fff}
@media(max-width:600px){.whatsapp-float{bottom:16px;right:14px;width:50px;height:50px;font-size:22px}}

/* ── Responsive adjustments ─────────────────────────────────── */
@media(max-width:600px){
  .checkout-item{grid-template-columns:52px 1fr auto}
  .order-timeline{flex-wrap:wrap;gap:12px}
  .timeline-step::after{display:none}
}

/* ══════════════════════════════════════════════════════════════
   ENHANCED PRODUCT CARDS — Visual polish & urgency
   ══════════════════════════════════════════════════════════════ */

/* Ribbon "Handmade" tag on card image */
.product-card-ribbon{
  position:absolute;bottom:10px;left:0;
  background:var(--dark);color:var(--gold);
  font-size:9px;font-weight:800;letter-spacing:1.5px;
  text-transform:uppercase;padding:3px 10px 3px 8px;
  clip-path:polygon(0 0,100% 0,calc(100% - 6px) 50%,100% 100%,0 100%);
  pointer-events:none;
}

/* Hot badge */
.badge-hot{background:linear-gradient(135deg,#ff6b35,#e74c3c);color:#fff}

/* Urgency line under rating */
.product-card-urgency{font-size:11px;font-weight:700;color:#e74c3c;margin-bottom:6px;display:flex;align-items:center;gap:4px}

/* Stronger hover lift */
.product-card:hover{box-shadow:0 12px 40px rgba(0,0,0,.14);transform:translateY(-5px)}

/* WhatsApp action button on card — green tint on hover */
.product-card-actions .product-action-btn:last-child:hover{background:#25D366;color:#fff;border-color:#25D366}

/* ══════════════════════════════════════════════════════════════
   UPSELL SECTION — Customers Also Bought
   ══════════════════════════════════════════════════════════════ */
.upsell-section{
  margin:48px 0;padding:32px;
  background:linear-gradient(135deg,#fffbf2 0%,#fff 100%);
  border:1px solid var(--gold-light);border-radius:var(--radius-lg);
}
.upsell-header{
  display:flex;align-items:center;gap:16px;margin-bottom:24px;
  flex-wrap:wrap;
}
.upsell-icon{
  width:44px;height:44px;background:rgba(201,168,76,.1);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.upsell-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.upsell-card{
  display:flex;gap:14px;align-items:flex-start;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:14px;transition:box-shadow .2s,border-color .2s;
}
.upsell-card:hover{box-shadow:var(--shadow);border-color:var(--gold-light)}
.upsell-card-img{
  flex-shrink:0;width:90px;height:90px;border-radius:var(--radius);
  overflow:hidden;background:var(--light);border:1px solid var(--border);display:block;
}
.upsell-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.upsell-card:hover .upsell-card-img img{transform:scale(1.06)}
.upsell-card-info{flex:1;min-width:0}
.upsell-cat{font-size:10px;text-transform:uppercase;letter-spacing:1px;color:var(--gold);margin-bottom:4px}
.upsell-card-info h4{font-size:14px;font-weight:700;color:var(--dark);line-height:1.35;margin-bottom:6px}
.upsell-card-info h4 a{color:var(--dark);text-decoration:none}
.upsell-card-info h4 a:hover{color:var(--gold)}
.upsell-rating{display:flex;align-items:center;gap:4px;margin-bottom:8px}
.upsell-footer{display:flex;align-items:center;justify-content:space-between;gap:8px}
.upsell-wa-cta{
  margin-top:20px;padding:12px 16px;background:rgba(37,211,102,.07);
  border-radius:var(--radius);border:1px solid rgba(37,211,102,.2);
  font-size:13px;color:#555;display:flex;align-items:center;gap:8px;
}
.upsell-wa-cta a{color:#25D366;font-weight:700}
.upsell-wa-cta svg{flex-shrink:0;color:#25D366}
@media(max-width:600px){
  .upsell-grid{grid-template-columns:1fr}
  .upsell-section{padding:20px}
}

/* ══════════════════════════════════════════════════════════════
   ENHANCED HERO BANNER — More visual impact
   ══════════════════════════════════════════════════════════════ */
.hero-cinema{height:680px}
@media(max-width:768px){.hero-cinema{height:540px}}
@media(max-width:480px){.hero-cinema{height:480px}}

/* Stronger animated kenburns effect */
.hero-cinema-slide.active .hero-cinema-bg{
  transform:scale(1);
  animation:kenburns 12s ease-in-out infinite alternate;
}
@keyframes kenburns{
  0%{transform:scale(1) translate(0,0)}
  100%{transform:scale(1.08) translate(-1%,-1%)}
}

/* Gold accent line under heading */
.hero-heading::after{
  content:'';display:block;width:60px;height:3px;
  background:var(--gold);margin-top:14px;border-radius:2px;
}

/* Pulsing gold ring on trust badge */
.hero-trust-badge{animation:pulse-ring 3s ease-in-out infinite}
@keyframes pulse-ring{
  0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.4)}
  50%{box-shadow:0 0 0 8px rgba(201,168,76,0)}
}

/* ══════════════════════════════════════════════════════════════
   ENHANCED SALE BANNER
   ══════════════════════════════════════════════════════════════ */
.sale-banner{
  background:linear-gradient(135deg,#1a0a00 0%,#2a1200 40%,#1a1a1a 100%);
  position:relative;overflow:hidden;
}
.sale-banner::after{
  content:'SALE';
  position:absolute;right:-20px;top:50%;transform:translateY(-50%) rotate(15deg);
  font-size:180px;font-weight:900;color:rgba(201,168,76,.04);
  font-family:'Playfair Display',serif;line-height:1;pointer-events:none;
  user-select:none;
}
.sale-banner .pct{
  animation:count-bounce .6s ease;
  display:inline-block;
}
@keyframes count-bounce{
  0%{transform:scale(.8);opacity:0}
  100%{transform:scale(1);opacity:1}
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY GRID IMPROVEMENTS
   ══════════════════════════════════════════════════════════════ */
.cat-flip-card{
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.cat-flip-card:hover{
  box-shadow:0 10px 36px rgba(0,0,0,.15);border-color:var(--gold-light);
}
.cat-flip-img-wrap::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.5) 0%,transparent 50%);
  opacity:0;transition:opacity .3s;
}
.cat-flip-card:hover .cat-flip-img-wrap::after{opacity:1}

/* ══════════════════════════════════════════════════════════════
   COLOR PALETTE UPDATE — Maroon/Burgundy brand refresh
   ══════════════════════════════════════════════════════════════ */

/* Trust bar: maroon accent border */
.trust-bar-v2{border-bottom:3px solid var(--maroon)}
.trust-icon-v2{color:var(--maroon);border-color:var(--border)}

/* Nav active/hover: maroon */
.main-nav > li > a:hover,.main-nav > li.active > a{color:var(--maroon);background:var(--light)}
.mega-menu-col h4{color:var(--maroon)}
.mega-menu-col a:hover{color:var(--maroon)}

/* Header icons */
.header-icon:hover{background:var(--light);color:var(--maroon)}
.header-icon .badge{background:var(--maroon)}

/* Mobile nav */
.mobile-nav a:hover{color:var(--maroon)}

/* Hero ghost button - now inverts to maroon */
.hero-btn-ghost:hover{background:var(--maroon);border-color:var(--maroon);color:#fff}

/* Category banner uses maroon gradient */
.cat-banner,.category-banner{background:linear-gradient(135deg,var(--maroon-dark) 0%,var(--maroon) 60%,#9B2626 100%)}

/* Section divider gold stays */
.section-divider::before,.section-divider::after{background:var(--gold)}
.section-divider span{color:var(--maroon)}

/* Product card footer border - maroon on hover */
.product-card:hover .product-card-footer{border-top-color:var(--maroon-light)}
.product-card-name a:hover{color:var(--maroon)}

/* Breadcrumb */
.breadcrumbs a:hover{color:var(--maroon)}
.breadcrumbs [aria-current]{color:var(--maroon)}

/* Footer: richer dark with maroon undertone */
.site-footer{background:#130d0d;color:#b0a8a0}
.footer-col h4{color:#fff;border-bottom-color:#2d2020}
.footer-col ul a:hover{color:var(--gold)}
.footer-bottom{border-top-color:#2d2020}

/* Pagination */
.pagination li.active a,.pagination li a:hover{background:var(--maroon);border-color:var(--maroon)}

/* Tab active */
.tab-btn.active,.tab-btn:hover{color:var(--maroon);border-bottom-color:var(--maroon)}

/* Wishlist / action buttons hover */
.product-action-btn:hover{background:var(--maroon);color:#fff;border-color:var(--maroon)}

/* Star rating */
.stars{color:var(--gold)}

/* Form focus */
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--maroon)}
.search-form:focus-within{border-color:var(--maroon)}

/* Sale badge */
.badge-sale{background:var(--maroon)}

/* ══════════════════════════════════════════════════════════════
   ENHANCED SEARCH BAR — Advanced with suggestions label
   ══════════════════════════════════════════════════════════════ */
.search-wrap{position:relative;flex:1;max-width:480px}
.search-wrap .search-form{max-width:100%;width:100%}
.search-hint{position:absolute;bottom:-20px;left:0;font-size:10px;color:#aaa;white-space:nowrap;display:none}
.search-form:focus-within + .search-hint,
.search-wrap:focus-within .search-hint{display:block}

/* ══════════════════════════════════════════════════════════════
   GOOGLE SIGN-IN + LOGIN PAGE ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */
.login-divider{display:flex;align-items:center;gap:12px;margin:20px 0;color:#aaa;font-size:13px}
.login-divider::before,.login-divider::after{content:'';flex:1;height:1px;background:var(--border)}
.google-login-btn{
  display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;padding:13px 20px;border:2px solid #dadce0;border-radius:var(--radius-lg);
  background:#fff;color:#3c4043;font-size:15px;font-weight:600;cursor:pointer;
  transition:all .2s;text-decoration:none;
}
.google-login-btn:hover{background:#f8f9fa;border-color:#aaa;box-shadow:0 2px 8px rgba(0,0,0,.12);color:#3c4043}
.google-login-btn svg{flex-shrink:0}
.admin-login-note{background:linear-gradient(135deg,var(--maroon) 0%,var(--maroon-dark) 100%);color:#fff;padding:14px 18px;border-radius:var(--radius-lg);font-size:13px;margin-bottom:16px;display:flex;gap:10px;align-items:flex-start}
.admin-login-note strong{color:var(--gold-light)}

/* ══════════════════════════════════════════════════════════════
   HERO — maroon gradient overlay option
   ══════════════════════════════════════════════════════════════ */
.hero-cinema-overlay{
  background:linear-gradient(110deg,rgba(92,21,21,.75) 0%,rgba(0,0,0,.38) 55%,rgba(0,0,0,.10) 100%)
}

/* ══════════════════════════════════════════════════════════════
   WHY US — maroon card featured
   ══════════════════════════════════════════════════════════════ */
.why-us-card--featured{border-color:var(--maroon)}
.why-us-card--featured::before{background:var(--maroon)}

/* Body: warm ivory background — sections override individually */
body{background:var(--cream)}
.site-header{background:#fff}
/* DO NOT add generic section{background} — each section manages its own bg */

/* ══════════════════════════════════════════════════════════════
   BUY-INTENT: Urgency & social proof elements
   ══════════════════════════════════════════════════════════════ */
.buy-intent-strip{
  background:linear-gradient(90deg,var(--maroon-dark),var(--maroon),var(--maroon-dark));
  background-size:200% auto;animation:shimmer-bg 4s linear infinite;
  color:#fff;text-align:center;padding:10px;font-size:13px;font-weight:600;
  letter-spacing:.3px;
}
.buy-intent-strip a{color:var(--gold-light);text-decoration:underline}
@keyframes shimmer-bg{0%{background-position:0%}100%{background-position:200%}}

/* ══════════════════════════════════════════════════════════════
   FOOTER BRAND — ensure logo renders well on dark bg
   ══════════════════════════════════════════════════════════════ */
.footer-brand .logo-img{filter:brightness(0) invert(1);max-height:44px;width:auto}
.footer-brand .site-name{color:#fff}
.footer-brand .tagline{color:var(--gold)}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — maroon updates
   ══════════════════════════════════════════════════════════════ */
@media(max-width:768px){
  .topbar .topbar-contact{display:none}
  .topbar .topbar-inner{justify-content:space-between}
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMBS — definitive fix (ul, no counters ever)
   ══════════════════════════════════════════════════════════════ */
.breadcrumbs{padding:12px 0;margin-bottom:0}
.breadcrumbs ul{
  display:flex;flex-wrap:wrap;align-items:center;gap:0;
  list-style:none !important;padding:0;margin:0;
  counter-reset:none !important;
}
.breadcrumbs ul li{
  display:inline-flex;align-items:center;
  list-style:none !important;list-style-type:none !important;
  font-size:13px;color:rgba(255,255,255,.65);
}
.breadcrumbs ul li::marker{display:none;content:none} /* belt+braces */
.breadcrumbs ul li a{color:rgba(255,255,255,.75);text-decoration:none;transition:color .2s}
.breadcrumbs ul li a:hover{color:#fff}
.breadcrumbs ul li [aria-current]{color:#fff;font-weight:600}
.breadcrumbs ul .bc-sep{padding:0 8px;color:rgba(255,255,255,.3);font-size:12px}

/* Light breadcrumb variant (on white/cream pages) */
.breadcrumbs--light ul li{color:#888}
.breadcrumbs--light ul li a{color:#666}
.breadcrumbs--light ul li a:hover{color:var(--maroon)}
.breadcrumbs--light ul li [aria-current]{color:var(--dark)}
.breadcrumbs--light ul .bc-sep{color:#ccc}

/* Product page breadcrumb (white bg) */
.product-breadcrumb .breadcrumbs ul li{color:#888}
.product-breadcrumb .breadcrumbs ul li a{color:#666}
.product-breadcrumb .breadcrumbs ul li a:hover{color:var(--maroon)}
.product-breadcrumb .breadcrumbs ul li [aria-current]{color:var(--dark)}
.product-breadcrumb .breadcrumbs ul .bc-sep{color:#ccc}

/* ══════════════════════════════════════════════════════════════
   PAGE BANNER — replaces all dark page-hero / cat-banner sections
   ══════════════════════════════════════════════════════════════ */
.page-banner{
  position:relative;overflow:hidden;
  padding:48px 0 36px;
  background:var(--maroon-dark);
  color:#fff;
}

/* Decorative background: subtle pattern + gradient */
.page-banner-bg{
  position:absolute;inset:0;z-index:0;
  background:
    linear-gradient(135deg, rgba(92,21,21,.95) 0%, rgba(122,28,28,.88) 45%, rgba(13,33,55,.92) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M30 10l4 8h9l-7 6 3 9-9-6-9 6 3-9-7-6h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size:cover, 60px 60px;
}

/* Photo overlay (category pages with product image) */
.page-banner-photo{
  position:absolute;right:0;top:0;bottom:0;width:40%;
  background-size:cover;background-position:center;
  opacity:.18;z-index:0;
}
.page-banner-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to right,var(--maroon-dark) 0%,transparent 100%);
}

/* Gold decorative accent line */
.page-banner::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:3px;background:linear-gradient(90deg,transparent,var(--gold),transparent);
  z-index:1;
}

.page-banner-inner{
  position:relative;z-index:2;
}

.page-banner-content{
  display:flex;align-items:center;gap:20px;
  margin:14px 0 16px;flex-wrap:wrap;
}

.page-banner-icon{
  width:56px;height:56px;border-radius:50%;
  background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.3);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}

.page-banner-title{
  font-size:clamp(24px,4vw,38px);font-weight:900;color:#fff;
  margin:0 0 6px;line-height:1.15;font-family:'Playfair Display',serif;
  text-shadow:0 2px 12px rgba(0,0,0,.3);
}
.page-banner-title em{color:var(--gold-light);font-style:normal}

.page-banner-sub{
  font-size:15px;color:rgba(255,255,255,.72);margin:0;line-height:1.55;
  max-width:600px;
}

/* Stat block (category page) */
.page-banner-stat{
  margin-left:auto;text-align:center;
  background:rgba(201,168,76,.12);border:1px solid rgba(201,168,76,.25);
  border-radius:var(--radius-lg);padding:14px 22px;flex-shrink:0;
}
.pbs-num{display:block;font-size:28px;font-weight:900;color:var(--gold);line-height:1;font-family:'Playfair Display',serif}
.pbs-label{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:rgba(255,255,255,.6);margin-top:3px;display:block}

/* Trust badges row */
.page-banner-badges{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:6px;
}
.pbb-item{
  font-size:12px;font-weight:600;color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
  border-radius:20px;padding:5px 12px;display:inline-flex;align-items:center;gap:5px;
  letter-spacing:.2px;
}

/* Blog banner centered variant */
.page-banner--blog .page-banner-inner{text-align:center}
.page-banner--blog .page-banner-badges{justify-content:center}

/* Content area below banner — warm cream background */
.shop-content-area,.blog-content-area{background:var(--cream);min-height:400px}

/* ══════════════════════════════════════════════════════════════
   PRODUCT PAGE — breadcrumb on white background
   ══════════════════════════════════════════════════════════════ */
.product-breadcrumb-bar{
  background:#fff;border-bottom:1px solid var(--border);padding:14px 0;
}
.product-breadcrumb-bar .breadcrumbs ul li{color:#888}
.product-breadcrumb-bar .breadcrumbs ul li a{color:#666}
.product-breadcrumb-bar .breadcrumbs ul li a:hover{color:var(--maroon)}
.product-breadcrumb-bar .breadcrumbs ul li [aria-current]{color:var(--dark)}
.product-breadcrumb-bar .breadcrumbs ul .bc-sep{color:#ddd}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR category links — active state
   ══════════════════════════════════════════════════════════════ */
.sidebar-cats{list-style:none;padding:0}
.sidebar-cats li{margin-bottom:4px}
.sidebar-cats a{display:flex;justify-content:space-between;align-items:center;padding:7px 10px;border-radius:var(--radius);font-size:14px;color:#555;transition:all .2s;text-decoration:none}
.sidebar-cats a:hover,.sidebar-cats a.active{background:rgba(122,28,28,.08);color:var(--maroon);font-weight:600}

/* ══════════════════════════════════════════════════════════════
   MOBILE responsive for page banner
   ══════════════════════════════════════════════════════════════ */
@media(max-width:768px){
  .page-banner{padding:36px 0 28px}
  .page-banner-stat{display:none}
  .page-banner-title{font-size:22px}
  .page-banner-sub{font-size:14px}
  .page-banner-photo{display:none}
}
@media(max-width:480px){
  .pbb-item{font-size:11px;padding:4px 10px}
  .page-banner-content{gap:12px}
  .page-banner-icon{display:none}
}
