/* ================================================================
   KOMPARE IT MALTA — Main Stylesheet v2.0 ULTRA
   Design: Deep Navy + Electric Teal — Crispy Modern
   Fonts: Syne 800 (display) + DM Sans (body)
   ================================================================ */

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

:root {
  --navy:        #060D14;
  --navy-deep:   #030810;
  --navy-mid:    #0C1A26;
  --navy-card:   #0F2033;
  --navy-lift:   #162B40;
  --navy-hover:  #1A3350;
  --teal:        #00D4D4;
  --teal-bright: #00EEEE;
  --teal-dark:   #009090;
  --teal-glow:   rgba(0,212,212,0.18);
  --teal-glow2:  rgba(0,212,212,0.08);
  --teal-glow3:  rgba(0,212,212,0.04);
  --green:       #10D98C;
  --green-dim:   rgba(16,217,140,0.15);
  --red:         #FF4D6A;
  --red-dim:     rgba(255,77,106,0.15);
  --amber:       #FFB547;
  --amber-dim:   rgba(255,181,71,0.15);
  --purple:      #8B5CF6;
  --white:       #FFFFFF;
  --white-90:    rgba(255,255,255,0.9);
  --white-70:    rgba(255,255,255,0.7);
  --white-50:    rgba(255,255,255,0.5);
  --white-40:    rgba(255,255,255,0.4);
  --white-30:    rgba(255,255,255,0.3);
  --white-20:    rgba(255,255,255,0.08);
  --white-10:    rgba(255,255,255,0.04);
  --text:        #D8EEF5;
  --text-muted:  rgba(216,238,245,0.55);
  --border:      rgba(0,212,212,0.14);
  --border-2:    rgba(255,255,255,0.07);
  --border-3:    rgba(0,212,212,0.25);
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   26px;
  --radius-2xl:  36px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
  --shadow:      0 6px 30px rgba(0,0,0,0.4);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.5);
  --shadow-teal: 0 0 50px rgba(0,212,212,0.18);
  --shadow-teal2:0 0 100px rgba(0,212,212,0.10);
  --glow-teal:   0 0 20px rgba(0,212,212,0.5), 0 0 60px rgba(0,212,212,0.2);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       68px;
  --max-w:       1280px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --t:           0.22s;
  --t-long:      0.38s;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--navy-deep); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--teal); color: var(--navy-deep); }
a { color: var(--teal); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--teal-bright); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }

/* UTILS */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--teal-glow); color: var(--teal); border: 1px solid var(--border); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,212,212,0.4)} 50%{box-shadow:0 0 0 8px rgba(0,212,212,0)} }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
@keyframes gridShift { 0%{background-position:0 0} 100%{background-position:60px 60px} }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes scrollLine { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1);transform-origin:top} }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: rgba(3,8,16,0.80); backdrop-filter: blur(24px) saturate(200%); -webkit-backdrop-filter: blur(24px) saturate(200%); border-bottom: 1px solid var(--border); transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.nav.scrolled { background: rgba(3,8,16,0.97); box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(0,0,0,0.5); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 24px; }
.nav-logo { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; display: flex; align-items: center; gap: 3px; flex-shrink: 0; text-decoration: none; }
.logo-k { color: var(--teal); }
.logo-it { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-flag { font-size: 0.9rem; margin-left: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav-links a { color: var(--white-70); font-size: 0.875rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius); transition: color var(--t) var(--ease), background var(--t) var(--ease); position: relative; }
.nav-links a:hover { color: var(--white); background: var(--white-20); }
.nav-links a.active { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: -12px; min-width: 200px; background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--t) var(--ease), visibility var(--t), transform var(--t) var(--ease); pointer-events: none; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--radius); color: var(--white-70); font-size: 0.875rem; transition: background var(--t), color var(--t); }
.dropdown-menu a:hover { background: var(--white-20); color: var(--white); }
.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-login { padding: 8px 18px; border-radius: var(--radius-pill); border: 1px solid var(--border-3); color: var(--teal); font-size: 0.875rem; font-weight: 600; transition: all var(--t) var(--ease); }
.btn-nav-login:hover { background: var(--teal-glow); color: var(--teal-bright); }
.btn-nav-cta { padding: 9px 20px; border-radius: var(--radius-pill); background: var(--teal); color: var(--navy-deep); font-size: 0.875rem; font-weight: 700; transition: all var(--t) var(--ease); border: none; cursor: pointer; }
.btn-nav-cta:hover { background: var(--teal-bright); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,212,0.4); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--radius); background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white-70); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--navy-card); border-bottom: 1px solid var(--border); padding: 16px; z-index: 999; flex-direction: column; gap: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; color: var(--white-70); font-size: 0.95rem; font-weight: 500; border-radius: var(--radius); transition: all var(--t); }
.mobile-menu a:hover { background: var(--white-20); color: var(--white); }
.mobile-menu .mobile-cta { margin-top: 8px; padding: 13px 16px; background: var(--teal); color: var(--navy-deep); font-weight: 700; border-radius: var(--radius); text-align: center; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 60px) 24px 80px; position: relative; overflow: hidden; text-align: center; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,212,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,212,0.04) 1px, transparent 1px); background-size: 60px 60px; animation: gridShift 20s linear infinite; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite; }
.hero-orb-1 { width: 600px; height: 600px; top: -100px; left: -100px; background: radial-gradient(circle, rgba(0,212,212,0.12) 0%, transparent 70%); }
.hero-orb-2 { width: 500px; height: 500px; bottom: -80px; right: -80px; background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%); animation-delay: -4s; }
.hero-orb-3 { width: 300px; height: 300px; top: 40%; left: 60%; background: radial-gradient(circle, rgba(0,212,212,0.08) 0%, transparent 70%); animation-delay: -2s; }
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; animation: fadeUp 0.6s var(--ease) both; }
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; animation: fadeUp 0.6s 0.1s var(--ease) both; }
.hero h1 .line-1 { display: block; color: var(--white); }
.hero h1 .line-2 { display: block; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 50%, #40FFFF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: var(--white-70); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; animation: fadeUp 0.6s 0.2s var(--ease) both; }
.hero-search-wrap { position: relative; max-width: 660px; margin: 0 auto 20px; animation: fadeUp 0.6s 0.3s var(--ease) both; }
.hero-search-form { display: flex; align-items: center; background: var(--navy-card); border: 1.5px solid var(--border-3); border-radius: var(--radius-pill); padding: 6px 6px 6px 20px; transition: border-color var(--t), box-shadow var(--t); }
.hero-search-form:focus-within { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,212,212,0.12), var(--shadow-teal); }
.search-icon { color: var(--teal); font-size: 1.1rem; margin-right: 10px; flex-shrink: 0; }
.hero-search-input { flex: 1; background: none; border: none; outline: none; color: var(--white); font-size: 1rem; font-family: var(--font-body); }
.hero-search-input::placeholder { color: var(--white-50); }
.hero-search-btn { padding: 11px 24px; background: var(--teal); color: var(--navy-deep); border: none; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem; cursor: pointer; flex-shrink: 0; transition: all var(--t) var(--ease); font-family: var(--font-head); }
.hero-search-btn:hover { background: var(--teal-bright); box-shadow: 0 4px 20px rgba(0,212,212,0.4); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; animation: fadeUp 0.6s 0.4s var(--ease) both; }
.hero-tag { padding: 5px 14px; border-radius: var(--radius-pill); background: var(--white-20); border: 1px solid var(--border-2); color: var(--white-70); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all var(--t); white-space: nowrap; text-decoration: none; display: inline-block; }
.hero-tag:hover { background: var(--teal-glow); border-color: var(--border); color: var(--teal); }
.hero-stats { display: flex; gap: 32px; justify-content: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border-2); animation: fadeUp 0.6s 0.5s var(--ease) both; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, var(--white) 0%, var(--teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 0.78rem; color: var(--white-50); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white-50); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; animation: fadeIn 1s 1s both; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollLine 1.5s ease-in-out infinite; }

/* TICKER */
.ticker-strip { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; align-items: center; gap: 0; animation: ticker 35s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-label { display: inline-flex; align-items: center; gap: 6px; background: var(--teal); color: var(--navy-deep); padding: 4px 16px 4px 20px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); margin-right: 24px; flex-shrink: 0; }
.ticker-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-deep); animation: pulse 1.5s ease-in-out infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; margin-right: 40px; font-size: 0.85rem; }
.ticker-item .t-name { color: var(--white-70); }
.ticker-item .t-price { color: var(--teal); font-weight: 700; font-family: var(--font-head); }
.ticker-item .t-drop { color: var(--green); font-size: 0.78rem; font-weight: 600; }
.ticker-sep { color: var(--border-3); margin-right: 40px; opacity: 0.5; }

/* SECTIONS */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.035em; color: var(--white); margin-bottom: 14px; }
.section-title span { color: var(--teal); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* CATEGORIES */
.categories-section { padding: 70px 0; background: var(--navy-mid); position: relative; }
.categories-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.cat-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 20px 14px; text-align: center; cursor: pointer; transition: all var(--t) var(--ease); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--teal-glow3), transparent); opacity: 0; transition: opacity var(--t); }
.cat-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-teal); color: inherit; }
.cat-card:hover::before { opacity: 1; }
.cat-card:hover .cat-icon { transform: scale(1.15); color: var(--teal); }
.cat-icon { font-size: 1.8rem; transition: all var(--t) var(--ease); color: var(--white-70); }
.cat-name { font-size: 0.78rem; font-weight: 600; color: var(--white-70); line-height: 1.3; }
.cat-count { font-size: 0.68rem; color: var(--text-muted); }

/* COMPARISON WIDGET */
.comparison-section { padding: 90px 0; }
.comparison-widget { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg), var(--shadow-teal2); position: relative; }
.comparison-widget::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.cw-header { padding: 24px 28px; background: var(--navy-mid); border-bottom: 1px solid var(--border-2); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cw-product-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); }
.cw-product-meta { font-size: 0.82rem; color: var(--text-muted); }
.cw-best-badge { margin-left: auto; display: flex; align-items: center; gap: 6px; background: var(--green-dim); border: 1px solid rgba(16,217,140,0.2); padding: 6px 14px; border-radius: var(--radius-pill); color: var(--green); font-size: 0.8rem; font-weight: 700; }
.cw-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-2); background: var(--navy-mid); overflow-x: auto; }
.cw-tab { padding: 13px 20px; font-size: 0.85rem; font-weight: 600; color: var(--white-50); cursor: pointer; border-bottom: 2px solid transparent; transition: all var(--t); background: none; border-top: none; border-left: none; border-right: none; white-space: nowrap; border-bottom: 2px solid transparent; }
.cw-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.cw-tab:hover { color: var(--white-70); }
.cw-table-wrap { overflow-x: auto; }
.cw-table { width: 100%; border-collapse: collapse; }
.cw-table thead th { padding: 14px 20px; font-size: 0.72rem; font-weight: 700; color: var(--white-50); letter-spacing: 0.07em; text-transform: uppercase; text-align: left; background: var(--navy-mid); border-bottom: 1px solid var(--border-2); }
.cw-table tbody tr { border-bottom: 1px solid var(--border-2); transition: background var(--t); }
.cw-table tbody tr:last-child { border-bottom: none; }
.cw-table tbody tr:hover { background: var(--white-20); }
.cw-table tbody tr.best-row { background: rgba(16,217,140,0.04); }
.cw-table td { padding: 16px 20px; font-size: 0.9rem; vertical-align: middle; }
.store-cell { display: flex; align-items: center; gap: 12px; }
.store-logo { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-lift); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; color: var(--teal); font-family: var(--font-head); flex-shrink: 0; }
.store-name { font-weight: 600; color: var(--white-90); font-size: 0.88rem; }
.store-shipping { font-size: 0.75rem; color: var(--text-muted); }
.price-cell { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); }
.price-cell.best { color: var(--green); }
.price-was { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.save-badge { display: inline-flex; padding: 2px 8px; border-radius: var(--radius-pill); background: var(--red-dim); color: var(--red); font-size: 0.72rem; font-weight: 700; }
.avail-cell { font-size: 0.8rem; }
.avail-yes { color: var(--green); }
.avail-low { color: var(--amber); }
.avail-no  { color: var(--red); }
.cta-cell .btn-shop { padding: 8px 18px; border-radius: var(--radius-pill); background: var(--teal); color: var(--navy-deep); font-size: 0.8rem; font-weight: 700; border: none; cursor: pointer; transition: all var(--t); white-space: nowrap; font-family: var(--font-head); }
.cta-cell .btn-shop:hover { background: var(--teal-bright); box-shadow: 0 4px 16px rgba(0,212,212,0.4); }
.best-row .cta-cell .btn-shop { box-shadow: 0 0 20px rgba(0,212,212,0.3); }
.cw-footer { padding: 16px 24px; background: var(--navy-mid); border-top: 1px solid var(--border-2); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cw-updated { font-size: 0.75rem; color: var(--text-muted); }
.cw-updated span { color: var(--teal); font-weight: 600; }
.cw-all-link { margin-left: auto; color: var(--teal); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* PRODUCT CARDS */
.products-section { padding: 90px 0; background: var(--navy); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.product-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); overflow: hidden; position: relative; transition: all var(--t-long) var(--ease); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.product-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-teal); color: inherit; }
.product-card-img { aspect-ratio: 4/3; background: var(--navy-lift); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.product-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 1; }
.badge { display: inline-flex; padding: 3px 9px; border-radius: var(--radius-pill); font-size: 0.68rem; font-weight: 700; }
.badge-green { background: var(--green-dim); color: var(--green); }
.badge-red   { background: var(--red-dim);   color: var(--red);   }
.badge-amber { background: var(--amber-dim); color: var(--amber); }
.badge-teal  { background: var(--teal-glow); color: var(--teal);  }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-cat { font-size: 0.72rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.product-card-name { font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; color: var(--white-90); line-height: 1.35; }
.product-card-meta { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.product-price-from { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 2px; }
.product-price-main { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--white); }
.product-stores { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.product-stores-num { color: var(--teal); font-weight: 700; }
.product-card-footer { padding: 12px 16px; border-top: 1px solid var(--border-2); display: flex; align-items: center; gap: 8px; }
.product-card-btn { flex: 1; padding: 10px; border-radius: var(--radius); background: var(--teal-glow); color: var(--teal); border: 1px solid var(--border); font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: all var(--t); text-align: center; font-family: var(--font-head); text-decoration: none; display: block; }
.product-card-btn:hover { background: var(--teal); color: var(--navy-deep); }
.product-card-wish { width: 38px; height: 38px; border-radius: var(--radius); background: var(--white-20); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: all var(--t); color: var(--white-50); }
.product-card-wish:hover, .product-card-wish.active { background: var(--red-dim); color: var(--red); border-color: rgba(255,77,106,0.3); }
.price-trend { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 600; }
.trend-down { color: var(--green); }
.trend-up   { color: var(--red); }

/* FEATURES */
.features-section { padding: 90px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.feature-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); padding: 28px; transition: all var(--t) var(--ease); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity var(--t); }
.feature-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-lg); background: var(--teal-glow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.feature-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-section { padding: 90px 0; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-3), var(--border-3), transparent); }
.how-step { text-align: center; padding: 0 20px; position: relative; }
.how-step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-card); border: 2px solid var(--border-3); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--teal); margin: 0 auto 20px; position: relative; z-index: 1; transition: all var(--t); }
.how-step:hover .how-step-num { background: var(--teal-glow); box-shadow: var(--glow-teal); }
.how-step-icon { font-size: 1.6rem; margin-bottom: 8px; }
.how-step-title { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.how-step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* PRICING */
.pricing-section { padding: 100px 0; background: var(--navy-mid); position: relative; overflow: hidden; }
.pricing-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,212,0.06) 0%, transparent 70%); pointer-events: none; }
.pricing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; font-size: 0.9rem; color: var(--white-70); }
.toggle-switch { width: 52px; height: 28px; border-radius: var(--radius-pill); background: var(--navy-lift); border: 1px solid var(--border-2); cursor: pointer; position: relative; transition: background var(--t); }
.toggle-switch.on { background: var(--teal); }
.toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); transition: transform var(--t) var(--ease-spring); }
.toggle-switch.on::after { transform: translateX(24px); }
.save-pill { padding: 3px 10px; border-radius: var(--radius-pill); background: var(--green-dim); color: var(--green); font-size: 0.72rem; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: start; }
.pricing-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-2xl); padding: 32px 28px; position: relative; overflow: hidden; transition: all var(--t-long) var(--ease); }
.pricing-card.featured { border-color: var(--teal); background: linear-gradient(135deg, var(--navy-card) 0%, rgba(0,212,212,0.05) 100%); box-shadow: var(--shadow-teal), var(--shadow-lg); transform: scale(1.03); }
.pricing-card:not(.featured):hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), var(--teal-bright), transparent); }
.plan-badge { position: absolute; top: 20px; right: 20px; background: var(--teal); color: var(--navy-deep); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 800; color: var(--white-50); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-price-wrap { margin-bottom: 6px; display: flex; align-items: flex-start; gap: 2px; }
.plan-currency { font-size: 1.1rem; font-weight: 700; color: var(--teal); font-family: var(--font-head); margin-top: 8px; }
.plan-price { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.plan-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.plan-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--border-2); margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--white-70); }
.plan-feature-icon { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.plan-feature.na { color: var(--white-40); }
.plan-feature.na .plan-feature-icon { color: var(--white-30); opacity: 0.4; }
.plan-cta { width: 100%; padding: 14px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all var(--t) var(--ease); font-family: var(--font-head); text-align: center; display: block; text-decoration: none; border: none; }
.plan-cta-outline { background: none; border: 1.5px solid var(--border-3); color: var(--teal); }
.plan-cta-outline:hover { background: var(--teal-glow); }
.plan-cta-solid { background: var(--teal); color: var(--navy-deep); box-shadow: 0 4px 24px rgba(0,212,212,0.3); }
.plan-cta-solid:hover { background: var(--teal-bright); box-shadow: 0 8px 32px rgba(0,212,212,0.45); transform: translateY(-1px); color: var(--navy-deep); }

/* MERCHANTS */
.merchants-section { padding: 70px 0; }
.merchants-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.merchant-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: all var(--t); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.merchant-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: var(--shadow-teal); color: inherit; }
.merchant-logo-box { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--navy-lift); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 0.85rem; font-weight: 800; color: var(--teal); letter-spacing: -0.02em; }
.merchant-name { font-size: 0.8rem; font-weight: 600; color: var(--white-70); }
.merchant-count { font-size: 0.7rem; color: var(--text-muted); }

/* ALERT CTA */
.alert-cta-section { padding: 80px 0; background: var(--navy-mid); position: relative; overflow: hidden; }
.alert-cta-section::before { content: ''; position: absolute; top: 50%; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,212,0.08) 0%, transparent 70%); transform: translateY(-50%); pointer-events: none; }
.alert-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.alert-cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.035em; color: var(--white); margin-bottom: 12px; }
.alert-cta-text h2 span { color: var(--teal); }
.alert-cta-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }
.alert-form { display: flex; gap: 10px; min-width: 380px; }
.alert-input { flex: 1; padding: 13px 18px; border-radius: var(--radius-pill); background: var(--navy-card); border: 1.5px solid var(--border); color: var(--white); font-size: 0.9rem; outline: none; transition: border-color var(--t); }
.alert-input:focus { border-color: var(--teal); }
.alert-input::placeholder { color: var(--white-50); }
.alert-submit { padding: 13px 24px; border-radius: var(--radius-pill); background: var(--teal); color: var(--navy-deep); border: none; font-weight: 700; font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: all var(--t); font-family: var(--font-head); }
.alert-submit:hover { background: var(--teal-bright); box-shadow: 0 4px 20px rgba(0,212,212,0.4); }

/* TESTIMONIALS */
.testimonials-section { padding: 90px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); padding: 28px; transition: all var(--t); }
.testimonial-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--amber); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--white-70); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-text::before { content: '\201C'; font-family: var(--font-head); font-size: 2rem; color: var(--teal); vertical-align: -0.25em; margin-right: 2px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-glow); border: 2px solid var(--border-3); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: var(--teal); font-size: 0.9rem; }
.testimonial-name { font-weight: 700; color: var(--white-90); font-size: 0.88rem; }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); }

/* FOOTER */
.footer { background: var(--navy-deep); border-top: 1px solid var(--border-2); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: 3px; margin-bottom: 14px; text-decoration: none; color: var(--white); }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: var(--radius); background: var(--white-20); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; color: var(--white-70); font-size: 0.9rem; transition: all var(--t); text-decoration: none; }
.social-btn:hover { background: var(--teal-glow); border-color: var(--border); color: var(--teal); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 800; color: var(--white-90); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border-2); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: var(--white-50); }
.footer-copy span { color: var(--teal); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--white-50); transition: color var(--t); }
.footer-legal a:hover { color: var(--white); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; border-radius: var(--radius-pill); cursor: pointer; transition: all var(--t) var(--ease); border: none; text-decoration: none; }
.btn-primary { background: var(--teal); color: var(--navy-deep); padding: 14px 28px; font-size: 0.95rem; box-shadow: 0 4px 24px rgba(0,212,212,0.3); }
.btn-primary:hover { background: var(--teal-bright); box-shadow: 0 8px 32px rgba(0,212,212,0.45); transform: translateY(-1px); color: var(--navy-deep); }
.btn-outline { background: none; border: 1.5px solid var(--border-3); color: var(--teal); padding: 13px 28px; font-size: 0.95rem; }
.btn-outline:hover { background: var(--teal-glow); color: var(--teal-bright); }
.btn-ghost { background: var(--white-20); border: 1px solid var(--border-2); color: var(--white-70); padding: 12px 22px; font-size: 0.88rem; border-radius: var(--radius-pill); }
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* FLASH */
.flash { padding: 12px 20px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.88rem; font-weight: 500; border: 1px solid; }
.flash-success { background: var(--green-dim); color: var(--green); border-color: rgba(16,217,140,0.25); }
.flash-error   { background: var(--red-dim);   color: var(--red);   border-color: rgba(255,77,106,0.25); }
.flash-info    { background: var(--teal-glow); color: var(--teal); border-color: var(--border); }
.flash-warning { background: var(--amber-dim); color: var(--amber); border-color: rgba(255,181,71,0.25); }

/* FORMS */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--white-70); }
.form-input, .form-select, .form-textarea { padding: 12px 16px; border-radius: var(--radius-lg); background: var(--navy-card); border: 1.5px solid var(--border-2); color: var(--white); font-size: 0.9rem; outline: none; transition: border-color var(--t), box-shadow var(--t); width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,212,0.1); }
.form-input::placeholder { color: var(--white-40); }
.form-hint { font-size: 0.75rem; color: var(--text-muted); }
.form-error { font-size: 0.75rem; color: var(--red); }
.form-select option { background: var(--navy-card); }

/* AUTH */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--navy-deep); position: relative; overflow: hidden; }
.auth-page::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,212,0.06) 0%, transparent 70%); }
.auth-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 40px 36px; width: 100%; max-width: 440px; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
.auth-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); border-radius: var(--radius-2xl) var(--radius-2xl) 0 0; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.auth-sub { font-size: 0.88rem; color: var(--text-muted); }
.auth-link { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 20px; }
.auth-link a { color: var(--teal); font-weight: 600; }

/* DASHBOARD */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; padding-top: var(--nav-h); }
.dash-sidebar { background: var(--navy-card); border-right: 1px solid var(--border-2); padding: 28px 16px; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.dash-sidebar-title { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; padding: 0 12px; margin-bottom: 8px; margin-top: 20px; }
.dash-sidebar-title:first-child { margin-top: 0; }
.dash-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); color: var(--white-60); font-size: 0.88rem; font-weight: 500; transition: all var(--t); margin-bottom: 2px; text-decoration: none; }
.dash-nav-link:hover { background: var(--white-20); color: var(--white); }
.dash-nav-link.active { background: var(--teal-glow); color: var(--teal); border: 1px solid var(--border); }
.dash-nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.dash-content { padding: 32px; }
.dash-page-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.dash-page-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.dash-stat-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 20px; }
.dash-stat-icon { font-size: 1.4rem; margin-bottom: 12px; }
.dash-stat-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.dash-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* SEARCH */
.search-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding-top: calc(var(--nav-h) + 24px); padding-bottom: 48px; }
.filter-panel { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); padding: 20px; position: sticky; top: calc(var(--nav-h) + 24px); height: fit-content; }
.filter-panel h3 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); }
.filter-group { margin-bottom: 20px; }
.filter-group-title { font-size: 0.75rem; font-weight: 700; color: var(--white-70); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 5px 0; }
.filter-check input[type=checkbox] { accent-color: var(--teal); width: 16px; height: 16px; }
.filter-check label { font-size: 0.85rem; color: var(--white-70); cursor: pointer; }
.search-header-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; padding: 14px 20px; background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); }
.search-result-count { font-size: 0.88rem; color: var(--text-muted); }
.search-result-count strong { color: var(--white); }
.sort-select { background: var(--navy-lift); border: 1px solid var(--border-2); color: var(--white); padding: 7px 12px; border-radius: var(--radius); font-size: 0.85rem; outline: none; cursor: pointer; margin-left: auto; }
.search-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }

/* ADMIN */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); border-right: 1px solid var(--border-2); padding: 0; position: fixed; top: 0; left: 0; width: 220px; height: 100vh; overflow-y: auto; z-index: 100; }
.admin-sidebar-logo { padding: 20px 18px; border-bottom: 1px solid var(--border-2); font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 6px; }
.admin-nav-section { padding: 12px 10px 0; }
.admin-nav-section-title { font-size: 0.65rem; font-weight: 700; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.08em; padding: 0 8px; margin-bottom: 4px; }
.admin-nav-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--radius); color: var(--white-60); font-size: 0.85rem; transition: all var(--t); margin-bottom: 1px; text-decoration: none; }
.admin-nav-link:hover { background: var(--white-20); color: var(--white); }
.admin-nav-link.active { background: var(--teal-glow); color: var(--teal); }
.admin-content { margin-left: 220px; padding: 28px; min-height: 100vh; }
.admin-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-2); }
.admin-page-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.admin-stat { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 20px; }
.admin-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.admin-stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.admin-stat-change { font-size: 0.75rem; color: var(--green); margin-top: 4px; }
.admin-table-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); overflow: hidden; }
.admin-table-header { padding: 18px 20px; border-bottom: 1px solid var(--border-2); display: flex; align-items: center; gap: 12px; }
.admin-table-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--white); }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table thead th { padding: 12px 16px; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; text-align: left; background: var(--navy-mid); border-bottom: 1px solid var(--border-2); }
table.admin-table tbody td { padding: 14px 16px; font-size: 0.88rem; color: var(--white-70); border-bottom: 1px solid var(--border-2); }
table.admin-table tbody tr:last-child td { border-bottom: none; }
table.admin-table tbody tr:hover td { background: var(--white-20); }
.table-actions { display: flex; gap: 6px; }
.btn-table { padding: 5px 12px; border-radius: var(--radius); font-size: 0.75rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--t); }
.btn-edit { background: var(--teal-glow); color: var(--teal); }
.btn-del  { background: var(--red-dim); color: var(--red); }
.btn-edit:hover { background: var(--teal); color: var(--navy-deep); }
.btn-del:hover  { background: var(--red); color: var(--white); }

/* PAGINATION */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; border-radius: var(--radius); background: var(--navy-card); border: 1px solid var(--border-2); color: var(--white-70); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all var(--t); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.page-btn:hover { background: var(--white-20); color: var(--white); }
.page-btn.active { background: var(--teal); color: var(--navy-deep); border-color: var(--teal); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(3,8,16,0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: all var(--t); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 36px; max-width: 520px; width: 100%; position: relative; transform: scale(0.95) translateY(20px); transition: transform var(--t) var(--ease-spring); }
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--white-20); border: none; color: var(--white-60); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--t); }
.modal-close:hover { background: var(--red-dim); color: var(--red); }
.modal-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }

/* SKELETON */
.skeleton { background: linear-gradient(90deg, var(--navy-lift) 25%, var(--navy-hover) 50%, var(--navy-lift) 75%); background-size: 200% 100%; animation: shimmer 1.8s infinite; border-radius: var(--radius); }

/* PAGE HERO */
.page-hero { padding: calc(var(--nav-h) + 40px) 0 48px; background: var(--navy-mid); border-bottom: 1px solid var(--border-2); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,212,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,212,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -0.04em; position: relative; }
.page-hero-sub { font-size: 1rem; color: var(--text-muted); margin-top: 10px; position: relative; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--border-3); font-size: 0.7rem; }
.breadcrumb-current { color: var(--white-70); }

/* DEALS */
.deal-card { background: var(--navy-card); border: 1px solid var(--border-2); border-radius: var(--radius-xl); padding: 20px; display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; transition: all var(--t); text-decoration: none; color: inherit; margin-bottom: 12px; }
.deal-card:hover { border-color: var(--border); box-shadow: var(--shadow); color: inherit; }
.deal-img { width: 80px; height: 80px; border-radius: var(--radius); background: var(--navy-lift); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.deal-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white-90); margin-bottom: 4px; }
.deal-store { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.deal-prices { display: flex; align-items: baseline; gap: 8px; }
.deal-was { font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); }
.deal-now { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.deal-save { padding: 3px 10px; border-radius: var(--radius-pill); background: var(--red-dim); color: var(--red); font-size: 0.72rem; font-weight: 700; }
.deal-drop-pct { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; text-align: right; }
.deal-drop-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; text-align: right; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links, .nav-dropdown { display: none; }
  .burger { display: flex; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
  .alert-cta-inner { grid-template-columns: 1fr; }
  .alert-form { min-width: auto; }
  .how-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 60px 0; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .pricing-card.featured { transform: scale(1); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .deal-card { grid-template-columns: 60px 1fr; }
  .deal-drop-pct, .deal-drop-label { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-search-form { flex-direction: column; border-radius: var(--radius-xl); padding: 14px; gap: 10px; }
  .hero-search-btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .cw-tabs { flex-wrap: nowrap; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
