/* ===== AshMart - Premium E-Commerce ===== */

:root {
  --poppins: 'Poppins', sans-serif;
  --inter: 'Inter', sans-serif;
  --playfair: 'Playfair Display', serif;

  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #60A5FA;
  --primary-glow: rgba(37, 99, 235, 0.2);
  --secondary: #10B981;
  --secondary-light: #34D399;
  --accent: #F59E0B;
  --accent-glow: rgba(245, 158, 11, 0.25);
  --danger: #EF4444;
  --dark: #0F172A;
  --charcoal: #1E293B;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --white: #FFFFFF;
  --black: #0A0A0A;

  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --surface: #FFFFFF;
  --surface-hover: #F1F5F9;
  --text: #111827;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --border: rgba(226, 232, 240, 0.8);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-dark: rgba(15, 23, 42, 0.12);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px var(--primary-glow);
  --shadow-accent: 0 0 30px var(--accent-glow);
  --danger-bg: #FEF2F2;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 76px;
  --max-w: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0B0B12;
  --bg-alt: #111119;
  --surface: #16161F;
  --surface-hover: #1E1E2A;
  --text: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;
  --border: rgba(51, 65, 85, 0.5);
  --glass: rgba(22, 22, 31, 0.85);
  --glass-border: rgba(51, 65, 85, 0.3);
  --glass-dark: rgba(255, 255, 255, 0.06);
  --nav-bg: rgba(11, 11, 18, 0.9);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.45);
  --danger-bg: rgba(239, 68, 68, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--inter); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition: background .35s var(--ease), color .35s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input, textarea { font-family: inherit; font-size: inherit; outline: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--text-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }
.section { padding: clamp(50px, 8vw, 100px) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: clamp(28px, 4vw, 50px); }
.section-badge { display: inline-block; padding: 6px 18px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: 50px; font-size: clamp(11px, 1vw, 13px); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--poppins); font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.section-desc { color: var(--text-secondary); font-size: clamp(14px, 1.3vw, 16px); max-width: 560px; margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 14px; transition: all .3s var(--ease); position: relative; overflow: hidden; letter-spacing: .3px; }
.btn i { font-size: 14px; transition: transform .2s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 4px 20px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), #059669); color: #fff; box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3); }
.btn-outline { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); color: var(--text); }
.btn-outline:hover { background: var(--surface-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; background: var(--bg); transition: opacity .6s, visibility .6s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--poppins); font-size: 28px; font-weight: 800; color: #fff; animation: loaderPulse 1.5s ease-in-out infinite; box-shadow: 0 0 40px var(--primary-glow); position: relative; }
.loader-logo::after { content: ''; position: absolute; inset: -4px; border-radius: 24px; background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)); z-index: -1; opacity: .3; animation: loaderGlow 2s ease-in-out infinite; }
@keyframes loaderGlow { 0%,100%{opacity:.3;transform:scale(1)}50%{opacity:.6;transform:scale(1.05)} }
@keyframes loaderPulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.05)} }
.loader-bar { width: 200px; height: 3px; background: var(--gray-200); border-radius: 3px; margin: 0 auto 16px; overflow: hidden; }
.loader-bar-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)); border-radius: 3px; animation: loaderFill 1.5s ease-in-out forwards; }
@keyframes loaderFill { 0%{width:0}100%{width:100%} }
.loader-text { font-family: var(--poppins); font-size: 14px; font-weight: 600; color: var(--text-secondary); letter-spacing: 4px; text-transform: uppercase; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: transparent; transition: all .3s var(--ease); }
.navbar.scrolled { background: var(--nav-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); height: 64px; }
.nav-container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--poppins); font-weight: 700; color: var(--text); }
.nav-logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; font-weight: 800; box-shadow: 0 2px 10px var(--primary-glow); }
.nav-logo-text { font-size: 18px; letter-spacing: -.5px; }
.nav-logo-tagline { font-size: 9px; color: var(--text-tertiary); letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 8px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--text-secondary); transition: all .2s var(--ease); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface-hover); }
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-icon-btn { position: relative; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all .2s var(--ease); font-size: 16px; }
.nav-icon-btn:hover { background: var(--surface-hover); color: var(--text); }
.nav-auth-btn { width: auto; gap: 6px; padding: 0 12px; border-radius: 50px; font-size: 13px; font-weight: 500; }
.nav-auth-btn i { font-size: 13px; }
.nav-badge { position: absolute; top: 1px; right: 1px; width: 17px; height: 17px; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--primary); box-shadow: 0 2px 8px var(--primary-glow); }
.nav-divider { width: 1px; height: 24px; background: var(--border); margin: 0 4px; }
.theme-toggle { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-secondary); transition: all .2s var(--ease); margin-left: 2px; }
.theme-toggle:hover { background: var(--surface-hover); color: var(--text); }
.theme-toggle .fa-moon { display: none; }
.theme-toggle .fa-sun { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: block; }
[data-theme="dark"] .theme-toggle .fa-sun { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 110px 0 40px; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, #0B0E1A 0%, #16213E 30%, #1A3A4A 60%, #0F2B2E 100%); background-size: 400% 400%; animation: heroGrad 18s ease infinite; z-index: 0; }
@keyframes heroGrad { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 40%, rgba(37,99,235,.25) 0%, transparent 60%), radial-gradient(ellipse at 85% 60%, rgba(16,185,129,.15) 0%, transparent 50%), radial-gradient(ellipse at 50% 10%, rgba(245,158,11,.08) 0%, transparent 40%); z-index: 1; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg), transparent); z-index: 2; pointer-events: none; }
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-content { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); width: 100%; }
.hero-text { max-width: 620px; }

/* Welcome badge */
.hero-welcome { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .3px; margin-bottom: 22px; animation: fadeInUp .6s ease both; }
.hero-welcome i { font-size: 14px; color: var(--accent); }

/* Founder badge */
.hero-founder-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .3px; margin-left: 10px; }
.hero-founder-badge i { font-size: 12px; color: var(--primary-light); }

/* Heading */
.hero-title { font-family: var(--poppins); font-size: clamp(32px, 4.8vw, 64px); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 6px; animation: fadeInUp .6s ease .1s both; }
.hero-title-line { display: block; }
.hero-title-gradient { background: linear-gradient(135deg, #fff 30%, #93C5FD 60%, #6EE7B7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Sub text */
.hero-sub { font-size: clamp(14px, 1.3vw, 17px); color: rgba(255,255,255,.7); line-height: 1.7; margin-top: 14px; margin-bottom: 6px; max-width: 520px; animation: fadeInUp .6s ease .2s both; }
.hero-sub-support { font-size: clamp(12px, 1.1vw, 14px); color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 28px; max-width: 500px; animation: fadeInUp .6s ease .25s both; }

/* Buttons */
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp .6s ease .3s both; }
.hero-btn.btn-outline { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero-btn.btn-outline:hover { background: rgba(255,255,255,.16); }

/* Trust line */
.hero-trust-line { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; display: flex; align-items: center; gap: 6px; animation: fadeInUp .6s ease .35s both; }
.hero-trust-line i { color: var(--secondary-light); font-size: 14px; }

/* Feature badges */
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; animation: fadeInUp .6s ease .4s both; }
.hero-feature { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.08); border-radius: 50px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.75); transition: all .3s ease; }
.hero-feature:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.hero-feature i { font-size: 12px; color: var(--secondary-light); }

/* Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeInRight .8s ease .15s both; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 500px; }
.hero-glow-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 85%; height: 85%; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.3) 0%, rgba(16,185,129,.1) 40%, transparent 70%); animation: pulseRing 5s ease-in-out infinite; }
@keyframes pulseRing { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.6}50%{transform:translate(-50%,-50%) scale(1.12);opacity:1} }
.hero-main-img { position: relative; width: 100%; border-radius: var(--radius-xl); object-fit: cover; box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 0 40px rgba(37,99,235,.1); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); transition: transform .7s ease; }
.hero-main-img:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

/* Floating cards */
.hero-float-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: rgba(255,255,255,.1); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.15); animation: floatCard 6s ease-in-out infinite; white-space: nowrap; }
.hero-float-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hero-float-card-text strong { display: block; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.hero-float-card-text span { font-size: 10px; color: rgba(255,255,255,.55); }

.hfc-1 { top: 3%; right: -8px; animation-delay: 0s; }
.hfc-1 .hero-float-card-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.hfc-2 { bottom: 18%; left: -20px; animation-delay: 1.5s; }
.hfc-2 .hero-float-card-icon { background: linear-gradient(135deg, #10B981, #059669); color: #fff; }
.hfc-3 { top: 38%; right: -25px; animation-delay: 3s; }
.hfc-3 .hero-float-card-icon { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }
.hfc-4 { bottom: 5%; right: 10%; animation-delay: 4.5s; }
.hfc-4 .hero-float-card-icon { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff; }


/* Stats */
.hero-stats { position: relative; z-index: 3; display: flex; justify-content: center; gap: clamp(20px, 3.5vw, 50px); margin-top: 50px; padding: 22px 36px; background: rgba(255,255,255,.06); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); max-width: 780px; width: 100%; animation: fadeInUp .8s ease .5s both; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--poppins); font-size: clamp(20px, 2.2vw, 30px); font-weight: 800; color: #fff; }
.hero-stat-label { font-size: clamp(10px, .9vw, 12px); color: rgba(255,255,255,.5); white-space: nowrap; }

/* Entrance keyframes */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

/* Search */
.search-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; align-items: flex-start; justify-content: center; padding-top: 110px; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: #fff; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s var(--ease); }
.search-close:hover { background: rgba(255,255,255,.1); }
.search-container { width: 100%; max-width: 620px; padding: 0 20px; }
.search-input-wrapper { position: relative; }
.search-input-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 18px; color: var(--text-tertiary); z-index: 1; }
.search-input { width: 100%; padding: 18px 50px 18px 52px; font-size: 16px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); color: var(--text); transition: all .2s var(--ease); }
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.search-clear { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; display: none; align-items: center; justify-content: center; color: var(--text-tertiary); transition: all .2s var(--ease); }
.search-clear.visible { display: flex; }
.search-results { margin-top: 16px; max-height: 380px; overflow-y: auto; display: none; }
.search-results.visible { display: block; }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 10px 16px; background: var(--surface); border-radius: var(--radius-sm); margin-bottom: 6px; cursor: pointer; transition: all .2s var(--ease); }
.search-result-item:hover { background: var(--surface-hover); transform: translateX(4px); }
.search-result-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.search-result-item .result-info h4 { font-size: 13px; font-weight: 600; }
.search-result-item .result-info span { font-size: 11px; color: var(--text-tertiary); }
.search-suggestions { margin-top: 24px; text-align: center; }
.search-suggestions-title { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 14px; }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.search-tag { padding: 7px 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 50px; font-size: 12px; color: rgba(255,255,255,.8); cursor: pointer; transition: all .2s var(--ease); }
.search-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Cart & Wishlist Panels */
.cart-panel, .wishlist-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 3000; display: flex; visibility: hidden; }
.cart-panel.active, .wishlist-panel.active { visibility: visible; }
.cart-overlay-bg, .wishlist-overlay-bg { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .3s var(--ease); }
.cart-panel.active .cart-overlay-bg, .wishlist-panel.active .wishlist-overlay-bg { opacity: 1; }
.cart-content, .wishlist-content { position: relative; width: 400px; max-width: 90vw; height: 100%; background: var(--surface); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: var(--shadow-xl); z-index: 1; }
.cart-panel.active .cart-content, .wishlist-panel.active .wishlist-content { transform: translateX(0); }
.cart-header, .wishlist-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3, .wishlist-header h3 { font-family: var(--poppins); font-size: 17px; font-weight: 600; }
.cart-close, .wishlist-close { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background .2s var(--ease); }
.cart-close:hover, .wishlist-close:hover { background: var(--surface-hover); }
.cart-items, .wishlist-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty, .wishlist-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: var(--text-tertiary); padding: 40px; }
.cart-empty i, .wishlist-empty i { font-size: 50px; margin-bottom: 16px; opacity: .3; }
.cart-empty p, .wishlist-empty p { font-size: 16px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.cart-empty span, .wishlist-empty span { font-size: 13px; }
.cart-item, .wishlist-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); animation: slideIn .3s var(--ease); }
@keyframes slideIn { from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)} }
.cart-item img, .wishlist-item img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; }
.cart-item-info, .wishlist-item-info { flex: 1; }
.cart-item-info h4, .wishlist-item-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.cart-item-price, .wishlist-item-price { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.cart-item-controls button { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; background: var(--bg-alt); transition: all .2s var(--ease); }
.cart-item-controls button:hover { background: var(--primary); color: #fff; }
.cart-item-controls span { font-weight: 600; min-width: 18px; text-align: center; font-size: 14px; }
.cart-item-remove { color: var(--text-tertiary); padding: 2px 6px; font-size: 12px; transition: color .2s var(--ease); align-self: flex-start; }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-coupon { display: flex; gap: 6px; margin-bottom: 14px; }
.cart-coupon input { flex: 1; padding: 9px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-alt); color: var(--text); font-size: 12px; }
.cart-coupon input:focus { border-color: var(--primary); }
.cart-coupon button { padding: 9px 18px; background: var(--primary); color: #fff; border-radius: 10px; font-size: 12px; font-weight: 600; transition: background .2s var(--ease); }
.cart-coupon button:hover { background: var(--primary-dark); }
.cart-summary { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); }
.cart-summary-total { font-size: 17px; font-weight: 700; color: var(--text); padding-top: 8px; border-top: 1px solid var(--border); }
.cart-checkout { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-radius: 12px; font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s var(--ease); box-shadow: 0 4px 16px var(--primary-glow); }
.cart-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--primary-glow); }
.cart-continue { width: 100%; padding: 10px; margin-top: 8px; background: transparent; border: 1px solid var(--border); border-radius: 12px; font-size: 12px; color: var(--text-secondary); transition: all .2s var(--ease); text-align: center; }
.cart-continue:hover { background: var(--surface-hover); }

/* Wishlist item actions */
.wishlist-item-actions { display: flex; gap: 6px; margin-top: 8px; }
.wishlist-item-actions button { padding: 5px 12px; border-radius: 7px; font-size: 11px; font-weight: 600; transition: all .2s var(--ease); }
.wishlist-add-cart { background: var(--primary); color: #fff; }
.wishlist-add-cart:hover { background: var(--primary-dark); }
.wishlist-remove { background: var(--bg-alt); color: var(--text-secondary); }
.wishlist-remove:hover { background: var(--danger-bg); color: var(--danger); }

/* Product Modal */
.product-modal { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.product-modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal-content { position: relative; width: 100%; max-width: 880px; max-height: 90vh; background: var(--surface); border-radius: var(--radius-lg); overflow-y: auto; box-shadow: var(--shadow-xl); transform: scale(.9) translateY(20px); transition: transform .3s var(--ease); }
.product-modal.active .modal-content { transform: scale(1) translateY(0); }
.modal-content-sm { max-width: 600px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 10; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; background: var(--surface); color: var(--text); box-shadow: var(--shadow-md); transition: all .2s var(--ease); }
.modal-close:hover { background: var(--surface-hover); transform: rotate(90deg); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal-gallery { padding: 24px; background: var(--bg-alt); border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.modal-main-image { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 12px; }
.modal-thumbnails { display: flex; gap: 8px; }
.modal-thumb { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: all .2s var(--ease); opacity: .6; }
.modal-thumb.active, .modal-thumb:hover { border-color: var(--primary); opacity: 1; }
.modal-info { padding: 28px; }
.modal-category { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 6px; }
.modal-title { font-family: var(--poppins); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.modal-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.modal-rating .stars { color: var(--accent); font-size: 13px; }
.modal-rating span { font-size: 12px; color: var(--text-secondary); }
.modal-price { font-family: var(--poppins); font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.modal-description { color: var(--text-secondary); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.modal-colors, .modal-sizes { margin-bottom: 16px; }
.modal-colors h4, .modal-sizes h4 { font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.color-options, .size-options { display: flex; gap: 6px; flex-wrap: wrap; }
.color-btn { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; transition: all .2s var(--ease); }
.color-btn.active, .color-btn:hover { border-color: var(--text); transform: scale(1.1); }
.size-btn { padding: 6px 14px; border: 1px solid var(--border); border-radius: 7px; font-size: 11px; font-weight: 500; cursor: pointer; transition: all .2s var(--ease); }
.size-btn.active, .size-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.modal-quantity { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.modal-quantity h4 { font-size: 12px; font-weight: 600; }
.modal-quantity button { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); transition: all .2s var(--ease); }
.modal-quantity button:hover { background: var(--primary); color: #fff; }
.modal-quantity span { font-weight: 600; font-size: 15px; min-width: 24px; text-align: center; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* Compare Bar */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,.08); padding: 12px 0; transform: translateY(100%); transition: transform .3s var(--ease); }
.compare-bar.active { transform: translateY(0); }
.compare-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px,3vw,40px); display: flex; align-items: center; gap: 16px; }
.compare-thumbs { display: flex; gap: 8px; flex: 1; }
.compare-thumbs img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 2px solid var(--border); }
.compare-close { font-size: 22px; color: var(--text-tertiary); padding: 4px 8px; }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(12px, 1.5vw, 20px); }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.category-image { width: 100%; height: 100%; }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.category-card:hover .category-image img { transform: scale(1.08); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 20px; transition: all .3s var(--ease); }
.category-card:hover .category-overlay { background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.category-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; background: rgba(255,255,255,.15); color: #fff; margin-bottom: 12px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all .3s var(--ease); }
.category-card:hover .category-icon { background: var(--primary); }
.category-overlay h3 { font-family: var(--poppins); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.category-overlay p { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.category-link { font-size: 12px; color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; opacity: 0; transform: translateY(8px); transition: all .3s var(--ease); }
.category-card:hover .category-link { opacity: 1; transform: translateY(0); }
.category-link i { font-size: 10px; }

/* Products Toolbar */
.products-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.products-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn { padding: 7px 18px; border: 1px solid var(--border); border-radius: 50px; font-size: 12px; font-weight: 500; color: var(--text-secondary); transition: all .2s var(--ease); }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px var(--primary-glow); }


/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .3s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-image { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg-alt); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badge { position: absolute; top: 8px; left: 8px; padding: 2px 8px; border-radius: 50px; font-size: 9px; font-weight: 700; text-transform: uppercase; z-index: 2; letter-spacing: .5px; }
.product-card-badge.sale, .product-card-badge.hot { background: var(--danger); color: #fff; }
.product-card-badge.new, .product-card-badge.trending { background: var(--secondary); color: #fff; }
.product-card-badge.popular, .product-card-badge.best-seller { background: var(--accent); color: #fff; }
.product-card-actions { position: absolute; top: 8px; right: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.product-card-actions button { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; font-size: 12px; box-shadow: var(--shadow-sm); transition: all .2s var(--ease); opacity: 0; transform: translateX(8px); }
.product-card:hover .product-card-actions button { opacity: 1; transform: translateX(0); }
.product-card-actions button:nth-child(2) { transition-delay: .05s; }
.product-card-actions button:nth-child(3) { transition-delay: .1s; }
.product-card-actions button:hover { background: var(--primary); color: #fff; }
.product-card-actions button.active { color: var(--danger); }
.product-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); transform: translateY(100%); transition: transform .3s var(--ease); display: flex; gap: 6px; z-index: 2; }
.product-card:hover .product-card-overlay { transform: translateY(0); }
.product-card-overlay .btn { flex: 1; padding: 7px; font-size: 10px; justify-content: center; border-radius: 8px; }
.product-card-overlay .btn i { font-size: 10px; }
.product-card-info { padding: 12px; }
.product-card-category { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 2px; }
.product-card-title { font-family: var(--poppins); font-size: 13px; font-weight: 600; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.product-card-rating .stars { color: var(--accent); font-size: 11px; }
.product-card-rating span { font-size: 10px; color: var(--text-tertiary); }
.product-card-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.product-card-price .current { font-family: var(--poppins); font-size: 16px; font-weight: 700; color: var(--text); }
.product-card-price .original { font-size: 12px; color: var(--text-tertiary); text-decoration: line-through; }
.product-card-price .discount { font-size: 9px; font-weight: 700; color: var(--danger); background: var(--danger-bg); padding: 1px 6px; border-radius: 4px; }

/* View All */
.products-view-all { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; padding: 12px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; cursor: pointer; transition: all .3s var(--ease); font-size: 13px; font-weight: 600; color: var(--text); max-width: 220px; margin-left: auto; margin-right: auto; }
.products-view-all:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.products-view-all i { font-size: 12px; transition: transform .2s var(--ease); }
.products-view-all:hover i { transform: translateX(4px); }

/* Offer Banner */
.offer-banner { display: flex; align-items: center; gap: 40px; padding: clamp(30px, 5vw, 60px); background: linear-gradient(135deg, #0F172A, #1E3A5F, #065F46); border-radius: var(--radius-xl); overflow: hidden; position: relative; color: #fff; }
.offer-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(37,99,235,.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(16,185,129,.1) 0%, transparent 60%); pointer-events: none; }
.offer-content { position: relative; z-index: 1; flex: 1; }
.offer-tag { display: inline-block; padding: 5px 14px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 50px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.offer-title { font-family: var(--playfair); font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; margin-bottom: 8px; }
.offer-subtitle { font-size: clamp(14px, 1.5vw, 18px); opacity: .8; margin-bottom: 24px; }
.offer-highlight { color: var(--accent); font-weight: 800; }
.offer-countdown { display: flex; gap: 16px; margin-bottom: 24px; }
.cd-item { text-align: center; }
.cd-num { display: block; font-family: var(--poppins); font-size: clamp(24px, 3vw, 36px); font-weight: 800; min-width: 48px; }
.cd-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: .5; }
.offer-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.offer-discount-circle { position: absolute; top: -10px; right: -10px; width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--danger), #DC2626); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 0 30px rgba(239,68,68,.4); z-index: 2; animation: pulseOffer 2s ease-in-out infinite; }
@keyframes pulseOffer { 0%,100%{transform:scale(1)}50%{transform:scale(1.05)} }
.offer-discount-circle span { font-family: var(--poppins); font-size: 24px; font-weight: 800; line-height: 1; }
.offer-discount-circle small { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.offer-visual img { width: 220px; height: 220px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-xl); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(12px, 1.5vw, 20px); }
.feature-card { padding: 28px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: all .3s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: linear-gradient(135deg, var(--primary-glow), rgba(16,185,129,.1)); color: var(--primary); transition: all .3s var(--ease); }
.feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
.feature-card h3 { font-family: var(--poppins); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); }

/* Swiper overrides */
.trending-carousel { position: relative; padding: 0 40px; }
.trendingSwiper .swiper-button-next, .trendingSwiper .swiper-button-prev, .testimonialSwiper .swiper-button-next, .testimonialSwiper .swiper-button-prev { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-md); color: var(--text); }
.trendingSwiper .swiper-button-next::after, .trendingSwiper .swiper-button-prev::after, .testimonialSwiper .swiper-button-next::after, .testimonialSwiper .swiper-button-prev::after { font-size: 14px; }
.trendingSwiper .swiper-pagination-bullet, .testimonialSwiper .swiper-pagination-bullet { background: var(--text-tertiary); opacity: .5; }
.trendingSwiper .swiper-pagination-bullet-active, .testimonialSwiper .swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }

/* New Arrivals & Best Sellers */
.new-arrivals-grid, .best-sellers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) { .new-arrivals-grid, .best-sellers-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 480px) { .new-arrivals-grid, .best-sellers-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* Flash Sale */
.flash-sale-banner { padding: clamp(30px, 4vw, 50px); background: linear-gradient(135deg, #7C2D12, #991B1B, #7C2D12); border-radius: var(--radius-xl); text-align: center; color: #fff; position: relative; overflow: hidden; }
.flash-sale-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(251,191,36,.1) 0%, transparent 60%); animation: flashPulse 2s ease-in-out infinite; pointer-events: none; }
@keyframes flashPulse { 0%,100%{opacity:.5}50%{opacity:1} }
.flash-sale-content { position: relative; z-index: 1; }
.flash-sale-icon { font-size: 40px; color: var(--accent); margin-bottom: 12px; animation: flashIcon 1s ease-in-out infinite; }
@keyframes flashIcon { 0%,100%{transform:scale(1)}50%{transform:scale(1.15)} }
.flash-sale-content h2 { font-family: var(--poppins); font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 8px; }
.flash-sale-content p { font-size: clamp(14px, 1.4vw, 17px); opacity: .9; margin-bottom: 20px; }
.flash-sale-content p strong { color: var(--accent); }
.flash-countdown { font-family: var(--poppins); font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 20px; letter-spacing: 4px; }
.flash-countdown span { background: rgba(255,255,255,.1); padding: 4px 12px; border-radius: 10px; min-width: 60px; display: inline-block; }

/* Testimonials */
.testimonials-slider { padding: 0 0 40px; }
.testimonial-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all .3s var(--ease); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-stars { color: var(--accent); font-size: 12px; margin-top: 2px; }
.testimonial-text { font-size: 13px; line-height: 1.7; color: var(--text-secondary); font-style: italic; }

/* Instagram Grid */
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.insta-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-card:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s var(--ease); }
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 28px; color: #fff; }

/* Newsletter */
.newsletter-card { position: relative; padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 50px); background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-lg); overflow: hidden; }
.newsletter-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 30% 50%, var(--primary-glow) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(16,185,129,.1) 0%, transparent 50%); pointer-events: none; animation: glowRotate 20s linear infinite; }
@keyframes glowRotate { from{transform:rotate(0deg)}to{transform:rotate(360deg)} }
.newsletter-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.newsletter-big-icon { font-size: 44px; color: var(--primary); margin-bottom: 18px; }
.newsletter-content h2 { font-family: var(--poppins); font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.newsletter-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
.newsletter-input-group { display: flex; align-items: center; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; padding: 4px; max-width: 460px; margin: 0 auto; transition: all .2s var(--ease); }
.newsletter-input-group:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.newsletter-input-group i { padding-left: 18px; color: var(--text-tertiary); font-size: 15px; }
.newsletter-input { flex: 1; padding: 12px 14px; border: none; background: transparent; color: var(--text); font-size: 13px; }
.newsletter-btn { padding: 10px 24px; border-radius: 50px; white-space: nowrap; }
.newsletter-message { margin-top: 10px; font-size: 12px; min-height: 18px; }
.newsletter-message.success { color: var(--secondary); }
.newsletter-message.error { color: var(--danger); }

/* FAQ */
.faq-grid { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: all .3s var(--ease); }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; text-align: left; font-size: 14px; font-weight: 600; transition: all .2s var(--ease); gap: 14px; }
.faq-question:hover { color: var(--primary); }
.faq-question i { font-size: 13px; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 22px 18px; }
.faq-answer p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }
.about-founded { position: absolute; bottom: -14px; left: 20px; padding: 10px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; box-shadow: var(--shadow-md); }
.about-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.about-mission { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-card { padding: 20px 16px; background: var(--bg-alt); border-radius: var(--radius-sm); text-align: center; }
.about-card i { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
.about-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.about-card p { font-size: 12px; color: var(--text-tertiary); margin-bottom: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all .2s var(--ease); }
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card i { font-size: 20px; color: var(--primary); margin-top: 2px; width: 24px; }
.contact-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-card p { font-size: 12px; color: var(--text-secondary); }
.contact-card-social { display: flex; gap: 8px; padding: 14px 18px; }
.contact-card-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); color: var(--text-secondary); transition: all .2s var(--ease); }
.contact-card-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.contact-form-wrapper { display: flex; flex-direction: column; gap: 16px; }
.contact-form { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-alt); color: var(--text); font-size: 13px; margin-bottom: 12px; transition: border-color .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-map { border-radius: var(--radius); overflow: hidden; height: 200px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Footer */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-top { padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 36px; }
.footer-brand-col p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin: 14px 0 18px; max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--poppins); font-size: 18px; font-weight: 700; }
.footer-logo-mark { width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; font-weight: 800; }
.footer-social { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); color: var(--text-secondary); font-size: 14px; transition: all .2s var(--ease); border: 1px solid var(--border); }
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.footer-payments { display: flex; gap: 10px; font-size: 28px; color: var(--text-tertiary); }
.footer-col h4 { font-family: var(--poppins); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-secondary); transition: all .2s var(--ease); }
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-newsletter-col p { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.footer-newsletter-form { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color .2s var(--ease); }
.footer-newsletter-form:focus-within { border-color: var(--primary); }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; border: none; background: var(--surface); color: var(--text); font-size: 12px; }
.footer-newsletter-form button { padding: 10px 16px; background: var(--primary); color: #fff; transition: background .2s var(--ease); }
.footer-newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-tertiary); }
.footer-bottom i { color: var(--danger); }

/* ===== Founder Section ===== */
.founder-section { position: relative; overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.founder-image { position: relative; }
.founder-image img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; box-shadow: var(--shadow-xl); }
.founder-image::before { content: ''; position: absolute; inset: -8px; border-radius: calc(var(--radius-xl) + 8px); background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)); opacity: .3; z-index: -1; animation: founderGlow 4s ease-in-out infinite alternate; }
@keyframes founderGlow { 0%{opacity:.2;transform:rotate(-1deg)} 100%{opacity:.4;transform:rotate(1deg)} }
.founder-badge { position: absolute; bottom: -14px; left: 20px; padding: 10px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; color: var(--primary); }
.founder-badge i { font-size: 16px; }
.founder-content .section-badge { margin-bottom: 16px; }
.founder-content h2 { font-family: var(--playfair); font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.founder-content .founder-title-role { font-size: clamp(15px, 1.5vw, 18px); color: var(--primary); font-weight: 600; margin-bottom: 20px; }
.founder-content .founder-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 24px; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.founder-stat { text-align: center; padding: 16px 12px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.founder-stat span { display: block; font-family: var(--poppins); font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: var(--primary); }
.founder-stat label { font-size: 11px; color: var(--text-tertiary); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.founder-social { display: flex; gap: 10px; }
.founder-social a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); font-size: 16px; transition: all .3s var(--ease); }
.founder-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 6px 20px var(--primary-glow); }
.founder-signature { font-family: var(--playfair); font-size: 22px; font-style: italic; color: var(--text-tertiary); margin-top: 16px; }

/* ===== Trust Badges ===== */
.trust-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; transition: all .3s var(--ease); }
.trust-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.trust-badge i { font-size: 24px; color: var(--primary); }
.trust-badge span { font-size: 11px; font-weight: 600; color: var(--text-secondary); }
.trust-badge small { font-size: 10px; color: var(--text-tertiary); }

/* ===== Payment Methods Grid ===== */
.payment-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-icon { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; font-size: 11px; font-weight: 500; color: var(--text-secondary); transition: all .2s var(--ease); }
.payment-icon i { font-size: 18px; color: var(--text-tertiary); }
.payment-icon:hover { border-color: var(--primary-light); color: var(--primary); }

/* ===== About Enhanced ===== */
.about-story { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 24px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 24px; }
.value-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; transition: all .3s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card i { font-size: 28px; color: var(--primary); margin-bottom: 10px; }
.value-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.value-card p { font-size: 12px; color: var(--text-tertiary); }
.about-timeline { position: relative; padding-left: 30px; margin-top: 24px; }
.about-timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary)); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item::before { content: ''; position: absolute; left: -24px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 2px solid var(--surface); box-shadow: 0 0 0 2px var(--primary); }
.timeline-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.timeline-item span { font-size: 11px; color: var(--primary); font-weight: 500; }
.timeline-item p { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }

/* ===== Contact Enhanced ===== */
.contact-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #25D366; color: #fff; border-radius: 50px; font-weight: 600; font-size: 13px; transition: all .3s var(--ease); margin-top: 10px; }
.contact-whatsapp:hover { background: #1DA851; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.contact-whatsapp i { font-size: 18px; }
.contact-map-card { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-map-card iframe { width: 100%; height: 250px; border-radius: var(--radius-sm); border: none; }
.contact-map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; color: var(--primary); font-weight: 600; }

/* ===== India Trust Features ===== */
.india-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.india-feature { padding: 20px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; transition: all .3s var(--ease); }
.india-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.india-feature i { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.india-feature h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.india-feature p { font-size: 11px; color: var(--text-tertiary); }

/* ===== Footer Indian Payments ===== */
.footer-payment-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-payment-item { padding: 6px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-size: 11px; font-weight: 500; color: var(--text-tertiary); display: flex; align-items: center; gap: 5px; }
.footer-payment-item i { font-size: 16px; }

/* ===== Footer Contact Info ===== */
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.footer-contact-item i { color: var(--primary); margin-top: 3px; width: 16px; font-size: 14px; }

/* ===== Responsive Founder ===== */
@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .founder-stat { padding: 12px 8px; }
  .founder-stat span { font-size: 18px; }
  .india-features { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Scroll to Bottom / Top ===== */
.scroll-btn { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: 16px; box-shadow: 0 4px 16px var(--primary-glow); cursor: pointer; border: none; transition: all .3s var(--ease); }
.scroll-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 28px var(--primary-glow); }
.scroll-btn:active { transform: scale(.92); }
@media (max-width: 480px) { .scroll-btn { width: 40px; height: 40px; font-size: 14px; bottom: 16px; right: 16px; } }

/* Notification */
.notification { position: fixed; top: 90px; right: 20px; z-index: 5000; padding: 14px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 500; transform: translateX(120%); transition: transform .3s var(--ease); max-width: 320px; display: flex; align-items: center; gap: 10px; }
.notification.show { transform: translateX(0); }
.notification i { font-size: 16px; }
.notification.success i { color: var(--secondary); }
.notification.error i { color: var(--danger); }

/* Responsive hero particles */
.hero-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.15); pointer-events: none; animation: floatParticle linear infinite; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .hero-text { max-width: 100%; }
  .hero-sub, .hero-sub-support { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-welcome { justify-content: center; }
  .hero-trust-line { justify-content: center; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-main-img { transform: none; }
  .hero-main-img:hover { transform: none; }
  .hero-float-card { display: none; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); flex-direction: column; padding: 14px; gap: 2px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
  .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { width: 100%; padding: 10px 14px; }
  .hamburger { display: flex; }
  .nav-auth-btn span { display: none; }
  .nav-auth-btn { width: 38px; padding: 0; justify-content: center; }
  .hero { padding: 100px 0 30px; min-height: auto; }
  .hero-welcome { flex-wrap: wrap; justify-content: center; }
  .hero-founder-badge { margin-left: 0; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 16px; margin-top: 36px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .offer-banner { flex-direction: column; text-align: center; padding: 24px; }
  .offer-countdown { justify-content: center; }
  .offer-visual img { width: 140px; height: 140px; }
  .offer-discount-circle { width: 60px; height: 60px; top: -5px; right: -5px; }
  .offer-discount-circle span { font-size: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { padding: 20px 14px; }
  .newsletter-input-group { flex-direction: column; border-radius: 12px; padding: 8px; gap: 8px; }
  .newsletter-input-group i { display: none; }
  .newsletter-input { width: 100%; text-align: center; }
  .newsletter-btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
  .about-mission { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .container { padding: 0 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 0 20px; min-height: auto; }
  .hero-content { gap: 16px; }
  .hero-welcome { font-size: 10px; padding: 6px 14px; flex-wrap: wrap; justify-content: center; }
  .hero-founder-badge { font-size: 10px; margin-left: 0; padding: 4px 12px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 13px; margin-top: 8px; }
  .hero-sub-support { font-size: 12px; margin-bottom: 20px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-features { gap: 6px; margin-top: 20px; }
  .hero-feature { padding: 5px 12px; font-size: 10px; }
  .hero-visual { max-width: 280px; }
  .hero-stats { gap: 8px; padding: 12px; margin-top: 28px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 18px; }
  .hero-stat-label { font-size: 9px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-card { aspect-ratio: 2/3; }
  .features-grid { grid-template-columns: 1fr; gap: 8px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card-info { padding: 8px; }
  .product-card-title { font-size: 11px; }
  .product-card-price .current { font-size: 14px; }
  .product-card-price .original { font-size: 10px; }
  .product-card-overlay { display: flex; transform: none; position: relative; background: var(--surface); padding: 8px; }
  .product-card-overlay .btn { font-size: 10px; padding: 8px 6px; min-height: 36px; }
  .product-card-actions button { opacity: 1; transform: none; width: 32px; height: 32px; font-size: 12px; }
  .cart-content, .wishlist-content { width: 100%; max-width: 100%; }
  .modal-content { max-height: 100vh; border-radius: 0; }
  .trending-carousel { padding: 0 12px; }
  .trendingSwiper .swiper-button-next, .trendingSwiper .swiper-button-prev { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .india-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .trust-badge { padding: 12px 8px; }
  .contact-grid { gap: 16px; }
  .contact-form { padding: 16px; }
  .nav-links { max-height: 80vh; overflow-y: auto; }
  .products-toolbar { margin-bottom: 16px; }
  .products-filter { flex-wrap: nowrap; overflow-x: auto; gap: 4px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .products-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 6px 14px; font-size: 11px; min-height: 36px; }
  .products-view-all { max-width: 100%; font-size: 12px; padding: 10px 20px; min-height: 44px; }
  body { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
}
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
}