/* ============================================================
   THE LIQUOR FORT — DEHRADUN FLAGSHIP
   ULTRA-PREMIUM ROYAL GOLD & COGNAC LUXURY STYLESHEET
   Refined Prestige Palette: Royal Gold (#c59d3f), Cognac Amber,
   Midnight Obsidian, Warm Champagne & Crisp Pure White
============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS (PREMIUM ROYAL GOLD & COGNAC SYSTEM) ── */
:root {
  /* Brand Luxury Palette (Royal Gold & Cognac Amber - ZERO PINK) */
  --brand: #c59d3f;
  --brand-h: #dfb85b;
  --brand-dk: #8c6318;
  --brand-soft: rgba(197, 157, 63, 0.10);
  --brand-glow: rgba(197, 157, 63, 0.30);

  /* Gold & Champagne Gradients */
  --gold: #c59d3f;
  --gold-light: #f5e6c4;
  --gold-h: #dcb24c;
  --gold-soft: rgba(197, 157, 63, 0.12);
  --gold-border: rgba(197, 157, 63, 0.32);
  --gold-gradient: linear-gradient(135deg, #f8ecc2 0%, #d4ab4b 50%, #a2791e 100%);
  --gold-gradient-btn: linear-gradient(135deg, #d4ab4b 0%, #b88a24 100%);
  --gold-glass: rgba(212, 171, 75, 0.15);

  /* Cognac & Oak Luxury Tones */
  --cognac: #9e6d28;
  --cognac-dark: #6b4715;

  /* WhatsApp & Action */
  --wa: #25d366;
  --wa-dk: #1da851;
  --wa-soft: rgba(37, 211, 102, 0.12);

  /* Section Background Colors (Warm Luxury Palette) */
  --bg-body: #ffffff;
  --sec-collection-bg: #f8f6f0;
  /* Warm Champagne Pearl */
  --sec-products-bg: #0b0e14;
  /* Deep Midnight Obsidian Luxury Stage */
  --sec-about-bg: #ffffff;
  /* Pure White */
  --sec-why-bg: #f6f3eb;
  /* Warm Platinum Gold Tint */
  --sec-order-bg: #ffffff;
  /* Crisp White */
  --sec-gallery-bg: #f8f6f0;
  /* Pearl Champagne */
  --sec-contact-bg: #f8f5ee;
  /* Soft Silk Champagne */

  /* Premium Card Styles */
  --card-bg-white: #ffffff;
  --card-bg-warm: #ffffff;
  --card-bdr: #e8e4d8;
  --card-bdr-subtle: #f0ece2;

  /* Typography Colors */
  --txt-dark: #14171f;
  --txt-heading: #1d222e;
  --txt-body: #4c5363;
  --txt-muted: #6b7385;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(28, 33, 44, 0.06);
  --shadow-hover: 0 14px 34px rgba(28, 33, 44, 0.11);
  --shadow-gold: 0 8px 24px rgba(197, 157, 63, 0.20);
  --shadow-header: 0 8px 30px rgba(18, 22, 32, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════════════════════════════
   FAIL-SAFE CONTENT VISIBILITY
════════════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

#preloader {
  display: none !important;
}

.age-gate-backdrop {
  display: none !important;
}

/* ── BASE & RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--txt-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand);
  color: #121008;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #f1f3f7;
}

::-webkit-scrollbar-thumb {
  background: #c2c8d6;
  border-radius: 6px;
  border: 2px solid #f1f3f7;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--txt-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ac {
  color: var(--brand-dk);
}

.gold-ac {
  color: var(--gold);
}

.text-gold {
  color: var(--brand);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #f6e5be 0%, #dfb85b 50%, #b88628 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  color: var(--brand-dk);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--brand-h);
}

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

/* ════════════════════════════════════════════════════════════
   REDESIGNED ULTRA-PREMIUM LUXURY HEADER SYSTEM
════════════════════════════════════════════════════════════ */

/* ── 1. PRESTIGE TOP BAR ── */
.site-topbar {
  background: #0b0e14;
  color: #cbd5e1;
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(197, 157, 63, 0.25);
  position: relative;
  z-index: 998;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 157, 63, 0.15);
  border: 1px solid rgba(197, 157, 63, 0.35);
  padding: 2px 10px;
  border-radius: 20px;
  color: #f6e2b5;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar-pill-tag i {
  color: var(--gold);
}

.topbar-status-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 10px;
  border-radius: 20px;
  color: #55f38d;
  font-weight: 600;
  font-size: 11.5px;
}

.topbar-pulse-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
}

.topbar-hours {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
}

.topbar-hours i {
  color: var(--gold);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-hotline-link {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.topbar-hotline-link:hover {
  color: var(--gold);
}

/* ── 2. MAIN LUXURY HEADER NAVBAR ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 997;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(197, 157, 63, 0.22);
  box-shadow: 0 4px 20px rgba(18, 22, 32, 0.05);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-header);
  border-bottom-color: rgba(197, 157, 63, 0.35);
}

.header-master-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Logo (Strictly Logo Image via <img>) */
.site-brand-anchor {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-brand-frame {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(197, 157, 63, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-smooth);
}

.site-brand-anchor:hover .site-brand-frame {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--brand-glow);
  transform: translateY(-1px);
}

.site-logo-img {
  height: 44px;
  width: auto;
  border-radius: 7px;
  object-fit: contain;
  display: block;
}

/* Desktop Navigation Center Island */
.nav-center-island {
  display: flex;
  align-items: center;
  background: #faf8f4;
  border: 1px solid rgba(197, 157, 63, 0.22);
  padding: 4px 8px;
  border-radius: 50px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-link-item {
  font-size: 13.5px;
  font-weight: 600;
  color: #3f4756;
  padding: 7px 13px;
  border-radius: 30px;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link-item:hover {
  color: #121008;
  background: rgba(197, 157, 63, 0.16);
}

.nav-link-item.active {
  color: #121008;
  background: var(--gold-gradient-btn);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(197, 157, 63, 0.3);
}

/* Right Side Action Hub (Desktop) */
.header-actions-hub {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-concierge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1.5px solid var(--card-bdr);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--txt-heading);
  transition: all var(--transition-smooth);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}

.header-concierge-pill i {
  color: var(--gold);
  font-size: 14px;
}

.header-concierge-pill:hover {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--brand-glow);
  transform: translateY(-2px);
}

.header-concierge-pill:hover i {
  color: #121008;
}

.btn-header-express-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-header-express-wa:hover {
  background: var(--wa-dk);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── 3. MOBILE ACTION TOOLBAR & LUXURY TOGGLER ── */
.mobile-action-hub {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mobile-icon-btn.wa-mode {
  background: rgba(37, 211, 102, 0.14);
  color: var(--wa-dk);
  border-color: rgba(37, 211, 102, 0.35);
}

.mobile-icon-btn.call-mode {
  background: var(--brand-soft);
  color: var(--brand-dk);
  border-color: var(--card-bdr);
}

.luxury-hamburger-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #faf8f4;
  border: 1.5px solid var(--card-bdr);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-smooth);
}

.luxury-hamburger-toggle span {
  width: 20px;
  height: 2px;
  background: var(--txt-heading);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.luxury-hamburger-toggle:hover {
  background: var(--gold-gradient-btn);
  border-color: transparent;
}

.luxury-hamburger-toggle:hover span {
  background: #121008;
}

.luxury-hamburger-toggle[aria-expanded="true"] {
  background: #10141d;
  border-color: var(--gold);
}

.luxury-hamburger-toggle[aria-expanded="true"] span {
  background: var(--gold);
}

.luxury-hamburger-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.luxury-hamburger-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.luxury-hamburger-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 4. MOBILE LUXURY DRAWER (RESPONSIVE COLLAPSE) ── */
@media (min-width: 1081px) {
  .mobile-drawer-wrap {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .nav-center-island {
    display: none;
  }

  .header-actions-hub .header-concierge-pill,
  .header-actions-hub .btn-header-express-wa {
    display: none;
  }

  .mobile-action-hub {
    display: flex;
  }
}

.mobile-drawer-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--card-bdr);
  box-shadow: 0 16px 40px rgba(18, 22, 32, 0.14);
  padding: 20px;
  margin-top: 12px;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--card-bdr-subtle);
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--card-bdr);
}

.mobile-drawer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt-heading);
  line-height: 1.2;
}

.mobile-drawer-title small {
  display: block;
  font-size: 11px;
  color: var(--brand-dk);
  font-weight: 600;
}

.mobile-drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #3a4252;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-drawer-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer-link-left i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  background: var(--sec-collection-bg);
  color: var(--brand-dk);
  font-weight: 700;
}

.mobile-drawer-link:hover i {
  color: var(--brand-dk);
}

.mobile-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--card-bdr-subtle);
}

.btn-mobile-act-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--wa);
  color: #ffffff;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.btn-mobile-act-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold-gradient-btn);
  color: #121008;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* ── BUTTONS (ROYAL GOLD & LUXURY SYSTEM) ── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient-btn);
  color: #1a1505;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 34px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px var(--brand-glow);
  transition: all var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.btn-brand:hover {
  background: linear-gradient(135deg, #dfb85b 0%, #c59d3f 100%);
  color: #1a1505;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 157, 63, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--txt-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient-btn);
  color: #121008;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 34px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 22px rgba(197, 157, 63, 0.4);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #f0ca6a 0%, #d4ab4b 100%);
  color: #121008;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(197, 157, 63, 0.55);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.95);
  color: #ffffff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: #1da851;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-call:hover {
  background: #ffffff;
  color: var(--txt-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-dk);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--brand);
  transition: all var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.btn-outline-brand:hover {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--brand-glow);
}

.btn-wa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-wa-solid:hover {
  background: var(--wa-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

/* ── SECTION COMMONS ── */
section {
  padding: 80px 0;
  position: relative;
}

.sec-title {
  text-align: center;
  margin-bottom: 50px;
}

.sec-title small {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dk);
  background: var(--brand-soft);
  border: 1px solid var(--card-bdr);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.sec-title h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--txt-heading);
  margin: 0 0 10px;
  line-height: 1.25;
}

.sec-title p {
  font-size: 15.5px;
  color: var(--txt-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 95px 0 75px;
  background: #0f121a url('../images/hero/hero_storefront.jpg') center center / cover no-repeat;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 13, 20, 0.88) 0%, rgba(14, 18, 28, 0.72) 45%, rgba(55, 40, 15, 0.75) 100%);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-in {
  text-align: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 171, 75, 0.5);
  padding: 7px 22px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

.hero-main-title {
  font-size: clamp(2.3rem, 5.5vw, 4.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
  margin-bottom: 18px;
}

.hero-lead-text {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 34px;
}

.hero-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(14, 18, 28, 0.65);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197, 157, 63, 0.4);
  backdrop-filter: blur(8px);
}

.hero-pill-item i {
  color: var(--gold);
}

@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding: 55px 0 40px;
  }

  .hero-in {
    padding: 10px 10px;
  }

  .hero-main-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-lead-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Single Row Alignment for Both Hero Buttons in Mobile Version */
  .hero-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-secondary {
    flex: 1 1 50%;
    font-size: 12.5px;
    padding: 11px 8px;
    border-radius: 30px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  /* Hide hero-pills on mobile version */
  .hero-pills {
    display: none !important;
  }
}

/* ── PRESTIGE BRAND MARQUEE ── */
.brand-marquee-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--card-bdr);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 32px;
  align-items: center;
}

.brand-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--sec-collection-bg);
  border: 1px solid var(--card-bdr);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--txt-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-badge i {
  color: var(--brand);
}

/* ════════════════════════════════════════════════════════════
   EXPLORE OUR PREMIUM RANGE (COLLECTION SECTION)
════════════════════════════════════════════════════════════ */

#collection {
  background-color: var(--sec-collection-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(197, 157, 63, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(158, 109, 40, 0.06) 0%, transparent 45%);
}

.range-luxury-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-bdr);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.range-luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 5;
}

.range-luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover), var(--shadow-gold);
  border-color: var(--gold);
}

.range-luxury-card:hover::before {
  opacity: 1;
}

/* Card Media Header */
.range-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #12151e;
}

.range-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.range-luxury-card:hover .range-card-img {
  transform: scale(1.1);
}

.range-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 18, 26, 0.85) 0%, rgba(14, 18, 26, 0.25) 55%, rgba(0, 0, 0, 0.1) 100%);
}

/* Floating Origin/Variety Badge */
.range-variety-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 18, 26, 0.8);
  border: 1px solid rgba(212, 171, 75, 0.6);
  padding: 4px 12px;
  border-radius: 20px;
  color: #f7e6c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
}

.range-variety-badge i {
  color: var(--gold);
}

/* Floating Gold Emblem / Icon */
.range-icon-emblem {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-dk);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 3;
  transition: transform var(--transition-smooth), background var(--transition-fast);
}

.range-luxury-card:hover .range-icon-emblem {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
}

/* Card Body */
.range-card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.range-card-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-dk);
  font-weight: 700;
  margin-bottom: 4px;
}

.range-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--txt-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.range-card-desc {
  font-size: 13.5px;
  color: var(--txt-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

/* Curated Labels Micro-Pills */
.range-labels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.range-label-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--txt-heading);
  background: #f5f2eb;
  border: 1px solid rgba(197, 157, 63, 0.2);
  padding: 2px 9px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.range-luxury-card:hover .range-label-pill {
  background: rgba(197, 157, 63, 0.12);
  border-color: rgba(197, 157, 63, 0.4);
}

/* Card Action Footer */
.range-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--card-bdr-subtle);
  gap: 10px;
  margin-top: auto;
}

.range-explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dk);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.range-explore-link i {
  transition: transform var(--transition-fast);
}

.range-luxury-card:hover .range-explore-link {
  color: var(--gold-h);
}

.range-luxury-card:hover .range-explore-link i {
  transform: translateX(4px);
}

.btn-range-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa-dk);
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-range-wa:hover {
  background: var(--wa);
  color: #ffffff;
  border-color: var(--wa);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .range-card-media {
    height: 160px;
  }

  .range-card-body {
    padding: 18px 16px 16px;
  }

  .range-card-title {
    font-size: 17.5px;
  }
}

/* ════════════════════════════════════════════════════════════
   ULTRA-ATTRACTIVE MIDNIGHT OBSIDIAN & GOLD "BEST SELLERS" SHOWCASE
════════════════════════════════════════════════════════════ */
#curated-products {
  background-color: var(--sec-products-bg);
  background-image: radial-gradient(circle at 50% 20%, rgba(197, 157, 63, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(140, 99, 24, 0.12) 0%, transparent 50%);
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

#curated-products .sec-title small {
  background: rgba(197, 157, 63, 0.15);
  border-color: rgba(197, 157, 63, 0.4);
  color: #f7e2b3;
}

#curated-products .sec-title h2 {
  color: #ffffff;
}

#curated-products .sec-title p {
  color: #cbd5e1;
}

/* Category Pills Filter Bar */
.bestseller-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.bestseller-filter-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 157, 63, 0.25);
  color: #cbd5e1;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.bestseller-filter-pill:hover,
.bestseller-filter-pill.active {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--brand-glow);
}

/* Ultra-Luxurious Product Card Architecture */
.bestseller-hero-card {
  background: linear-gradient(165deg, rgba(20, 26, 38, 0.95) 0%, rgba(14, 18, 26, 0.98) 100%);
  border: 1px solid rgba(197, 157, 63, 0.3);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.bestseller-hero-card:hover {
  transform: translateY(-9px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(197, 157, 63, 0.28);
}

/* Header Badge Ribbon Bar */
.bestseller-badge-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.bestseller-ribbon-gold {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-gradient-btn);
  color: #121008;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bestseller-ribbon-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 211, 102, 0.16);
  color: #4df38a;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* 3D Bottle Showcase Stage */
.bestseller-stage-wrap {
  position: relative;
  height: 240px;
  background: radial-gradient(circle at 50% 45%, rgba(197, 157, 63, 0.22) 0%, rgba(12, 16, 24, 0.95) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 157, 63, 0.18);
}

.bestseller-aura-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(197, 157, 63, 0.12);
  border: 1px solid rgba(197, 157, 63, 0.35);
  box-shadow: 0 0 30px rgba(197, 157, 63, 0.25);
  transition: transform 0.6s ease;
}

.bestseller-hero-card:hover .bestseller-aura-ring {
  transform: scale(1.3) rotate(20deg);
  background: rgba(197, 157, 63, 0.22);
}

.bestseller-stage-bottle {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.65));
}

.bestseller-hero-card:hover .bestseller-stage-bottle {
  transform: scale(1.12) translateY(-7px);
}

/* Specs Glass Strip */
.bestseller-glass-specs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 22, 0.88);
  border-top: 1px solid rgba(197, 157, 63, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 11.5px;
  font-weight: 600;
  color: #f1f5f9;
  z-index: 4;
}

.bestseller-glass-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bestseller-glass-specs span i {
  color: var(--gold);
}

/* Content Details Body */
.bestseller-details-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bestseller-details-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 4px;
}

.bestseller-details-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bestseller-details-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bestseller-details-title a:hover {
  color: var(--gold);
}

/* Taste Notes Micro Pills */
.bestseller-flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.bestseller-flavor-pill {
  font-size: 11px;
  font-weight: 600;
  color: #fce8b8;
  background: rgba(197, 157, 63, 0.14);
  border: 1px solid rgba(197, 157, 63, 0.3);
  padding: 3px 10px;
  border-radius: 14px;
}

.bestseller-details-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* High Conversion Actions Footer (Compact & Elegant) */
.bestseller-hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.bestseller-foot-stock-tag {
  font-size: 12px;
  font-weight: 700;
  color: #4df38a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bestseller-foot-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small, Compact, & Ultra-Attractive WhatsApp Order Button */
.btn-sm-wa-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

.btn-sm-wa-order:hover {
  background: linear-gradient(135deg, #2cf578 0%, #20be5c 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.55);
}

.btn-hero-phone-call {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient-btn);
  color: #121008;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(197, 157, 63, 0.3);
}

.btn-hero-phone-call:hover {
  color: #121008;
  transform: scale(1.1);
  box-shadow: 0 5px 14px rgba(197, 157, 63, 0.5);
}

@media (max-width: 768px) {
  .bestseller-stage-wrap {
    height: 200px;
  }

  .bestseller-stage-bottle {
    max-height: 155px;
  }

  .bestseller-details-body {
    padding: 18px 16px;
  }

  .bestseller-details-title {
    font-size: 17px;
  }
}

/* ════════════════════════════════════════════════════════════
   REDESIGNED UNIQUE & RESPONSIVE "ABOUT US" SECTION
════════════════════════════════════════════════════════════ */
#about {
  background-color: var(--sec-about-bg);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.about-unique-card {
  background: #ffffff;
  border: 1px solid var(--card-bdr);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.about-unique-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

/* Gallery & Flagship Hero Showcase (Left Side) */
.about-flagship-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-bdr);
  box-shadow: var(--shadow-card);
  height: 340px;
  background: #0f121a;
}

.about-flagship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-flagship-box:hover .about-flagship-img {
  transform: scale(1.08);
}

.about-flagship-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 14, 20, 0.9) 0%, rgba(11, 14, 20, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.about-flagship-tag {
  align-self: flex-start;
  background: rgba(197, 157, 63, 0.25);
  border: 1px solid rgba(197, 157, 63, 0.5);
  color: #fce8b8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.about-flagship-info {
  color: #ffffff;
}

.about-flagship-info h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-flagship-info p {
  color: #d1d5db;
  font-size: 13px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-flagship-info p i {
  color: var(--gold);
}

/* Hotline Concierge Card */
.about-concierge-card {
  background: linear-gradient(135deg, #121622 0%, #1a2030 100%);
  border: 1px solid rgba(197, 157, 63, 0.35);
  border-radius: 20px;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.about-concierge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-concierge-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.about-concierge-num {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.about-concierge-num a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.about-concierge-num a:hover {
  color: var(--gold);
}

.about-concierge-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-about-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold-gradient-btn);
  color: #121008;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.btn-about-call:hover {
  color: #121008;
  transform: translateY(-2px);
}

.btn-about-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--wa);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.btn-about-wa:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right Side Spirits Manifesto & Pillars */
.about-manifesto-box {
  padding: 10px 0;
}

.about-quote-lead {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--txt-heading);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 24px;
}

/* 3 Unique Distinction Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.about-pillar-card {
  background: #faf8f4;
  border: 1px solid var(--card-bdr);
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  height: 100%;
}

.about-pillar-card:hover {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.about-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dk);
  border: 1px solid var(--card-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.about-pillar-card:hover .about-pillar-icon {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
}

.about-pillar-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--txt-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

.about-pillar-desc {
  font-size: 12px;
  color: var(--txt-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* Interior Showcase Banner Strip */
.about-interior-strip {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 150px;
  border: 1px solid var(--card-bdr);
}

.about-interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-interior-glass {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 26, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px;
  color: #ffffff;
}

.about-stat-item {
  text-align: center;
}

.about-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

@media (max-width: 1200px) and (min-width: 769px) {
  .about-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .about-pillar-card {
    padding: 14px 10px;
  }

  .about-pillar-title {
    font-size: 13.5px;
  }

  .about-pillar-desc {
    font-size: 11.5px;
  }
}

@media (max-width: 768px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-pillar-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .about-pillar-icon {
    margin-bottom: 0;
  }

  .about-flagship-box {
    height: 260px;
  }

  .about-interior-glass {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-stat-num {
    font-size: 18px;
  }
}

/* ════════════════════════════════════════════════════════════
   REDESIGNED UNIQUE & RESPONSIVE "CONTACT US" SECTION
════════════════════════════════════════════════════════════ */
#contact {
  background-color: var(--sec-contact-bg);
  padding: 90px 0;
}

/* 3 Unique Contact Feature Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card-unique {
  background: #ffffff;
  border: 1px solid var(--card-bdr);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card-unique:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover), var(--shadow-gold);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-card-icon.phone-ico {
  background: rgba(197, 157, 63, 0.12);
  color: var(--brand-dk);
  border: 1px solid rgba(197, 157, 63, 0.3);
}

.contact-card-icon.wa-ico {
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa-dk);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-card-icon.map-ico {
  background: rgba(15, 18, 26, 0.08);
  color: var(--txt-heading);
  border: 1px solid var(--card-bdr);
}

.contact-card-unique:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--txt-heading);
  margin: 0;
}

.contact-card-sub {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-dk);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 2px 0 0;
}

.contact-card-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--txt-body);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.contact-card-val a {
  color: var(--txt-heading);
  font-weight: 700;
  text-decoration: none;
}

.contact-card-val a:hover {
  color: var(--gold);
}

.btn-contact-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.btn-contact-action.btn-phone-style {
  background: var(--gold-gradient-btn);
  color: #121008;
  box-shadow: 0 3px 12px rgba(197, 157, 63, 0.25);
}

.btn-contact-action.btn-phone-style:hover {
  color: #121008;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 157, 63, 0.4);
}

.btn-contact-action.btn-wa-style {
  background: var(--wa);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.btn-contact-action.btn-wa-style:hover {
  color: #ffffff;
  background: var(--wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-contact-action.btn-map-style {
  background: #121622;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.btn-contact-action.btn-map-style:hover {
  background: var(--gold);
  color: #121008;
  transform: translateY(-2px);
}

/* Embedded Google Map + Quick Inquiry Panel Wrapper */
.contact-map-panel-wrap {
  background: #ffffff;
  border: 1px solid var(--card-bdr);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contact-inquiry-box {
  padding: 34px 30px;
  background: linear-gradient(145deg, #121622 0%, #1a2030 100%);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-inquiry-box h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-inquiry-box p {
  color: #a4b1cd;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.contact-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-check-item i {
  color: var(--gold);
  font-size: 16px;
}

.btn-inquiry-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-inquiry-wa:hover {
  background: var(--wa-dk);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-frame {
    min-height: 280px;
  }

  .contact-inquiry-box {
    padding: 24px 20px;
  }
}

/* ── 4. WHY US SECTION (WARM PLATINUM GOLD TINT BG) ── */
#why-us {
  background-color: var(--sec-why-bg);
  background-image: radial-gradient(circle at 80% 20%, rgba(197, 157, 63, 0.1) 0%, transparent 50%);
}

.why-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 30px;
  height: 100%;
  border: 1px solid var(--card-bdr);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--txt-heading);
  margin-bottom: 14px;
}

.why-box p {
  color: var(--txt-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-soft);
  color: var(--brand-dk);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--card-bdr);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition-smooth);
  width: fit-content;
}

.btn-more:hover {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
}

.icon-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 22px;
  text-align: center;
  border: 1px solid var(--card-bdr);
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.icon-card:hover {
  background: #151821;
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

.ic-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition-smooth);
}

.icon-card:hover .ic-wrap {
  background: rgba(197, 157, 63, 0.2);
  border-color: var(--gold);
}

.ic-wrap i {
  font-size: 28px;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.icon-card:hover .ic-wrap i {
  color: #ffffff;
}

.icon-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--txt-heading);
  transition: color var(--transition-fast);
}

.icon-card:hover h4 {
  color: #ffffff;
}

.icon-card p {
  font-size: 13.5px;
  color: var(--txt-muted);
  margin: 0;
  line-height: 1.65;
  transition: color var(--transition-fast);
}

.icon-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* ── 5. WINE CLUB (ATMOSPHERIC PARALLAX BANNER - ZERO PINK) ── */
#club {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #10131b url('../images/store/store_interior.jpg') center center / cover no-repeat;
}

.club-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.club-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) contrast(1.1);
}

.club-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 15, 22, 0.85) 0%, rgba(45, 34, 15, 0.7) 100%);
  z-index: 2;
}

.club-in {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}

.club-in h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.club-in p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 30px;
}

/* ── 6. ORDER CONCIERGE SECTION ── */
#order-concierge {
  background-color: var(--sec-order-bg);
}

.del-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--card-bdr);
  background: #ffffff;
}

.del-img-box {
  min-height: 420px;
  position: relative;
}

.del-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.del-body {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.del-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--txt-heading);
  margin-bottom: 16px;
}

.del-body p {
  font-size: 15px;
  color: var(--txt-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.del-body .cta {
  font-size: 18px;
  font-weight: 700;
  color: #c0392b;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 20px;
}

.del-body .cta a {
  color: inherit;
}

@media (max-width: 767px) {
  .del-img-box {
    min-height: 240px;
  }

  .del-body {
    padding: 30px 20px;
  }
}

/* ── 7. Spirits GALLERY (PEARL CHAMPAGNE BG - ZERO PINK) ── */
#gallery {
  background-color: var(--sec-gallery-bg);
}

.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 230px;
  border: 1px solid var(--card-bdr);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 32, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

/* ── FOOTER (MIDNIGHT NOIR WITH GOLD ACCENTS) ── */
#footer {
  background: #0f1219;
  color: #cbd3e1;
  padding: 56px 0 24px;
  font-size: 14px;
  border-top: 1px solid rgba(197, 157, 63, 0.25);
}

#footer h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

#footer p {
  color: #9aa4b8;
  line-height: 1.7;
}

#footer a {
  color: #9aa4b8;
  transition: color var(--transition-fast);
}

#footer a:hover {
  color: var(--gold);
}

.ft-icon {
  color: var(--gold);
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1c212e;
  color: #cbd3e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
  transform: translateY(-2px);
}

.ft-legal {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px 18px;
  margin: 32px 0 20px;
  font-size: 12px;
  color: #7d889b;
  text-align: center;
  border: 1px solid rgba(197, 157, 63, 0.15);
}

.ft-bottom {
  border-top: 1px solid #1c212e;
  margin-top: 24px;
  padding-top: 18px;
  text-align: center;
  color: #7d889b;
  font-size: 13px;
}

/* ── FLOATING CALL & WHATSAPP WIDGETS ── */
.call-float {
  position: fixed;
  left: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00c853;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 200, 83, 0.4);
  z-index: 10000;
  transition: transform var(--transition-bounce), background var(--transition-fast);
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.call-float:hover {
  background: #00a844;
  transform: scale(1.08) translateY(-2px);
  color: #fff;
}

.wa-label {
  position: fixed;
  right: 88px;
  bottom: 34px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-dark);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: transform var(--transition-bounce), background var(--transition-fast);
  color: #fff;
  font-size: 30px;
}

.wa-fab:hover {
  background: var(--wa-dk);
  transform: scale(1.08) rotate(5deg);
}

.wa-widget {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 310px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 10001;
}

.wa-w-head {
  background: var(--wa);
  padding: 16px;
  text-align: center;
  position: relative;
}

.wa-w-head h2 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.wa-w-head p {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #fff;
  opacity: 0.95;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.wa-w-body {
  padding: 16px;
}

.wa-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-bdr-subtle);
}

.wa-contact img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  object-fit: cover;
  flex-shrink: 0;
}

.wa-ci {
  flex: 1;
}

.wa-ci .role {
  font-size: 11.5px;
  color: #888;
  margin: 0;
}

.wa-ci .name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--txt-dark);
  margin: 0;
}

.wa-chat {
  background: var(--wa);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.wa-chat:hover {
  background: var(--wa-dk);
  color: #fff;
}

.wa-w-foot {
  background: #f4f6fa;
  padding: 9px;
  text-align: center;
  font-size: 11px;
  color: #888;
}

.wa-w-foot a {
  color: var(--wa);
  font-weight: 600;
}

/* ── SCROLL TOP BUTTON ── */
#scrollTop {
  position: fixed;
  right: 20px;
  bottom: 88px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-btn);
  color: #121008;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 9990;
  box-shadow: 0 4px 14px var(--brand-glow);
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: linear-gradient(135deg, #dfb85b 0%, #c59d3f 100%);
}

/* ── RESPONSIVE MOBILE FIXES ── */
@media (max-width: 991px) {
  .wa-label {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .site-topbar {
    display: none !important;
  }

  .sec-title h2 {
    font-size: 26px;
  }

  .call-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 18px;
    left: 16px;
  }

  .wa-fab {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 18px;
    right: 16px;
  }

  #scrollTop {
    bottom: 78px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .wa-widget {
    width: 290px;
    right: 10px;
    bottom: 78px;
  }
}


/* ════════════════════════════════════════════════════════════
   DEHRADUN'S FIRST WALK-IN CHILLER SECTION (SIMPLE & PREMIUM)
════════════════════════════════════════════════════════════ */
.chiller-section {
  position: relative;
  background: radial-gradient(circle at 20% 30%, #0c1626 0%, #080c14 70%, #04070c 100%);
  color: #f1f5f9;
  padding: 85px 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 157, 63, 0.2);
  border-bottom: 1px solid rgba(197, 157, 63, 0.2);
}

.chiller-frost-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 80px 120px, rgba(56, 189, 248, 0.18), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 150px 240px, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
}

.chiller-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8 !important;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.chiller-section .sec-title h2 {
  color: #ffffff;
}

.chiller-header-desc {
  color: #94a3b8;
  font-size: 15.5px;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Luxury Showcase Card (Left Col) */
.chiller-showcase-card {
  background: rgba(13, 20, 34, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(14px);
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.chiller-showcase-card:hover {
  border-color: rgba(197, 157, 63, 0.45);
  transform: translateY(-2px);
}

.chiller-ribbon-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.chiller-live-badge {
  background: rgba(8, 14, 26, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #7dd3fc;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chiller-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: chillerPulse 1.8s infinite;
}

@keyframes chillerPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #38bdf8; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.chiller-tag-exclusive {
  background: rgba(197, 157, 63, 0.22);
  border: 1px solid rgba(197, 157, 63, 0.5);
  color: #fce8b8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* Dual Visual Grid (Both Images) */
.chiller-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chiller-photo-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020617;
  aspect-ratio: 4 / 5;
}

.chiller-dual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.chiller-photo-frame:hover .chiller-dual-img {
  transform: scale(1.05);
}

.chiller-frame-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(8, 12, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.chiller-temp-led-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: #38bdf8;
  font-family: monospace;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(6px);
}

.chiller-badge-100 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(197, 157, 63, 0.5);
  color: #fce8b8;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

/* 3 Micro Stats Strip */
.chiller-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chiller-stat-box {
  text-align: center;
  flex: 1;
}

.chiller-stat-val {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.chiller-stat-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.chiller-stat-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
}

/* Right Content Panel */
.chiller-content-panel {
  padding-left: 8px;
}

.chiller-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.chiller-content-heading {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.28;
  margin-bottom: 12px;
}

.chiller-content-text {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.chiller-content-text strong {
  color: #fce8b8;
}

/* 3 Feature Cards Grid */
.chiller-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.chiller-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 12px;
  border-radius: 14px;
  transition: all var(--transition-fast);
  height: 100%;
}

.chiller-feature-item:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(197, 157, 63, 0.35);
  transform: translateY(-2px);
}

.chiller-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.32);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.chiller-feature-item:hover .chiller-feature-icon {
  background: var(--gold-gradient-btn);
  color: #121008;
  border-color: transparent;
}

.chiller-feature-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.3;
}

.chiller-feature-body p {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* VIP WhatsApp Community Banner */
.chiller-community-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(20, 83, 45, 0.22) 100%);
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chiller-community-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chiller-community-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5);
}

.chiller-community-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.chiller-community-subtitle {
  font-size: 12px;
  color: #a7f3d0;
  margin: 0;
  line-height: 1.4;
}

.btn-chiller-community {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 18px;
  border-radius: 26px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  text-align: center;
  width: 100%;
}

.btn-chiller-community:hover {
  background: linear-gradient(135deg, #2cf578 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

/* Quick Order & Call Actions */
.chiller-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-chiller-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80 !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 26px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-chiller-wa:hover {
  background: var(--wa);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-chiller-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(197, 157, 63, 0.15);
  border: 1px solid rgba(197, 157, 63, 0.4);
  color: #fce8b8 !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 26px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-chiller-call:hover {
  background: var(--gold-gradient-btn);
  color: #121008 !important;
  transform: translateY(-2px);
}

/* Nav & Topbar Badges */
.badge-nav-chiller {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
}

.topbar-community-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 3px 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  transition: all var(--transition-fast);
}

.topbar-community-link:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

/* WhatsApp Widget Community Box */
.wa-widget-community-box {
  margin-top: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px;
}

.wa-wcb-head {
  font-size: 12.5px;
  color: #15803d;
  margin-bottom: 2px;
}

.wa-wcb-desc {
  font-size: 11px;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 8px;
}

.btn-wa-widget-group {
  display: block;
  background: var(--wa);
  color: #ffffff !important;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 18px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.btn-wa-widget-group:hover {
  background: var(--wa-dk);
}

/* ════════════════════════════════════════════════════════════
   WALK-IN CHILLER RESPONSIVE MEDIA QUERIES
════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) and (min-width: 992px) {
  .chiller-features-grid {
    gap: 8px;
  }
  .chiller-feature-item {
    padding: 12px 9px;
  }
  .chiller-feature-body h4 {
    font-size: 12px;
  }
  .chiller-feature-body p {
    font-size: 10.5px;
  }
}

@media (max-width: 991px) {
  .chiller-section {
    padding: 70px 0;
  }
  .chiller-content-panel {
    padding-left: 0;
    margin-top: 16px;
  }
  .chiller-content-heading {
    font-size: 24px;
  }
  .chiller-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .chiller-section {
    padding: 55px 0;
  }
  .chiller-showcase-card {
    padding: 12px;
    border-radius: 16px;
  }
  .chiller-dual-grid {
    gap: 8px;
  }
  .chiller-photo-frame {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
  }
  .chiller-frame-tag {
    font-size: 10px;
    padding: 3px 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
  }
  .chiller-temp-led-pill,
  .chiller-badge-100 {
    font-size: 9.5px;
    padding: 2px 5px;
  }
  .chiller-live-badge,
  .chiller-tag-exclusive {
    font-size: 10.5px;
    padding: 3px 10px;
  }
  .chiller-stat-val {
    font-size: 15px;
  }
  .chiller-stat-lbl {
    font-size: 9.5px;
  }
  .chiller-content-heading {
    font-size: 22px;
  }
  .chiller-content-text {
    font-size: 13.5px;
    margin-bottom: 16px;
  }
  /* Mobile 1-Column Horizontal Card Layout */
  .chiller-features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .chiller-feature-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }
  .chiller-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .chiller-feature-body h4 {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .chiller-feature-body p {
    font-size: 11px;
  }
  .chiller-community-banner {
    padding: 14px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .chiller-community-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .chiller-community-title {
    font-size: 14px;
  }
  .chiller-community-subtitle {
    font-size: 11.5px;
  }
  .btn-chiller-community {
    font-size: 13px;
    padding: 10px 16px;
  }
  .chiller-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .btn-chiller-wa,
  .btn-chiller-call {
    width: 100%;
    font-size: 12px;
    padding: 10px 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .chiller-actions-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .btn-chiller-wa,
  .btn-chiller-call {
    padding: 11px 16px;
    font-size: 13px;
  }
}