/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F4F5F7;
  color: #111;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea {
  font-family: inherit; font-size: 14px;
  -webkit-appearance: none; appearance: none;
}
input[type="checkbox"] { -webkit-appearance: auto; appearance: auto; }
:focus-visible { outline: 2px solid #0B1F44; outline-offset: 2px; }
::selection { background: #93F09E; color: #111; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F4F5F7; }
::-webkit-scrollbar-thumb { background: #5C6370; border-radius: 4px; }

/* ===== LAYOUT ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 16px; }
@media(min-width:640px){ .container { padding: 0 24px; } }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
  background: #0B1F44; color: #fff;
  text-align: center; font-size: 12px; padding: 8px 16px;
}

/* ===== HEADER ===== */
.header {
  background: rgba(244,245,247,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
@media(min-width:1024px){ .header-inner { height: 64px; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: #111; display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-size: 16px; font-weight: 700; letter-spacing: -0.5px;
  color: #111; display: none;
}
@media(min-width:480px){ .logo-text { display: block; } }

/* Nav */
.nav { display: none; }
@media(min-width:1024px){
  .nav { display: flex; align-items: center; gap: 24px; margin-left: 40px; }
  .nav a {
    font-size: 14px; font-weight: 500; color: #111;
    transition: color 0.2s; position: relative;
  }
  .nav a:hover { color: #0B1F44; }
  .nav a.active { color: #0B1F44; text-decoration: underline; text-underline-offset: 4px; }
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  padding: 8px; border-radius: 9999px;
  transition: background 0.2s; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: rgba(0,0,0,0.05); }
.icon-btn svg { width: 20px; height: 20px; color: #111; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px; border-radius: 9999px;
  background: #0B1F44; color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.menu-btn { display: flex; }
@media(min-width:1024px){ .menu-btn { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none; background: #F4F5F7;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; font-size: 14px; font-weight: 500;
  color: #111; padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.3);
}
.search-overlay.open { display: block; }
.search-panel {
  background: #F4F5F7; padding: 80px 16px 24px;
}
.search-box {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; padding: 10px 16px; max-width: 640px; margin: 0 auto;
}
.search-box input {
  flex: 1; border: none; outline: none; background: transparent;
}
.search-results {
  max-width: 640px; margin: 16px auto 0;
  background: #fff; border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
}
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.search-result-item:hover { background: #F4F5F7; }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.search-result-item .r-info { flex: 1; min-width: 0; }
.search-result-item .r-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-item .r-sub { font-size: 12px; color: #5C6370; }
.search-result-item .r-price { font-size: 14px; font-weight: 600; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 70;
}
.cart-overlay.open { display: block; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.cart-drawer {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 100%; max-width: 420px; background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
}
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-header h2 { font-size: 16px; font-weight: 600; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; gap: 12px; background: #F4F5F7;
  border-radius: 10px; padding: 12px; margin-bottom: 12px;
}
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 500; }
.cart-item-sku { font-size: 12px; color: #5C6370; }
.cart-item-price { font-size: 14px; font-weight: 600; margin-top: 4px; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px;
}
.qty-btn:hover { border-color: rgba(0,0,0,0.3); }
.qty-val { font-size: 14px; font-weight: 500; width: 24px; text-align: center; }
.remove-link { font-size: 12px; color: #5C6370; text-decoration: underline; margin-left: auto; }
.remove-link:hover { color: #dc2626; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.cart-empty svg { width: 56px; height: 56px; color: #5C6370; margin-bottom: 16px; }
.cart-footer { padding: 16px; border-top: 1px solid rgba(0,0,0,0.08); }
.cart-footer-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.cart-footer-row.total { font-size: 16px; font-weight: 600; padding-top: 8px; border-top: 1px solid rgba(0,0,0,0.05); }
.btn {
  display: block; width: 100%; padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-align: center;
  transition: all 0.2s; margin-top: 8px;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { background: #333; }
.btn-secondary { background: #fff; color: #111; border: 1px solid rgba(0,0,0,0.1); }
.btn-secondary:hover { background: #F4F5F7; }

/* ===== PAGE SPACING ===== */
.page-content { padding-top: 96px; padding-bottom: 64px; min-height: 100vh; }
@media(min-width:1024px){ .page-content { padding-top: 104px; } }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #5C6370; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a:hover { color: #111; }

/* ===== HEADINGS ===== */
.h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

/* ===== SECTION LABELS ===== */
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #5C6370; }

/* ===== CARDS ===== */
.card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card-img { position: relative; aspect-ratio: 1; background: #F4F5F7; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 8px; left: 8px;
  padding: 2px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 600;
}
.card-badge-dark { background: #0B1F44; color: #fff; }
.card-badge-mint { background: #93F09E; color: #111; }
.card-body { padding: 12px; }
.card-name { font-size: 14px; font-weight: 500; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-qty { font-size: 12px; color: #5C6370; margin-top: 2px; }
.card-price-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.card-price { font-size: 14px; font-weight: 600; }
.card-compare { font-size: 12px; color: #5C6370; text-decoration: line-through; }
.card-out { position: absolute; top: 8px; right: 8px; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; background: #fee2e2; color: #b91c1c; }
.btn-add {
  width: 100%; padding: 8px; margin-top: 8px;
  background: #F4F5F7; color: #111; border-radius: 8px;
  font-size: 12px; font-weight: 600; text-align: center;
  transition: all 0.2s;
}
.btn-add:hover { background: #0B1F44; color: #fff; }
.btn-add:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media(min-width:640px){ .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media(min-width:1024px){ .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* ===== HERO ===== */
.hero { padding-top: 120px; padding-bottom: 48px; }
@media(min-width:1024px){ .hero { padding-top: 140px; padding-bottom: 48px; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media(min-width:1024px){ .hero-grid { grid-template-columns: 1fr 1fr; gap: 0; } }
.hero-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.hero-card img { width: 100%; height: auto; object-fit: cover; }
.hero-panel { background: #93F09E; border-radius: 12px; padding: 24px; }
@media(min-width:1024px){ .hero-panel { border-radius: 12px 0 0 12px; margin-left: 24px; } }
.hero-panel .hero-card { margin-bottom: 24px; max-width: 420px; }
.hero-sub { font-size: 14px; color: #5C6370; margin-bottom: 8px; }
.hero-title { font-size: clamp(48px, 6vw, 90px); font-weight: 700; letter-spacing: -0.02em; line-height: 0.92; color: #111; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn-dark { display: inline-flex; padding: 12px 24px; background: #111; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; }
.btn-dark:hover { background: #333; }
.btn-light { display: inline-flex; padding: 12px 24px; background: #fff; color: #111; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; font-size: 14px; font-weight: 600; }
.btn-light:hover { background: #F4F5F7; }

/* ===== SECTIONS ===== */
.section { padding: 48px 0; }
@media(min-width:1024px){ .section { padding: 80px 0; } }

/* Stock your desk */
.text-col-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:1024px){ .text-col-2 { grid-template-columns: 1fr 1fr; gap: 64px; } }
.collage-3 { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media(min-width:640px){ .collage-3 { grid-template-columns: repeat(3, 1fr); } }
.collage-item { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.collage-item img { width: 100%; height: 240px; object-fit: cover; }

/* Categories split */
.split-panel { display: grid; grid-template-columns: 1fr; border-radius: 16px; overflow: hidden; min-height: 500px; }
@media(min-width:1024px){ .split-panel { grid-template-columns: 1fr 1fr; } }
.panel-left { background: #F4F5F7; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.panel-right { background: #93F09E; padding: 32px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
@media(min-width:1024px){ .panel-left, .panel-right { padding: 48px; } }
.cat-list { list-style: none; }
.cat-list li { margin-bottom: 4px; }
.cat-list a { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: #111; transition: color 0.2s; }
.cat-list a:hover { color: #0B1F44; }
.cat-icon { width: 96px; height: 96px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.08); margin-bottom: 24px; }
.cat-icon svg { width: 40px; height: 40px; color: #0B1F44; }

/* Mint panel */
.mint-panel { background: #93F09E; border-radius: 16px; padding: 40px 24px; }
@media(min-width:1024px){ .mint-panel { padding: 64px 48px; } }
.mint-title { font-size: clamp(40px, 6vw, 80px); font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; color: #111; }
.tiles { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; margin-top: 40px; }
@media(min-width:640px){ .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile { background: #fff; border-radius: 12px; padding: 24px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.tile svg { width: 28px; height: 28px; color: #0B1F44; margin: 0 auto 8px; }
.tile-title { font-size: 14px; font-weight: 600; color: #111; }
.tile-desc { font-size: 12px; color: #5C6370; margin-top: 4px; }

/* Navy panel */
.navy-split { display: grid; grid-template-columns: 1fr; border-radius: 16px; overflow: hidden; }
@media(min-width:1024px){ .navy-split { grid-template-columns: 1fr 1fr; } }
.navy-panel { background: #0B1F44; padding: 40px 24px; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:1024px){ .navy-panel { padding: 48px; } }
.navy-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: #F4F5F7; letter-spacing: -0.02em; line-height: 1.05; }
.navy-text { color: rgba(244,245,247,0.85); font-size: 15px; margin-top: 16px; max-width: 400px; }
.gray-panel { background: #F4F5F7; padding: 24px; display: flex; align-items: center; }
.product-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
@media(min-width:640px){ .product-row { grid-template-columns: repeat(5, 1fr); } }
.product-row .p-thumb { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.product-row .p-thumb img { width: 100%; height: 80px; object-fit: cover; }

/* Essentials */
.essentials-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media(min-width:1024px){ .essentials-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* Why section */
.why-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; margin-top: 32px; }
@media(min-width:640px){ .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 24px; }
.why-card svg { width: 28px; height: 28px; color: #0B1F44; margin-bottom: 12px; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; cursor: pointer; list-style: none; width: 100%; text-align: left; font-size: 14px; font-weight: 500;
}
.faq-trigger:hover { background: #F4F5F7; }
.faq-trigger::-webkit-details-marker { display: none; }
.faq-trigger svg { width: 16px; height: 16px; color: #5C6370; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-trigger svg { transform: rotate(90deg); }
.faq-body { padding: 0 16px 16px; font-size: 14px; color: #5C6370; line-height: 1.6; }

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
@media(min-width:640px){ .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; outline: none; font-size: 14px;
}
.newsletter-form input:focus { border-color: #0B1F44; }
.newsletter-form button {
  padding: 12px 24px; background: #111; color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600; white-space: nowrap;
}
.newsletter-form button:hover { background: #333; }

/* ===== CHECKOUT ===== */
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:1024px){ .checkout-grid { grid-template-columns: 2fr 1fr; gap: 32px; } }
.form-section { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 24px; }
.form-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
@media(min-width:640px){ .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
@media(min-width:640px){ .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.form-row label { display: block; font-size: 12px; font-weight: 500; color: #5C6370; margin-bottom: 4px; }
.form-row input, .form-row select {
  width: 100%; padding: 10px 12px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; outline: none; font-size: 14px;
}
.form-row input:focus, .form-row select:focus { border-color: #0B1F44; }
.form-row input.error { border-color: #ef4444; }
.err-msg { font-size: 12px; color: #ef4444; margin-top: 4px; }
.warn-box {
  background: #fefce8; border: 1px solid #fde047;
  border-radius: 8px; padding: 12px; margin-bottom: 16px;
  display: flex; align-items: start; gap: 8px; font-size: 12px; color: #713f12;
}
.warn-box svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.us-tag { font-size: 10px; color: #5C6370; background: #eff6ff; padding: 2px 8px; border-radius: 4px; }
.checkbox-row { display: flex; align-items: start; gap: 8px; margin-bottom: 12px; cursor: pointer; }
.checkbox-row input { margin-top: 2px; }
.checkbox-row span { font-size: 12px; color: #5C6370; line-height: 1.5; }
.checkbox-row a { color: #0B1F44; text-decoration: underline; }

/* Summary */
.summary { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 24px; }
.summary-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.summary-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.summary-item .si-info { flex: 1; min-width: 0; }
.summary-item .si-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-item .si-qty { font-size: 12px; color: #5C6370; }
.summary-item .si-price { font-size: 14px; font-weight: 600; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.sum-row.total { font-size: 16px; font-weight: 600; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 12px; margin-top: 8px; }

/* ===== PRODUCT DETAIL ===== */
.pd-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width:1024px){ .pd-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.pd-img { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; }
.pd-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pd-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.pd-sku { font-size: 12px; color: #5C6370; }
.pd-name { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.pd-sub { font-size: 15px; color: #5C6370; margin-top: 4px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }
.pd-price { font-size: 28px; font-weight: 700; }
.pd-compare { font-size: 18px; color: #5C6370; text-decoration: line-through; }
.pd-stock { display: flex; align-items: center; gap: 4px; font-size: 14px; margin-top: 8px; }
.pd-desc { font-size: 14px; color: #5C6370; line-height: 1.7; margin-top: 16px; }
.pd-highlights { margin-top: 16px; }
.pd-highlights li { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #5C6370; margin-bottom: 4px; }
.pd-highlights svg { width: 16px; height: 16px; color: #16a34a; flex-shrink: 0; }
.qty-add { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.specs-table { display: grid; grid-template-columns: 1fr; gap: 0; }
@media(min-width:640px){ .specs-table { grid-template-columns: 1fr 1fr; } }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; }
.spec-label { color: #5C6370; }
.spec-value { font-weight: 500; }

/* ===== SHOP FILTERS ===== */
.shop-layout { display: flex; gap: 24px; }
.filters { width: 240px; flex-shrink: 0; display: none; }
@media(min-width:1024px){ .filters { display: block; } }
.filters-mobile-toggle { margin-bottom: 16px; }
@media(min-width:1024px){ .filters-mobile-toggle { display: none; } }
.filters.show { display: block; position: fixed; inset: 0; z-index: 55; background: #fff; padding: 24px; overflow-y: auto; }
.filter-section { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.filter-list label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #5C6370; padding: 4px 0; cursor: pointer; }
.shop-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.shop-bar select { padding: 8px 32px 8px 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; font-size: 14px; background: #fff; }

/* ===== FOOTER ===== */
.footer { background: #0B1F44; color: #fff; padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:640px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; } }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-top: 12px; }
.footer-contact { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #fff; }
.footer h3 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-newsletter input {
  width: 100%; padding: 10px 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; color: #fff; font-size: 14px; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  width: 100%; margin-top: 8px; padding: 10px;
  background: #fff; color: #0B1F44; border-radius: 8px;
  font-size: 14px; font-weight: 600;
}
.footer-newsletter button:hover { background: rgba(255,255,255,0.9); }
.trust-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
@media(min-width:1024px){ .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 20px; height: 20px; color: #93F09E; flex-shrink: 0; }
.trust-item p { font-size: 14px; font-weight: 500; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media(min-width:640px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== CHAT WIDGET ===== */
.chat-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 56px; height: 56px; border-radius: 9999px;
  background: #0B1F44; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.chat-btn:hover { background: #1a3055; }
.chat-panel {
  display: none; position: fixed; bottom: 96px; right: 24px; z-index: 80;
  width: 360px; max-width: calc(100vw - 48px); height: 480px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
  flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-header { background: #0B1F44; color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 32px; height: 32px; border-radius: 9999px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.chat-title { font-size: 14px; font-weight: 600; }
.chat-sub { font-size: 11px; color: rgba(255,255,255,0.6); }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; }
.chat-msg { display: flex; gap: 8px; margin-bottom: 12px; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg .msg-bubble { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.chat-msg.bot .msg-bubble { background: #F4F5F7; color: #111; }
.chat-msg.user .msg-bubble { background: #0B1F44; color: #fff; }
.chat-avatar-sm { width: 24px; height: 24px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.chat-avatar-sm.bot { background: rgba(11,31,68,0.1); color: #0B1F44; }
.chat-avatar-sm.user { background: rgba(147,240,158,0.3); color: #111; }
.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(0,0,0,0.08); }
.chat-input-row input { flex: 1; padding: 10px 12px; background: #F4F5F7; border-radius: 8px; border: none; outline: none; font-size: 13px; }
.chat-input-row button { width: 36px; height: 36px; border-radius: 8px; background: #0B1F44; color: #fff; display: flex; align-items: center; justify-content: center; }
.chat-input-row button:disabled { opacity: 0.4; }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2 { max-width: 600px; }
.max-w-3 { max-width: 800px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.space-y > * + * { margin-top: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.grid-2 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; }
@media(min-width:640px){ .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; }
@media(min-width:640px){ .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media(min-width:640px){ .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.pt-6 { padding-top: 24px; }
.border-t { border-top: 1px solid rgba(0,0,0,0.06); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.text-gray { color: #5C6370; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.7; }
.declined-box { background: #fff; border: 1px solid #fecaca; border-radius: 12px; padding: 32px; text-align: center; max-width: 600px; margin: 0 auto; }
.declined-box svg { width: 56px; height: 56px; color: #ef4444; margin: 0 auto 16px; }
.empty-state { text-align: center; padding: 64px 24px; background: #fff; border-radius: 12px; border: 1px solid rgba(0,0,0,0.06); }
.empty-state svg { width: 56px; height: 56px; color: #5C6370; margin: 0 auto 16px; }
.page-header { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.page-header-inner { padding: 24px 32px; }
.page-header-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }

/* SVG icons inline styling */
.s-icon { width: 16px; height: 16px; }
