/* ═══════════════════════════════════════════════════
   ALL IN ONE PRODUCT 247 — Redesign
   State-of-the-Art 3D Glassmorphic Hybrid Theme
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');

:root {
  --bg-light:      #FAF8F5;          /* Silk Alabaster background */
  --bg-dark:       #0A0908;          /* Rich Obsidian Black */
  --bg-hero:       #151312;          /* Deep Carbon Coal */
  --panel-light:   #FFFFFF;          /* Pure White for light cards */
  --panel-dark:    rgba(18, 16, 15, 0.75); /* Dark Glass containers */
  --gold:          #C5A368;          /* Luxury Metallic Gold */
  --gold-l:        #EADCB9;          /* Luminous Gold Highlights */
  --gold-d:        #8E6C3B;          /* Dark Satin Bronze */
  
  /* Luminous 3D Glow Backlights */
  --gold-glow:     0 0 25px rgba(197, 163, 104, 0.25);
  --cyan-glow:     0 0 25px rgba(0, 242, 254, 0.2);
  --orange-glow:   0 0 25px rgba(255, 123, 0, 0.15);
  
  --text-light:    #1F1D1B;          /* Ink Black for high usability */
  --text-dark:     #FAF8F5;          /* Alabaster White */
  --text-m:        #7D7266;          /* Deep Earth Gray-Bronze */
  --text-d:        #9E968D;          /* Soft Clay Gray */
  
  /* Borders */
  --border-l:      rgba(13, 11, 10, 0.06);
  --border-d:      rgba(197, 163, 104, 0.18);
  --border-glass:  rgba(255, 255, 255, 0.08);
  
  --danger:        #E74C3C;
  --ok:            #2ECC71;
  --wa:            #0F705F;          /* WhatsApp Emerald */
  --wa-h:          #0A4D41;
  
  /* Stereoscopic 3D Shadows */
  --shadow-3d-light: 8px 8px 24px rgba(163, 177, 198, 0.35), 
                     -8px -8px 24px rgba(255, 255, 255, 0.85),
                     inset 0 1px 0 rgba(255, 255, 255, 0.95);
                     
  --shadow-3d-dark:  12px 12px 30px rgba(0, 0, 0, 0.55), 
                     -6px -6px 20px rgba(255, 255, 255, 0.02),
                     inset 0 1px 0 rgba(255, 255, 255, 0.08),
                     inset 0 -1px 0 rgba(0, 0, 0, 0.55);
                     
  --shadow-elevated: 16px 20px 45px rgba(28, 27, 26, 0.12), 
                     0 0 20px rgba(197, 163, 104, 0.1);
}

/* ── RESET & GLOBAL STANDARDS ──────────────────────────── */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase !important; /* ENFORCE UPPERCASE GLOBALLY */
  letter-spacing: .06em;
}

body { 
  background: var(--bg-light); 
  color: var(--text-light); 
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Base Headings */
h1, h2, h3, h4, h5, h6, 
.brand-name, 
.hero h1, 
.section-title { 
  font-family: 'Aclonica', sans-serif !important; 
  font-weight: normal; 
  letter-spacing: .08em;
}

/* Product Elements */
.card-name, 
.modal-name, 
.ci-name, 
.p-name {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: bold;
}

/* 3D Glassmorphic Background Blur Blobs */
.blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
.blob-cyan { width: 350px; height: 350px; background: #00f2fe; top: 15%; left: 5%; }
.blob-gold { width: 400px; height: 400px; background: var(--gold); bottom: 20%; right: 10%; }

/* ── HEADER ────────────────────────────────────────── */
.topbar {
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  height: 85px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-d);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.topbar .logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.topbar .logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(197, 163, 104, 0.3));
}
.topbar .brand-name {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--text-dark);
}
.topbar .brand-sub {
  font-size: .65rem;
  letter-spacing: .35em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar .nav-link {
  color: var(--text-d);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  transition: all .25s ease;
  padding: .5rem .8rem;
}
.topbar .nav-link:hover {
  color: var(--text-dark);
}
.topbar .btn-portal {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-dark);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.topbar .btn-portal:hover {
  background: var(--text-dark);
  color: var(--bg-dark);
  box-shadow: var(--gold-glow);
}

/* 3D Cart Toggle Button */
.btn-champ {
  background: var(--text-dark);
  color: var(--bg-dark);
  padding: .7rem 1.6rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-champ:hover {
  background: transparent;
  color: var(--text-dark);
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 8px 20px rgba(255,255,255,0.1);
}
.btn-champ:active {
  transform: translate3d(0, 1px, 0);
}
.cart-badge {
  background: var(--gold);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* ── HERO BANNER ───────────────────────────────────── */
.hero {
  background: 
    radial-gradient(circle at 20% 30%, rgba(197, 163, 104, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 242, 254, 0.08) 0%, transparent 45%),
    linear-gradient(rgba(10, 9, 8, 0.6), rgba(10, 9, 8, 0.6)),
    url('hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-d);
  overflow: hidden;
  margin-top: 85px;
}
.hero-inner { position: relative; z-index: 10; max-width: 850px; }
.hero-ornament { color: var(--gold); font-size: 1.3rem; letter-spacing: 1.2em; margin-bottom: 2rem; opacity: .8; text-shadow: var(--gold-glow); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub { color: var(--gold-l); font-size: .88rem; letter-spacing: .4em; font-weight: 500; margin-bottom: 3.5rem; }
.hero-line { width: 100px; height: 1px; background: var(--gold); margin: 0 auto; opacity: .4; box-shadow: var(--gold-glow); }

/* ── 3D PILLAR QUICK CARD SELECTOR ───────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
}
.pillar-card {
  background: var(--panel-dark);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 3rem 2.2rem;
  text-align: left;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3d-dark);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pillar-card:hover {
  transform: translate3d(0, -12px, 0) scale(1.02);
  border-color: rgba(197, 163, 104, 0.45);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 20px rgba(197, 163, 104, 0.25);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.5s ease;
}
.pillar-card:hover::before {
  transform: translate3d(15%, 15%, 0);
}
.pillar-icon {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 163, 104, 0.12);
  border: 1px solid rgba(197, 163, 104, 0.25);
  color: var(--gold);
  margin-bottom: 2rem;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.05);
}
.pillar-card.tech .pillar-icon {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.25);
  color: #00f2fe;
}
.pillar-card.wax .pillar-icon {
  background: rgba(255, 123, 0, 0.08);
  border-color: rgba(255, 123, 0, 0.25);
  color: #ff7b00;
}
.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.pillar-card p {
  font-size: .8rem;
  color: var(--text-d);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pillar-action {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}
.pillar-card.tech .pillar-action { color: #00f2fe; }
.pillar-card.wax .pillar-action { color: #ff7b00; }
.pillar-action svg {
  transition: transform .2s ease;
}
.pillar-card:hover .pillar-action svg {
  transform: translate3d(5px, 0, 0);
}

/* ── 3D GLOSSY BUTTONS ──────────────────────────────── */
.btn-3d {
  background: linear-gradient(135deg, #EADCB9 0%, #C5A368 100%);
  color: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(197, 163, 104, 0.25), 
              inset 0 1px 0 rgba(255,255,255,0.4),
              inset 0 -2px 0 rgba(0,0,0,0.15);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-3d:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 12px 25px rgba(197, 163, 104, 0.35), 0 0 15px rgba(197, 163, 104, 0.3);
}
.btn-3d:active {
  transform: translate3d(0, 2px, 0);
  box-shadow: 0 2px 6px rgba(197, 163, 104, 0.3), inset 0 2px 3px rgba(0,0,0,0.1);
}

.btn-3d.tech {
  background: linear-gradient(135deg, #e0fbfd 0%, #00f2fe 100%);
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-3d.tech:hover {
  box-shadow: 0 12px 25px rgba(0, 242, 254, 0.35), 0 0 15px rgba(0, 242, 254, 0.25);
}

.btn-3d.wax {
  background: linear-gradient(135deg, #ffe8d6 0%, #ff7b00 100%);
  box-shadow: 0 6px 18px rgba(255, 123, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-3d.wax:hover {
  box-shadow: 0 12px 25px rgba(255, 123, 0, 0.35), 0 0 15px rgba(255, 123, 0, 0.25);
}

.btn-3d.dark {
  background: linear-gradient(135deg, #252220 0%, #0A0908 100%);
  color: var(--text-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-3d.dark:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.45);
}

.btn-3d.wa {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.25);
}
.btn-3d.wa:hover {
  box-shadow: 0 12px 25px rgba(18, 140, 126, 0.35);
}

/* ── SECTION HEADER STYLE ──────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-tag {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  letter-spacing: .04em;
  color: var(--text-light);
}
section {
  padding: 8rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* ── COMPUTERS SECTION ──────────────────────────────── */
#computers {
  border-bottom: 1px solid var(--border-l);
}
.service-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.service-item {
  background: var(--panel-light);
  border: 1px solid var(--border-l);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-3d-light);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item:hover {
  transform: translate3d(5px, 0, 0);
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 10px 25px rgba(163,177,198,0.25);
}
.service-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 242, 254, 0.15);
}
.service-info h4 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .4rem;
}
.service-info p {
  font-size: .8rem;
  color: var(--text-m);
  line-height: 1.6;
}
.service-promo {
  background: linear-gradient(135deg, #151312 0%, #0A0908 100%);
  border: 1px solid var(--border-d);
  border-radius: 16px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: var(--shadow-3d-dark);
}
.service-promo h3 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.service-promo p {
  font-size: .85rem;
  color: var(--text-d);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

/* ── FRAGRANCES SECTION (SEARCH BAR & SLATE TABLE) ──── */
#fragrances {
  background: var(--bg-light);
}
.search-container {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.5rem;
  background: var(--panel-light);
  border: 1px solid var(--border-l);
  border-radius: 12px;
  color: var(--text-light);
  font-size: .88rem;
  box-shadow: var(--shadow-3d-light);
  outline: none;
  transition: all .3s ease;
}
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(197, 163, 104, 0.15);
}
.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-d);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.gst-banner {
  text-align: center;
  font-size: .8rem;
  color: var(--gold-d);
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

/* Polished Slate Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-3d-light);
  border: 1px solid var(--border-l);
  background: var(--panel-light);
  margin-bottom: 3.5rem;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}
.product-table th {
  background: #ECE8E1;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  font-size: .75rem;
  letter-spacing: .15em;
  border-bottom: 2px solid rgba(13, 11, 10, 0.05);
  text-align: center;
}
.product-table th:first-child { text-align: left; }
.product-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(13, 11, 10, 0.04);
  font-size: .85rem;
  color: var(--text-light);
  text-align: center;
}
.product-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--bg-dark);
}
.product-table tbody tr {
  transition: all .2s;
}
.product-table tbody tr:hover {
  background: rgba(197, 163, 104, 0.03);
}

/* Badges */
.status-badge {
  padding: .35rem .7rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  display: inline-block;
  border: 1px solid transparent;
}
.status-badge.in-stock {
  background: rgba(46, 204, 113, 0.08);
  color: var(--ok);
  border-color: rgba(46, 204, 113, 0.2);
}
.status-badge.out-of-stock {
  background: rgba(231, 76, 60, 0.08);
  color: var(--danger);
  border-color: rgba(231, 76, 60, 0.2);
}

.type-badge {
  padding: .35rem .7rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  display: inline-block;
}
.type-badge.type-organic { background: #d4edda; color: #155724; }
.type-badge.type-synthetic { background: #d1ecf1; color: #0c5460; }
.type-badge.type-general { background: #e2e3e5; color: #383d41; }

/* ── LIGHT GRID: PREMIUM SHOPPING GRID ─────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-label h2 {
  font-size: 2rem;
  text-transform: lowercase !important;
  font-style: italic;
  color: var(--bg-dark);
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-l);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3.5rem 2.5rem;
}

/* 3D Glass Card with Gloss Reflex Sheen */
.product-card {
  background: var(--panel-light);
  border: 1px solid var(--border-l);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3d-light);
  cursor: pointer;
  transition: transform 0.15s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.product-card:hover {
  border-color: rgba(197, 163, 104, 0.35);
  box-shadow: var(--shadow-elevated);
}

/* Category Specific Color-Coded Ambient Glows */
.product-card.organic:hover {
  border-color: rgba(46, 204, 113, 0.4) !important;
  box-shadow: 16px 20px 45px rgba(28, 27, 26, 0.12), 0 0 25px rgba(46, 204, 113, 0.22);
}
.product-card.synthetic:hover {
  border-color: rgba(0, 242, 254, 0.4) !important;
  box-shadow: 16px 20px 45px rgba(28, 27, 26, 0.12), 0 0 25px rgba(0, 242, 254, 0.22);
}
.product-card.general:hover {
  border-color: rgba(197, 163, 104, 0.4) !important;
  box-shadow: 16px 20px 45px rgba(28, 27, 26, 0.12), 0 0 25px rgba(197, 163, 104, 0.18);
}

/* Image Reflex sheen */
.card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-l);
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .card-img img {
  transform: scale(1.06);
}

/* Reflections overlay */
.card-img::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 150%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 40%, rgba(255,255,255,0.1) 45%, transparent 70%);
  pointer-events: none;
}
.product-card:hover .card-img::after {
  animation: shineReflex 1s ease-in-out;
}
@keyframes shineReflex {
  0% { left: -150%; }
  100% { left: 100%; }
}

.card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-name {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .6rem;
  line-height: 1.25;
  color: var(--text-light);
}
.card-sizes {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}
.size-tag {
  background: transparent;
  border: 1px solid var(--border-l);
  font-size: .62rem;
  color: var(--text-m);
  padding: .25rem .6rem;
  border-radius: 3px;
  font-weight: 600;
}
.card-price {
  font-size: .95rem;
  color: var(--gold-d);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.card-btn {
  margin-top: auto;
  width: 100%;
  border: 1px solid var(--bg-dark);
  background: transparent;
  color: var(--bg-dark);
  padding: .85rem;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
}
.product-card:hover .card-btn {
  background: var(--bg-dark);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.state-box {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-d);
}
.state-box p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
}

/* ── WAXES SECTION ─────────────────────────────────── */
#waxes {
  border-top: 1px solid var(--border-l);
}
.wax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.wax-card {
  background: var(--panel-light);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-3d-light);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wax-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(255, 123, 0, 0.25);
  box-shadow: 0 15px 30px rgba(163,177,198,0.25);
}
.wax-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.wax-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
}
.wax-badge {
  background: rgba(255, 123, 0, 0.08);
  color: #ff7b00;
  border: 1px solid rgba(255, 123, 0, 0.15);
  padding: .3rem .6rem;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
}
.wax-desc {
  font-size: .8rem;
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}
.wax-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-top: 1px solid rgba(13,11,10,0.05);
  padding-top: 1.25rem;
  margin-top: auto;
}
.wax-feature-item {
  font-size: .75rem;
  color: var(--text-m);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}
.wax-feature-item svg {
  color: #ff7b00;
  flex-shrink: 0;
}

/* ── CONTACT SECTION ───────────────────────────────── */
.contact {
  background: linear-gradient(135deg, #151312 0%, #0A0908 100%);
  border-top: 1px solid var(--border-d);
  padding: 8rem 4rem;
  color: var(--text-dark);
}
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
}
.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--text-d);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  color: var(--gold);
}
.contact-card h4 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-d);
  margin-bottom: .25rem;
}
.contact-card a, .contact-card span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: color .2s;
}
.contact-card a:hover {
  color: var(--gold-l);
}

.contact-form-panel {
  background: var(--panel-dark);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-3d-dark);
}
.contact-form-panel h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-group label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-d);
}
.form-control {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-dark);
  font-size: .88rem;
  outline: none;
  transition: all .25s ease;
}
.form-control:focus {
  border-color: rgba(197, 163, 104, 0.45);
  background: rgba(255,255,255,0.04);
}
textarea.form-control {
  resize: none;
  min-height: 120px;
}

/* ── MODALS (3D DEPTH OVERLAYS) ─────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(7, 6, 5, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.overlay.open { display: flex; animation: fadeIn .3s ease; }

.modal-box {
  background: var(--panel-light);
  width: 100%; max-width: 760px;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  border-radius: 16px;
  border: 1px solid var(--border-l);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  animation: modalPop .45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92) translate3d(0, 20px, 0); }
  to { opacity: 1; transform: scale(1) translate3d(0, 0, 0); }
}

.modal-img {
  background: #FAF8F5;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px; overflow: hidden;
  border-right: 1px solid var(--border-l);
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 3rem; display: flex; flex-direction: column; position: relative; }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--bg-light); 
  color: var(--text-m);
  border: 1px solid var(--border-l);
  width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: all .2s; z-index: 10;
}
.modal-close:hover { border-color: var(--bg-dark); color: var(--bg-dark); }

.modal-tag { font-size: .68rem; letter-spacing: .25em; color: var(--gold); font-weight: 700; margin-bottom: .6rem; }
.modal-name { font-size: 2.2rem; font-weight: 300; line-height: 1.25; margin-bottom: 1.2rem; color: var(--bg-dark); }
.modal-divider { width: 50px; height: 1px; background: var(--gold); margin-bottom: 1.8rem; }
.modal-sz-label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; color: var(--text-m); margin-bottom: .8rem; }
.modal-sizes { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }

.size-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--border-l);
  border-radius: 6px;
  cursor: pointer;
  background: var(--bg-light);
  transition: all .2s;
}
.size-row:hover { border-color: var(--gold); background: rgba(197,163,104,0.03); }
.size-row input[type=checkbox] { accent-color: var(--bg-dark); width: 16px; height: 16px; cursor: pointer; }
.size-row .sz-label { flex: 1; font-size: .88rem; color: var(--text-light); font-weight: 600; }
.size-row .sz-price { font-size: .95rem; font-weight: 700; color: var(--bg-dark); }

/* ── 3D SLIDING CART DRAWER ────────────────────────── */
.cart-bg {
  position: fixed; inset: 0;
  background: rgba(7, 6, 5, 0.4);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
}
.cart-bg.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: -480px;
  width: 100%; max-width: 460px; height: 100vh;
  background: var(--panel-light);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  transition: right .45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
  border-left: 1px solid var(--border-l);
}
.cart-drawer.open { right: 0; }

.cart-header {
  background: var(--bg-dark);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-d);
}
.cart-header h2 { font-size: 1.8rem; font-weight: 300; color: var(--text-dark); }
.cart-header .cart-close {
  background: none; border: none;
  color: var(--gold-l); font-size: 1.6rem; cursor: pointer;
}
.cart-header .cart-close:hover { color: #fff; }

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem 2.2rem; background: var(--bg-light); }
.cart-empty { text-align: center; padding: 5rem 1rem; color: var(--text-d); }
.cart-empty p { font-family: Arial, Helvetica, sans-serif; font-size: 1.5rem; color: var(--text-light); }
.cart-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border-l); }
.ci-img {
  width: 64px; height: 64px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; overflow: hidden; border-radius: 6px;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-name { font-size: 1.25rem; font-weight: 400; color: var(--bg-dark); }
.ci-meta { font-size: .72rem; color: var(--text-m); margin: .15rem 0; font-weight: 600; }
.ci-price { font-size: .9rem; color: var(--gold-d); font-weight: 700; }
.ci-qty { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.ci-qty button {
  width: 24px; height: 24px; border: 1px solid var(--border-l);
  background: #fff; color: var(--text-light); border-radius: 4px;
  cursor: pointer; font-size: .88rem; display: inline-flex;
  align-items: center; justify-content: center;
  transition: all .2s;
}
.ci-qty button:hover { background: var(--bg-dark); color: #fff; }
.ci-qty span { font-size: .85rem; min-width: 20px; text-align: center; font-weight: 700; }
.ci-remove {
  background: none; border: none; color: var(--text-d);
  cursor: pointer; font-size: 1.05rem; padding: .2rem;
  transition: color .2s;
}
.ci-remove:hover { color: var(--danger); }

.cart-footer { padding: 2rem 2.2rem; border-top: 1px solid var(--border-l); background: #fff; }

/* ── CUSTOMER DETAILS OVERLAY ───────────────────────── */
.cust-field { margin-bottom: 1.25rem; }
.cust-field label { display: block; font-size: .7rem; font-weight: 700; color: var(--text-m); margin-bottom: .5rem; }
.cust-field input, .cust-field textarea {
  width: 100%; border: 1px solid var(--border-l); background: #fff;
  padding: .85rem 1.2rem; font-size: .92rem; outline: none; border-radius: 6px;
}
.cust-field input:focus, .cust-field textarea:focus { border-color: var(--bg-dark); }
.cust-field input.invalid, .cust-field textarea.invalid { border-color: var(--danger) !important; }
.cust-err { display: none; font-size: .72rem; color: var(--danger); margin-top: .4rem; font-weight: 600; }
.cust-err.show { display: block; }

.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.pay-opt { cursor: pointer; }
.pay-opt input { display: none; }
.pay-box {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.2rem .8rem; border: 1px solid var(--border-l);
  background: var(--bg-light); border-radius: 6px; transition: all .25s; text-align: center;
}
.pay-opt input:checked + .pay-box { border-color: var(--bg-dark); background: rgba(13,11,10,0.02); }
.pay-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.pay-title { font-size: .85rem; font-weight: 700; color: var(--bg-dark); }
.pay-sub { font-size: .68rem; color: var(--text-m); margin-top: .2rem; }

/* ── GST / PRICE MATRIX ────────────────────────────── */
.cart-gst-summary, .cust-gst-summary { border-top: 1px solid var(--border-l); padding: 1rem 0; margin-bottom: 1rem; }
.cust-gst-summary { border: 1px solid var(--border-l); background: var(--bg-light); padding: 1.2rem 1.5rem; margin: 1.2rem 0; border-radius: 6px; }
.gst-row { display: flex; justify-content: space-between; align-items: center; padding: .35rem 0; font-size: .88rem; }
.gst-sub { color: var(--text-m); }
.gst-tax span:last-child { color: var(--danger); font-weight: 700; }
.gst-total { border-top: 1px solid var(--border-l); margin-top: .5rem; padding-top: .75rem; font-size: 1.1rem; }
.gst-total span:first-child { font-family: 'Aclonica', sans-serif; font-size: 1.4rem; color: var(--bg-dark); }
.gst-total span:last-child { font-weight: 700; color: var(--bg-dark); font-size: 1.3rem; }

/* ── TOAST NOTIFICATIONS ────────────────────────────── */
.toast {
  position: fixed; bottom: 2.5rem; left: 50%;
  transform: translate3d(-50%, 80px, 0);
  background: var(--bg-dark); color: var(--text-dark);
  padding: .9rem 2.5rem; font-size: .78rem; font-weight: 700;
  z-index: 5000; opacity: 0;
  transition: transform .35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity .3s;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.toast.show { transform: translate3d(-50%, 0, 0); opacity: 1; }
.toast.ok { border-left: 4px solid var(--ok); }
.toast.err { border-left: 4px solid var(--danger); }

/* ── FLOATING WHATSAPP 3D BUTTON ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.15);
}
.whatsapp-float:hover {
  transform: translate3d(0, -6px, 0) scale(1.08);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseRing 2s infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: var(--text-d);
  padding: 5rem 4rem 3rem 4rem;
  border-top: 1px solid var(--border-d);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4.5rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 3.5rem;
  margin-bottom: 2rem;
}
.footer-brand h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .8rem;
  line-height: 1.6;
  max-width: 340px;
}
.footer-links h5 {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: .2em;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer-links a {
  color: var(--text-d);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--gold-l);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .75rem;
}
.footer-bottom span {
  color: var(--gold);
}

/* ── RESPONSIVE DESIGN ──────────────────────────────── */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .service-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .topbar { 
    padding: 0 1rem; 
    height: 70px;
  }
  .topbar nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; right: 0;
    width: 260px;
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d);
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  .topbar nav.open { display: flex; }
  
  .topbar .logo-img {
    height: 36px;
  }
  .topbar .brand-name {
    font-size: 0.9rem !important;
    letter-spacing: .06em;
  }
  .topbar .brand-sub {
    font-size: 0.55rem !important;
    letter-spacing: .15em;
  }

  .btn-champ {
    padding: .45rem .8rem !important;
    font-size: .68rem !important;
    gap: .3rem !important;
  }
  .btn-champ .cart-badge {
    width: 18px;
    height: 18px;
    font-size: .6rem;
  }

  .menu-toggle { display: block; }
  
  section {
    padding: 4rem 1.25rem !important;
  }
  
  .hero { 
    padding-top: 5rem; 
    min-height: 380px; 
  }
  
  .pillar-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .products-grid { gap: 2rem; }
  
  .product-table { font-size: .78rem; }
  .product-table th, .product-table td { padding: .8rem; }
  
  .modal-box { grid-template-columns: 1fr; }
  .modal-img { min-height: 250px; border-right: none; border-bottom: 1px solid var(--border-l); }
  .modal-body { padding: 2rem; }
  
  footer {
    padding: 4rem 1.25rem 2rem 1.25rem !important;
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem !important; 
  }
}

/* Category Filter Toggles */
.category-filters {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.filter-pill {
  background: var(--panel-light);
  border: 1px solid var(--border-l);
  color: var(--text-m);
  padding: .6rem 1.6rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--shadow-3d-light);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-pill:hover {
  border-color: var(--gold);
  color: var(--bg-dark);
  transform: translate3d(0, -2px, 0);
}
.filter-pill.active {
  background: linear-gradient(135deg, #252220 0%, #0A0908 100%) !important;
  color: var(--text-dark) !important;
  border-color: var(--bg-dark) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

