/* ═══════════════════════════════════════════════════════════
   SWISEAGLE — Custom CSS (Bootstrap 5 override + extensions)
   Design: Krysstal India inspired — White + Navy + Gold
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --sw-white:    #ffffff;
  --sw-off:      #f7f7f7;
  --sw-off2:     #efefef;
  --sw-navy:     #1a2236;
  --sw-navy2:    #243049;
  --sw-gold:     #b8935a;
  --sw-gold-lt:  #d4aa75;
  --sw-gold-dk:  #9a7440;
  --sw-text:     #1a1a1a;
  --sw-text2:    #555;
  --sw-text3:    #888;
  --sw-border:   #e8e8e8;
  --sw-border2:  #d0d0d0;
  --sw-wa:       #25D366;
  --sw-wa-dk:    #1aaa4f;
  --sw-red:      #e02020;
  --sw-ann:      38px;
  --sw-nav:      66px;
  --sw-shadow:   0 4px 20px rgba(0,0,0,.09);
  --sw-shadow-lg:0 12px 40px rgba(0,0,0,.13);
  --sw-r:        6px;
  --sw-r-md:     10px;
  --sw-r-lg:     16px;
  --t:           .25s ease;
}

/* ── BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--sw-white);
  color: var(--sw-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', Georgia, serif; }
.sw-gold-text { color: var(--sw-gold) !important; }
.sw-navy-text { color: var(--sw-navy) !important; }
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sw-gold); margin-bottom: 10px;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.ann-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--sw-ann);
  background: var(--sw-navy);
  overflow: hidden; display: flex; align-items: center;
}
.ann-track {
  display: flex; align-items: center;
  animation: annScroll 32s linear infinite;
  width: max-content; white-space: nowrap;
}
.ann-item {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 0 32px; letter-spacing: .05em;
  display: flex; align-items: center; gap: 12px;
}
.ann-sep { color: var(--sw-gold); }
@keyframes annScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ann-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 20px; line-height: 1; cursor: pointer; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--t);
}
.ann-close:hover { color: var(--sw-white); background: rgba(255,255,255,.1); }
body.ann-shown { padding-top: calc(var(--sw-ann) + var(--sw-nav)); }
body.ann-hidden { padding-top: var(--sw-nav); }

/* ── NAVBAR ────────────────────────────────────────────────── */
.sw-navbar {
  position: fixed; z-index: 1000;
  top: var(--sw-ann); left: 0; right: 0;
  height: var(--sw-nav);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sw-border);
  transition: box-shadow var(--t), top var(--t);
}
.sw-navbar.scrolled { box-shadow: var(--sw-shadow); }
.sw-navbar.ann-gone { top: 0; }

/* Logo */
.sw-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 42px; height: 42px; background: var(--sw-navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 26px; }
.logo-name { display: block; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--sw-navy); line-height: 1; }
.logo-tag  { display: block; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sw-text3); line-height: 1; margin-top: 3px; }

/* Nav links */
.sw-nav-link {
  font-size: 14px !important; font-weight: 500 !important;
  color: var(--sw-text) !important; padding: 8px 14px !important;
  border-radius: var(--sw-r); transition: var(--t) !important;
  position: relative;
}
.sw-nav-link:hover { color: var(--sw-navy) !important; background: var(--sw-off); }
.sw-nav-link.active { color: var(--sw-navy) !important; font-weight: 600 !important; }
.sw-nav-link.active::after {
  content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px;
  height: 2.5px; background: var(--sw-gold); border-radius: 2px 2px 0 0;
}

/* Dropdown */
.sw-dropdown {
  border: 1px solid var(--sw-border) !important;
  border-radius: var(--sw-r-md) !important;
  box-shadow: var(--sw-shadow) !important;
  padding: 8px !important; min-width: 220px;
}
.sw-dropdown .dropdown-item {
  font-size: 13.5px; border-radius: var(--sw-r); padding: 8px 14px;
  color: var(--sw-text); font-weight: 500; transition: var(--t);
}
.sw-dropdown .dropdown-item:hover { background: var(--sw-off); color: var(--sw-navy); }
.sw-dropdown .dropdown-divider { border-color: var(--sw-border); }

/* Toggler */
.sw-toggler {
  border: 1.5px solid var(--sw-border) !important;
  border-radius: var(--sw-r-md) !important;
  width: 40px; height: 40px; padding: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--sw-white) !important;
}
.sw-toggler:focus { box-shadow: none !important; }
.sw-toggler span {
  display: block; width: 18px; height: 1.5px;
  background: var(--sw-text); border-radius: 2px; transition: var(--t);
}

/* Nav icons */
.sw-icon-btn {
  width: 40px; height: 40px; border-radius: var(--sw-r-md);
  border: 1.5px solid var(--sw-border); background: var(--sw-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--sw-text); cursor: pointer; transition: var(--t);
}
.sw-icon-btn:hover { border-color: var(--sw-navy); color: var(--sw-navy); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--sw-navy); color: var(--sw-white);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.sw-btn-navy {
  background: var(--sw-navy); color: var(--sw-white);
  border: 2px solid var(--sw-navy); padding: 10px 26px;
  border-radius: var(--sw-r); font-size: 14px; font-weight: 600;
  transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.sw-btn-navy:hover { background: var(--sw-navy2); border-color: var(--sw-navy2); color: var(--sw-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,34,54,.3); }
.sw-btn-gold {
  background: var(--sw-gold); color: var(--sw-white);
  border: 2px solid var(--sw-gold); padding: 10px 26px;
  border-radius: var(--sw-r); font-size: 14px; font-weight: 700;
  transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.sw-btn-gold:hover { background: var(--sw-gold-dk); border-color: var(--sw-gold-dk); color: var(--sw-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,147,90,.35); }
.sw-btn-gold-lg { padding: 14px 38px; font-size: 15px; }
.sw-btn-outline {
  background: transparent; color: var(--sw-navy);
  border: 2px solid var(--sw-navy); padding: 10px 26px;
  border-radius: var(--sw-r); font-size: 14px; font-weight: 600;
  transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
}
.sw-btn-outline:hover { background: var(--sw-navy); color: var(--sw-white); }
.sw-btn-outline-white {
  background: transparent; color: var(--sw-white);
  border: 2px solid rgba(255,255,255,.5); padding: 12px 30px;
  border-radius: var(--sw-r); font-size: 15px; font-weight: 600;
  transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.sw-btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--sw-white); color: var(--sw-white); }
.sw-btn-wa {
  background: var(--sw-wa); color: var(--sw-white);
  border: 2px solid var(--sw-wa); padding: 10px 24px;
  border-radius: var(--sw-r); font-size: 14px; font-weight: 700;
  transition: var(--t); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.sw-btn-wa:hover { background: var(--sw-wa-dk); border-color: var(--sw-wa-dk); color: var(--sw-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

/* ── HERO SLIDER ───────────────────────────────────────────── */
.sw-hero {
  position: relative; overflow: hidden;
  height: calc(100vh - var(--sw-nav) - var(--sw-ann));
  min-height: 520px; max-height: 800px;
  background: var(--sw-navy);
}
.sw-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.sw-slide.active { opacity: 1; pointer-events: all; z-index: 1; }
.sw-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.42); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,34,54,.88) 0%, rgba(26,34,54,.35) 55%, transparent 100%);
}
.slide-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 80px; max-width: 720px;
}
.slide-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px); transition: all .55s ease .1s;
}
.sw-slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }
.slide-eyebrow::before { content: ''; width: 30px; height: 1.5px; background: var(--sw-gold); }
.slide-eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--sw-gold-lt); }
.slide-content h1 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2.2rem,5vw,4.2rem);
  color: var(--sw-white); line-height: 1.15; margin-bottom: 16px;
  opacity: 0; transform: translateY(24px); transition: all .6s ease .25s;
}
.slide-content h1 em { color: var(--sw-gold-lt); font-style: normal; }
.sw-slide.active .slide-content h1 { opacity: 1; transform: translateY(0); }
.slide-content p {
  font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
  opacity: 0; transform: translateY(16px); transition: all .6s ease .38s;
}
.sw-slide.active .slide-content p { opacity: 1; transform: translateY(0); }
.slide-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px); transition: all .55s ease .5s;
}
.sw-slide.active .slide-btns { opacity: 1; transform: translateY(0); }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 36px; left: 80px; z-index: 10;
  display: flex; gap: 8px; align-items: center;
}
.slider-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.3); cursor: pointer; transition: var(--t);
  border: none; padding: 0;
}
.slider-dot.active { background: var(--sw-gold); width: 46px; }
.slider-arrows {
  position: absolute; bottom: 28px; right: 80px; z-index: 10;
  display: flex; gap: 8px;
}
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: var(--sw-white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--t);
}
.slider-arrow:hover { background: var(--sw-gold); border-color: var(--sw-gold); }
.slider-progress {
  position: absolute; bottom: 0; left: 0; z-index: 10;
  height: 3px; background: var(--sw-gold); width: 0;
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar { background: var(--sw-navy); overflow: hidden; height: 44px; display: flex; align-items: center; }
.trust-track {
  display: flex; align-items: center;
  animation: trustScroll 30s linear infinite;
  width: max-content; white-space: nowrap;
}
.trust-item {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.65);
  padding: 0 28px; letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sw-gold); flex-shrink: 0; }
@keyframes trustScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── FEATURES STRIP ────────────────────────────────────────── */
.features-strip { border-top: 1px solid var(--sw-border); border-bottom: 1px solid var(--sw-border); }
.feat-item { display: flex; align-items: flex-start; gap: 14px; padding: 28px 0; }
.feat-icon { width: 48px; height: 48px; background: var(--sw-navy); border-radius: var(--sw-r-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.feat-title { font-size: 14px; font-weight: 700; color: var(--sw-navy); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.feat-sub { font-size: 12px; color: var(--sw-text3); line-height: 1.4; }
.feat-divider { border-right: 1px solid var(--sw-border); }

/* ── SECTION TITLE ─────────────────────────────────────────── */
.sw-section { padding: 72px 0; }
.sw-section-sm { padding: 52px 0; }
.sec-title { font-size: clamp(1.7rem,3.5vw,2.6rem); color: var(--sw-navy); font-weight: 700; margin-bottom: 12px; }
.sec-desc { font-size: 15px; color: var(--sw-text2); max-width: 520px; line-height: 1.75; }

/* ── CATEGORY TILES ────────────────────────────────────────── */
.cat-tile {
  position: relative; border-radius: var(--sw-r-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--sw-off); cursor: pointer;
  transition: var(--t); text-decoration: none; display: block;
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--sw-shadow-lg); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-tile:hover img { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,34,54,.9) 0%, rgba(26,34,54,.2) 55%, transparent 100%);
}
.cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
.cat-tile-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--sw-white); line-height: 1.2; margin-bottom: 5px; }
.cat-tile-count { font-size: 11.5px; color: rgba(255,255,255,.6); font-weight: 500; }
.cat-tile-cta { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--sw-gold-lt); letter-spacing: .05em; opacity: 0; transform: translateY(6px); transition: var(--t); }
.cat-tile:hover .cat-tile-cta { opacity: 1; transform: translateY(0); }

/* ── PROMO BANNERS ─────────────────────────────────────────── */
.promo-card { position: relative; border-radius: var(--sw-r-lg); overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.promo-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.promo-card:hover img { transform: scale(1.05); }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,34,54,.82) 0%, rgba(26,34,54,.2) 70%, transparent 100%); transition: var(--t); }
.promo-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 28px 32px; }
.promo-tag { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sw-gold-lt); margin-bottom: 8px; }
.promo-title { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem,2.5vw,1.9rem); font-weight: 700; color: var(--sw-white); line-height: 1.2; margin-bottom: 12px; }
.promo-sub { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }

/* ── PRODUCT CARDS ─────────────────────────────────────────── */
.sw-prod-card {
  background: var(--sw-white); border: 1px solid var(--sw-border);
  border-radius: var(--sw-r-lg); overflow: hidden; transition: var(--t); height: 100%;
}
.sw-prod-card:hover { transform: translateY(-5px); box-shadow: var(--sw-shadow-lg); border-color: var(--sw-border2); }
.prod-img-wrap { position: relative; overflow: hidden; background: var(--sw-off); aspect-ratio: 1; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.sw-prod-card:hover .prod-img-wrap img { transform: scale(1.07); }
.prod-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--sw-r);
}
.prod-badge.badge-bestseller { background: var(--sw-red); color: white; }
.prod-badge.badge-new { background: #16a34a; color: white; }
.prod-badge.badge-premium { background: var(--sw-gold); color: white; }
.prod-badge.badge-sale { background: #e05a00; color: white; }
.prod-oos-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.prod-oos-overlay span { background: white; color: var(--sw-navy); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: var(--sw-r); }
.prod-quick-wa {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: var(--sw-r-md);
  background: var(--sw-wa); border: none; color: white; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--t); box-shadow: var(--sw-shadow);
  opacity: 0; transform: translateY(8px);
}
.sw-prod-card:hover .prod-quick-wa { opacity: 1; transform: translateY(0); }
.prod-quick-wa:hover { background: var(--sw-wa-dk); transform: scale(1.1) !important; }
.prod-body { padding: 15px 16px 18px; }
.prod-code { font-size: 10px; color: var(--sw-text3); font-family: monospace; letter-spacing: .05em; margin-bottom: 6px; }
.prod-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--sw-text); line-height: 1.4; margin-bottom: 5px; min-height: 40px; }
.prod-brand { font-size: 12px; color: var(--sw-text3); margin-bottom: 10px; }
.prod-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.prod-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--sw-navy); }
.prod-mrp { font-size: 12px; color: var(--sw-text3); text-decoration: line-through; }
.prod-disc { font-size: 10px; font-weight: 700; color: var(--sw-red); background: #fee2e2; padding: 2px 7px; border-radius: var(--sw-r); }
.prod-rating { font-size: 12px; color: #f59e0b; margin-bottom: 12px; }
.prod-rating span { font-size: 11px; color: var(--sw-text3); }
.prod-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.prod-btn {
  padding: 9px 8px; border-radius: var(--sw-r-md);
  font-size: 12px; font-weight: 600; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: var(--t);
}
.prod-btn-cart { background: var(--sw-off2); color: var(--sw-navy); border: 1.5px solid var(--sw-border2); }
.prod-btn-cart:hover { background: var(--sw-navy); color: white; border-color: var(--sw-navy); }
.prod-btn-wa { background: var(--sw-wa); color: white; }
.prod-btn-wa:hover { background: var(--sw-wa-dk); }
.prod-oos-label { text-align: center; font-size: 12px; color: var(--sw-text3); padding: 9px; border: 1.5px dashed var(--sw-border2); border-radius: var(--sw-r-md); }

/* ── SHOP PAGE ─────────────────────────────────────────────── */
.shop-hero-band { background: var(--sw-navy); padding: 52px 0 44px; }
.shop-hero-band h1 { color: var(--sw-white); font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 8px; }
.shop-hero-band p { color: rgba(255,255,255,.5); font-size: 14.5px; margin: 0; }
.sw-sidebar {
  background: var(--sw-white); border: 1px solid var(--sw-border);
  border-radius: var(--sw-r-lg); overflow: hidden;
  position: sticky; top: calc(var(--sw-nav) + var(--sw-ann) + 16px);
}
.sb-head { padding: 16px 20px; border-bottom: 1px solid var(--sw-border); display: flex; align-items: center; justify-content: space-between; }
.sb-head h6 { font-size: 15px; font-weight: 700; color: var(--sw-navy); margin: 0; font-family: 'DM Sans', sans-serif; }
.sb-clear { font-size: 12px; color: var(--sw-red); font-weight: 600; cursor: pointer; background: none; border: none; transition: var(--t); }
.sb-clear:hover { opacity: .75; }
.sb-section { padding: 18px 20px; border-bottom: 1px solid var(--sw-border); }
.sb-section:last-child { border-bottom: none; }
.sb-title { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sw-text3); margin-bottom: 12px; }
.sb-check { margin-bottom: 3px; }
.sb-check .form-check-label { font-size: 13.5px; color: var(--sw-text); cursor: pointer; }
.sb-check .form-check-input { accent-color: var(--sw-navy); cursor: pointer; }
.sb-count { font-size: 10px; color: var(--sw-text3); background: var(--sw-off2); padding: 1px 7px; border-radius: 99px; float: right; margin-top: 2px; }
.price-chip { font-size: 11.5px; font-weight: 600; padding: 7px 6px; text-align: center; border-radius: var(--sw-r-md); border: 1.5px solid var(--sw-border2); background: var(--sw-off); cursor: pointer; color: var(--sw-text); transition: var(--t); }
.price-chip:hover, .price-chip.active { background: var(--sw-navy); color: white; border-color: var(--sw-navy); }
.sw-input { border: 1.5px solid var(--sw-border2) !important; border-radius: var(--sw-r-md) !important; font-size: 13.5px !important; transition: var(--t) !important; background: var(--sw-off) !important; }
.sw-input:focus { border-color: var(--sw-navy) !important; background: var(--sw-white) !important; box-shadow: 0 0 0 3px rgba(26,34,54,.08) !important; }
.sw-input::placeholder { color: var(--sw-text3) !important; }
.sw-label { font-size: 11.5px; font-weight: 700; color: var(--sw-text2); letter-spacing: .03em; margin-bottom: 6px; }
.active-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--sw-off); border: 1px solid var(--sw-border2); border-radius: 99px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: var(--sw-navy); }
.active-tag button { background: none; border: none; font-size: 16px; color: var(--sw-text3); cursor: pointer; line-height: 1; padding: 0; }
.active-tag button:hover { color: var(--sw-red); }
.shop-count-text { font-size: 13.5px; color: var(--sw-text2); }

/* ── WA STRIP ──────────────────────────────────────────────── */
.wa-strip {
  background: var(--sw-navy);
  border-radius: var(--sw-r-lg);
  padding: 56px 60px;
  position: relative; overflow: hidden;
}
.wa-strip::after {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,.15), transparent 65%);
}
.wa-strip h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--sw-white); margin-bottom: 14px; }
.wa-strip p { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.75; }
.wa-number-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--sw-r-lg); padding: 28px 36px; text-align: center; }
.wa-number-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.wa-number-val { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--sw-white); margin-bottom: 4px; }
.wa-number-sub { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero-band { background: var(--sw-navy); padding: 90px 0; position: relative; overflow: hidden; }
.about-hero-band::after { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(184,147,90,.12), transparent 65%); pointer-events: none; }
.about-hero-band h1 { font-size: clamp(2.2rem,5vw,4rem); color: var(--sw-white); margin-bottom: 20px; }
.about-hero-band h1 em { color: var(--sw-gold-lt); font-style: italic; }
.about-hero-text { font-size: 16px; color: rgba(255,255,255,.58); line-height: 1.8; margin-bottom: 28px; }
.about-img-main { border-radius: var(--sw-r-lg); overflow: hidden; }
.about-img-main img { width: 100%; height: 440px; object-fit: cover; filter: brightness(.8) saturate(.9); }
.about-badge-box { position: absolute; bottom: -16px; left: -20px; background: var(--sw-gold); border-radius: var(--sw-r-lg); padding: 22px 26px; box-shadow: var(--sw-shadow-lg); }
.about-badge-box .n { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: white; line-height: 1; }
.about-badge-box .l { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.about-stat-band { background: var(--sw-navy); padding: 52px 0; }
.about-stat { text-align: center; }
.about-stat .n { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--sw-gold); line-height: 1; }
.about-stat .l { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { border-right: 1px solid rgba(255,255,255,.08); }
.story-point { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; }
.story-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--sw-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 11px; color: white; font-weight: 700; }
.val-card { background: var(--sw-white); border: 1px solid var(--sw-border); border-radius: var(--sw-r-lg); padding: 28px 24px; height: 100%; transition: var(--t); }
.val-card:hover { border-color: var(--sw-gold); box-shadow: var(--sw-shadow); transform: translateY(-3px); }
.val-icon { width: 52px; height: 52px; background: var(--sw-navy); border-radius: var(--sw-r-md); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.val-title { font-size: 16px; font-weight: 700; color: var(--sw-navy); margin-bottom: 10px; }
.val-text { font-size: 13.5px; color: var(--sw-text2); line-height: 1.7; }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-hero-band { background: var(--sw-navy); padding: 70px 0 56px; }
.contact-hero-band h1 { font-size: clamp(2rem,4vw,3.2rem); color: var(--sw-white); margin-bottom: 10px; }
.ci-panel { background: var(--sw-navy); border-radius: var(--sw-r-lg); overflow: hidden; height: 100%; }
.ci-top { padding: 32px; background: linear-gradient(135deg, var(--sw-navy), #2d3a5e); }
.ci-top h5 { color: var(--sw-white); font-size: 20px; margin-bottom: 8px; }
.ci-top p { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.6; margin: 0; }
.ci-body { padding: 28px 32px; }
.ci-item { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-ico { width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: var(--sw-r-md); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ci-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sw-gold); margin-bottom: 4px; }
.ci-val { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
.form-card { background: var(--sw-white); border: 1px solid var(--sw-border); border-radius: var(--sw-r-lg); padding: 36px; }

/* ── CART OFFCANVAS ────────────────────────────────────────── */
.sw-cart-canvas { width: 440px !important; max-width: 100vw; background: #fafafa; }
.sw-cart-header { background: var(--sw-white); border-bottom: 1px solid var(--sw-border) !important; padding: 18px 24px !important; }
.sw-cart-header .offcanvas-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--sw-navy); }
.sw-cart-close { background: none; border: 1.5px solid var(--sw-border2); width: 36px; height: 36px; border-radius: var(--sw-r-md); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--t); color: var(--sw-text2); }
.sw-cart-close:hover { background: var(--sw-navy); color: white; border-color: var(--sw-navy); }
.sw-cart-body { padding: 18px 24px !important; overflow-y: auto; }
.sw-cart-footer { padding: 18px 24px 22px; border-top: 1px solid var(--sw-border); background: var(--sw-white); }
.cart-total { font-family: 'Playfair Display', serif; font-size: 20px; border-top: 1px solid var(--sw-border2); padding-top: 12px; }
.cart-item-row { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--sw-border); }
.cart-item-img { width: 68px; height: 68px; border-radius: var(--sw-r-md); overflow: hidden; background: var(--sw-off); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--sw-text); line-height: 1.4; margin-bottom: 3px; }
.cart-item-meta { font-size: 10px; color: var(--sw-text3); font-family: monospace; }
.cart-item-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--sw-navy); margin-top: 5px; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.qty-btn { width: 26px; height: 26px; border: 1.5px solid var(--sw-border2); background: white; border-radius: var(--sw-r-md); font-size: 15px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--t); }
.qty-btn:hover { background: var(--sw-navy); color: white; border-color: var(--sw-navy); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.qty-del { font-size: 15px; color: var(--sw-text3); cursor: pointer; border: none; background: none; padding: 3px 5px; border-radius: 4px; transition: var(--t); margin-left: auto; }
.qty-del:hover { background: #fee2e2; color: var(--sw-red); }

/* ── ORDER MODAL ───────────────────────────────────────────── */
.sw-modal .modal-content { border-radius: var(--sw-r-lg); border: none; box-shadow: var(--sw-shadow-lg); }
.sw-modal .modal-header { padding: 24px 28px 12px; border-bottom: 1px solid var(--sw-border); }
.sw-modal .modal-title { font-size: 21px; color: var(--sw-navy); }
.oid-box { background: var(--sw-off); border: 1.5px dashed var(--sw-border2); border-radius: var(--sw-r-md); padding: 12px 16px; text-align: center; }
.oid-box strong { font-family: monospace; font-size: 15px; color: var(--sw-navy); letter-spacing: .08em; }
.modal-items { background: var(--sw-off); border-radius: var(--sw-r-md); padding: 13px 15px; max-height: 160px; overflow-y: auto; }
.modal-item-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--sw-border); }
.modal-item-row:last-child { border-bottom: none; }
.modal-total { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--sw-navy); padding-top: 10px; border-top: 2px solid var(--sw-border2); }

/* ── TOAST ─────────────────────────────────────────────────── */
.sw-toast {
  bottom: 24px; right: 24px; z-index: 9999;
  background: var(--sw-navy); color: white;
  padding: 13px 20px; border-radius: var(--sw-r-md);
  font-size: 13px; font-weight: 500; max-width: 320px;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(20px); opacity: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--sw-shadow-lg);
}
.sw-toast.show { transform: translateY(0); opacity: 1; }
.sw-toast.ok { background: #15803d; }
.sw-toast.err { background: #b91c1c; }

/* ── BRANDS ────────────────────────────────────────────────── */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 1px; background: var(--sw-border); border: 1px solid var(--sw-border); border-radius: var(--sw-r-lg); overflow: hidden; }
.brand-item { background: var(--sw-white); padding: 20px 16px; display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 700; color: var(--sw-text2); letter-spacing: .03em; transition: var(--t); cursor: default; }
.brand-item:hover { background: var(--sw-off); color: var(--sw-navy); }

/* ── FOOTER ────────────────────────────────────────────────── */
.sw-footer { background: var(--sw-navy); color: rgba(255,255,255,.9); }
.footer-logo-icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-icon svg { width: 24px; height: 24px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; line-height: 1; }
.footer-brand-tag { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sw-gold); margin-top: 2px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.8; max-width: 270px; }
.footer-social { width: 34px; height: 34px; border-radius: var(--sw-r-md); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.6); text-decoration: none; transition: var(--t); }
.footer-social:hover { background: var(--sw-gold); border-color: var(--sw-gold); color: white; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; font-family: 'DM Sans', sans-serif; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: var(--t); }
.footer-links a:hover { color: var(--sw-gold-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-contact-item i { margin-top: 3px; color: var(--sw-gold); flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,.08); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); margin: 0; }
.footer-legal-link { font-size: 12px; color: rgba(255,255,255,.22); text-decoration: none; margin-left: 16px; transition: var(--t); }
.footer-legal-link:hover { color: var(--sw-gold-lt); }

/* ── SCROLL TOP ────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 500;
  width: 42px; height: 42px; border-radius: var(--sw-r-md);
  background: var(--sw-navy); color: white; border: 2px solid rgba(184,147,90,.5);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  cursor: pointer; opacity: 0; pointer-events: none; transition: var(--t);
  transform: translateY(10px);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--sw-gold); border-color: var(--sw-gold); }

/* ── EMPTY STATE ───────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 20px; }
.empty-state .empty-ico { font-size: 60px; margin-bottom: 16px; }
.empty-state h5 { font-size: 20px; color: var(--sw-navy); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--sw-text3); }

/* ── RESPONSIVE TWEAKS ─────────────────────────────────────── */
@media (max-width:1199px) {
  .slide-content { padding: 0 48px; }
  .slider-arrows { right: 48px; }
  .slider-dots { left: 48px; }
  .wa-strip { padding: 44px 36px; }
  .wa-number-card { display: none; }
}
@media (max-width:991px) {
  .sw-navbar { height: auto; }
  .sw-sidebar { position: static; }
  .feat-divider { border-right: none; border-bottom: 1px solid var(--sw-border); padding-bottom: 20px; margin-bottom: 0; }
  .about-img-main img { height: 300px; }
  .about-badge-box { bottom: auto; left: auto; top: -20px; right: -10px; }
}
@media (max-width:767px) {
  :root { --sw-ann: 34px; --sw-nav: 58px; }
  .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: clamp(1.6rem,7vw,2.5rem); }
  .slider-dots { left: 24px; bottom: 28px; }
  .slider-arrows { right: 24px; bottom: 22px; }
  .slider-dot { width: 20px; }
  .slider-dot.active { width: 32px; }
  .sw-hero { min-height: 400px; max-height: 540px; }
  .wa-strip { padding: 36px 24px; }
  .form-card { padding: 24px; }
  .ci-body { padding: 20px 24px; }
  .sw-cart-canvas { width: 100% !important; }
}
