/* =========================================================
   Muted Forge — Premium Stylesheet v3.0
   Design: Dark Tech | Neon Blue + Orange | Poppins
   ========================================================= */

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

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary     : #0A192F;
  --primary-lt  : #112240;
  --primary-dk  : #060f1e;
  --dark        : #0B0B0B;
  --accent      : #00BFFF;
  --accent-dk   : #0099d6;
  --accent-lt   : #33ccff;
  --accent2     : #FF6A00;
  --accent2-dk  : #e05500;
  --accent2-lt  : #ff8533;

  /* Surfaces */
  --bg          : #F5F5F5;
  --bg-alt      : #EBEBEB;
  --card        : #FFFFFF;
  --dark-card   : #112240;
  --dark-card2  : #0d1f3c;

  /* Text */
  --text        : #1a1a2e;
  --text-muted  : #64748b;
  --text-light  : #94a3b8;
  --text-white  : #e8f4fd;

  /* UI */
  --border      : #e2e8f0;
  --border-lt   : #f1f5f9;
  --success     : #10b981;
  --error       : #ef4444;
  --warning     : #f59e0b;

  /* Shape */
  --radius      : 16px;
  --radius-sm   : 10px;
  --radius-lg   : 24px;
  --radius-xl   : 32px;

  /* Shadows */
  --shadow-sm   : 0 2px 8px rgba(0,0,0,.06);
  --shadow      : 0 4px 24px rgba(0,0,0,.08);
  --shadow-md   : 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg   : 0 16px 48px rgba(0,0,0,.16);
  --shadow-xl   : 0 24px 80px rgba(0,0,0,.22);
  --glow-blue   : 0 0 30px rgba(0,191,255,.25);
  --glow-orange : 0 0 30px rgba(255,106,0,.35);

  /* Motion */
  --ease        : cubic-bezier(.4,0,.2,1);
  --spring      : cubic-bezier(.34,1.56,.64,1);
  --ease-out    : cubic-bezier(0,0,.2,1);
  --transition  : .25s var(--ease);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── PAGE LOADER ────────────────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-size: 32px; font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 16px;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 99px; overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ── PAGE TRANSITIONS ───────────────────────────────────── */
.page-content { animation: pageIn .5s var(--ease) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: var(--primary);
  letter-spacing: -1px; line-height: 1.2;
  margin-bottom: 10px;
}
.section-title span { color: var(--accent); }
.section-sub {
  font-size: 15px; color: var(--text-muted); max-width: 560px;
}
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  margin-bottom: 36px;
}
.section-header-left { flex: 1; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-100%); transition: transform .55s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent2-dk));
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,106,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,106,0,.5);
}
.btn-neon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,191,255,.35);
}
.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,191,255,.05);
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover { background: var(--primary-lt); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border-color: transparent; padding: 8px 0;
  font-size: 13px;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost i { transition: transform .2s; }
.btn-ghost:hover i { transform: translateX(4px); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 12px; }

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .3px;
}
.badge-hot   { background: linear-gradient(135deg,#ef4444,#b91c1c); color:#fff; }
.badge-new   { background: linear-gradient(135deg,var(--accent),var(--accent-dk)); color:#fff; box-shadow: 0 2px 10px rgba(0,191,255,.4); }
.badge-deal  { background: linear-gradient(135deg,var(--accent2),var(--accent2-dk)); color:#fff; box-shadow: 0 2px 10px rgba(255,106,0,.35); }
.badge-feat  { background: linear-gradient(135deg,#8b5cf6,#7c3aed); color:#fff; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--primary-dk);
  padding: 9px 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--accent); font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.topbar-right a:hover { color: var(--accent); }
.topbar-country-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  background: rgba(0,191,255,.1);
  border: 1px solid rgba(0,191,255,.2);
  border-radius: 50px; cursor: pointer;
  color: var(--accent) !important;
  transition: .2s;
}
.topbar-country-btn:hover { background: rgba(0,191,255,.2); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--primary);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(10,25,47,.96);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

/* Logo */
.navbar-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,255,.35);
  flex-shrink: 0;
  transition: transform .3s var(--spring);
}
.navbar-logo:hover .logo-icon { transform: rotate(-5deg) scale(1.08); }
.logo-text {
  font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: -.5px;
}
.logo-text span { color: var(--accent); }

/* Search - centered */
.navbar-search {
  position: relative;
  width: 100%; max-width: 600px;
  justify-self: center;
}
.navbar-search input {
  width: 100%;
  padding: 11px 52px 11px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,191,255,.2);
  background: rgba(255,255,255,.07);
  color: #fff; font-size: 14px; font-weight: 400;
  transition: all .25s; outline: none;
  font-family: 'Poppins', sans-serif;
}
.navbar-search input::placeholder { color: rgba(255,255,255,.35); }
.navbar-search input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 4px rgba(0,191,255,.15), var(--glow-blue);
}
.navbar-search button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  border: none; color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s;
  box-shadow: 0 3px 12px rgba(0,191,255,.35);
}
.navbar-search button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--glow-blue);
}

/* Nav Actions */
.navbar-actions { display: flex; align-items: center; gap: 4px; }
.nav-action-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 8px 12px; border-radius: 10px;
  color: rgba(255,255,255,.7); font-size: 11px; font-weight: 600;
  background: none; border: none;
  transition: .2s; position: relative; cursor: pointer;
}
.nav-action-btn i { font-size: 18px; line-height: 1; }
.nav-action-btn:hover { color: var(--accent); background: rgba(0,191,255,.08); }
.badge-dot {
  position: absolute; top: 4px; right: 6px;
  min-width: 18px; height: 18px;
  background: var(--accent2);
  color: #fff; font-size: 10px; font-weight: 800;
  border-radius: 50px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(255,106,0,.4);
}
.nav-signup-btn {
  background: linear-gradient(135deg, rgba(0,191,255,.15), rgba(0,191,255,.05)) !important;
  border: 1px solid rgba(0,191,255,.25) !important;
  flex-direction: row !important; gap: 7px !important;
  padding: 9px 16px !important; font-size: 12px !important;
  color: var(--accent) !important;
}
.nav-signup-btn:hover {
  background: rgba(0,191,255,.2) !important;
  border-color: var(--accent) !important;
}
.nav-country-mobile { display: none; }

/* User dropdown */
.nav-user-menu { position: relative; }
.user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.05);
  padding: 6px; min-width: 220px;
  display: none; z-index: 300;
  animation: dropIn .22s var(--spring);
}
@keyframes dropIn {
  from { opacity:0; transform: translateY(-8px) scale(.95); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.nav-user-menu.open .user-dropdown { display: block; }
.dropdown-header {
  padding: 12px 14px 10px; border-bottom: 1px solid var(--border-lt);
  margin-bottom: 4px;
}
.dropdown-name  { font-size: 13px; font-weight: 700; color: var(--primary); }
.dropdown-email { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--text); font-size: 13px; font-weight: 500;
  transition: .15s;
}
.user-dropdown a:hover { background: #f0f8ff; color: var(--accent); }
.user-dropdown a i { width: 16px; color: var(--text-muted); }
.dd-badge {
  margin-left: auto; background: var(--accent2); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 50px;
}

/* Category nav */
.cat-nav {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  overflow-x: auto; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex; align-items: center; gap: 2px;
  padding: 6px 0; min-width: max-content;
}
.cat-nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.6);
  white-space: nowrap; transition: .2s;
}
.cat-nav-link:hover, .cat-nav-link.active {
  color: var(--accent); background: rgba(0,191,255,.1);
}
.cat-nav-link.active { border-bottom: 2px solid var(--accent); }
.cat-nav-link i { font-size: 13px; }

/* Mobile search bar */
.mobile-search-bar {
  background: var(--primary);
  padding: 0;
  overflow: hidden;
  transition: max-height .35s, padding .35s;
  max-height: 0;
}
.mobile-search-bar.open {
  max-height: 80px;
  padding: 12px 0;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-animated {
  position: relative;
  min-height: 580px;
  background: var(--primary);
  overflow: hidden;
  display: flex; align-items: center;
}

/* Animated gradient mesh background */
.hero-animated::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(0,191,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255,106,0,.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 90%, rgba(0,50,100,.5) 0%, transparent 70%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.05) translate(-1%,1%); }
  100% { transform: scale(1.02) translate(1%,-1%); }
}

/* Grid overlay */
.hero-animated::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(0,191,255,.12);
  top: -100px; left: -80px;
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(255,106,0,.1);
  bottom: -80px; right: -60px;
  animation: orbFloat2 16s ease-in-out infinite;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(0,191,255,.08);
  top: 40%; right: 25%;
  animation: orbFloat3 11s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.05); }
  66%  { transform: translate(-15px,25px) scale(.97); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50%  { transform: translate(-25px,18px); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%  { transform: translate(20px,-15px) scale(1.1); }
}

/* Floating particles */
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFly linear infinite;
}
@keyframes particleFly {
  0%   { opacity:0; transform: translateY(100vh) scale(0); }
  10%  { opacity:.6; }
  90%  { opacity:.3; }
  100% { opacity:0; transform: translateY(-10vh) scale(1.5); }
}

/* Animated scanning line */
.hero-scan {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanDown 5s linear infinite;
  opacity: .5;
}
@keyframes scanDown {
  0%   { top: 0; opacity: 0; }
  5%   { opacity: .5; }
  95%  { opacity: .3; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-left {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(0,191,255,.1);
  border: 1px solid rgba(0,191,255,.25);
  border-radius: 50px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: .5px;
  margin-bottom: 22px;
  animation: slideInLeft .6s var(--spring) both;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,191,255,.6); }
  50%  { opacity:.7; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0,191,255,0); }
}
@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-24px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 18px;
  animation: slideInLeft .7s .1s var(--spring) both;
}
.hero-title .neon {
  background: linear-gradient(135deg, var(--accent), #66e0ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0,191,255,.5));
}
.hero-title .orange {
  background: linear-gradient(135deg, var(--accent2), #ffb347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.8; margin-bottom: 32px; max-width: 460px;
  animation: slideInLeft .7s .2s var(--spring) both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: slideInLeft .7s .3s var(--spring) both;
}

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: slideInLeft .7s .4s var(--spring) both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 26px; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -1px;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500; margin-top: 3px; }

/* Hero Right — Floating Product Cards */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 420px;
  animation: fadeInRight .8s .2s var(--spring) both;
}
@keyframes fadeInRight {
  from { opacity:0; transform: translateX(30px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Animated floating gadget display */
.hero-gadget-display {
  position: relative;
  width: 360px; height: 360px;
}
.hero-circle {
  position: absolute; inset: 0;
  border: 1px solid rgba(0,191,255,.15);
  border-radius: 50%;
  animation: heroRotate 25s linear infinite;
}
.hero-circle-2 {
  inset: 30px;
  border-color: rgba(255,106,0,.1);
  animation: heroRotate 18s linear infinite reverse;
}
.hero-circle-3 {
  inset: 60px;
  border-color: rgba(0,191,255,.08);
  animation: heroRotate 35s linear infinite;
}
@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Center glow */
.hero-center-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,191,255,.3), rgba(0,191,255,.05) 60%, transparent);
  border-radius: 50%;
  border: 1px solid rgba(0,191,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.hero-center-icon {
  font-size: 40px; color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(0,191,255,.8));
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 18px rgba(0,191,255,.8)); }
  50%  { transform: scale(1.1); filter: drop-shadow(0 0 28px rgba(0,191,255,1)); }
}

/* Floating feature badges on hero */
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  animation: badgeFloat ease-in-out infinite alternate;
}
.hero-badge-1 { top: 10%; left: -10%; animation-duration: 5s; }
.hero-badge-2 { bottom: 15%; left: 0%; animation-duration: 6.5s; }
.hero-badge-3 { top: 10%; right: -5%; animation-duration: 4.5s; animation-delay: 1s; }
.hero-badge-4 { bottom: 10%; right: 0%; animation-duration: 5.5s; animation-delay: .5s; }
@keyframes badgeFloat {
  from { transform: translateY(-6px); }
  to   { transform: translateY(6px); }
}
.hero-badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  box-shadow: 0 4px 12px rgba(0,191,255,.4);
  flex-shrink: 0;
}
.hero-badge-icon.orange { background: linear-gradient(135deg, var(--accent2), var(--accent2-dk)); box-shadow: 0 4px 12px rgba(255,106,0,.4); }
.hero-badge-text { font-size: 12px; font-weight: 700; color: #fff; }
.hero-badge-sub  { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* ── CATEGORIES BAR ──────────────────────────────────────── */
.categories-strip { background: #fff; border-bottom: 1px solid var(--border); }
.cat-strip-inner  {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 0; overflow-x: auto; scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 50px;
  background: var(--bg); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; transition: .22s; flex-shrink: 0; cursor: pointer;
}
.cat-chip:hover, .cat-chip.active {
  background: rgba(0,191,255,.08);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,191,255,.1);
}
.cat-chip i { font-size: 14px; }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .25s;
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,191,255,.15);
  border-color: rgba(0,191,255,.3);
}

/* Image wrapper */
.product-card-img-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f6ff, #f8fafc);
  aspect-ratio: 1 / 1;
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  transition: transform .45s var(--ease), filter .35s;
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Badges on card */
.card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}

/* Quick view overlay */
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .card-overlay { opacity: 1; }
.card-overlay-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  background: rgba(255,255,255,.95);
  color: var(--primary); font-size: 13px; font-weight: 700;
  transform: translateY(12px); transition: transform .35s var(--spring);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  border: none; cursor: pointer; font-family: inherit;
}
.product-card:hover .card-overlay-btn { transform: translateY(0); }

/* Wishlist button on card */
.card-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-muted);
  cursor: pointer; transition: .25s var(--spring);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.card-wishlist:hover, .card-wishlist.active {
  color: #ef4444; transform: scale(1.2);
  box-shadow: 0 4px 16px rgba(239,68,68,.25);
}
.card-wishlist.active { background: #fff; color: #ef4444; }

/* Card body */
.product-card-body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; flex: 1;
}
.card-category {
  font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 5px;
  display: flex; align-items: center; gap: 5px;
}
.card-category i { font-size: 10px; }
.card-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  line-height: 1.4; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Rating */
.card-rating {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.stars { display: flex; gap: 1px; }
.stars i { font-size: 11px; color: #fbbf24; }
.rating-num { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.rating-count { font-size: 11px; color: var(--text-light); }

/* Price */
.card-price-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 14px; margin-top: auto;
}
.card-price {
  font-size: 20px; font-weight: 800; color: var(--primary);
  letter-spacing: -.5px;
}
.card-price-orig {
  font-size: 13px; color: var(--text-light);
  text-decoration: line-through; font-weight: 500;
}
.card-discount {
  font-size: 11px; font-weight: 800;
  color: var(--accent2); background: rgba(255,106,0,.1);
  padding: 2px 8px; border-radius: 50px;
}
.card-savings {
  font-size: 11px; color: var(--success); font-weight: 600;
  display: flex; align-items: center; gap: 3px;
}
.card-savings i { font-size: 10px; }

/* Card CTA */
.card-cta {
  display: flex; align-items: center; gap: 8px;
}
.card-btn {
  flex: 1; padding: 11px 14px;
  background: linear-gradient(135deg, var(--accent2), var(--accent2-dk));
  color: #fff; border: none; border-radius: 10px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: .25s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(255,106,0,.28);
}
.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,.4);
}

/* ── CATEGORY CARDS ──────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px; padding: 24px 18px;
  text-align: center;
  transition: .3s var(--spring);
  cursor: pointer; position: relative; overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,191,255,.06), transparent);
  opacity: 0; transition: opacity .3s;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 0 0 3px rgba(0,191,255,.1);
}
.cat-icon {
  width: 60px; height: 60px; margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,191,255,.1), rgba(0,191,255,.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  transition: .35s var(--spring);
  border: 1.5px solid rgba(0,191,255,.15);
}
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0,191,255,.4);
  border-color: transparent;
}
.cat-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.cat-count {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
}

/* ── HOT DEALS GRID ──────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.deal-card {
  background: linear-gradient(135deg, var(--primary-lt), var(--primary));
  border: 1px solid rgba(0,191,255,.15);
  border-radius: 20px; padding: 22px;
  display: flex; align-items: center; gap: 18px;
  transition: .3s var(--spring);
  overflow: hidden; position: relative;
}
.deal-card::after {
  content: '';
  position: absolute; top:-30px; right:-30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(0,191,255,.06);
  pointer-events: none;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2), var(--glow-blue);
  border-color: rgba(0,191,255,.3);
}
.deal-img-wrap {
  width: 100px; height: 100px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  overflow: hidden; flex-shrink: 0;
}
.deal-img-wrap img { width:100%; height:100%; object-fit:cover; }
.deal-info { flex: 1; min-width: 0; }
.deal-category { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.deal-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.deal-price { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.5px; }
.deal-orig   { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.deal-badge-pct {
  display: inline-block; margin-top: 6px;
  background: linear-gradient(135deg, var(--accent2), var(--accent2-dk));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,106,0,.4);
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 44px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 150% at 20% 50%, rgba(0,191,255,.08), transparent),
    radial-gradient(ellipse 50% 150% at 80% 50%, rgba(255,106,0,.06), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.stat-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover .stat-num { color: var(--accent); }
.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1;
  transition: color .3s;
}
.stat-num span { color: var(--accent2); }
.stat-label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-top: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.stat-icon {
  font-size: 20px; color: var(--accent);
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,191,255,.5));
}

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  padding: 72px 0; position: relative; overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(0,191,255,.1), transparent),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255,106,0,.08), transparent);
  pointer-events: none;
}
.newsletter-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.newsletter-left h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 10px;
  line-height: 1.2;
}
.newsletter-left h2 span { color: var(--accent); }
.newsletter-left p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; }
.newsletter-form {
  display: flex; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(0,191,255,.2);
  border-radius: 16px; padding: 8px 8px 8px 20px;
}
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 14px; color: #fff; font-family: 'Poppins', sans-serif;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  padding: 12px 24px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; border: none; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .25s; font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,191,255,.35);
}
.newsletter-form button:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-blue);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo-text { font-size: 22px; font-weight: 900; color: #fff; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75;
  margin-top: 12px; max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 15px;
  transition: .2s;
}
.social-btn:hover {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,191,255,.35);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 10px; transition: .2s;
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--accent); }

/* ── FLASH MESSAGES ──────────────────────────────────────── */
.flash-container { padding: 0 0 16px; }
.flash {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  animation: slideDown .4s var(--spring);
}
@keyframes slideDown {
  from { opacity:0; transform: translateY(-12px); }
  to   { opacity:1; transform: translateY(0); }
}
.flash-success { background: #f0fdf4; border-left: 4px solid var(--success); color: #166534; }
.flash-error   { background: #fef2f2; border-left: 4px solid var(--error);   color: #991b1b; }
.flash-info    { background: #eff6ff; border-left: 4px solid var(--accent);  color: #1e40af; }

/* ── TOAST ───────────────────────────────────────────────── */
#toastContainer {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9000; display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: 340px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: all;
  animation: toastIn .35s var(--spring);
  border-left: 3px solid var(--accent);
}
.toast.toast-success { border-color: var(--success); }
.toast.toast-error   { border-color: var(--error); }
@keyframes toastIn {
  from { opacity:0; transform: translateX(20px) scale(.95); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  to { opacity:0; transform: translateX(20px); }
}
.toast.removing { animation: toastOut .3s var(--ease) forwards; }
.toast-icon { font-size: 16px; flex-shrink: 0; }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,25,47,.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: #fff; border-radius: 24px;
  padding: 40px; max-width: 420px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  transform: scale(.9) translateY(20px);
  transition: .35s var(--spring);
  text-align: center;
}
.modal-overlay.open .modal-card { transform: scale(1) translateY(0); }
.modal-icon {
  width: 68px; height: 68px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,191,255,.1), rgba(0,191,255,.05));
  border: 2px solid rgba(0,191,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent); margin: 0 auto 20px;
}
.modal-title { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.revealed { opacity: 1; transform: none; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb-bar { padding: 14px 0; background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.breadcrumb a { color: var(--text-muted); transition: .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-light); font-size: 11px; }
.breadcrumb .current { color: var(--primary); font-weight: 700; }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.page-link {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  color: var(--text-muted); background: #fff;
  border: 1.5px solid var(--border); transition: .2s;
}
.page-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,191,255,.05); }
.page-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,191,255,.35);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 80px; right: 24px; z-index: 800;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; font-size: 18px; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .3s var(--spring);
  opacity: 0; pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,191,255,.4);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,191,255,.55); }

/* ── SIDEBAR FILTER ──────────────────────────────────────── */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.sidebar {
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden; position: sticky; top: 120px;
}
.sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-lt);
  font-size: 14px; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-header i { color: var(--accent); }
.filter-group { padding: 18px 20px; border-bottom: 1px solid var(--border-lt); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: 12px; font-weight: 800; color: var(--primary);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px;
}
.filter-option {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; cursor: pointer; transition: .15s;
}
.filter-option:hover label { color: var(--accent); }
.filter-option input[type="checkbox"] { accent-color: var(--accent); width: 15px; height: 15px; }
.filter-option label {
  font-size: 13px; font-weight: 500; color: var(--text-muted); cursor: pointer; flex: 1;
}
.filter-count {
  font-size: 11px; color: var(--text-light);
  background: var(--bg); padding: 2px 8px; border-radius: 50px;
}

/* ── RANGE SLIDER ────────────────────────────────────────── */
.range-slider { width: 100%; accent-color: var(--accent); }

/* ── SEARCH PAGE ─────────────────────────────────────────── */
.search-hero {
  background: var(--primary);
  padding: 40px 0;
}
.search-hero h1 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.search-hero p  { font-size: 14px; color: rgba(255,255,255,.55); }

/* ── PRODUCT DETAIL ──────────────────────────────────────── */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  padding: 40px 0;
}
.detail-gallery { position: sticky; top: 100px; }
.gallery-main {
  background: linear-gradient(135deg, #f0f6ff, #f8fafc);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--border);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.gallery-main img { width:100%; height:100%; object-fit:contain; padding:20px; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 68px; height: 68px; border-radius: 10px;
  border: 2px solid var(--border); overflow: hidden;
  cursor: pointer; transition: .2s; flex-shrink: 0;
  background: var(--bg);
}
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,191,255,.15); }
.detail-info .product-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900; color: var(--primary);
  line-height: 1.2; letter-spacing: -1px; margin-bottom: 14px;
}
.detail-price-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f0f6ff, #f8fafc);
  border-radius: 14px; border: 1.5px solid rgba(0,191,255,.12);
}
.detail-price { font-size: 34px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.detail-orig  { font-size: 16px; color: var(--text-light); text-decoration: line-through; }
.detail-actions {
  display: flex; gap: 12px; margin-top: 24px;
}
.btn-buy {
  flex: 1; padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; border: none; border-radius: 14px;
  font-size: 16px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; transition: .25s;
  box-shadow: 0 6px 22px rgba(0,191,255,.35);
}
.btn-buy:hover { transform: translateY(-3px); box-shadow: var(--glow-blue); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--primary); border-radius: 22px; padding: 36px;
  position: sticky; top: 100px;
}
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,191,255,.15);
  border: 1px solid rgba(0,191,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent); flex-shrink: 0;
}
.contact-info-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-info-text  { font-size: 14px; color: #fff; font-weight: 600; }
.contact-form-card  { background: #fff; border-radius: 22px; padding: 36px; box-shadow: var(--shadow-md); border: 1.5px solid var(--border); }

/* ── FORM STYLES ─────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 12px;
  font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--text);
  outline: none; transition: .2s; background: #fff;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,191,255,.1); }
.form-control::placeholder { color: #b0bec5; }

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.empty-icon { font-size: 56px; color: var(--accent); margin-bottom: 20px; opacity: .7; }
.empty-state h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.empty-state p  { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* ── MENU TOGGLE (mobile) ────────────────────────────────── */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; width: 40px; height: 40px;
  border-radius: 10px; font-size: 18px;
  align-items: center; justify-content: center; cursor: pointer;
  transition: .2s; flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(0,191,255,.2); border-color: rgba(0,191,255,.3); }

/* ── WISHLIST PAGE ───────────────────────────────────────── */
.wishlist-hero {
  background: var(--primary); padding: 40px 0;
}
.wishlist-hero h1 { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.wishlist-hero p  { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 6px; }


/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, var(--primary-lt) 100%);
  padding: 52px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 70% 50%, rgba(0,191,255,.06), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: #fff; letter-spacing: -1px; }
.page-hero p  { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  align-items: start;
}

/* Info card — DARK background, WHITE text */
.contact-info-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-lt) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 36px 28px;
  position: sticky; top: 100px;
  color: rgba(255,255,255,.75); /* default white text */
}
.contact-info-card h3 {
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: -.5px; margin-bottom: 8px;
}
.contact-info-card > p {
  font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; transition: .2s;
}
.contact-item:hover { background: rgba(255,255,255,.1); border-color: rgba(0,191,255,.2); }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,191,255,.18), rgba(0,191,255,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent);
}
.contact-item-text .label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.4); /* WHITE muted */
  margin-bottom: 3px;
}
.contact-item-text .value {
  font-size: 14px; font-weight: 600;
  color: #fff; /* FULLY WHITE */
  word-break: break-word;
}
.contact-item-text .value a { color: #fff; text-decoration: none; }
.contact-item-text .value a:hover { color: var(--accent); }

/* Form card — WHITE background, DARK text */
.contact-form-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form-card h3 {
  font-size: 20px; font-weight: 900; color: var(--primary);
  letter-spacing: -.5px; margin-bottom: 24px;
}
.flash { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 12px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.flash-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #166534; }
.flash-error   { background: #fef2f2; border-left: 4px solid #dc2626; color: #991b1b; }
.required { color: var(--accent2); }

/* ── FORM CONTROLS (shared across pages) ─────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--text); text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none; transition: .2s;
  resize: vertical;
}
.form-control:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 4px rgba(255,106,0,.1);
  background: #fff;
}
.form-control::placeholder { color: #b0bec5; }

/* Section wrapper (inner pages) */
.section { padding: 60px 0; background: var(--bg); }
.container-sm { max-width: 1100px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-content { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(28px, 5vw, 48px); }
  .hero-right { display: none !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .detail-gallery { position: static; }
}

/* ── HERO MOBILE CENTERED ────────────────────────────────── */
@media (max-width: 900px) {
  .hero-animated { min-height: 420px; }
  .hero-content { padding: 52px 0; }
  .hero-left { align-items: center; text-align: center; }
  .hero-title { font-size: clamp(26px, 6vw, 40px); letter-spacing: -1px; }
  .hero-sub { text-align: center; max-width: 100%; font-size: 14px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
}

@media (max-width: 768px) {
  .topbar-promo-hide, .topbar-contact-hide { display: none; }
  .navbar-inner { grid-template-columns: auto auto 1fr; gap: 8px; }
  .navbar-search { display: none; }
  .search-toggle-btn { display: flex !important; }
  .nav-signup-btn { display: none !important; }
  .nav-country-mobile { display: flex; }
  .menu-toggle { display: flex; }

  /* Categories: scrollable chip row only, hide cat-grid on mobile */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid .cat-card:nth-child(n+5) { display: none; } /* show only first 4 */

  /* Category strip: add fade hint that it scrolls */
  .categories-strip {
    position: relative;
  }
  .categories-strip::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
  }

  /* Products: 2-column grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Product card compact on mobile */
  .product-card-img-wrap { aspect-ratio: 1 / 1; }
  .product-card-body { padding: 10px 12px 12px; }
  .card-title { font-size: 12px; }
  .card-price { font-size: 16px; }
  .card-price-orig { font-size: 11px; }
  .card-btn { padding: 9px 10px; font-size: 12px; gap: 5px; }
  .card-savings { font-size: 10px; }
  .card-category { font-size: 10px; }

  .deals-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-pad { padding: 48px 0; }
  .section-pad-sm { padding: 36px 0; }
  .navbar-inner { gap: 6px; padding: 10px 0; }
  .logo-text { font-size: 17px; }
  .logo-icon { width: 34px; height: 34px; font-size: 15px; border-radius: 9px; }
  .nav-action-btn span:not(.badge-dot) { display: none; }
  .nav-action-btn { padding: 7px 8px; }

  /* Hero extra compact */
  .hero-animated { min-height: 380px; }
  .hero-content { padding: 44px 0; }
  .hero-title { font-size: clamp(24px, 7vw, 34px); }
  .hero-tag { font-size: 10px; padding: 5px 12px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 13px; }
  .hero-stats { gap: 16px; padding-top: 20px; margin-top: 28px; }
  .hero-stat-num { font-size: 20px; }

  /* Categories: show only 4, 2 per row */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-icon { width: 50px; height: 50px; font-size: 20px; }
  .cat-name { font-size: 12px; }
  .cat-count { font-size: 10px; }

  /* Products 1 col on tiny screens */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-title { font-size: 12px; -webkit-line-clamp: 2; }
  .card-price { font-size: 15px; }

  /* Deals */
  .deal-card { flex-direction: column; gap: 14px; }
  .deal-img-wrap { width: 100%; height: 160px; border-radius: 12px; }
  .deal-price { font-size: 18px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.05); }
  .stat-num { font-size: 24px; }

  .modal-card { padding: 26px 18px; border-radius: 18px; }
  #toastContainer { bottom: 12px; right: 10px; left: 10px; max-width: 100%; }

  /* Newsletter */
  .newsletter { padding: 52px 0; }
  .newsletter-form { flex-direction: column; background: none; border: none; padding: 0; gap: 10px; }
  .newsletter-form input {
    background: rgba(255,255,255,.08); border: 1.5px solid rgba(0,191,255,.2);
    border-radius: 12px; padding: 14px 18px; color: #fff; width: 100%;
  }
  .newsletter-form button { border-radius: 12px; width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE — Full CSS (product.php classes)
   ═══════════════════════════════════════════════════════════ */

/* ── 2-column layout grid ─────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* ── Gallery column ───────────────────────────────────────── */
.product-gallery {
  position: sticky;
  top: 100px;
}

/* gallery-main already defined above but ensure it works standalone */
.product-gallery .gallery-main {
  background: linear-gradient(135deg, #f0f6ff, #f8fafc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.product-gallery .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .4s var(--ease);
}
.product-gallery .gallery-main img:hover {
  transform: scale(1.05);
}

.product-gallery .gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-gallery .gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
  background: var(--bg);
}
.product-gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.product-gallery .gallery-thumb:hover,
.product-gallery .gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,191,255,.15);
}

/* ── Right info panel ─────────────────────────────────────── */
.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Category link */
.product-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent);
  background: rgba(0,191,255,.08);
  border: 1px solid rgba(0,191,255,.15);
  padding: 5px 12px;
  border-radius: 50px;
  transition: .2s;
}
.product-cat-link:hover {
  background: rgba(0,191,255,.15);
  color: var(--accent);
}

/* Product title */
.product-info-panel .product-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -.5px;
  margin: 0;
}

/* Rating row */
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-rating-row .stars { display: flex; gap: 2px; }
.product-rating-row .stars i { font-size: 14px; color: #fbbf24; }
.product-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}
.product-views i { font-size: 11px; }

/* Price box */
.product-price-box {
  background: linear-gradient(135deg, #f0f6ff, #f8fafc);
  border: 1.5px solid rgba(0,191,255,.12);
  border-radius: 14px;
  padding: 18px 20px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}
.price-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}
.discount-tag {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent2), var(--accent2-dk));
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(255,106,0,.35);
}
.product-savings {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-top: 8px;
}
.product-savings i { font-size: 12px; }

/* ── BUY NOW button ───────────────────────────────────────── */
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 28px;
  background: linear-gradient(135deg, #FF9900, #e07b00);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s var(--ease);
  box-shadow: 0 6px 22px rgba(255,153,0,.4);
  text-decoration: none;
  letter-spacing: .2px;
  position: relative;
  overflow: hidden;
}
.buy-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.buy-btn:hover::before { transform: translateX(100%); }
.buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,153,0,.55);
  color: #fff;
}
.buy-btn:active { transform: translateY(-1px); }
.buy-btn i { font-size: 18px; }

/* ── Affiliate disclosure note ────────────────────────────── */
.affiliate-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,191,255,.04);
  border: 1px solid rgba(0,191,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.affiliate-note i {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.affiliate-note strong { color: var(--primary); }

/* ── Feature checkmarks ───────────────────────────────────── */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.feature-item i {
  color: var(--success);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Breadcrumb current (product page) ───────────────────── */
.breadcrumb-current {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}
.breadcrumb i.fa-chevron-right { font-size: 9px; color: var(--text-light); }

/* ── Wishlist button on product detail ───────────────────── */
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: inherit;
  transition: all .2s;
}
.wishlist-btn.active {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239,68,68,.06);
}
.wishlist-btn.active i { color: #ef4444; }
.wishlist-btn:hover { border-color: #ef4444; color: #ef4444; }

/* ── Product description block ───────────────────────────── */
.product-description p,
.product-description {
  font-size: 15px;
  color: #475569;
  line-height: 1.85;
}
.product-description ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}
.product-description ul li {
  margin-bottom: 6px;
}

/* ── Pagination (page-btn used in products.php) ───────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: .2s;
  padding: 0 12px;
}
.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,191,255,.05);
}
.page-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,191,255,.35);
}
.page-dots {
  color: var(--text-light);
  padding: 0 4px;
  font-size: 14px;
}

/* ── Responsive: product detail ─────────────────────────── */
@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery { position: static; }
  .product-gallery .gallery-main { max-width: 480px; margin: 0 auto 12px; }
}

@media (max-width: 600px) {
  .price-current { font-size: 26px; }
  .buy-btn { padding: 15px 20px; font-size: 15px; }
  .product-info-panel .product-title { font-size: 20px; }
  .product-gallery .gallery-main { max-width: 100%; }
  .product-gallery .gallery-thumb { width: 56px; height: 56px; }
}

