/** Shopify CDN: Minification failed

Line 575:0 Comments in CSS use "/* ... */" instead of "//"
Line 1102:3 Unexpected "="
Line 1532:63 Expected "}" to go with "{"

**/
/* ============================================================
   BuyYourGadgets Theme — theme.css
   ============================================================ */

/* --- Variables --- */
:root {
  --primary: #185FA5;
  --primary-dark: #0C447C;
  --primary-light: #E6F1FB;
  --dark: #0d1b2a;
  --dark-2: #162233;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-secondary: #f4f6f9;
  --border: rgba(0,0,0,0.09);
  --border-hover: rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --header-h: 68px;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }
address { font-style: normal; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; }

/* --- Utilities --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 60px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  font-family: var(--font-body); transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border-hover); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--light:hover { background: rgba(255,255,255,0.22); }
.btn--full { width: 100%; }
.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; border-color: #e5e7eb; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar { text-align: center; padding: 9px 16px; }
.announcement-bar__text { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; margin: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.header-logo { flex-shrink: 0; }
.header-logo__text {
  font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  color: var(--primary); letter-spacing: -0.5px;
}
.header-logo__img { height: 44px; width: auto; }
.header-nav { flex: 1; }
.header-nav__list { display: flex; gap: 4px; }
.header-nav__link {
  display: block; padding: 6px 12px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav__link:hover { background: var(--bg-secondary); color: var(--text); }
.header-nav__link--sale { color: #c0392b; }
.header-nav__link--sale:hover { background: #fff5f5; color: #c0392b; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg-secondary);
}
.header-search__input {
  border: none; background: transparent; padding: 8px 12px;
  font-size: 13px; font-family: var(--font-body); width: 200px; outline: none; color: var(--text);
}
.header-search__btn {
  padding: 8px 10px; color: var(--text-muted); border-left: 1.5px solid var(--border);
  display: flex; align-items: center;
}
.header-search__btn:hover { color: var(--primary); background: var(--primary-light); }
.header-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text-muted); transition: all var(--transition); position: relative;
}
.header-icon:hover { background: var(--bg-secondary); color: var(--primary); }
.header-cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 2px; min-width: 18px; height: 18px;
  background: var(--primary); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 99px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.mobile-nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner { padding: 70px 0; }
.hero-banner__inner { display: flex; align-items: center; gap: 48px; }
.hero-banner__content { flex: 1; }
.hero-banner__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #378ADD; margin-bottom: 14px;
  padding: 5px 12px; background: rgba(55,138,221,0.12); border-radius: 20px;
}
.hero-banner__heading {
  font-size: clamp(32px, 4vw, 50px); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 16px;
}
.hero-banner__sub { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 440px; line-height: 1.7; }
.hero-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-banner__visual { flex: 0 0 420px; }
.hero-banner__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-banner__placeholder {
  width: 100%; height: 300px; border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(55,138,221,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.hero-banner__placeholder p { color: rgba(255,255,255,0.4); font-size: 13px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon { flex-shrink: 0; color: var(--primary); }
.trust-item__title { font-size: 14px; font-weight: 600; color: var(--text); }
.trust-item__sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-section { background: var(--bg); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-size: 26px; font-weight: 700; color: var(--text); }
.section-link { font-size: 14px; color: var(--primary); font-weight: 500; }
.section-link:hover { text-decoration: underline; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition); background: var(--bg);
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.category-card__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
}
.category-card__icon img { width: 32px; height: 32px; object-fit: contain; }
.category-card__label { font-size: 13px; font-weight: 600; color: var(--text); text-align: center; }

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); transition: all var(--transition); position: relative; }
.product-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card__image-link { display: block; }
.product-card__image-wrap { position: relative; padding-bottom: 100%; overflow: hidden; background: var(--bg-secondary); }
.product-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform var(--transition); }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__placeholder-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-card__badge {
  position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px;
}
.product-card__badge--sale { background: #FEE2E2; color: #991B1B; }
.product-card__badge--new { background: var(--primary-light); color: var(--primary-dark); }
.product-card__badge--sold { background: #F3F4F6; color: #6B7280; }
.product-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(24,95,165,0.9); display: flex; align-items: center; justify-content: center;
  padding: 10px; transform: translateY(100%); transition: transform var(--transition);
}
.product-card:hover .product-card__overlay { transform: translateY(0); }
.product-card__quick-view { color: #fff; font-size: 13px; font-weight: 600; }
.product-card__info { padding: 14px; }
.product-card__brand { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.product-card__name { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--primary); }
.product-card__price-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-card__price { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font-heading); }
.product-card__price--sale { color: #DC2626; }
.product-card__price--compare { font-size: 13px; font-weight: 400; color: var(--text-light); text-decoration: line-through; }
.product-card__atc {
  width: 100%; padding: 9px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  background: var(--primary-light); color: var(--primary);
  transition: all var(--transition); font-family: var(--font-body);
}
.product-card__atc:hover { background: var(--primary); color: #fff; }
.product-card__atc--disabled { background: #f3f4f6; color: #9ca3af; cursor: not-allowed; }
.featured-collection__cta { text-align: center; margin-top: 36px; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner__inner {
  border-radius: var(--radius-lg); padding: 48px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.promo-banner__heading { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.promo-banner__sub { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 420px; }
.promo-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--primary); border: 3px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promo-circle__discount { font-size: 18px; font-weight: 800; color: #fff; font-family: var(--font-heading); line-height: 1.2; text-align: center; }
.promo-circle__label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 2px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.breadcrumb { margin-bottom: 28px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--text-muted); }
.breadcrumb ol li:not(:last-child)::after { content: '/'; margin-left: 6px; }
.breadcrumb ol li a:hover { color: var(--primary); }
.product-page__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery__main { border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); margin-bottom: 12px; }
.product-gallery__img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 24px; }
.product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-gallery__thumb-btn { width: 70px; height: 70px; border-radius: var(--radius-sm); border: 2px solid var(--border); overflow: hidden; background: var(--bg-secondary); cursor: pointer; transition: border-color var(--transition); padding: 0; }
.product-gallery__thumb-btn.active, .product-gallery__thumb-btn:hover { border-color: var(--primary); }
.product-gallery__thumb-btn img { width: 100%; height: 100%; object-fit: contain; }
.product-vendor { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.product-title { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.product-price-block { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.product-price { font-size: 26px; font-weight: 700; font-family: var(--font-heading); color: var(--text); }
.product-price--sale { color: #DC2626; }
.product-price--compare { font-size: 18px; font-weight: 400; color: var(--text-light); text-decoration: line-through; }
.product-badge { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.product-badge--sale { background: #FEE2E2; color: #991B1B; }
.product-option { margin-bottom: 16px; }
.product-option__label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.product-option__select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; background: var(--bg); color: var(--text); appearance: none; cursor: pointer; }
.product-option__select:focus { outline: none; border-color: var(--primary); }
.product-variant-select { display: none; }
.product-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.product-qty-row label { font-size: 14px; font-weight: 600; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 500; background: var(--bg-secondary); color: var(--text); transition: background var(--transition); border: none; cursor: pointer; }
.qty-btn:hover { background: var(--primary-light); color: var(--primary); }
.qty-input { width: 52px; height: 38px; text-align: center; border: none; font-size: 15px; font-weight: 600; font-family: var(--font-body); outline: none; color: var(--text); }
.add-to-cart-btn { margin-bottom: 16px; }
.product-trust-mini { background: var(--bg-secondary); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 24px; }
.product-trust-mini p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.product-trust-mini p:last-child { margin-bottom: 0; }
.product-description { border-top: 1px solid var(--border); padding-top: 24px; }
.product-description__title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.product-description p { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-page__header { margin-bottom: 28px; }
.collection-page__title { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.collection-page__desc { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; }
.collection-page__count { font-size: 13px; color: var(--text-light); }
.collection-toolbar { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 24px; }
.collection-sort { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.collection-sort select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; background: var(--bg); color: var(--text); cursor: pointer; }
.collection-empty { text-align: center; padding: 60px 20px; }
.collection-empty p { color: var(--text-muted); margin-bottom: 16px; }
.pagination { display: flex; justify-content: center; margin-top: 40px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page__title { font-size: 28px; font-weight: 800; margin-bottom: 32px; }
.cart-page__empty { text-align: center; padding: 60px 20px; }
.cart-page__empty p { color: var(--text-muted); margin-bottom: 16px; }
.cart-page__layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); padding: 0 0 12px; border-bottom: 1.5px solid var(--border); }
.cart-table__row { border-bottom: 1px solid var(--border); }
.cart-table td { padding: 16px 0; vertical-align: middle; }
.cart-table__product { display: flex; align-items: center; gap: 16px; }
.cart-table__img { width: 72px; height: 72px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg-secondary); flex-shrink: 0; padding: 4px; }
.cart-table__name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cart-table__name:hover { color: var(--primary); }
.cart-table__variant { font-size: 12px; color: var(--text-muted); }
.cart-table__price { font-size: 15px; font-weight: 600; }
.cart-qty-input { width: 60px; padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); text-align: center; font-size: 14px; font-family: var(--font-body); }
.cart-table__total { font-size: 15px; font-weight: 700; }
.cart-table__remove { font-size: 16px; color: var(--text-light); transition: color var(--transition); }
.cart-table__remove:hover { color: #DC2626; }
.cart-table__actions { margin-top: 16px; display: flex; justify-content: flex-end; }
.cart-summary { background: var(--bg-secondary); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); }
.cart-summary__title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 14px; }
.cart-summary__row--muted { color: var(--text-muted); }
.cart-summary__divider { border-top: 1.5px solid var(--border); margin: 16px 0; }
.cart-summary__note { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.cart-payment-icons { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.cart-payment-icons__label { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-payment-icons .payment-icon { height: 26px; display: inline-block; margin: 0 4px 4px 0; border-radius: 3px; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 100vw;
  background: var(--bg); box-shadow: var(--shadow-lg); z-index: 201;
  transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer__title { font-size: 18px; font-weight: 700; }
.cart-drawer__close { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-muted); }
.cart-drawer__close:hover { background: #fee2e2; color: #DC2626; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 40px 0; }
.cart-empty p { color: var(--text-muted); margin-bottom: 16px; }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item__image { width: 64px; height: 64px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg-secondary); padding: 4px; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cart-item__variant { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.cart-item__price { font-size: 14px; font-weight: 700; color: var(--text); }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { font-size: 16px; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--text); text-decoration: none; }
.qty-btn:hover { background: var(--primary-light); color: var(--primary); }
.cart-drawer__footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cart-shipping-note { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.85); margin-top: 60px; }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: #fff; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-address p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-address a { color: rgba(255,255,255,0.7); }
.footer-address a:hover { color: #fff; }
.footer-col__title { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.07); padding: 16px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-payment { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.footer-payment .payment-icon { height: 24px; border-radius: 3px; }

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content__inner { max-width: 800px; }
.page-content__inner h1 { font-size: 32px; margin-bottom: 24px; }
.page-content__inner p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-banner__visual { flex: 0 0 320px; }
}

@media (max-width: 768px) {
  .header-nav, .header-search { display: none; }
  .mobile-nav-toggle { display: flex; }
  .header-nav.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: var(--header-h);
    background: #fff; padding: 24px; z-index: 99; border-top: 1px solid var(--border);
  }
  .header-nav__list { flex-direction: column; gap: 4px; }
  .hero-banner__inner { flex-direction: column; }
  .hero-banner__visual { display: none; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--border); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page__layout { grid-template-columns: 1fr; }
  .cart-page__layout { grid-template-columns: 1fr; }
  .promo-banner__inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-banner { padding: 40px 0; }
  .hero-banner__heading { font-size: 28px; }
}

/* --- Full-width hero banner (asset image mode) --- */
.hero-banner--asset { padding: 0; line-height: 0; }
.hero-banner__asset-link { display: block; }
.hero-banner__asset-img { width: 100%; height: auto; display: block; max-height: 420px; object-fit: cover; }

/* --- Logo sizing in header --- */
.header-logo__img { height: 52px; width: auto; }

@media (max-width: 768px) {
  .hero-banner__asset-img { max-height: 220px; }
  .header-logo__img { height: 40px; }
}

/* --- 7-column category grid & sub-label --- */
.category-grid { grid-template-columns: repeat(7, 1fr); }
.category-card { position: relative; overflow: hidden; }
.category-card::before { content: ''; position: absolute; inset: 0; background: var(--primary); opacity: 0; transition: opacity var(--transition); border-radius: var(--radius); }
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.category-card:hover::before { opacity: .04; }
.category-card__icon { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition); }
.category-card:hover .category-card__icon { transform: scale(1.08); }
.category-card__sub { font-size: 11px; color: var(--text-light); margin-top: 1px; z-index: 1; }
.category-card__label { z-index: 1; }

@media (max-width: 1100px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .category-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========= APPLE SPOTLIGHT ========= */
.apple-spotlight { background: linear-gradient(135deg,#1d1d1f 0%,#2d2d2f 100%); padding: 48px 0; }
.apple-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.apple-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px 12px 16px; text-align: center; transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.apple-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
.apple-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.apple-name { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.apple-count { font-size: 11px; color: rgba(255,255,255,.4); }

/* ========= UPDATED CATEGORIES ========= */
.category-grid { grid-template-columns: repeat(5, 1fr) !important; }
.category-card__sub { font-size: 11px; color: var(--text-light); margin-top: 1px; z-index: 1; }

/* ========= FOOTER APPLE COLUMN ========= */
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }

@media (max-width: 1100px) { .apple-grid { grid-template-columns: repeat(4,1fr); } .category-grid { grid-template-columns: repeat(4,1fr) !important; } .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 768px)  { .apple-grid { grid-template-columns: repeat(3,1fr); } .category-grid { grid-template-columns: repeat(3,1fr) !important; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .apple-grid { grid-template-columns: repeat(2,1fr); } .category-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ========= POLICY PAGES ========= */
.policy-page__wrap { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.policy-page__sidebar { position: sticky; top: calc(var(--header-h) + 20px); background: var(--bg-secondary); border-radius: var(--radius); border: 1.5px solid var(--border); padding: 24px; }
.policy-sidebar__title { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--text-light); margin-bottom: 14px; }
.policy-sidebar__links { margin-bottom: 28px; }
.policy-sidebar__links li { margin-bottom: 6px; }
.policy-sidebar__links a { font-size: 14px; color: var(--text-muted); padding: 7px 10px; border-radius: var(--radius-sm); display: block; transition: all var(--transition); }
.policy-sidebar__links a:hover { background: var(--primary-light); color: var(--primary); }
.policy-sidebar__contact h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.policy-sidebar__contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.policy-sidebar__contact a { color: var(--primary); }
.policy-sidebar__contact a:hover { text-decoration: underline; }
.policy-page__title { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.policy-page__updated { font-size: 13px; color: var(--text-light); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1.5px solid var(--border); }
.policy-page__body { max-width: 760px; }
.rte h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.rte h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 24px 0 10px; }
.rte p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.rte ul, .rte ol { padding-left: 20px; margin-bottom: 16px; }
.rte li { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 6px; }
.rte ul li { list-style: disc; }
.rte ol li { list-style: decimal; }
.rte a { color: var(--primary); text-decoration: underline; }
.rte strong { font-weight: 600; color: var(--text); }
.rte hr { border: none; border-top: 1.5px solid var(--border); margin: 28px 0; }
.rte blockquote { border-left: 3px solid var(--primary); padding: 12px 20px; background: var(--bg-secondary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social__link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer-social__link:hover { background: var(--primary); color: #fff; }
@media (max-width: 900px) { .policy-page__wrap { grid-template-columns: 1fr; } .policy-page__sidebar { position: static; } }

/* ========= UPDATED PROMO BANNER ========= */
.promo-banner__inner { border-radius: 18px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.promo-banner__eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: #6db3f5; letter-spacing: .5px; margin-bottom: 12px; }
.promo-banner__heading { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.promo-banner__sub { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; max-width: 440px; }
.promo-banner__perks { display: flex; flex-direction: column; gap: 7px; }
.promo-perk { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
.promo-banner__badges { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.promo-badge-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 14px; min-width: 220px; transition: background var(--transition); }
.promo-badge-card:hover { background: rgba(255,255,255,.12); }
.promo-badge-card__icon { font-size: 24px; flex-shrink: 0; }
.promo-badge-card__title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.promo-badge-card__sub { font-size: 12px; color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .promo-banner__inner { flex-direction: column; text-align: center; padding: 36px 28px; } .promo-banner__badges { flex-direction: row; flex-wrap: wrap; justify-content: center; } .promo-banner__perks { align-items: center; } .promo-banner__sub { max-width: 100%; } }
@media (max-width: 480px) { .promo-badge-card { min-width: 160px; } }

/* ========= CONTACT PAGE ========= */
.contact-hero { text-align: center; margin-bottom: 40px; }
.contact-hero__title { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.contact-hero__sub { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.contact-main { background: var(--bg); border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.contact-tabs { display: flex; gap: 4px; padding: 12px; background: var(--bg-secondary); border-bottom: 1.5px solid var(--border); }
.ctab { flex: 1; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--text-muted); font-family: var(--font-body); transition: all var(--transition); }
.ctab.active { background: var(--bg); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.contact-panel { display: none; padding: 24px; }
.contact-panel.active { display: block; }
.contact-info-box { background: var(--primary-light); border: 1px solid rgba(26,111,196,.2); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: var(--primary-dark); margin-bottom: 18px; line-height: 1.6; }
.contact-warn-box { background: #fef3c7; border: 1px solid rgba(217,119,6,.2); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: #92400e; margin-bottom: 18px; line-height: 1.6; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fgroup { margin-bottom: 14px; }
.fgroup label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 6px; }
.fgroup input, .fgroup select, .fgroup textarea { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(0,0,0,.15); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); color: var(--text); background: var(--bg); outline: none; transition: border-color var(--transition); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--primary); }
.fgroup textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.fgroup select { appearance: none; cursor: pointer; }
.form-hint { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--bg); border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; }
.cinfo-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cinfo-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--text-light); margin-bottom: 2px; }
.cinfo-value { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.5; }
.cinfo-value a { color: var(--primary); }
.contact-hours-card { background: var(--bg); border-radius: var(--radius); border: 1.5px solid var(--border); padding: 18px; }
.contact-hours-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--text-light); margin-bottom: 14px; }
.chour { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.chour:last-child { border-bottom: none; }
.contact-map-btn { display: block; text-align: center; background: var(--dark); color: #fff; padding: 13px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; transition: background var(--transition); }
.contact-map-btn:hover { background: var(--primary); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .form-row-2 { grid-template-columns: 1fr; } }
//* ============================================
   DARK THEME — SMOOTH & SEXY v2 🌑✨
   ============================================ */

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1424;
  --bg-card: rgba(26, 34, 54, 0.6);
  --bg-card-solid: #1a2236;
  --bg-elevated: #232c44;
  --text-primary: #ffffff;
  --text-secondary: #b8c1d6;
  --text-muted: #7a85a3;
  --accent: #00d4ff;
  --accent-hover: #33dfff;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --accent-soft: rgba(0, 212, 255, 0.1);
  --purple-glow: rgba(120, 80, 255, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 212, 255, 0.4);
  --sale: #ff4d6d;
  --success: #00e676;
}

/* SMOOTH GRADIENT BACKGROUND */
body {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(120, 80, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #0f1424 50%, #0a0e1a 100%) !important;
  background-attachment: fixed !important;
  color: var(--text-primary) !important;
  min-height: 100vh;
}

/* HEADER - smoother glass */
header, .header, .site-header {
  background: rgba(10, 14, 26, 0.7) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* TEXT COLORS */
h1, h2, h3, h4, h5, h6, p, span, label, li {
  color: var(--text-primary);
}

a {
  color: var(--text-primary);
  transition: color 0.25s ease;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

nav a, .nav a, header a {
  color: var(--text-primary) !important;
}

nav a:hover, .nav a:hover, header a:hover {
  color: var(--accent) !important;
}

/* SECTION SPACING & CENTERING */
section,
.section-padding,
main > div,
main > section {
  padding: 60px 20px;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION HEADERS - centered & glowing */
h2, .section-title,
.collection-page__title,
[class*="title"]:not(.product-card__name) {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle,
.section-desc,
p[class*="desc"] {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* CATEGORY ICON BOXES - dark themed */
.category-card,
[class*="category"] > a,
.category-grid > * {
  background: var(--bg-card) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.category-card:hover,
[class*="category"] > a:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover) !important;
  box-shadow: 0 12px 40px var(--accent-glow);
  background: rgba(26, 34, 54, 0.8) !important;
}

.category-card span,
.category-card p,
[class*="category"] span {
  color: var(--text-primary) !important;
  font-weight: 600;
}

/* APPLE PRODUCT CIRCULAR ICONS */
[class*="apple"] .category-card,
[class*="apple-product"] {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}

/* ICONS INSIDE CATEGORY CARDS */
.category-card svg,
[class*="category"] svg,
[class*="icon"] svg {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.category-card:hover svg,
[class*="category"] > a:hover svg {
  filter: brightness(0) saturate(100%) invert(67%) sepia(94%) saturate(2200%) hue-rotate(155deg);
  opacity: 1;
}

/* PRODUCT CARDS */
.product-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px var(--accent-glow);
  border-color: var(--border-hover);
}

.product-card__image-wrap {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.product-card__img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__placeholder-img {
  background: linear-gradient(135deg, #1a2236 0%, #232c44 100%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-card__info {
  padding: 18px;
}

.product-card__brand {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.product-card__name {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.product-card__name a {
  color: var(--text-primary);
}

.product-card__name a:hover {
  color: var(--accent);
}

.product-card__price {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 20px var(--accent-glow);
}

.product-card__price--compare {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 14px;
  text-shadow: none;
  margin-left: 8px;
  font-weight: 400;
}

/* BADGES */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.product-card__badge--sale {
  background: var(--sale);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.5);
}

.product-card__badge--new {
  background: var(--success);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.5);
}

.product-card__badge--sold {
  background: rgba(0, 0, 0, 0.85);
  color: white;
}

/* BUTTONS */
.product-card__atc,
.btn,
.btn--primary,
button[type="submit"]:not(.search-page__submit) {
  background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%) !important;
  color: #000 !important;
  border: none !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.product-card__atc:hover,
.btn:hover,
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #00aaff 100%) !important;
}

.product-card__atc--disabled,
button:disabled {
  background: var(--bg-elevated) !important;
  color: var(--text-muted) !important;
  cursor: not-allowed;
  box-shadow: none !important;
}

/* BROWSE ALL PRODUCTS - the big bar */
a[href*="all"]:not(.product-card *),
.browse-all,
[class*="browse"] {
  border-radius: 14px !important;
  padding: 18px 30px !important;
  font-size: 14px;
  letter-spacing: 2px;
}

/* QUICK VIEW OVERLAY */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__quick-view {
  background: var(--accent);
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* PAGE HEADERS */
.search-page__title,
h1 {
  color: var(--text-primary);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* FORMS / INPUTS */
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background: var(--bg-card-solid) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none !important;
}

input::placeholder {
  color: var(--text-muted);
}

/* SEARCH FORM */
.search-page__form {
  display: flex;
  gap: 10px;
  margin: 20px 0 30px;
  max-width: 600px;
}

.search-page__submit {
  background: var(--accent) !important;
  color: #000 !important;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.search-page__submit:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 8px 25px var(--accent-glow);
  transform: translateY(-2px);
}

/* FOOTER */
footer, .footer, .site-footer {
  background: linear-gradient(180deg, transparent 0%, #060912 100%) !important;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 60px 20px 30px;
  margin-top: 60px;
}

footer h4, footer h3, footer .footer-title {
  color: var(--text-primary);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer a {
  color: var(--text-secondary);
  display: block;
  padding: 4px 0;
}

footer a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* SELECT DROPDOWNS */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%2300d4ff'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

::selection {
  background: var(--accent);
  color: #000;
}

/* TRUST BAR / FEATURE STRIPS */
[class*="trust"],
[class*="feature"]:not(.featured-collection) {
  background: rgba(15, 20, 36, 0.6) !important;
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* SMOOTH EVERYTHING */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease, box-shadow 0.3s ease;
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
  h1, .search-page__title {
    font-size: 28px;
  }

  h2, .section-title {
    font-size: 22px;
  }

  section, .section-padding {
    padding: 40px 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card__info {
    padding: 12px;
  }
}* ============================================
   DARK THEME — NICE & SEXY MODE 🌑
   ============================================ */

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-elevated: #232c44;
  --text-primary: #ffffff;
  --text-secondary: #b8c1d6;
  --text-muted: #6b7591;
  --accent: #00d4ff;
  --accent-hover: #33dfff;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.5);
  --sale: #ff4d6d;
  --success: #00e676;
}

/* GLOBAL BACKGROUND */
body {
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(120, 0, 255, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* HEADER - glass effect */
header, .header, .site-header {
  background: rgba(10, 14, 26, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border) !important;
}

/* TEXT COLORS */
h1, h2, h3, h4, h5, h6,
p, span, a, label, li {
  color: var(--text-primary);
}

a {
  color: var(--text-primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* NAV LINKS */
nav a, .nav a, header a {
  color: var(--text-primary) !important;
}

nav a:hover, .nav a:hover, header a:hover {
  color: var(--accent) !important;
}

/* SEARCH BAR */
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none !important;
}

input::placeholder {
  color: var(--text-muted);
}

/* PRODUCT CARDS - the sexy part */
.product-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px var(--accent-glow);
  border-color: var(--border-hover);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__image-wrap {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.product-card__img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.08);
}

.product-card__placeholder-img {
  background: var(--bg-elevated);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card__info {
  padding: 18px;
}

.product-card__brand {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.product-card__name {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.product-card__name a {
  color: var(--text-primary);
}

.product-card__name a:hover {
  color: var(--accent);
}

.product-card__price {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 20px var(--accent-glow);
}

.product-card__price--compare {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 14px;
  text-shadow: none;
  margin-left: 8px;
  font-weight: 400;
}

/* BADGES */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__badge--sale {
  background: var(--sale);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.4);
}

.product-card__badge--new {
  background: var(--success);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4);
}

.product-card__badge--sold {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  backdrop-filter: blur(10px);
}

/* ADD TO CART BUTTON */
.product-card__atc,
.btn,
.btn--primary,
button[type="submit"] {
  background: linear-gradient(135deg, var(--accent) 0%, #0099ff 100%) !important;
  color: #000 !important;
  border: none !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.product-card__atc:hover,
.btn:hover,
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #00aaff 100%) !important;
}

.product-card__atc--disabled,
button:disabled {
  background: var(--bg-elevated) !important;
  color: var(--text-muted) !important;
  cursor: not-allowed;
  box-shadow: none !important;
}

.product-card__atc--disabled:hover {
  transform: none;
  box-shadow: none !important;
}

/* QUICK VIEW OVERLAY */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__quick-view {
  background: var(--accent);
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* PAGE HEADERS */
.search-page__title,
.collection-page__title,
h1 {
  color: var(--text-primary);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.search-page__count,
.collection-page__count {
  color: var(--text-secondary);
  font-size: 14px;
}

/* FORMS */
.search-page__form {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.search-page__input {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
}

.search-page__submit {
  background: var(--accent) !important;
  color: #000 !important;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.search-page__submit:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 8px 20px var(--accent-glow);
  transform: translateY(-2px);
}

/* FOOTER */
footer, .footer, .site-footer {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

footer h4, footer h3, footer .footer-title {
  color: var(--text-primary);
}

footer a {
  color: var(--text-secondary);
}

footer a:hover {
  color: var(--accent);
}

/* PRODUCT GRID SPACING */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* CONTAINERS */
.container, .section-padding {
  background: transparent;
}

/* CART */
.cart, .cart-page, main {
  color: var(--text-primary);
}

/* SELECT DROPDOWNS */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%2300d4ff'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* SELECTION */
::selection {
  background: var(--accent);
  color: #000;
}

/* SMOOTH PAGE LOAD */
* {
  transition: background-color 0.3s ease, border-color 0.3s ea 