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

:root {
  --white: #FFFFFF;
  --navy: #1E293B;
  --cyan: #06B6D4;
  --purple: #7C3AED;
  --silver: #CBD5E1;
  --light: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--purple); }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: var(--silver);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: var(--silver); font-size: 0.78rem; }
.topbar a:hover { color: var(--cyan); }
.topbar-badge {
  background: var(--cyan);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.logo-tagline { font-size: 0.68rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.5px; }

.search-bar {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 10px 48px 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.search-bar input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,0.12); background: var(--white); }
.search-bar button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--cyan); border: none; border-radius: 50px;
  width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--purple); }
.search-bar button svg { width: 16px; height: 16px; stroke: white; fill: none; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: none; cursor: pointer;
  color: var(--text-muted);
  font-size: 0.68rem; font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-action-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.header-action-btn:hover { background: var(--light); color: var(--navy); border-color: var(--border); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 8px;
  background: var(--cyan); color: white; font-size: 0.6rem;
  width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ===== NAV ===== */
.site-nav {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-list {
  display: flex; align-items: center; gap: 0;
  list-style: none; margin: 0; padding: 0;
  overflow-x: auto;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 13px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--cyan); }
.nav-list > li.has-dropdown:hover > a { color: var(--cyan); }
.nav-list > li.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-hover);
  min-width: 220px;
  padding: 8px 0;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: var(--text-main);
}
.dropdown-menu a:hover { background: var(--light); color: var(--cyan); }
.dropdown-menu .dd-icon { width: 16px; height: 16px; opacity: 0.5; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list li + li::before { content: '/'; color: var(--text-light); font-size: 0.8rem; }
.breadcrumb-list a { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--cyan); }
.breadcrumb-list .current { font-size: 0.82rem; color: var(--navy); font-weight: 500; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(124,58,237,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-content { z-index: 1; }
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; }
.hero-image img {
  border-radius: var(--radius-lg);
  width: 100%; height: 400px; object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.22s;
  white-space: nowrap; text-decoration: none;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn-primary { background: var(--cyan); color: var(--white); }
.btn-primary:hover { background: #0891b2; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,182,212,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: white; color: white; }
.btn-outline { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-outline:hover { background: var(--cyan); color: white; }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: #0f172a; color: white; transform: translateY(-1px); }
.btn-purple { background: var(--purple); color: white; }
.btn-purple:hover { background: #6d28d9; color: white; transform: translateY(-1px); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--white); padding: 24px; text-align: center; }
.stat-number { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-number span { color: var(--cyan); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.category-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.25s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0); transition: transform 0.25s;
}
.category-card:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: var(--card-shadow-hover); color: var(--navy); }
.category-card:hover::before { transform: scaleX(1); }
.category-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.category-card:hover .category-icon { background: rgba(6,182,212,0.1); }
.category-icon svg { width: 26px; height: 26px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.category-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.category-count { font-size: 0.75rem; color: var(--text-muted); }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.products-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--card-shadow-hover); border-color: transparent; transform: translateY(-4px); }
.product-image-wrap {
  position: relative;
  background: var(--light);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new { background: var(--cyan); color: white; }
.badge-sale { background: var(--error); color: white; }
.badge-hot { background: var(--warning); color: white; }
.badge-featured { background: var(--purple); color: white; }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--error); border-color: var(--error); }
.product-wishlist svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; }
.product-wishlist:hover svg { stroke: white; }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-brand { font-size: 0.72rem; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.8px; }
.product-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); line-height: 1.35; }
.product-specs { display: flex; flex-wrap: wrap; gap: 4px; }
.spec-chip {
  padding: 2px 8px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.7rem; color: var(--text-muted);
}
.product-rating { display: flex; align-items: center; gap: 6px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; }
.star-full { fill: #FBBF24; stroke: #FBBF24; }
.star-empty { fill: none; stroke: var(--silver); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--border); gap: 10px; }
.product-price { display: flex; flex-direction: column; }
.price-current { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy); line-height: 1; }
.price-old { font-size: 0.78rem; color: var(--text-light); text-decoration: line-through; }
.price-currency { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); vertical-align: super; margin-right: 1px; }

/* ===== CATALOG LAYOUT ===== */
.catalog-layout { display: grid; grid-template-columns: 270px 1fr; gap: 28px; align-items: start; }
.sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-bottom: 16px;
}
.widget-title {
  padding: 14px 18px;
  font-weight: 700; font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-body { padding: 14px 18px; }
.filter-group { margin-bottom: 14px; }
.filter-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-option { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 0; }
.filter-option input { accent-color: var(--cyan); width: 15px; height: 15px; }
.filter-option label { font-size: 0.84rem; color: var(--text-main); cursor: pointer; flex: 1; }
.filter-option .option-count { font-size: 0.72rem; color: var(--text-muted); }
.price-range { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-range input { width: 90px; padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.82rem; font-family: 'Inter', sans-serif; color: var(--navy); outline: none; }
.price-range input:focus { border-color: var(--cyan); }
.price-separator { color: var(--text-muted); font-size: 0.8rem; }
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; flex-wrap: wrap;
}
.results-count { font-size: 0.875rem; color: var(--text-muted); }
.results-count strong { color: var(--navy); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-family: 'Inter', sans-serif;
  color: var(--text-main); background: var(--white);
  outline: none; cursor: pointer;
}
.sort-select:focus { border-color: var(--cyan); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.view-btn.active, .view-btn:hover { background: var(--navy); border-color: var(--navy); }
.view-btn svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; }
.view-btn.active svg, .view-btn:hover svg { stroke: white; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--cyan); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { display: flex; flex-direction: column; gap: 20px; }
.product-title { font-size: clamp(1.4rem, 3vw, 2rem); }
.product-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.product-sku { font-size: 0.78rem; color: var(--text-muted); }
.availability { font-size: 0.82rem; font-weight: 600; }
.in-stock { color: var(--success); }
.out-of-stock { color: var(--error); }
.price-block { background: var(--light); border-radius: var(--radius); padding: 18px; }
.price-block .price-current { font-size: 2rem; }
.price-savings { font-size: 0.82rem; color: var(--success); font-weight: 600; margin-top: 4px; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn {
  width: 38px; height: 40px;
  background: var(--light); border: none;
  cursor: pointer; font-size: 1.2rem; color: var(--navy);
  transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--border); }
.qty-input { width: 52px; height: 40px; border: none; text-align: center; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); outline: none; }
.add-to-cart-block { display: flex; gap: 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--light); }
.specs-table td { padding: 10px 14px; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--navy); width: 40%; }
.specs-table td:last-child { color: var(--text-main); }
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  padding: 12px 20px; border: none; background: none;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); border-color: transparent; }
.blog-image { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cyan); }
.blog-title { font-weight: 700; font-size: 1.05rem; color: var(--navy); line-height: 1.35; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.blog-author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--light); overflow: hidden; }
.blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta-info { flex: 1; }
.blog-author-name { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.blog-date { font-size: 0.72rem; color: var(--text-muted); }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--cyan); display: flex; align-items: center; gap: 4px; }
.read-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; transition: transform 0.2s; }
.blog-card:hover .read-more svg { transform: translateX(3px); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.comparison-table th {
  background: var(--navy); color: white;
  padding: 16px 20px; font-size: 0.875rem; font-weight: 600;
  text-align: left;
}
.comparison-table th:first-child { width: 200px; }
.comparison-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--text-main); }
.comparison-table tr:nth-child(even) td { background: var(--light); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); background: rgba(248,250,252,0.8); }
.check-yes { color: var(--success); font-size: 1.1rem; }
.check-no { color: var(--error); font-size: 1.1rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  color: var(--navy); background: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-message {
  background: rgba(16,185,129,0.1); border: 1.5px solid var(--success);
  border-radius: var(--radius); padding: 16px 20px;
  color: var(--success); font-weight: 600; font-size: 0.9rem;
  display: none; align-items: center; gap: 10px; margin-top: 16px;
}
.success-message svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ===== TRUST BADGES ===== */
.trust-bar { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.trust-label { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.trust-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter { background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%); padding: 60px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter h2 { color: white; }
.newsletter p { color: rgba(255,255,255,0.65); margin-top: 8px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 12px 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px; background: rgba(255,255,255,0.08);
  color: white; font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--cyan); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer; text-decoration: none;
}
.social-btn:hover { background: var(--cyan); border-color: var(--cyan); }
.social-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; }
.social-btn:hover svg { stroke: white; }
.footer-col-title { font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--cyan); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.5px;
}

/* ===== CART ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.cart-product-cell { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; background: var(--light); flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.cart-summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-top: 4px; }

/* ===== CHECKOUT ===== */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-section { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.checkout-section-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.checkout-section-title .step-number { width: 26px; height: 26px; background: var(--cyan); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; flex-shrink: 0; }
.order-summary-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-summary-item:last-child { border-bottom: none; }
.order-summary-img { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--light); overflow: hidden; flex-shrink: 0; }
.order-summary-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PRICE CHART ===== */
.price-chart-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.chart-legend { display: flex; gap: 16px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.chart-placeholder { height: 180px; background: linear-gradient(135deg, var(--light) 0%, #e8f4f8 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; color: var(--text-muted); }

/* ===== PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1.05rem; }
.page-content { padding: 64px 0; }
.prose h2 { margin: 32px 0 14px; font-size: 1.4rem; }
.prose h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.prose p { margin-bottom: 14px; color: var(--text-main); line-height: 1.75; }
.prose ul, .prose ol { margin: 12px 0 14px 24px; }
.prose li { margin-bottom: 6px; color: var(--text-main); line-height: 1.7; font-size: 0.95rem; }
.prose a { color: var(--cyan); }
.prose strong { color: var(--navy); }
.info-box { background: rgba(6,182,212,0.06); border-left: 4px solid var(--cyan); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.info-box p { margin: 0; font-size: 0.875rem; color: var(--navy); }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; }
.alert svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: rgba(6,182,212,0.08); color: #0e7490; border: 1px solid rgba(6,182,212,0.2); }
.alert-success { background: rgba(16,185,129,0.08); color: #065f46; border: 1px solid rgba(16,185,129,0.2); }
.alert-warning { background: rgba(245,158,11,0.08); color: #92400e; border: 1px solid rgba(245,158,11,0.2); }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; padding: 32px 0; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; text-decoration: none; padding: 0 8px;
}
.page-btn.active, .page-btn:hover { background: var(--navy); border-color: var(--navy); color: white; }
.page-btn.dots { border: none; background: none; cursor: default; color: var(--text-light); }
.page-btn.dots:hover { background: none; color: var(--text-light); }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.tag { display: inline-flex; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.tag-cyan { background: rgba(6,182,212,0.1); color: #0e7490; }
.tag-purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.tag-navy { background: rgba(30,41,59,0.08); color: var(--navy); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.feature-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: all 0.25s;
}
.feature-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(124,58,237,0.1));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 16px; }
.review-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; fill: #FBBF24; stroke: #FBBF24; }
.review-text { font-size: 0.9rem; color: var(--text-main); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--light); overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.review-date { font-size: 0.72rem; color: var(--text-muted); }
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white;
  border: none; cursor: pointer; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 900; transition: all 0.2s;
}
.back-to-top:hover { background: var(--cyan); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; stroke: white; fill: none; }
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 16px 24px; z-index: 9999;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-bar p { font-size: 0.82rem; flex: 1; }
.cookie-bar a { color: var(--cyan); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.mobile-menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--navy);
}
.mobile-menu-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

/* ===== PAGE HERO SIMPLE ===== */
.page-hero-simple { background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%); padding: 60px 0 48px; }
.page-hero-inner { max-width: 760px; }
.page-hero-inner h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.page-hero-inner p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 8px; }

/* ===== POLICY ===== */
.policy-section { padding: 56px 0; background: var(--bg); }
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-toc { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.policy-toc h3 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.policy-toc ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.policy-toc a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; padding: 6px 8px; border-radius: 6px; display: block; line-height: 1.4; transition: all 0.2s; }
.policy-toc a:hover { background: rgba(6,182,212,0.08); color: var(--cyan); }
.policy-body { min-width: 0; }
.policy-block { margin-bottom: 48px; scroll-margin-top: 100px; }
.policy-block h2 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.policy-block h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 18px 0 10px; }
.policy-block p { color: var(--text); line-height: 1.75; margin-bottom: 12px; font-size: 0.92rem; }
.policy-block a { color: var(--cyan); }
.policy-list { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.policy-list li { font-size: 0.9rem; color: var(--text); line-height: 1.6; padding-left: 20px; position: relative; }
.policy-list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.policy-list-numbered { counter-reset: policy-counter; }
.policy-list-numbered li { counter-increment: policy-counter; }
.policy-list-numbered li::before { content: counter(policy-counter) '.'; font-size: 0.78rem; font-weight: 700; color: var(--cyan); top: 2px; }
.policy-info-box { background: rgba(6,182,212,0.06); border-left: 3px solid var(--cyan); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 18px 0; font-size: 0.87rem; color: var(--text); line-height: 1.65; }
.policy-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.85rem; }
.policy-table th, .policy-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.policy-table th { background: var(--surface); font-weight: 600; color: var(--navy); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.policy-table tr:last-child td { border-bottom: none; }
.support-channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 16px; }
.support-channel { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.support-channel h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.support-channel p { font-size: 0.87rem; color: var(--text); margin: 0 0 4px; line-height: 1.5; }

/* ===== POLICY CTA ===== */
.policy-cta-section { background: var(--surface); padding: 56px 0; border-top: 1px solid var(--border); }
.policy-cta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.policy-cta-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.policy-cta-card svg { width: 32px; height: 32px; stroke: var(--cyan); fill: none; }
.policy-cta-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.policy-cta-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* ===== LEGAL CARDS ===== */
.legal-cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.legal-card h2 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.legal-table th { width: 42%; font-weight: 600; color: var(--text-muted); padding: 8px 0; vertical-align: top; padding-right: 12px; border-bottom: 1px solid var(--border); }
.legal-table td { color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: none; }
.legal-disclaimer-box { background: rgba(124,58,237,0.05); border: 1px solid rgba(124,58,237,0.15); border-radius: 12px; padding: 28px 32px; }
.legal-disclaimer-box h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.legal-disclaimer-box p { font-size: 0.87rem; color: var(--text); line-height: 1.75; margin-bottom: 10px; }
.legal-disclaimer-box a { color: var(--cyan); }

/* ===== SITEMAP ===== */
.sitemap-section { padding: 56px 0; background: var(--bg); }
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h2 { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; }
.sitemap-col h2 svg { width: 18px; height: 18px; stroke: var(--cyan); flex-shrink: 0; }
.sitemap-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-links a { font-size: 0.88rem; color: var(--text); text-decoration: none; padding: 4px 0; border-bottom: 1px solid transparent; transition: color 0.2s; display: block; line-height: 1.5; }
.sitemap-links a:hover { color: var(--cyan); }

/* ===== WISHLIST ===== */
.wishlist-section { padding: 56px 0; background: var(--bg); }
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; margin-bottom: 32px; }
.wishlist-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.wishlist-card:hover { box-shadow: 0 8px 32px rgba(30,41,59,0.10); transform: translateY(-2px); }
.wishlist-card-img { position: relative; aspect-ratio: 4/3; background: var(--silver); overflow: hidden; }
.wishlist-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.wishlist-card:hover .wishlist-card-img img { transform: scale(1.04); }
.wishlist-remove-btn { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.wishlist-remove-btn svg { width: 14px; height: 14px; stroke: #ef4444; }
.wishlist-remove-btn:hover { background: #fef2f2; }
.wishlist-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.wishlist-card-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan); }
.wishlist-card-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.wishlist-card-body h3 a { color: inherit; text-decoration: none; }
.wishlist-card-body h3 a:hover { color: var(--cyan); }
.wishlist-card-spec { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; }
.wishlist-card-price { display: flex; align-items: baseline; gap: 10px; }
.wishlist-card-actions { display: flex; gap: 8px; margin-top: 4px; }
.wishlist-footer-actions { display: flex; justify-content: flex-end; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); }

/* ===== ACCOUNT ===== */
.account-section { padding: 56px 0; background: var(--bg); }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.account-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; position: sticky; top: 100px; }
.account-avatar { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.avatar-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--cyan); color: white; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.account-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.account-email { font-size: 0.78rem; color: var(--text-muted); }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.87rem; color: var(--text); text-decoration: none; transition: all 0.2s; cursor: pointer; }
.account-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.account-nav-item:hover, .account-nav-item.active { background: rgba(6,182,212,0.08); color: var(--cyan); }
.account-main { min-width: 0; }
.account-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.panel-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.orders-table th { padding: 10px 12px; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.orders-table td { padding: 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.orders-table tr:last-child td { border-bottom: none; }
.order-status { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.status-delivered { background: rgba(16,185,129,0.1); color: #059669; }
.status-processing { background: rgba(245,158,11,0.1); color: #d97706; }
.status-shipped { background: rgba(6,182,212,0.1); color: var(--cyan); }
.address-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.address-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; font-size: 0.87rem; line-height: 1.65; color: var(--text); position: relative; }
.address-default { border-color: var(--cyan); }
.address-badge { position: absolute; top: 12px; right: 12px; background: var(--cyan); color: white; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 10px; }
.address-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.account-settings-form { max-width: 580px; display: flex; flex-direction: column; gap: 18px; }
.form-success-msg { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #059669; border-radius: 8px; padding: 12px 16px; font-size: 0.87rem; font-weight: 500; }
--danger: #ef4444;

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .sidebar.mobile-open { display: block; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .legal-cards-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .support-channels { grid-template-columns: 1fr 1fr; }
  .policy-cta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-main { flex-wrap: wrap; gap: 12px; }
  .search-bar { order: 3; max-width: 100%; flex: 0 0 100%; }
  .nav-list { gap: 0; }
  .nav-list > li > a { padding: 12px 14px; font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; }
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .policy-cta-grid { grid-template-columns: 1fr; }
  .address-cards { grid-template-columns: 1fr; }
  .wishlist-footer-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-cta { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .header-actions { gap: 4px; }
  .header-action-btn { padding: 6px 8px; font-size: 0.62rem; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 20px; }
  .orders-table th, .orders-table td { padding: 8px; font-size: 0.78rem; }
}
