/** Shopify CDN: Minification failed

Line 435:1 Expected identifier but found "."
Line 483:0 Unexpected "`"

**/
/* ================================
   THE BEST MUSIC — THEME CSS
   Dark Rock Music Store
   Brand: #BC7A10 (gold), #0D0D0D (bg)
   ================================ */

/* -------- RESET & VARIABLES -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #BC7A10;
  --gold-light: #D4921A;
  --gold-dark: #9A6408;
  --bg: #0D0D0D;
  --bg-card: #1A1A1A;
  --bg-mid: #141414;
  --border: #2A2A2A;
  --text: #FFFFFF;
  --text-muted: #999999;
  --text-dim: #666666;
  --red: #E53935;
  --green: #43A047;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
  --transition: 0.2s ease;
  --max-width: 1320px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--large { padding: 16px 32px; font-size: 1.1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--disabled { background: var(--bg-card); color: var(--text-dim); border-color: var(--border); cursor: not-allowed; opacity: 0.6; }

/* -------- ANNOUNCEMENT BAR -------- */
.announcement-bar {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* -------- HEADER -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.header-top { padding: 12px 0; }

.header-top__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo__img { max-height: 48px; width: auto; }

.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-the {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}
.logo-best {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-music {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.5rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* Search */
.header-search { flex: 1; max-width: 520px; }
.header-search__form { display: flex; position: relative; }
.header-search__input {
  width: 100%;
  padding: 10px 16px;
  padding-right: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.header-search__input:focus { outline: none; border-color: var(--gold); }
.header-search__input::placeholder { color: var(--text-dim); }
.header-search__btn {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44px;
  background: var(--gold);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.header-search__btn:hover { background: var(--gold-light); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--text);
  transition: color var(--transition);
  font-size: 0.7rem;
}
.header-action:hover { color: var(--gold); }
.header-action__label { font-size: 0.7rem; color: var(--text-muted); }

.cart-icon-wrap { position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header-mobile-toggle { display: none; color: var(--text); padding: 8px; }

/* -------- NAVIGATION -------- */
.header-nav {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1001;
}

.header-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: clip; /* clip não cria formatação de bloco — não clipa dropdown */
  scrollbar-width: none;
}
.header-nav__inner::-webkit-scrollbar { display: none; }

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link--active { color: var(--text); }
.nav-link--highlight { color: var(--gold) !important; }

.nav-item--has-dropdown {
  position: relative;
}

/* Seta indicadora */
.nav-item--has-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-item--has-dropdown:hover > .nav-link::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #111;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  padding: 6px 0;
}
.nav-item--has-dropdown:hover > .nav-link { color: var(--gold); }
.nav-item--has-dropdown:hover .nav-dropdown { display: block; }

/* Pequena ponte invisível para não fechar ao mover o mouse */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown__link {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  border-left: 2px solid transparent;
}
.nav-dropdown__link:hover {
  color: var(--gold);
  background: rgba(188,122,16,0.08);
  padding-left: 24px;
  border-left-color: var(--gold);
}

/* Mobile Sub-menu */
.mobile-menu__item { border-bottom: 1px solid var(--border); }
.mobile-menu__item--has-children .mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}
.mobile-menu__arrow {
  font-size: 0.8rem;
  transition: transform 0.2s;
  opacity: 0.6;
}
.mobile-menu__item--has-children.is-open .mobile-menu__arrow { transform: rotate(180deg); opacity: 1; }
.mobile-menu__sub {
  display: none;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
}
.mobile-menu__item--has-children.is-open .mobile-menu__sub { display: block; }
.mobile-menu__sublink {
  display: block;
  padding: 10px 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
  border-left: 2px solid transparent;
}
.mobile-menu__sublink:hover { color: var(--gold); border-left-color: var(--gold); }
.mobile-menu__sublink--all { color: var(--gold); font-size: 0.8rem; opacity: 0.8; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: -100%;
  width: 85%; max-width: 340px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2000;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { left: 0; }
.mobile-menu__inner { padding: 20px; }
.mobile-menu__search { margin-bottom: 24px; }
.mobile-menu__search form { display: flex; gap: 8px; }
.mobile-menu__search input {
  flex: 1; padding: 10px 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
}
.mobile-menu__search button { background: var(--gold); color: #000; padding: 10px 14px; border-radius: var(--radius); }
.mobile-menu__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--gold); }

/* -------- HERO BANNER -------- */
.hero-banner {
  position: relative;
  aspect-ratio: 2 / 1;
  max-height: 850px;
  min-height: 400px;
  background-color: var(--bg-mid);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100vw;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: stretch;
}

..hero-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  white-space: pre-line;
}

.hero-title--highlight {
  color: var(--gold);
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.7;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: absolute;
  left: 40px;
  top: 80%; /* posição alinhada ao retângulo abaixo dos CTAs */
}
```

.hero-image-wrap { flex-shrink: 0; max-width: 420px; }
.hero-image { width: 100%; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6)); }

/* -------- TRUST BADGES -------- */
.trust-badges {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-badges__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}

.trust-badge__icon { color: var(--gold); flex-shrink: 0; }

.trust-badge__text {
  display: flex;
  flex-direction: column;
}
.trust-badge__text strong { font-size: 0.85rem; color: var(--text); }
.trust-badge__text span { font-size: 0.75rem; color: var(--text-muted); }

/* -------- SECTION HEADERS -------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.section-title--highlight { color: var(--gold); }

.section-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.section-link:hover { color: var(--gold); border-color: var(--gold); }

/* -------- BANDS SECTION -------- */
.bands-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.bands-carousel { position: relative; overflow: hidden; }

.bands-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}

.band-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 130px;
  padding: 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
}
.band-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(188,122,16,0.15);
}

.band-card__img-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.band-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.band-card__placeholder {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}

.band-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--text-muted);
  transition: color var(--transition);
}
.band-card:hover .band-card__name { color: var(--gold); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.carousel-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* -------- PRODUCT GRID -------- */
.featured-collection { padding: 48px 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* -------- PRODUCT CARD -------- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(188,122,16,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.product-card__link { display: flex; flex-direction: column; flex: 1; }

.product-card__img-wrap {
  position: relative;
  padding-top: 100%;
  background: var(--bg);
  overflow: hidden;
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--transition), transform 0.4s ease;
}
.product-card__img--hover {
  opacity: 0;
  position: absolute;
  inset: 0;
}
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img:not(.product-card__img--hover) { opacity: 0; }

.product-card__no-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

/* Badges */
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.product-badge--sale { background: var(--red); color: #fff; }
.product-badge--new { background: var(--gold); color: #000; }
.product-badge--best { background: var(--bg-card); border: 1px solid var(--gold); color: var(--gold); }

.product-card__info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  transition: color var(--transition);
}
.product-card:hover .product-card__title { color: var(--gold); }
.product-card__vendor { font-size: 0.75rem; color: var(--text-muted); }

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.product-card__prices { display: flex; flex-direction: column; gap: 2px; }
.product-card__compare-price { font-size: 0.75rem; color: var(--text-dim); text-decoration: line-through; }
.product-card__price { font-size: 1rem; font-weight: 700; color: var(--gold); }

.product-card__actions { padding: 0 14px 14px; }

.btn-add-to-cart {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-left: auto;
}
.btn-add-to-cart:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* -------- COLLECTION PAGE -------- */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--text-dim); }

.collection-page { padding-bottom: 60px; }

.collection-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding-top: 32px;
}

/* Sidebar */
.collection-sidebar {
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar-section { margin-bottom: 28px; }

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sidebar-categories { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-link {
  display: block;
  padding: 7px 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sidebar-cat-link:hover, .sidebar-cat-link--active { color: var(--gold); background: rgba(188,122,16,0.08); }

.filter-group { margin-bottom: 20px; }
.filter-group__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-list__item { display: flex; align-items: center; }

.filter-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; }
.filter-checkbox__input { display: none; }
.filter-checkbox__custom {
  width: 16px; height: 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-checkbox__input:checked + .filter-checkbox__custom {
  background: var(--gold);
  border-color: var(--gold);
}
.filter-checkbox__input:checked + .filter-checkbox__custom::after {
  content: '✓'; font-size: 11px; color: #000;
}
.filter-checkbox__label { color: var(--text-muted); flex: 1; }
.filter-checkbox__count { color: var(--text-dim); font-size: 0.75rem; }

.filter-price__range { display: flex; align-items: center; gap: 8px; }
.filter-price__input {
  flex: 1; padding: 8px 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.85rem; width: 100%;
}
.filter-price__input:focus { outline: none; border-color: var(--gold); }

.filter-apply-btn { margin-top: 12px; }

/* Collection Toolbar */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.collection-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collection-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.collection-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.sort-select {
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.875rem;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--gold); }

.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.875rem;
}

/* Pagination */
.pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pagination__btn, .pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.pagination__btn:hover, .pagination__num:hover { border-color: var(--gold); color: var(--gold); }
.pagination__num--active { background: var(--gold); border-color: var(--gold); color: #000; }

/* -------- PRODUCT PAGE -------- */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 24px 60px;
}

/* Gallery */
.product-gallery {
  display: flex;
  gap: 16px;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 80px; height: 80px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg);
}
.gallery-thumb:hover, .gallery-thumb--active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery__main {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.gallery-main-img { display: none; }
.gallery-main-img--active { display: block; }
.gallery-main-img img { width: 100%; aspect-ratio: 1; object-fit: contain; }

.product-detail-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.product-detail-badge--best {
  background: var(--gold);
  color: #000;
}

.gallery-placeholder svg { width: 100%; padding: 20%; color: var(--text-dim); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 16px; }

.product-info__vendor {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.product-rating { display: flex; align-items: center; gap: 8px; }
.stars { display: flex; gap: 2px; }
.star--full, .star--half { color: var(--gold); }
.star--empty { color: var(--text-dim); }
.product-rating__count { font-size: 0.8rem; color: var(--text-muted); }

.product-info__price-block {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-info__compare-price { font-size: 0.9rem; color: var(--text-dim); text-decoration: line-through; display: block; }
.product-info__price { font-size: 2rem; font-weight: 700; color: var(--gold); }
.product-info__installments { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.product-info__discount-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

/* Product Options */
.product-option { display: flex; flex-direction: column; gap: 10px; }
.product-option__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
}
.product-option__guide { font-size: 0.75rem; color: var(--gold); font-weight: 400; }
.product-option__values { display: flex; flex-wrap: wrap; gap: 8px; }

.option-btn {
  min-width: 44px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}
.option-btn:hover { border-color: var(--gold); color: var(--gold); }
.option-btn--active { background: var(--gold); border-color: var(--gold); color: #000; }
.option-btn--unavailable { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }

.product-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.availability-dot--in { background: var(--green); box-shadow: 0 0 8px var(--green); }
.availability-dot--out { background: var(--red); }

.product-form__actions { display: flex; flex-direction: column; gap: 10px; position: relative; }
.btn-wishlist {
  position: absolute;
  right: 0; top: 0;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.btn-wishlist:hover { color: var(--red); border-color: var(--red); }
.product-form__submit { padding-right: 60px; }

/* Shipping calc */
.shipping-calc {
  padding: 16px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.shipping-calc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.shipping-calc__form { display: flex; gap: 8px; }
.shipping-calc__input {
  flex: 1; padding: 10px 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.875rem;
}
.shipping-calc__input:focus { outline: none; border-color: var(--gold); }
.shipping-result { margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }

/* Product trust badges */
.product-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.product-trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* Product recommendations */
.product-recommendations {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.product-recommendations .section-title { margin-bottom: 24px; }
.product-recs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Product description */
.product-description-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.product-desc__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.product-desc__content { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.product-desc__content p { margin-bottom: 12px; }

/* -------- SEARCH PAGE -------- */
.search-page { padding: 48px 24px; }
.search-page__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
}
.search-page__term { color: var(--gold); }
.search-page__form { max-width: 600px; margin-bottom: 32px; }
.search-page__input-wrap { display: flex; gap: 12px; }
.search-page__input {
  flex: 1; padding: 14px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 1rem;
}
.search-page__input:focus { outline: none; border-color: var(--gold); }
.search-result-count { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
.search-no-results { text-align: center; padding: 60px 0; }
.search-no-results p { color: var(--text-muted); margin-bottom: 8px; }
.search-no-results .btn { margin-top: 24px; }

/* -------- CART DRAWER -------- */
.cart-drawer {
  position: fixed;
  top: 0; right: -440px;
  width: 420px; max-width: 100%;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -8px 0 32px rgba(0,0,0,0.6);
}
.cart-drawer.is-open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.is-visible { opacity: 1; pointer-events: all; }

.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-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 0.06em; }
.cart-drawer__close {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-drawer__close:hover { color: var(--text); border-color: var(--text); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty svg { color: var(--text-dim); }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img-link { flex-shrink: 0; }
.cart-item__img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.cart-item__details { flex: 1; }
.cart-item__title { font-size: 0.875rem; color: var(--text); line-height: 1.3; }
.cart-item__title:hover { color: var(--gold); }
.cart-item__variant { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-item__price { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.cart-item__remove {
  color: var(--text-dim);
  padding: 4px;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: var(--red); }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty__btn {
  width: 26px; height: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cart-qty__btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.cart-qty__num { font-size: 0.875rem; min-width: 20px; text-align: center; }
.cart-qty__input {
  width: 40px; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: 4px 6px; font-size: 0.875rem;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.cart-total__price { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.cart-shipping-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

/* -------- CART PAGE -------- */
.cart-page { padding: 48px 24px; }
.cart-page__title { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 32px; }
.cart-empty-page {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cart-empty-page svg { color: var(--text-dim); }
.cart-empty-page h2 { font-family: var(--font-heading); font-size: 1.8rem; }
.cart-empty-page p { color: var(--text-muted); }

.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.cart-page-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-page-item__img {
  width: 100px; height: 100px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cart-page-item__details { flex: 1; }
.cart-page-item__title { font-size: 1rem; font-weight: 500; }
.cart-page-item__title:hover { color: var(--gold); }
.cart-page-item__variant { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0; }
.cart-page-item__bottom { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.cart-page-item__price { font-size: 1rem; font-weight: 700; color: var(--gold); }
.cart-page-item__remove { color: var(--text-dim); transition: color var(--transition); }
.cart-page-item__remove:hover { color: var(--red); }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.cart-summary__title { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 20px; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.cart-summary__row:last-of-type { border-bottom: none; }
.cart-summary__row--total { font-size: 1.1rem; padding: 16px 0; }
.cart-summary__shipping-note { font-size: 0.8rem; color: var(--text-muted); }
.cart-summary .btn { margin-top: 8px; }

/* -------- FOOTER -------- */
.site-footer { border-top: 1px solid var(--border); }

.footer-main { padding: 60px 0; }

.footer-main__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social__link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social__link:hover { color: var(--gold); border-color: var(--gold); }

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green) !important;
}
.footer-whatsapp:hover { opacity: 0.85; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-payment { margin-top: 20px; }
.footer-payment__title { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 10px; }
.footer-payment__icons { display: flex; gap: 6px; flex-wrap: wrap; }
.payment-icon {
  padding: 4px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-mid);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a:hover { color: var(--gold); }

/* Collection empty */
.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1100px) {
  .footer-main__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar { display: none; position: fixed; left: -100%; top: 0; width: 280px; height: 100vh; background: var(--bg-card); z-index: 1100; padding: 24px; transition: left 0.3s ease; border-right: 1px solid var(--border); max-height: 100vh; }
  .collection-sidebar.is-open { display: block; left: 0; }
  .mobile-filter-btn { display: flex; }

  .product-page { grid-template-columns: 1fr; }
  .product-gallery { flex-direction: column; }
  .product-gallery__thumbs { flex-direction: row; width: 100%; }
  .gallery-thumb { width: 70px; height: 70px; }

  .cart-page__layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .header-action__label { display: none; }
  .header-mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .header-nav { display: none; }

  .hero-banner__inner {
  flex-direction: row;
  padding: 40px 24px;
  align-items: center;
}
  .hero-image-wrap { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-title--highlight { font-size: 3.2rem; }

  .trust-badges__inner { justify-content: flex-start; gap: 16px; }
  .trust-badge { min-width: 150px; }

  .footer-main__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }

  .product-trust-badges { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

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

  .cart-drawer { width: 100%; right: -100%; }

  .search-page__input-wrap { flex-direction: column; }
}

/* -------- UTILITIES -------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* Focus visible */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Selection */
::selection { background: var(--gold); color: #000; }

/* -------- PAGE TEMPLATE -------- */
.page-template {
  padding: 48px 24px 80px;
  max-width: 900px;
}
.page-template__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.page-template__content.rte { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.page-template__content.rte h2 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--text); margin: 28px 0 12px; }
.page-template__content.rte h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text); margin: 20px 0 8px; }
.page-template__content.rte p { margin-bottom: 16px; }
.page-template__content.rte a { color: var(--gold); }
.page-template__content.rte ul, .page-template__content.rte ol { padding-left: 24px; margin-bottom: 16px; }
.page-template__content.rte li { margin-bottom: 6px; }

/* -------- 404 PAGE -------- */
.not-found-page {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.not-found-page__title {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
}
.not-found-page__subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
}

/* -------- PRODUCT LIST VIEW -------- */
.product-grid--list {
  grid-template-columns: 1fr;
}
.product-grid--list .product-card {
  flex-direction: row;
}
.product-grid--list .product-card__img-wrap {
  padding-top: 0;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.product-grid--list .product-card__img {
  position: relative;
  width: 100%;
  height: 100%;
}
