@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --primary-dark: #0D1117;
  --secondary-dark: #161B22;
  --surface-mid: #1C2128;
  --accent-gold: #C9A84C;
  --accent-gold-light: #E5C87A;
  --accent-gold-glow: rgba(201, 168, 76, 0.18);
  --accent-teal: #2A7C76;
  --accent-teal-light: #3A9B94;
  --bg-light: #F8F9FA;
  --bg-section: #F1F2F4;
  --card-bg: #FFFFFF;
  --surface-hover: #EEF0F4;
  --border-light: #E0E3E8;
  --border-mid: #C8CDD6;
  --border-dark: #2E3440;
  --text-main: #111827;
  --text-muted: #4B5563;
  --text-light: #9CA3AF;
  --text-white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 6px 18px rgba(201, 168, 76, 0.28);
  --radius-sm: 2px;
  --radius-xs: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-full: 2px;
  --radius-pill: 3px;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.32s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { width: 100%; max-width: 100vw; overflow-x: hidden; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

/* SPLASH */
#splash-screen { position: fixed; inset: 0; background: var(--primary-dark); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
#splash-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-logo-container { text-align: center; animation: splashRise 0.9s ease-out; }
.splash-logo-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.splash-logo-img { height: 140px; width: auto; max-width: 300px; object-fit: contain; filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px rgba(255,255,255,0.9)) drop-shadow(0 0 10px #FFE000) drop-shadow(0 4px 24px rgba(201, 168, 76, 0.45)); }
.splash-logo-text { font-family: var(--font-heading); font-size: 4rem; font-weight: 400; color: var(--text-white); letter-spacing: 4px; text-transform: uppercase; line-height: 1; }
.splash-logo-text span { color: var(--accent-gold); }
.splash-sub { color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-top: 0.6rem; }
.splash-progress-bar { width: 160px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 0; margin: 2rem auto 0; overflow: hidden; }
.splash-progress-fill { width: 0%; height: 100%; background: var(--accent-gold); animation: progressFill 1.8s ease-in-out forwards; }
@keyframes progressFill { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes splashRise { 0% { transform: translateY(12px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* HEADER */
.sticky-header { position: sticky; top: 0; z-index: 1000; background: #0D1117; border-bottom: 1px solid rgba(255,255,255,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.header-top { background: #080D11; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 600; padding: 0.45rem 0; letter-spacing: 0.5px; }
.header-top-content { display: flex; justify-content: space-between; align-items: center; }
.header-top-item { display: flex; align-items: center; gap: 0.6rem; }
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.7rem 0; }
.brand-logo { display: flex; align-items: center; gap: 0.85rem; font-family: var(--font-heading); font-size: 1.65rem; font-weight: 400; color: var(--text-white); line-height: 1; letter-spacing: 3px; text-transform: uppercase; }
.brand-logo .logo-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 2px rgba(255,255,255,0.9)) drop-shadow(0 0 6px #FFE000) drop-shadow(0 0 14px rgba(255, 224, 0, 0.5));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}
.brand-logo:hover .header-logo-img {
  filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #FFE000) drop-shadow(0 0 18px rgba(255, 224, 0, 0.85));
  transform: scale(1.04);
}
.brand-logo .logo-accent { color: var(--accent-gold); }
.search-container { position: relative; flex: 1; max-width: 460px; }
.search-input-wrapper { position: relative; display: flex; align-items: center; }
.search-input { width: 100%; padding: 0.6rem 1rem 0.6rem 2.6rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 0; color: #fff; font-size: 0.875rem; transition: var(--transition-fast); }
.search-input:focus { outline: none; background: rgba(255,255,255,0.1); border-color: var(--accent-gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.15); }
.search-input::placeholder { color: rgba(255,255,255,0.32); }
.search-icon { position: absolute; left: 0.9rem; width: 16px; height: 16px; color: rgba(255,255,255,0.4); pointer-events: none; }
.search-suggest-box { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--border-mid); border-radius: 0; box-shadow: var(--shadow-lg); max-height: 360px; overflow-y: auto; z-index: 1100; display: none; }
.search-suggest-box.active { display: block; }
.suggest-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-light); cursor: pointer; transition: var(--transition-fast); }
.suggest-item:hover { background: var(--bg-section); }
.suggest-img { width: 44px; height: 44px; object-fit: cover; border-radius: 0; background: var(--bg-light); }
.suggest-details { flex: 1; }
.suggest-title { font-size: 0.87rem; font-weight: 600; color: var(--text-main); }
.suggest-price { font-size: 0.82rem; color: var(--accent-teal); font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-link { color: rgba(255,255,255,0.58); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: color var(--transition-fast); display: flex; align-items: center; gap: 0.35rem; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 0; background: rgba(255,255,255,0.06); color: var(--text-white); transition: var(--transition-fast); }
.icon-btn:hover { background: rgba(201,168,76,0.15); color: var(--accent-gold); }
.badge-count { position: absolute; top: -4px; right: -4px; background: #DC2626; color: var(--text-white); font-size: 0.68rem; font-weight: 700; width: 17px; height: 17px; border-radius: 0; display: flex; align-items: center; justify-content: center; }
.mobile-menu-btn { display: none; color: var(--text-white); font-size: 1.4rem; }

/* HERO */
.hero-section { position: relative; padding: 2.5rem 0 1.5rem; }
.hero-carousel { position: relative; border-radius: 0; overflow: hidden; background: var(--primary-dark); box-shadow: var(--shadow-lg); min-height: 420px; border: 1px solid rgba(255,255,255,0.06); border-left: 4px solid var(--accent-gold); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); width: 100%; }
.carousel-slide { min-width: 100%; display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; padding: 4rem 4.5rem; gap: 2.5rem; }
.slide-content h1 { font-family: var(--font-heading); font-size: 2.9rem; font-weight: 400; color: var(--text-white); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.5px; }
.slide-content h1 span { color: var(--accent-gold); -webkit-background-clip: unset; -webkit-text-fill-color: unset; background: unset; }
.slide-content p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.hero-badge-tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.35); color: var(--accent-gold-light); padding: 0.35rem 0.85rem; border-radius: 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--accent-gold); color: #0D1117; padding: 0.85rem 1.9rem; border-radius: 0; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: var(--shadow-gold); transition: var(--transition-fast); }
.btn-primary:hover { background: var(--accent-gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.82); padding: 0.85rem 1.9rem; border-radius: 0; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition-fast); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.slide-img-container { display: flex; justify-content: center; align-items: center; position: relative; }
.slide-img { max-width: 100%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 20px 32px rgba(0,0,0,0.5)); transition: transform 0.4s ease; }
.slide-img:hover { transform: scale(1.04) translateY(-4px); }
.carousel-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(13,17,23,0.7); border: 1px solid rgba(201,168,76,0.3); color: var(--accent-gold); border-radius: 0; display: flex; align-items: center; justify-content: center; z-index: 10; transition: var(--transition-fast); }
.carousel-nav-btn:hover { background: var(--accent-gold); color: #0D1117; }
.carousel-nav-btn.prev { left: 1rem; }
.carousel-nav-btn.next { right: 1rem; }
.carousel-dots { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.dot { width: 20px; height: 3px; border-radius: 0; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition-fast); }
.dot.active { width: 40px; background: var(--accent-gold); }

/* SECTION HEADERS */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.8rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border-light); }
.section-title-wrap h2 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 400; color: var(--text-main); letter-spacing: -0.3px; }
.section-title-wrap p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.25rem; }
.view-all-link { color: var(--accent-teal); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; gap: 0.35rem; border-bottom: 1px solid var(--accent-teal); padding-bottom: 1px; transition: var(--transition-fast); }
.view-all-link:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }

/* BRAND CARDS */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 3.5rem; border: 1px solid var(--border-light); background: var(--border-light); margin-top: 1rem; }
.brand-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.75rem 1.25rem; text-align: center; transition: var(--transition-normal); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; }
.brand-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent-gold); transform: scaleX(0); transition: transform var(--transition-fast); }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card:hover { background: #F8F7F4; transform: none; }
.brand-icon-text { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 400; color: var(--text-main); letter-spacing: 1px; }
.brand-badge { font-size: 0.72rem; color: var(--text-muted); background: var(--bg-section); padding: 0.2rem 0.65rem; border-radius: 0; font-weight: 600; letter-spacing: 0.5px; border: 1px solid var(--border-light); }

/* PRICE CARDS */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 3.5rem; border: 1px solid var(--border-light); background: var(--border-light); margin-top: 1rem; }
.price-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.75rem 1.5rem; transition: var(--transition-normal); cursor: pointer; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent-gold); transform: scaleY(0); transform-origin: bottom; transition: transform var(--transition-normal); }
.price-card:hover { background: #FFFEF9; transform: none; }
.price-card:hover::before { transform: scaleY(1); }
.price-tag-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.4rem; letter-spacing: -0.2px; }
.price-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 1px; margin-bottom: 3.5rem; border: 1px solid var(--border-light); background: var(--border-light); }
.product-card { background: var(--card-bg); border: none; border-radius: 0; overflow: hidden; transition: var(--transition-normal); display: flex; flex-direction: column; position: relative; height: 100%; box-shadow: none; }
.product-card:hover { background: #FEFEFE; transform: none; box-shadow: inset 0 0 0 2px var(--accent-gold); }
.product-img-wrap { position: relative; background: var(--bg-section); padding: 1.5rem; display: flex; justify-content: center; align-items: center; aspect-ratio: 16/10; min-height: unset; overflow: hidden; border-bottom: 1px solid var(--border-light); }
.product-img { max-width: 100%; max-height: 160px; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.05) translateY(-3px); }
.badge-tag, .grade-badge, .product-img-wrap span { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.wishlist-toggle-btn { position: absolute; top: 0.65rem; right: 0.65rem; width: 32px; height: 32px; background: rgba(255,255,255,0.9); border-radius: 0; display: flex; align-items: center; justify-content: center; color: var(--text-light); box-shadow: var(--shadow-sm); transition: var(--transition-fast); border: 1px solid var(--border-light); }
.wishlist-toggle-btn:hover, .wishlist-toggle-btn.active { color: #DC2626; background: #fff0f0; border-color: #FECACA; }
.product-content { padding: 1.15rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-brand-row { display: flex !important; justify-content: space-between !important; align-items: center !important; font-size: 0.72rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.4rem; white-space: nowrap !important; gap: 0.5rem !important; }
.product-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.65rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: auto; min-height: 2.6rem; }
.product-specs-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.9rem; min-height: 24px; }
.spec-chip { font-size: 0.7rem; background: var(--bg-section); color: var(--text-muted); padding: 0.18rem 0.5rem; border-radius: 0; font-weight: 600; border: 1px solid var(--border-light); letter-spacing: 0.3px; }
.price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-top: auto; padding-top: 0.85rem; border-top: 1px solid var(--border-light); flex-wrap: wrap; }
.current-price { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; color: var(--text-main); }
.mrp-price { font-size: 0.83rem; color: var(--text-light); text-decoration: line-through; }
.discount-pill { font-size: 0.7rem; font-weight: 700; color: #065F46; background: #D1FAE5; padding: 0.15rem 0.45rem; border-radius: 0; letter-spacing: 0.3px; }
.card-actions-row { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; margin-top: 0.85rem; }
.btn-add-cart { background: var(--primary-dark); color: var(--text-white); padding: 0.6rem 1rem; border-radius: 0; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: var(--transition-fast); border: 1px solid transparent; }
.btn-add-cart:hover { background: var(--accent-gold); color: var(--primary-dark); }
.btn-quick-view { background: transparent; border: 1px solid var(--border-mid); color: var(--text-muted); padding: 0.6rem 0.75rem; border-radius: 0; font-size: 0.82rem; transition: var(--transition-fast); }
.btn-quick-view:hover { background: var(--bg-section); border-color: var(--border-mid); color: var(--text-main); }

/* FILTER SECTIONS */
.filter-sections-container { display: flex; flex-direction: column; gap: 0; margin-bottom: 3.5rem; border: 1px solid var(--border-light); }
.filter-group-card { background: var(--card-bg); border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; padding: 1.5rem 1.75rem; }
.filter-group-card:last-child { border-bottom: none; }
.filter-group-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text-main); margin-bottom: 1rem; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.chips-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.filter-chip-btn { padding: 0.45rem 1rem; border: 1px solid var(--border-mid); background: transparent; border-radius: 0; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.3px; transition: var(--transition-fast); }
.filter-chip-btn:hover, .filter-chip-btn.active { background: var(--primary-dark); color: var(--text-white); border-color: var(--primary-dark); }

/* OS TOGGLE */
.os-toggle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.os-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.8rem; display: flex; align-items: center; gap: 1.25rem; cursor: pointer; transition: var(--transition-normal); }
.os-card.active, .os-card:hover { background: #F8F7F4; outline: 2px solid var(--accent-gold); outline-offset: -2px; }
.os-icon { font-size: 2.2rem; }
.os-info h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; }
.os-info p { font-size: 0.85rem; color: var(--text-muted); }

/* COMPARISON SECTION */
.comparison-trust-section { background: var(--primary-dark); border-radius: 0; padding: 4rem 3rem; color: var(--text-white); margin-bottom: 4rem; border-left: 4px solid var(--accent-gold); position: relative; }
.comparison-trust-section::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 100%); pointer-events: none; }
.trust-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; position: relative; z-index: 1; }
.trust-head h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 400; margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.trust-head h2 span { color: var(--accent-gold); }
.trust-head p { color: rgba(255,255,255,0.5); font-size: 1rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); position: relative; z-index: 1; }
.comp-card { background: rgba(255,255,255,0.03); border: none; border-radius: 0; padding: 2rem 1.75rem; }
.comp-card.highlight { background: rgba(201,168,76,0.06); }
.comp-card:hover { background: rgba(201,168,76,0.08); }
.comp-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; letter-spacing: -0.2px; }
.comp-title.used { color: var(--accent-gold-light); }
.comp-title.refurb { color: #FCA5A5; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.88rem; }
.comp-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(255,255,255,0.65); }

/* ABOUT */
.about-section { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 3rem 2.5rem; margin-bottom: 4rem; border-top: 3px solid var(--accent-gold); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3.5rem; align-items: center; }
.about-content h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--text-main); margin-bottom: 1.2rem; letter-spacing: -0.3px; }
.about-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.75; }
.office-info-box { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 0; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; border-left: 3px solid var(--accent-teal); }
.office-item { display: flex; gap: 1rem; font-size: 0.88rem; }
.office-item strong { color: var(--text-main); display: block; margin-bottom: 0.2rem; font-weight: 700; }

/* PLP */
.plp-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; padding: 2rem 0 4rem; }
.filter-sidebar { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 1.5rem; height: fit-content; border-top: 3px solid var(--primary-dark); }
.sidebar-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; color: var(--text-main); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.btn-clear-filter { font-size: 0.72rem; color: var(--accent-teal); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.filter-block { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); }
.filter-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-block h4 { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.75rem; }
.filter-options-list { display: flex; flex-direction: column; gap: 0.45rem; list-style: none; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; transition: color var(--transition-fast); }
.checkbox-label:hover { color: var(--text-main); }
.checkbox-label input { accent-color: var(--primary-dark); width: 15px; height: 15px; }
.custom-price-box { margin-top: 0.85rem; padding-top: 0.75rem; border-top: 1px solid var(--border-light); }
.custom-price-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.custom-price-inputs { display: flex; align-items: center; gap: 0.35rem; }
.custom-price-inputs input { width: 100%; padding: 0.35rem 0.5rem; font-size: 0.82rem; border: 1px solid var(--border-mid); border-radius: 0; background: var(--bg-section); color: var(--text-main); outline: none; }
.custom-price-inputs input:focus { border-color: var(--primary-dark); }
.btn-apply-price { padding: 0.35rem 0.75rem; background: var(--primary-dark); color: var(--text-white); border-radius: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; transition: var(--transition-fast); }
.btn-apply-price:hover { background: var(--accent-teal); }
.active-filters-chips-container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.active-filter-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; background: var(--primary-dark); color: rgba(255,255,255,0.85); border: none; padding: 0.3rem 0.7rem; border-radius: 0; letter-spacing: 0.3px; }
.active-filter-tag button { font-size: 0.85rem; line-height: 1; color: rgba(255,255,255,0.5); font-weight: 700; }
.active-filter-tag button:hover { color: var(--accent-gold); }
.plp-main-content { display: flex; flex-direction: column; }
.plp-header-bar { display: flex; justify-content: space-between; align-items: center; background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 0.85rem 1.25rem; margin-bottom: 1.5rem; border-top: 2px solid var(--primary-dark); }
.plp-results-count { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.3px; }
.sort-select-wrapper { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.3px; }
.sort-select { padding: 0.4rem 0.85rem; border: 1px solid var(--border-mid); border-radius: 0; background: var(--bg-section); font-size: 0.82rem; outline: none; color: var(--text-main); }

/* PDP */
.pdp-container { padding: 1.5rem 1rem 4rem; max-width: 1040px !important; margin: 0 auto !important; }
.breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.8rem; letter-spacing: 0.3px; }
.breadcrumb-nav a:hover { color: var(--accent-teal); }
.pdp-main-grid { display: flex !important; flex-direction: column !important; gap: 1.5rem !important; margin-bottom: 1.5rem !important; width: 100% !important; }
.pdp-gallery-wrap { display: flex !important; flex-direction: column !important; gap: 1rem !important; width: 100% !important; }
.pdp-main-img-box { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 2.5rem; display: flex; justify-content: center; align-items: center; min-height: 380px; position: relative; overflow: hidden; }
.pdp-main-img { max-width: 100%; max-height: 320px; object-fit: contain; transition: transform 0.3s ease; }
.pdp-internal-thumbs-row { display: flex; gap: 0; overflow-x: auto; padding-bottom: 0.35rem; scrollbar-width: thin; border: 1px solid var(--border-light); }
.pdp-internal-thumbs-row .thumb-btn { flex: 0 0 78px; width: 78px; height: auto; display: flex; flex-direction: column; align-items: center; background: #ffffff; border: none; border-right: 1px solid var(--border-light); border-radius: 0; padding: 0.4rem; cursor: pointer; transition: var(--transition-fast); }
.pdp-internal-thumbs-row .thumb-btn.active, .pdp-internal-thumbs-row .thumb-btn:hover { border-bottom: 2px solid var(--accent-gold); background: #FAF9F5; }
.pdp-internal-thumbs-row .thumb-btn img { width: 100%; height: 44px; object-fit: contain; margin-bottom: 0.2rem; }
.pdp-details-col { display: flex !important; flex-direction: column !important; background: var(--card-bg) !important; border: 1px solid var(--border-light) !important; border-radius: 0 !important; padding: 2rem !important; width: 100% !important; border-top: 3px solid var(--primary-dark) !important; }
.pdp-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--text-main); line-height: 1.25; margin-bottom: 0.75rem; letter-spacing: -0.3px; }
.pdp-meta-row { display: flex !important; align-items: center !important; flex-wrap: nowrap !important; gap: 0.6rem !important; margin-bottom: 1rem !important; white-space: nowrap !important; overflow-x: auto !important; padding-bottom: 0.25rem; }
.rating-stars-badge { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 0.35rem !important; white-space: nowrap !important; background: var(--primary-dark) !important; color: var(--accent-gold) !important; border: none !important; padding: 0.25rem 0.65rem !important; border-radius: 0 !important; font-weight: 700 !important; font-size: 0.82rem !important; line-height: 1 !important; flex-shrink: 0 !important; }
.pdp-price-box { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 0; padding: 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid var(--accent-gold); }
.pdp-price-row { display: flex; align-items: baseline; gap: 1rem; }
.pdp-current-price { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 400; color: var(--text-main); }
.pdp-mrp-price { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.pdp-discount-tag { font-size: 0.82rem; font-weight: 700; color: #065F46; background: #D1FAE5; padding: 0.25rem 0.6rem; border-radius: 0; }
.pdp-actions-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1px; margin-bottom: 2rem; background: var(--border-light); border: 1px solid var(--border-light); }
.btn-buy-now { background: var(--accent-gold); color: var(--primary-dark); padding: 1rem; border-radius: 0; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; text-align: center; transition: var(--transition-fast); }
.btn-buy-now:hover { background: var(--accent-gold-light); }
.btn-pdp-cart { background: var(--primary-dark); color: var(--text-white); padding: 1rem; border-radius: 0; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; text-align: center; transition: var(--transition-fast); }
.btn-pdp-cart:hover { background: #1C2128; }
.pincode-card { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 1.25rem; margin-bottom: 1.8rem; }
.pincode-card h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.pincode-input-row { display: flex; gap: 0; border: 1px solid var(--border-mid); }
.pincode-input { flex: 1; padding: 0.55rem 0.85rem; border: none; border-radius: 0; font-size: 0.88rem; outline: none; background: var(--bg-section); }
.btn-check-pin { background: var(--primary-dark); color: var(--text-white); padding: 0.55rem 1rem; border-radius: 0; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: var(--transition-fast); }
.btn-check-pin:hover { background: var(--accent-teal); }
.delivery-result-text { margin-top: 0.65rem; font-size: 0.82rem; color: var(--accent-teal); font-weight: 700; }
.unit-condition-card { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 0; padding: 1.5rem; margin-bottom: 2rem; border-left: 4px solid #16A34A; }
.unit-condition-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.unit-condition-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; color: #166534; display: flex; align-items: center; gap: 0.5rem; }
.history-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 1rem; background: #BBF7D0; border: 1px solid #BBF7D0; }
.history-stat-box { background: rgba(255,255,255,0.8); padding: 0.75rem; border-radius: 0; text-align: center; }
.history-stat-val { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; color: #15803D; }
.history-stat-lbl { font-size: 0.72rem; font-weight: 700; color: #166534; letter-spacing: 0.5px; text-transform: uppercase; }

/* ACCORDION */
.pdp-accordion { display: flex; flex-direction: column; gap: 0; margin-bottom: 3.5rem; border: 1px solid var(--border-light); }
.accordion-item { background: var(--card-bg); border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; overflow: hidden; }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { padding: 1.25rem 1.5rem; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 400; color: var(--text-main); display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--bg-section); letter-spacing: 0.2px; transition: background var(--transition-fast); }
.accordion-header:hover { background: #ECEEF2; }
.accordion-content { padding: 1.25rem 1.5rem; display: none; border-top: 1px solid var(--border-light); }
.accordion-item.open .accordion-content { display: block; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.specs-table td { padding: 0.7rem 0.85rem; border-bottom: 1px solid var(--border-light); }
.specs-table td:first-child { font-weight: 700; color: var(--text-muted); width: 35%; font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; }
.box-items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.box-item-card { display: flex; align-items: center; gap: 0.75rem; background: var(--bg-section); padding: 0.85rem 1rem; border-radius: 0; font-size: 0.88rem; font-weight: 600; }

/* REVIEWS */
.reviews-section { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; padding: 2.5rem; margin-bottom: 4rem; border-top: 3px solid var(--primary-dark); }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); }
.reviews-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-light); }
.review-card { background: var(--bg-section); border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; padding: 1.25rem 1.5rem; }
.review-card:last-child { border-bottom: none; }
.review-user-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.review-user-name { font-weight: 700; font-size: 0.92rem; letter-spacing: 0.3px; }
.review-comment { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* DRAWER */
.drawer-overlay, .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition-normal); }
.drawer-overlay.active, .modal-overlay.active { opacity: 1; visibility: visible; }
.slide-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 420px; background: var(--card-bg); z-index: 2001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; border-left: 3px solid var(--primary-dark); }
.slide-drawer.active { transform: translateX(0); }
.drawer-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; background: var(--bg-section); }
.drawer-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.drawer-footer { padding: 1.5rem; border-top: 1px solid var(--border-light); background: var(--bg-section); }
.cart-item-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.cart-item-img { width: 72px; height: 72px; object-fit: contain; background: var(--bg-section); border-radius: 0; border: 1px solid var(--border-light); }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.cart-item-price { font-size: 0.92rem; font-weight: 800; color: var(--text-main); }
.qty-control-box { display: inline-flex; align-items: center; border: 1px solid var(--border-mid); border-radius: 0; margin-top: 0.5rem; }
.qty-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-weight: 700; background: var(--bg-section); transition: background var(--transition-fast); }
.qty-btn:hover { background: var(--primary-dark); color: #fff; }
.qty-num { padding: 0 0.75rem; font-size: 0.85rem; font-weight: 700; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 58px; height: 58px; background: #25D366; color: white; border-radius: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.35); z-index: 900; transition: var(--transition-fast); }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37,211,102,0.42); color: #ffffff; }

/* FOOTER */
.footer-section { background: var(--primary-dark); color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; border-top: 3px solid var(--accent-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 2px rgba(255,255,255,0.9)) drop-shadow(0 0 5px #FFE000) drop-shadow(0 0 12px rgba(255, 224, 0, 0.45));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}
.brand-logo:hover .footer-logo-img {
  filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px #FFE000) drop-shadow(0 0 16px rgba(255, 224, 0, 0.75));
  transform: scale(1.04);
}
.footer-col h4 { color: var(--text-white); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; letter-spacing: 0.3px; }
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--card-bg); border-top: 2px solid var(--primary-dark); padding: 0.75rem 1.25rem; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); }
.view-container { display: none; }
.view-container.active { display: block; }

/* TRUST/PREFOOTER */
.prefooter-section { padding: 3rem 0; margin-bottom: 2rem; }
.prefooter-head { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.prefooter-head h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.5rem; letter-spacing: -0.3px; }
.prefooter-head p { color: var(--text-muted); font-size: 0.92rem; }
.home-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; margin-bottom: 1.5rem; border: 1px solid var(--border-light); background: var(--border-light); }
.home-review-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.5rem; transition: background var(--transition-fast); border-bottom: 3px solid transparent; }
.home-review-card:hover { background: #FEFDF9; border-bottom-color: var(--accent-gold); transform: none; }
.home-review-user { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.review-avatar-circle { width: 40px; height: 40px; border-radius: 0; background: var(--primary-dark); color: var(--accent-gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; }
.trust-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); }
.trust-feature-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.75rem 1.5rem; text-align: left; transition: background var(--transition-normal); position: relative; overflow: hidden; }
.trust-feature-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent-gold); transform: scaleY(0); transition: transform var(--transition-normal); }
.trust-feature-card:hover::before { transform: scaleY(1); }
.trust-feature-card:hover { background: #FEFDF9; }
.trust-icon-wrap, .trust-icon-box { width: 44px; height: 44px; border-radius: 0; background: var(--bg-section); color: var(--text-main); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; border: 1px solid var(--border-light); }
.trust-card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.35rem; letter-spacing: 0.2px; }
.trust-card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.trust-feature-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.35rem; letter-spacing: 0.2px; }
.trust-feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.delivery-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); border: 1px solid var(--border-light); }
.delivery-card-item { background: var(--card-bg); border: none; border-radius: 0; padding: 1.5rem; transition: background var(--transition-fast); }
.delivery-card-item:hover { background: var(--bg-section); }

/* FINAL CTA */
.final-cta-section { background: var(--primary-dark); border-radius: 0; padding: 4rem 3rem; color: var(--text-white); margin-bottom: 3.5rem; position: relative; overflow: hidden; border-top: 4px solid var(--accent-gold); border-bottom: 1px solid rgba(255,255,255,0.05); }
.final-cta-section::before { content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.05) 100%); pointer-events: none; }
.final-cta-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.final-cta-left h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 400; line-height: 1.25; margin-bottom: 0.85rem; letter-spacing: -0.3px; }
.final-cta-left p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.7; }
.final-cta-btn-group { display: flex; gap: 0; flex-wrap: wrap; }
.btn-cta-primary { background: var(--accent-gold); color: var(--primary-dark); font-weight: 700; padding: 0.95rem 2rem; border-radius: 0; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition-fast); }
.btn-cta-primary:hover { background: var(--accent-gold-light); color: var(--primary-dark); }
.btn-cta-secondary { background: transparent; color: rgba(255,255,255,0.75); font-weight: 600; padding: 0.95rem 1.75rem; border-radius: 0; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); border-left: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition-fast); }
.btn-cta-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.final-cta-right { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 0; padding: 2rem; border-left: 3px solid var(--accent-gold); }
.final-cta-right h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--text-white); letter-spacing: 0.2px; }
.final-cta-right p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; line-height: 1.6; }
.support-actions-row { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.15); }
.btn-wa-support { flex: 1; background: #25D366; color: #ffffff; font-weight: 700; padding: 0.8rem; border-radius: 0; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: var(--transition-fast); }
.btn-wa-support:hover { background: #1eb956; color: #ffffff; }
.btn-call-support { flex: 1; background: rgba(255,255,255,0.08); color: #ffffff; font-weight: 700; padding: 0.8rem; border-radius: 0; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.4rem; border-left: 1px solid rgba(255,255,255,0.15); transition: var(--transition-fast); }
.btn-call-support:hover { background: rgba(255,255,255,0.15); color: #ffffff; }

/* PURPOSE CARDS */
.purpose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 3.5rem; background: var(--border-light); border: 1px solid var(--border-light); margin-top: 1rem; }
.purpose-card { background: var(--card-bg); border: none; border-radius: 0; padding: 1.5rem; transition: background var(--transition-normal); cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.purpose-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent-teal); transform: scaleX(0); transition: transform var(--transition-fast); }
.purpose-card:hover::after { transform: scaleX(1); }
.purpose-card:hover { background: #F8F9FA; transform: none; }
.purpose-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; }
.purpose-icon-box { width: 40px; height: 40px; border-radius: 0; background: var(--bg-section); color: var(--text-main); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-light); }
.purpose-badge-pill { font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 0; background: var(--bg-section); color: var(--text-muted); border: 1px solid var(--border-light); letter-spacing: 0.5px; text-transform: uppercase; }
.purpose-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; color: var(--text-main); margin-bottom: 0.4rem; letter-spacing: -0.2px; }
.purpose-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.85rem; }
.purpose-usefor-row { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.85rem; }
.purpose-use-chip { font-size: 0.68rem; font-weight: 600; background: var(--bg-section); color: var(--text-muted); padding: 0.15rem 0.5rem; border-radius: 0; border: 1px solid var(--border-light); letter-spacing: 0.3px; }
.purpose-models-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; margin-bottom: 0.75rem; border-top: 1px dashed var(--border-light); padding-top: 0.5rem; }
.purpose-action-link { font-size: 0.78rem; font-weight: 700; color: var(--accent-teal); display: inline-flex; align-items: center; gap: 0.3rem; letter-spacing: 0.3px; }

/* PDP PHOTO VIEWER */
.pdp-photo-viewer-box { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 0; overflow: hidden; display: flex; flex-direction: column; }
.pdp-viewer-top-bar { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.1rem; background: var(--bg-section); border-bottom: 1px solid var(--border-light); }
.pdp-view-pill { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); background: var(--card-bg); padding: 0.25rem 0.75rem; border-radius: 0; border: 1px solid var(--border-light); letter-spacing: 0.5px; text-transform: uppercase; }
.condition-tag-pill { font-size: 0.72rem; font-weight: 700; color: #15803D; background: #D1FAE5; padding: 0.25rem 0.75rem; border-radius: 0; letter-spacing: 0.5px; text-transform: uppercase; }
.pdp-main-img-stage { position: relative; width: 100%; height: 380px; background: #ffffff; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.pdp-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 0; background: var(--bg-section); border: 1px solid var(--border-light); color: var(--text-main); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-fast); z-index: 10; }
.pdp-nav-btn:hover { background: var(--primary-dark); color: var(--accent-gold); border-color: var(--primary-dark); }
.pdp-nav-btn.prev { left: 0.85rem; }
.pdp-nav-btn.next { right: 0.85rem; }
.pdp-viewer-bottom-bar { background: var(--bg-section); border-top: 1px solid var(--border-light); padding: 0.85rem 1rem; }
.pdp-views-strip-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.6rem; }
.pdp-internal-thumbs-row::-webkit-scrollbar { height: 4px; }
.pdp-internal-thumbs-row::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 0; }
.thumb-label { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; letter-spacing: 0.3px; text-transform: uppercase; }
.availability-badge { font-size: 0.72rem; font-weight: 700; color: #15803D; background: #D1FAE5; padding: 0.2rem 0.55rem; border-radius: 0; letter-spacing: 0.3px; }
.delivery-badge-chip, .express-badge-chip { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); background: var(--bg-section); padding: 0.2rem 0.55rem; border-radius: 0; border: 1px solid var(--border-light); letter-spacing: 0.3px; }
.gst-invoice-badge { font-size: 0.72rem; font-weight: 700; color: #047857; background: #ECFDF5; padding: 0.25rem 0.65rem; border-radius: 0; border: 1px solid #A7F3D0; letter-spacing: 0.3px; }
.quick-highlights-box { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 0; padding: 1rem 1.25rem; margin-bottom: 1.25rem; border-left: 3px solid var(--primary-dark); }
.quick-highlights-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 1rem; color: var(--text-main); font-size: 0.85rem; font-weight: 500; }
.warranty-card-box { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 0; padding: 1.1rem; margin-bottom: 1.25rem; border-top: 2px solid var(--primary-dark); }
.warranty-option-item { background: white; border: 1px solid var(--border-mid); border-radius: 0; padding: 0.75rem 0.85rem; transition: var(--transition-fast); }
.warranty-option-item.active { border-color: var(--primary-dark); border-left: 3px solid var(--accent-gold); }
.pdp-trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1.25rem; background: var(--border-light); border: 1px solid var(--border-light); }
.pdp-trust-badge-item { background: var(--bg-section); border: none; padding: 0.55rem 0.6rem; border-radius: 0; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-align: center; letter-spacing: 0.3px; }
.pdp-single-column-layout { display: flex !important; flex-direction: column !important; gap: 0 !important; width: 100% !important; max-width: 1040px !important; margin: 0 auto 2.5rem !important; border: 1px solid var(--border-light); }
.pdp-section-card { background: var(--card-bg); border: none; border-radius: 0; border-bottom: 1px solid var(--border-light); padding: 1.75rem 2rem; width: 100%; margin-bottom: 0; }
.pdp-section-card:last-child { border-bottom: none; }
.pdp-card-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.pdp-card-toggle-icon { width: 30px; height: 30px; border-radius: 0; background: var(--bg-section); border: 1px solid var(--border-light); color: var(--text-main); display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.2s ease; flex-shrink: 0; }
.pdp-collapsible-card.open .pdp-card-toggle-icon { transform: rotate(180deg); background: var(--primary-dark); color: var(--accent-gold); }
.pdp-card-content { display: none; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.pdp-collapsible-card.open .pdp-card-content { display: block; }
.section-title-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); background: var(--bg-section); padding: 0.2rem 0.65rem; border-radius: 0; margin-bottom: 0.4rem; border: 1px solid var(--border-light); letter-spacing: 0.5px; text-transform: uppercase; }
.quality-report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 1.25rem; border: 1px solid var(--border-light); background: var(--border-light); }
.quality-stat-box { background: var(--bg-section); border: none; padding: 1rem; border-radius: 0; text-align: center; }
.quality-stat-lbl { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.25rem; letter-spacing: 0.5px; text-transform: uppercase; }
.quality-stat-val { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 400; }
.quality-checks-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.check-chip { background: #F0FDF4; border: none; color: #166534; font-size: 0.78rem; padding: 0.55rem 0.75rem; border-radius: 0; font-weight: 700; letter-spacing: 0.3px; }
.detailed-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.spec-detail-item { display: flex; flex-direction: column; padding: 0.75rem 1rem; background: var(--bg-section); border-radius: 0; font-size: 0.88rem; }
.spec-detail-item strong { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.15rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.delivery-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.delivery-feat-item { display: flex; align-items: flex-start; gap: 0.85rem; background: var(--bg-section); padding: 1.1rem; border-radius: 0; border: none; }
.delivery-feat-icon { font-size: 1.5rem; }
.delivery-feat-item strong { font-size: 0.88rem; color: var(--text-main); display: block; margin-bottom: 0.2rem; font-weight: 700; }
.delivery-feat-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin: 0; }
.unboxing-policy-box { background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: 0; padding: 1.5rem 1.75rem; margin-bottom: 2rem; border-left: 4px solid #DC2626; }
.why-buy-checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border-light); background: var(--border-light); }
.why-buy-item { background: #F0FDF4; border: none; color: #15803D; font-weight: 700; font-size: 0.82rem; padding: 0.7rem 0.85rem; border-radius: 0; text-align: center; letter-spacing: 0.3px; }
.pdp-faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-light); }
.faq-item { border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-question { padding: 1rem 1.25rem; font-weight: 700; font-size: 0.9rem; color: var(--text-main); background: var(--bg-section); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background var(--transition-fast); }
.faq-question:hover { background: #EEF0F4; }
.faq-answer { padding: 1rem 1.25rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; display: none; border-top: 1px solid var(--border-light); background: white; }
.faq-item.open .faq-answer { display: block; }
.btn-contact-pdp { background: transparent; border: 2px solid var(--primary-dark); color: var(--primary-dark); padding: 0.85rem 1.25rem; border-radius: 0; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; text-transform: uppercase; text-align: center; text-decoration: none; transition: var(--transition-fast); }
.btn-contact-pdp:hover { background: var(--primary-dark); color: var(--accent-gold); }
.terms-container { padding: 0.25rem 0.1rem; }
.terms-section { background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 0; padding: 1.1rem 1.25rem; border-bottom: none; transition: background var(--transition-fast); }
.terms-section:last-child { border-bottom: 1px solid var(--border-light); }
.terms-section:hover { background: #ECEEF2; }
#policy-modal { max-width: 720px !important; width: 92% !important; max-height: 88vh !important; overflow-y: auto !important; scrollbar-width: thin; border-radius: 0 !important; }
#policy-modal::-webkit-scrollbar { width: 4px; }
#policy-modal::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 0; }
#profile-dropdown-menu a { transition: background-color 0.15s ease, color 0.15s ease; }
#profile-dropdown-menu a:hover { background-color: var(--bg-section) !important; color: var(--text-main) !important; }

/* ── COLLAPSIBLE SECTION ── */
.collapsible-section-wrap {
  border: 1px solid var(--border-light);
  margin-bottom: 0;
  background: var(--card-bg);
  width: 100%;
  box-sizing: border-box;
}
.cs-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--card-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  border-bottom: 1px solid transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  box-sizing: border-box;
}
.cs-header:hover {
  background: #F4F5F7;
}
.cs-header.open {
  background: var(--primary-dark);
  border-bottom-color: rgba(201, 168, 76, 0.3);
}
.cs-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}
.cs-icon {
  font-size: 1.15rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.cs-header.open .cs-icon {
  color: var(--accent-gold);
}
.cs-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.2px;
  white-space: nowrap;
  width: 250px;
  min-width: 250px;
  flex-shrink: 0;
}
.cs-header.open .cs-title {
  color: var(--text-white);
}
.cs-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.cs-header.open .cs-sub {
  color: rgba(255, 255, 255, 0.5);
}
.cs-chevron {
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
  line-height: 1;
}
.cs-header.open .cs-chevron {
  transform: rotate(180deg);
  color: var(--accent-gold);
}
.cs-body {
  padding: 0;
}
.cs-body > .trust-cards-grid,
.cs-body > .delivery-cards-grid,
.cs-body > .comparison-trust-section,
.cs-body > .about-section {
  margin-bottom: 0;
}

/* ── RESPONSIVE & MOBILE DESIGN ── */
@media (max-width: 992px) {
  .carousel-slide { grid-template-columns: 1fr; padding: 2.25rem 1.75rem; text-align: center; gap: 1.5rem; }
  .slide-content h1 { font-size: 2rem; }
  .hero-badges { justify-content: center; }
  .plp-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .pdp-main-grid { grid-template-columns: 1fr; }
  .os-toggle-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; gap: 1px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-cards-grid, .delivery-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-title { width: 210px; min-width: 210px; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 1rem; }
  .nav-menu, .header-top { display: none; }
  .mobile-menu-btn { display: block; }
  .search-container { max-width: 100%; }
  .search-input { padding: 0.5rem 0.85rem 0.5rem 2.25rem; font-size: 0.82rem; }
  .brand-logo { font-size: 1.35rem; letter-spacing: 2px; }
  .header-logo-img { height: 42px; }

  /* Splash */
  .splash-logo-img { height: 90px; }
  .splash-logo-text { font-size: 2.5rem; letter-spacing: 2px; }
  .splash-sub { font-size: 0.72rem; letter-spacing: 2px; }

  /* Hero */
  .hero-section { padding: 1rem 0; }
  .hero-carousel { min-height: unset; }
  .carousel-slide { padding: 1.75rem 1rem; gap: 1.25rem; }
  .slide-content h1 { font-size: 1.55rem; margin-bottom: 0.6rem; }
  .slide-content p { font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.5; }
  .slide-img { max-height: 170px; }
  .btn-primary, .btn-secondary { padding: 0.65rem 1.25rem; font-size: 0.78rem; }
  .hero-badge-tag { font-size: 0.7rem; padding: 0.25rem 0.6rem; }

  /* Section headers */
  .section-header { margin-bottom: 1.2rem; padding-bottom: 0.6rem; }
  .section-title-wrap h2 { font-size: 1.45rem; }
  .section-title-wrap p { font-size: 0.8rem; }

  /* Collapsibles */
  .cs-header { padding: 0.85rem 1rem; gap: 0.6rem; }
  .cs-header-left { gap: 0.65rem; }
  .cs-title { font-size: 0.94rem; width: auto; min-width: unset; white-space: normal; line-height: 1.2; }
  .cs-sub { display: none; }
  .cs-icon { font-size: 1rem; width: 20px; }
  .cs-chevron { font-size: 0.95rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1px; }
  .product-content { padding: 0.85rem; }
  .product-img-wrap { padding: 1rem; }
  .product-img { max-height: 120px; }
  .product-title { font-size: 0.88rem; min-height: 2.4rem; line-height: 1.3; }
  .current-price { font-size: 1.15rem; }
  .spec-chip { font-size: 0.65rem; padding: 0.12rem 0.4rem; }
  .btn-add-cart { padding: 0.5rem 0.65rem; font-size: 0.72rem; }
  .btn-quick-view { padding: 0.5rem; font-size: 0.75rem; }

  /* Cards */
  .trust-feature-card { padding: 1.2rem 1rem; }
  .delivery-card-item { padding: 1.2rem 1rem; }
  .about-section { padding: 1.5rem 1rem; }
  .office-info-box { padding: 1rem; }
  .final-cta-section { padding: 2rem 1.25rem; }
  .final-cta-left h2 { font-size: 1.5rem; }
  .final-cta-left p { font-size: 0.88rem; margin-bottom: 1.25rem; }
  .final-cta-right { padding: 1.25rem; }
  .comparison-trust-section { padding: 2rem 1.25rem; }
  .trust-head h2 { font-size: 1.6rem; }
  .trust-head p { font-size: 0.88rem; }
  .comp-card { padding: 1.35rem 1.1rem; }

  /* Footer & Sticky CTA */
  .footer-section { padding: 2.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .mobile-sticky-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 4.5rem; right: 1rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* Filter groups */
  .filter-group-card { padding: 1rem 1.1rem; }
  .filter-chip-btn { padding: 0.35rem 0.75rem; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }
  .brand-logo { font-size: 1.2rem; }
  .header-logo-img { height: 36px; }
  .slide-content h1 { font-size: 1.35rem; }
  .slide-img { max-height: 140px; }
  .section-title-wrap h2 { font-size: 1.3rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .trust-cards-grid, .delivery-cards-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .product-content { padding: 0.7rem; }
  .product-img { max-height: 100px; }
  .current-price { font-size: 1.05rem; }
  .pdp-container { padding: 1rem 0.5rem 3rem; }
  .pdp-title { font-size: 1.45rem; }
  .pdp-current-price { font-size: 1.7rem; }
  .pdp-actions-row { grid-template-columns: 1fr; }
  #policy-modal { padding: 1rem !important; width: 96% !important; }
}

@media (min-width: 1200px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1199px) and (min-width: 860px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 859px) and (min-width: 580px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
.nav-menu.mobile-open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary-dark); z-index: 9000; align-items: center; justify-content: center; gap: 2rem; font-size: 1.2rem; }
.nav-menu.mobile-open .nav-link { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; }

