/* ═══════════════════════════════════════════════════════════
   Racing Diecast & More — Storefront Styles
   Color scheme: Navy, Red, White, Black
   Font: Barlow Condensed (display) + Barlow (body)
═══════════════════════════════════════════════════════════ */

:root {
  --navy:    #0d1b2e;
  --navy2:   #152540;
  --red:     #c8102e;
  --red2:    #a50d26;
  --white:   #ffffff;
  --off-white: #f5f6f8;
  --gray:    #e8eaed;
  --gray2:   #c4c9d4;
  --muted:   #6b7280;
  --text:    #0d1b2e;
  --radius:  8px;
  --shadow:  0 2px 8px rgba(13,27,46,0.10);
  --shadow-md: 0 4px 20px rgba(13,27,46,0.15);
  --shadow-lg: 0 8px 40px rgba(13,27,46,0.20);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.5;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo { display: flex; align-items: center; }

.header-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: color .2s;
}
.social-link:hover { color: var(--white); }

/* ── HERO SCROLLER ──────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  height: 360px;
}

@media (max-width: 768px) { .hero-section { height: 260px; } }

.hero-scroller { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-inner {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.hero-slide.active .hero-img-wrap img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,46,0.92) 0%,
    rgba(13,27,46,0.4) 50%,
    rgba(13,27,46,0.1) 100%
  );
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.hero-info {
  position: relative;
  z-index: 2;
  padding: 32px 48px;
  max-width: 700px;
}

@media (max-width: 768px) { .hero-info { padding: 24px 20px; } }

.hero-cat {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

@media (max-width: 768px) { .hero-title { font-size: 24px; } }

.hero-driver {
  color: var(--gray2);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background .2s;
}
.hero-slide-inner:hover .hero-cta { background: var(--red2); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(200,16,46,0.7); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  right: 48px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.hero-dot.active { background: var(--red); border-color: var(--red); transform: scale(1.3); }

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-section {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 72px;
  z-index: 90;
}

.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 380px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray2);
  pointer-events: none;
}

.search-field {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius);
  padding: 9px 36px 9px 38px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.search-field::placeholder { color: rgba(255,255,255,0.35); }
.search-field:focus { border-color: var(--red); background: rgba(255,255,255,0.12); }

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray2);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}

.filter-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.filter-select:focus { border-color: var(--red); }
.filter-select option { background: var(--navy); color: var(--white); }

.filter-clear-btn {
  color: var(--gray2);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  transition: color .2s;
}
.filter-clear-btn:hover { color: var(--red); }

.results-count {
  color: var(--gray2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: auto;
}

/* ── MAIN CONTENT ───────────────────────────────────────── */
.store-main { padding: 36px 0 60px; }

/* ── PRODUCT GRID ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gray2);
  background: var(--gray);
}

.card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}

.badge-condition { background: rgba(13,27,46,0.75); color: var(--white); }
.badge-signed    { background: rgba(200,16,46,0.9); color: var(--white); }
.badge-coa       { background: rgba(16,120,60,0.9); color: var(--white); }

.card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 2px;
}

.card-driver { font-size: 13px; color: var(--muted); font-weight: 500; }
.card-scale  { font-size: 12px; color: var(--gray2); }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--gray);
}

.card-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.card-shipping {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.card-shipping.free { color: #16a34a; }

.card-view {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .5px;
}

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.page-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .15s;
  box-shadow: var(--shadow);
}
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── EMPTY STATE ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-icon { font-size: 64px; margin-bottom: 16px; }
.empty-state h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.empty-state p  { color: var(--muted); margin-bottom: 24px; }

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-primary:hover { background: var(--red2); }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header { margin-bottom: 24px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid var(--red);
  padding-left: 14px;
}
.section-sub { color: var(--muted); font-size: 13px; margin-top: 6px; padding-left: 18px; }

/* ── RECENTLY SOLD ──────────────────────────────────────── */
.recently-sold {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 2px solid var(--gray);
}

.sold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.sold-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: .85;
}

.sold-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}
.sold-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); }

.sold-ribbon {
  position: absolute;
  top: 12px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 32px;
  transform: rotate(45deg);
  transform-origin: center;
}

.sold-body { padding: 12px 14px; }
.sold-title  { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.sold-driver { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  color: var(--white);
  margin-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--gray2); }

.footer-follow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray2); margin-bottom: 12px; font-weight: 700; }

.social-icons { display: flex; gap: 14px; }

.social-icon-link {
  color: var(--gray2);
  transition: color .2s, transform .2s;
  display: flex;
}
.social-icon-link:hover { color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 24px;
  font-size: 12px;
  color: var(--gray2);
}

/* ── PRODUCT PAGE STYLES ────────────────────────────────── */
.product-page { padding: 40px 0 80px; }

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } }

.product-gallery {}

.gallery-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
  margin-bottom: 10px;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-main:hover img { transform: scale(1.03); }

.gallery-main-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--gray2);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
}
.gallery-thumb.active { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}

.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.product-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-driver {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.product-badge.signed { background: #fff0f5; color: var(--red); border: 1px solid rgba(200,16,46,0.2); }
.product-badge.coa    { background: #f0fdf4; color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }

.product-price-block {
  background: var(--off-white);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
}

.btn-buy {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  margin-bottom: 12px;
}
.btn-buy:hover { background: var(--red2); transform: translateY(-1px); }

.btn-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #1877f2;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-facebook:hover { background: #1464d8; }

.product-specs {
  margin-bottom: 28px;
}

.specs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
}
.spec-label { color: var(--muted); font-weight: 500; }
.spec-value { color: var(--navy); font-weight: 600; }

.product-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* More from driver */
.more-section { margin-top: 60px; padding-top: 48px; border-top: 2px solid var(--gray); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; }
  .header-logo-img { height: 48px; }
  .filter-inner { padding: 12px 16px; }
  .store-main   { padding: 24px 0 40px; }
  .container    { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sold-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 24px; padding: 28px 16px; }
  .hero-info    { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-title   { font-size: 13px; }
  .card-price   { font-size: 16px; }
}

/* ── PRODUCT PAGE ───────────────────────────────────────── */
.product-page { padding: 36px 0 80px; }

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
}

/* Gallery */
.gallery-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
  margin-bottom: 10px;
  cursor: zoom-in;
  border: 1px solid var(--gray);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-main:hover img { transform: scale(1.03); }
.gallery-main-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--gray2);
}

.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
  background: var(--gray);
}
.gallery-thumb.active { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.product-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-driver {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.product-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.product-badge.signed { background: #fff0f5; color: var(--red); border: 1px solid rgba(200,16,46,0.2); }
.product-badge.coa    { background: #f0fdf4; color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }

/* Specs */
.product-specs { margin-bottom: 20px; }
.specs-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
}
.spec-label { color: var(--muted); font-weight: 500; }
.spec-value { color: var(--navy); font-weight: 600; text-align: right; }

/* Description */
.product-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

/* Price block */
.product-price-block {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.product-shipping-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.product-shipping-line.free { color: #16a34a; }

.btn-buy {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  margin-bottom: 12px;
}
.btn-buy:hover { background: var(--red2); transform: translateY(-1px); }

.btn-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #1877f2;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-facebook:hover { background: #1464d8; }

/* More section */
.more-section { margin-top: 60px; padding-top: 48px; border-top: 2px solid var(--gray); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.product-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-lightbox.open { display: flex; }
.product-lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.lightbox-close-btn:hover { background: var(--red); }
.lightbox-nav-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.lightbox-nav-btns button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background .15s;
}
.lightbox-nav-btns button:hover { background: rgba(255,255,255,0.28); }

/* ── CONDITION DISCLAIMER ───────────────────────────────── */
.condition-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  margin: 0 0 48px;
}

/* ── SOCIAL BUTTONS ROW ─────────────────────────────────── */
.btn-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-fb-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(24,119,242,0.12);
  color: #1877f2;
  border: 1px solid rgba(24,119,242,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.btn-fb-share:hover { background: #1877f2; color: var(--white); }
