/* ═══════════════════════════════════════════
   OLX TIME — Global Stylesheet
   Dark Luxury Theme
   ═══════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --bg:        #0D1117;
  --bg-card:   #161B22;
  --bg-hover:  #1C2230;
  --gold:      #C9A84C;
  --gold-dark: #A88A3A;
  --text:      #E6EDF3;
  --text-muted:#8B949E;
  --border:    #30363D;
  --product-bg:#F5F5F5;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --transition:0.2s ease;
  --max-w:     1280px;
}

/* ── Scrollbars ── */
html, .filter-sidebar {
  scrollbar-width: thin;
  scrollbar-color: #2D333B var(--bg);
}
html::-webkit-scrollbar,
.filter-sidebar::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track,
.filter-sidebar::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb,
.filter-sidebar::-webkit-scrollbar-thumb { background: #2D333B; border-radius: 3px; }
html::-webkit-scrollbar-thumb:hover,
.filter-sidebar::-webkit-scrollbar-thumb:hover { background: #3D444D; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-contact { display: inline-flex; }
@media (max-width: 768px) { .nav-contact { display: none; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}
.cart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1117 0%, #161B22 60%, #0D1117 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  opacity: 0.15;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════
   BRAND GRID (Home)
   ═══════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.brand-card:hover {
  border-color: var(--gold);
  background: var(--bg-hover);
  transform: translateY(-2px);
}
.brand-card-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.brand-card-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-card-img {
  background: var(--product-bg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex: 1;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.product-card .btn-add {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.product-card .btn-add:hover {
  background: var(--gold-dark);
}

/* Out of stock */
.product-card.out-of-stock .product-card-img::after {
  content: 'OUT OF STOCK';
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.product-card.out-of-stock .btn-add {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════
   SHOP PAGE LAYOUT
   ═══════════════════════════════════════════ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0 80px;
}

/* Filter Sidebar */
.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
  height: calc(100vh - 108px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.filter-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.filter-clear {
  font-size: 12px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
.filter-clear:hover { text-decoration: underline; }

.filter-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.filter-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.filter-option:hover { color: var(--text); }
.filter-option input[type="checkbox"] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.filter-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.filter-option input[type="checkbox"]:checked + span { color: var(--text); }

/* Price range */
.price-range-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-range-inputs input {
  width: 80px;
  padding: 7px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
}
.price-range-inputs span { color: var(--text-muted); font-size: 13px; }

/* Shop header */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-results {
  font-size: 14px;
  color: var(--text-muted);
}
.shop-results strong { color: var(--text); }
.shop-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
}
.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  width: 180px;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box svg { color: var(--text-muted); }
.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--text);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}
.sort-select option { background: var(--bg-card); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   BRAND SELECTOR OVERLAY
   ═══════════════════════════════════════════ */
.brand-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.brand-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.brand-overlay-panel {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 800px;
  padding: 32px 32px 48px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.brand-overlay.open .brand-overlay-panel {
  transform: translateY(0);
}
.brand-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.brand-overlay-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand-overlay-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.brand-overlay-close:hover { color: var(--text); }
.brand-overlay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.brand-overlay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.brand-overlay-card:hover,
.brand-overlay-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.brand-overlay-card-name {
  font-size: 13px;
  font-weight: 600;
}
.brand-overlay-card-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════ */
.product-detail {
  padding: 48px 0 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-img-wrap {
  background: var(--product-bg);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-detail-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}
.product-specs-table {
  width: 100%;
  margin-bottom: 28px;
  border-collapse: collapse;
}
.product-specs-table tr {
  border-bottom: 1px solid var(--border);
}
.product-specs-table tr:last-child { border-bottom: none; }
.product-specs-table td {
  padding: 10px 0;
  font-size: 14px;
}
.product-specs-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}
.product-specs-table td:last-child {
  font-weight: 500;
}
.product-detail-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-detail-actions {
  display: flex;
  gap: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════ */
.cart-page {
  padding: 48px 0 80px;
}
.cart-page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.cart-item-img {
  background: var(--product-bg);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.cart-item-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-specs { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-right { text-align: right; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #ff4d4f; }
.cart-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text); }

/* Cart summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.cart-summary-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}
.cart-summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}
.cart-summary-row.total span:last-child { color: var(--gold); }
.cart-summary-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════ */
.checkout-page {
  padding: 48px 0 80px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.checkout-title { font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.form-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238B949E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--bg-card); }
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  min-height: 80px;
}
.form-textarea:focus { border-color: var(--gold); }

/* Payment methods */
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover { border-color: var(--gold); }
.payment-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.payment-option input[type="radio"] { display: none; }
.payment-radio {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition);
}
.payment-option.selected .payment-radio {
  border-color: var(--gold);
}
.payment-option.selected .payment-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.payment-option-icon { font-size: 20px; }
.payment-option-info { flex: 1; }
.payment-option-name { font-size: 14px; font-weight: 600; }
.payment-option-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Order summary sidebar */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.order-summary-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.order-summary-items { margin-bottom: 16px; }
.order-summary-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.order-summary-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.order-summary-item-img {
  width: 50px;
  height: 50px;
  background: var(--product-bg);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.order-summary-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.order-summary-item-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.order-summary-item-qty { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.order-summary-item-price { font-size: 14px; font-weight: 700; color: var(--gold); margin-left: auto; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-page { padding: 48px 0 80px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.contact-info-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}
.contact-link:hover { border-color: var(--gold); transform: translateX(3px); }
.contact-link-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-link-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.contact-link-value { font-size: 14px; font-weight: 500; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }

/* ═══════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════ */
.faq-page { padding: 48px 0 80px; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.faq-header p { color: var(--text-muted); font-size: 16px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════
   WHATSAPP BUBBLE
   ═══════════════════════════════════════════ */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-bubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-bubble a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-bubble svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-bubble:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: toastIn 0.25s ease forwards;
  max-width: 280px;
}
.toast.success { border-left: 3px solid #3fb950; }
.toast.error { border-left: 3px solid #f85149; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */
.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-green { background: rgba(63,185,80,0.15); color: #3fb950; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 40px; }
  .cart-btn { padding: 6px 12px; font-size: 13px; }
  .btn-sm { padding: 6px 12px; font-size: 12px; }
  .nav-right { gap: 10px; }

  /* Hero */
  .hero { min-height: 70vh; align-items: flex-start; padding-top: 40px; }
  .hero-image { display: none; }
  .hero h1 { font-size: 32px; }

  /* Desktop filter: reset independent scroll on mobile */
  .filter-sidebar { height: auto; overflow-y: unset; overscroll-behavior: unset; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; position: fixed; inset: 0; z-index: 150; border-radius: 0; overflow-y: auto; top: 0; }
  .filter-sidebar.mobile-open { display: block; }
  .filter-toggle-btn { display: flex; }

  /* Brand overlay */
  .brand-overlay-panel { padding: 24px 20px 40px; }
  .brand-overlay-grid { grid-template-columns: 1fr 1fr; }

  /* Product detail */
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-right { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }

  /* Checkout */
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Trust bar */
  .trust-items { gap: 24px; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

  /* Brand grid */
  .brand-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card-body { padding: 12px; }
  .product-card-price { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brand-grid { grid-template-columns: 1fr 1fr 1fr; }
  .brand-card { padding: 20px 12px; }
}
