/* ===================================================
   GRIHASETU — PREMIUM DESIGN SYSTEM
   griha-setu.com
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --navy:       #0B1120;
  --navy-2:     #101828;
  --navy-3:     #161E30;
  --navy-4:     #1E2740;
  --saffron:    #4DB53B;
  --saffron-2:  #6CC95C;
  --teal:       #3ABFAD;
  --teal-2:     #2A9A8C;
  --gold:       #F0B429;
  --gold-2:     #FFCF5C;
  --white:      #F5F7FA;
  --off-white:  #EBF0F7;
  --gray-1:     #C5CDD8;
  --gray-2:     #8B96A8;
  --gray-3:     #5A6577;
  --card-bg:    rgba(22, 30, 48, 0.88);
  --glass:      rgba(255,255,255,0.035);
  --glass-border: rgba(255,255,255,0.07);
  
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
  
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill:100px;
  
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.2);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.25);
  --shadow-lg:  0 24px 56px rgba(0,0,0,0.35);
  --shadow-glow-teal:  0 0 32px rgba(58,191,173,0.2);
  --shadow-glow-saffron: 0 0 32px rgba(77,181,59,0.25);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --z-base: 1;
  --z-nav: 100;
  --z-modal: 200;
  --z-cursor: 9999;
  --z-toast: 9998;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: none;
  border: none;
  outline: none;
  background: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 212, 204, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.2,1,0.3,1), 
              height 0.4s cubic-bezier(0.2,1,0.3,1),
              border-color 0.3s,
              background 0.3s;
}

body.cursor-hover #cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--saffron);
}

body.cursor-hover #cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(255,107,53,0.4);
  background: rgba(255,107,53,0.06);
}

body.cursor-hotspot #cursor-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
}

body.cursor-hotspot #cursor-ring {
  width: 80px;
  height: 80px;
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.08);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy-2);
}
::-webkit-scrollbar-thumb {
  background: var(--teal-2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  line-height: 1.75;
  color: var(--gray-1);
  font-size: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #4DB53B, #2AADAA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-saffron { color: var(--saffron); }
.text-teal { color: var(--teal); }
.text-gray { color: var(--gray-2); }
.text-center { text-align: center; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #4DB53B, #3A9E2E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(77,181,59,0.3);
}

.btn-primary::after {
  background: rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(77,181,59,0.45);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,212,204,0.3);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,212,204,0.5);
}

.btn-outline {
  border: 1.5px solid var(--glass-border);
  color: var(--white);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(0,212,204,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--teal);
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--saffron);
  gap: 16px;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.btn-icon:hover {
  background: rgba(0,212,204,0.12);
  border-color: var(--teal);
  transform: scale(1.1);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo-text span {
  color: #3ABFAD;
}

.nav-logo-img {
  height: 77px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-1);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4DB53B, #3ABFAD);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.cart-btn:hover {
  background: rgba(0,212,204,0.12);
  border-color: var(--teal);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--saffron);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,12,24,0.97);
  backdrop-filter: blur(30px);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-1);
}

.mobile-nav a:hover { color: var(--teal); }

/* ─── HERO SECTION ─── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-room-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,17,32,0.45) 0%,
    rgba(11,17,32,0.08) 35%,
    rgba(11,17,32,0.65) 75%,
    rgba(11,17,32,1) 100%
  );
}

/* Room scene hotspots */
.room-scene {
  position: absolute;
  inset: 0;
}

.hotspot {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.hotspot-pulse {
  width: 20px;
  height: 20px;
  background: rgba(0,212,204,0.9);
  border-radius: 50%;
  position: relative;
  cursor: none;
  transition: var(--transition-fast);
}

.hotspot-pulse::before,
.hotspot-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0,212,204,0.5);
  animation: hotspot-ring 2s infinite ease-out;
}

.hotspot-pulse::after {
  inset: -12px;
  animation-delay: 0.5s;
  border-color: rgba(0,212,204,0.25);
}

.hotspot:hover .hotspot-pulse {
  background: var(--saffron);
  box-shadow: 0 0 20px rgba(255,107,53,0.5);
  transform: scale(1.3);
}

.hotspot:hover .hotspot-pulse::before,
.hotspot:hover .hotspot-pulse::after {
  border-color: rgba(255,107,53,0.4);
}

@keyframes hotspot-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}

/* Hotspot popup card */
.hotspot-popup {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.92);
  width: 260px;
  background: rgba(13, 19, 38, 0.95);
  border: 1px solid rgba(0,212,204,0.3);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.hotspot-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(0,212,204,0.3);
}

.hotspot:hover .hotspot-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.popup-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.popup-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 4px;
}

.popup-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.popup-price {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}

.popup-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-2);
  text-decoration: line-through;
  margin-left: 6px;
}

.popup-actions {
  display: flex;
  gap: 8px;
}

.popup-actions .btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  justify-content: center;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 60px 0 80px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,212,204,0.1);
  border: 1px solid rgba(0,212,204,0.25);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}

.scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
  margin: 0 auto;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scroll-ball 1.8s infinite;
}

@keyframes scroll-ball {
  0%   { top: 6px; opacity: 1; }
  70%  { top: 22px; opacity: 0.3; }
  100% { top: 6px; opacity: 0; }
}

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 0;
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(0,212,204,0.25);
  background: rgba(255,255,255,0.06);
}

/* ─── PRODUCT CARD ─── */
.product-card {
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.product-card:hover {
  border-color: rgba(0,212,204,0.3);
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.product-card-img {
  position: relative;
  height: 220px;
  background: var(--navy-4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: var(--teal);
  color: var(--navy);
}

.badge-hot {
  background: var(--saffron);
  color: var(--white);
}

.badge-sale {
  background: var(--gold);
  color: var(--navy);
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(8,12,24,0.7);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.product-card:hover .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-wishlist:hover {
  background: rgba(255,107,53,0.2);
  border-color: var(--saffron);
  color: var(--saffron);
}

.product-card-body {
  padding: 20px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--gray-2);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--gray-3);
  text-decoration: line-through;
  font-weight: 400;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.product-add-btn:hover {
  background: linear-gradient(135deg, var(--saffron), #ff4500);
  transform: scale(1.15) rotate(90deg);
}

/* ─── FEATURE CARDS ─── */
.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4DB53B, #3ABFAD);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,204,0.2);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,212,204,0.15), rgba(0,212,204,0.05));
  border: 1px solid rgba(0,212,204,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(0,212,204,0.25), rgba(0,212,204,0.1));
  transform: scale(1.1) rotate(-3deg);
}

/* ─── STATS SECTION ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  background: var(--navy-3);
  padding: 40px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4DB53B, #3ABFAD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--gray-2);
  font-weight: 500;
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.6% + 24px);
  right: calc(16.6% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #4DB53B, #3ABFAD);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-color: var(--teal);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-teal);
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  padding: 32px;
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,212,204,0.08);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,204,0.25);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-1);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4DB53B, #3ABFAD);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--gray-2);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-3) 0%, rgba(0,212,204,0.06) 50%, var(--navy-3) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0,212,204,0.06), transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.06), transparent 60%);
  pointer-events: none;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray-2);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: rgba(0,212,204,0.12);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-2);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-3);
}

.made-in-india {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-3);
  font-weight: 500;
}

/* ─── GRID SYSTEMS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── FLEX UTILITIES ─── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ─── SPACING ─── */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-2);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.filter-tab:hover {
  color: var(--white);
  border-color: rgba(0,212,204,0.3);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-color: transparent;
  color: var(--navy);
  font-weight: 700;
}

/* ─── SEARCH BOX ─── */
.search-box {
  position: relative;
  max-width: 360px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  background: var(--navy-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-box input::placeholder { color: var(--gray-3); }

.search-box input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,204,0.1);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-2);
  font-size: 1rem;
}

/* ─── PRODUCT DETAIL EXTRAS ─── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--glass-border);
}

.spec-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  color: var(--gray-2);
  font-weight: 500;
  width: 40%;
}

.spec-table td:last-child {
  color: var(--white);
}

.spec-table tr:hover td {
  background: var(--glass);
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--navy-2);
  border-left: 1px solid var(--glass-border);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-head {
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-head h3 {
  font-size: 1.2rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-1);
  transition: var(--transition-fast);
}

.cart-close:hover {
  background: rgba(255,107,53,0.15);
  border-color: var(--saffron);
  color: var(--saffron);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--gray-2);
  text-align: center;
}

.cart-empty-icon {
  font-size: 3.5rem;
  opacity: 0.3;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--navy-4);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray-1);
  transition: var(--transition-fast);
  border-radius: 50%;
}

.qty-btn:hover {
  color: var(--teal);
  background: rgba(0,212,204,0.1);
}

.qty-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  align-self: flex-start;
  color: var(--gray-3);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
  padding: 4px;
}

.cart-item-remove:hover { color: var(--saffron); }

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--glass-border);
  background: var(--navy-2);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--gray-2);
}

.cart-summary-row.total {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--glass-border);
}

.cart-summary-row.total span { color: var(--gold); }

/* ─── TOAST ─── */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  min-width: 280px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  animation: toast-in 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
}

.toast.removing {
  animation: toast-out 0.3s cubic-bezier(0.4,0,1,1) forwards;
}

@keyframes toast-in {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes toast-out {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

.toast-icon { font-size: 1.3rem; }
.toast-text { font-size: 0.88rem; color: var(--gray-1); flex: 1; }
.toast.success { border-left: 3px solid var(--teal); }
.toast.error   { border-left: 3px solid var(--saffron); }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: calc(var(--z-modal) - 10);
  transition: var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(0,212,204,0.05), transparent 60%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-3);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gray-3); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--gray-1); }

/* ─── INPUT FIELDS ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-1);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 18px;
  background: var(--navy-4);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,204,0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238892A4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── PARTICLE CANVAS ─── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* ─── QUICK VIEW MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--navy-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-2);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255,107,53,0.15);
  border-color: var(--saffron);
  color: var(--saffron);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
  
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .section { padding: 70px 0; }
  .cta-banner { padding: 48px 24px; }
  
  .hero-content { padding: 40px 0 60px; }
  
  .cart-drawer { width: 100vw; }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  
  #cursor-dot,
  #cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 16px; font-size: 0.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
