/* ============================================
   Bonzo Cards - bonzocards.com
   ============================================ */

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

:root {
  --sand: #D4C5A9;
  --sand-light: #F5F0E6;
  --sand-pale: #F5F6FA;
  --brown: #8B6F47;
  --brown-dark: #5C4A2F;
  --olive: #6B6B4E;
  --charcoal: #1A1A2E;
  --white: #FFFFFF;
  --green: #16A34A;
  --green-dark: #15803D;
  --green-light: #DCFCE7;
  --red: #DC2626;
  --red-bright: #EF4444;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --orange: #F59E0B;
  --orange-light: #FEF3C7;
  --purple: #7C3AED;
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--charcoal);
  background: var(--sand-pale);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vw;
  background: url('/images/Bonzo Cards Logo - cropped.jpg') center center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 600px 600px at 5% 15%, rgba(37,99,235,0.09), transparent),
    radial-gradient(ellipse 500px 500px at 95% 50%, rgba(37,99,235,0.07), transparent),
    radial-gradient(ellipse 700px 700px at 50% 30%, rgba(37,99,235,0.04), transparent),
    radial-gradient(ellipse 400px 400px at 15% 85%, rgba(124,58,237,0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* All content above the watermark */
.sticky-top, .countdown-bar, .site-header, .hero, .gallery-section, .reviews-section,
.about-section, .comparison-section, .wholesale-section, .faq-section,
.contact-section, .cta-section, .site-footer {
  position: relative;
  z-index: 1;
}

/* Sticky top wrapper */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* --- Countdown Bar --- */
.countdown-bar {
  background: linear-gradient(135deg, #D97706 0%, #B45309 40%, #F59E0B 100%);
  color: var(--white);
  padding: 11px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 101;
  overflow: hidden;
  border-bottom: 2px solid rgba(0,0,0,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.countdown-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.35) 48%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.35) 52%,
    rgba(255,255,255,0.05) 70%,
    transparent 100%
  );
  animation: lightning 3s ease-in-out infinite;
}

@keyframes lightning {
  0% { left: -50%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

.countdown-bar.sale-live {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, #22C55E 100%);
  border-bottom-color: rgba(0,0,0,0.2);
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.countdown-label {
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: inline-flex;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.countdown-timer .cd-unit {
  background: rgba(255,255,255,0.92);
  color: var(--charcoal);
  border-radius: 4px;
  padding: 5px 10px;
  min-width: 42px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,1);
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  text-shadow: none;
}

.countdown-timer .cd-sep {
  font-weight: 600;
  opacity: 0.9;
  font-size: 0.85rem;
  text-shadow: none;
}

.countdown-bar.sale-live .cd-unit {
  background: rgba(255,255,255,0.95);
  color: var(--green-dark);
}

/* --- Header --- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--sand);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.site-header nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}

.site-header nav a:hover {
  color: var(--brown);
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), #22C55E);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22,163,74,0.4);
}

/* --- Hero --- */
.hero {
  padding: 48px 0 60px;
}

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

/* Image Gallery */
.hero-image {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 12px;
}

.main-image {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3/4;
}

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb {
  flex: 0 0 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  padding: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover, .thumb.active {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgba(139,111,71,0.25);
}

/* Hero Content */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #D97706);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.features {
  list-style: none;
  margin-bottom: 28px;
}

.features li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 0.95rem;
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 1.05rem;
}

/* Price Block */
.price-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green-light);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
}

.price-note {
  font-size: 1rem;
  color: #777;
}

.discount-callout {
  background: linear-gradient(135deg, var(--green-light), #BBF7D0);
  color: var(--green-dark);
  border: 2px solid #86EFAC;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.quantity-selector label {
  font-weight: 600;
  font-size: 0.95rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 2px solid #DDD;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--sand-light);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--charcoal);
  transition: background 0.15s;
}

.qty-btn:hover { background: var(--sand); }

#quantity {
  width: 56px;
  height: 40px;
  border: none;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  -moz-appearance: textfield;
}

#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Order Summary */
.order-summary {
  border-top: 1px solid #EEE;
  padding-top: 14px;
  margin-bottom: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.92rem;
  color: #555;
}

.discount-line { color: var(--green); }

.total-line {
  border-top: 2px solid var(--charcoal);
  margin-top: 6px;
  padding-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* Buy Button */
.buy-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--green), #22C55E);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
  text-transform: none;
}

.buy-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22,163,74,0.45);
}

.buy-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(22,163,74,0.3); }

.buy-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.secure-note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
}

.shipping-info {
  font-size: 0.82rem;
  color: #777;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #EEE;
  line-height: 1.5;
}

/* --- Gallery Section --- */
.gallery-section {
  padding: 60px 0;
}

.gallery-section h2, .about-section h2, .faq-section h2, .cta-section h2, .wholesale-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-intro {
  text-align: center;
  color: #666;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.gallery-grid figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

/* --- Reviews Section --- */
.reviews-section {
  padding: 60px 0;
}

.reviews-carousel {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  min-height: 230px;
  perspective: 800px;
}

.review-card {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.review-card.active {
  display: block;
  z-index: 2;
}

/* Next card sitting underneath during transition */
.review-card.under {
  display: block;
  z-index: 1;
}

/* Card being dealt off the deck */
.review-card.dealing {
  display: block;
  z-index: 3;
  pointer-events: none;
  animation: cardDeal 0.75s ease-in forwards;
}

@keyframes cardDeal {
  0% {
    transform: rotate(0deg) translateX(0) translateY(0);
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  }
  25% {
    transform: rotate(-1.5deg) translateX(-2%) translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.20);
  }
  100% {
    transform: rotate(-12deg) translateX(-115%) translateY(-10px);
    opacity: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
}

.review-stars {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.review-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.review-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.review-dot:hover {
  background: var(--brown);
}

/* --- About Section --- */
.about-section {
  padding: 60px 0;
}

.about-content {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-content p { margin-bottom: 16px; }

/* --- Comparison Section --- */
.comparison-section {
  padding: 48px 0;
}

.comparison-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FAFDF7, var(--green-light));
  border: 2px solid #86EFAC;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.comparison-box h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 16px;
}

.comp-col h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  color: var(--green);
}

.comp-other h4 {
  border-bottom-color: #CCC;
  color: #999;
}

.comp-col ul {
  list-style: none;
}

.comp-col li {
  padding: 4px 0;
  font-size: 0.9rem;
}

.comp-other li { color: #888; }

.comp-note {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 60px 0;
}

.faq-list {
  max-width: 700px;
  margin: 28px auto 0;
}

details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
}

summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  font-size: 0.95rem;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: #999;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  padding: 0 20px 16px;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #16213E 50%, #0F3460 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 { color: var(--white); font-size: 2.2rem; }

.cta-section p {
  color: #CBD5E1;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.cta-btn {
  display: inline-block;
  width: auto;
  padding: 16px 48px;
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: #BBB;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 24px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(2);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #999;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 6px; }

.footer-links a {
  color: #BBB;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content h1 { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .countdown-bar { font-size: 0.8rem; padding: 8px 0; }
  .countdown-timer .cd-unit { padding: 2px 5px; min-width: 28px; font-size: 0.8rem; }
  .countdown-inner { gap: 8px; }

  .site-header .container { height: 56px; }

  .logo img { height: 38px; }

  .site-header nav { gap: 12px; }

  .site-header nav a:not(.nav-cta) { display: none; }

  .hero { padding: 24px 0 40px; }

  .hero-content h1 { font-size: 1.5rem; }

  .price { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: 1fr; }

  .comparison-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .thumb { flex: 0 0 56px; height: 56px; }
}

/* --- Sale Banner (in price block) --- */
.sale-banner {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: var(--white);
  text-align: center;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  animation: pulse-sale 2s ease-in-out infinite;
}

@keyframes pulse-sale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}

.price-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

/* --- Wholesale Section --- */
.wholesale-section {
  padding: 60px 0;
}

.wholesale-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--sand-pale);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.wholesale-box h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.wholesale-box > p {
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.wholesale-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.wholesale-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--charcoal);
}

.wholesale-detail {
  text-align: left;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.wholesale-btn {
  display: inline-block;
  width: auto;
  padding: 14px 36px;
  background: var(--brown);
}

.wholesale-btn:hover {
  background: var(--brown-dark) !important;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--white);
  padding: 12px 0;
  font-size: 0.85rem;
  color: #999;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #EEE;
}

.breadcrumb a {
  color: var(--brown);
}

.breadcrumb span {
  color: #555;
}

/* --- Article / History Page --- */
.article-page {
  padding: 48px 0 60px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.article-subtitle {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.article-body h2 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-top: 28px;
  margin-bottom: 8px;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}

.article-body ul {
  margin: 0 0 20px 20px;
  line-height: 1.8;
  color: #444;
}

.article-body ul li {
  margin-bottom: 4px;
}

.article-hero-img,
.article-img {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero-img img,
.article-img img {
  width: 100%;
  height: auto;
}

.article-hero-img figcaption,
.article-img figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  background: var(--sand-pale);
}

/* Card list grid */
.card-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0 40px;
}

.card-list-suit {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: var(--radius);
  padding: 20px;
}

.card-list-suit h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-top: 0;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sand);
}

.card-list-suit ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list-suit ol li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  border-bottom: 1px solid #F5F5F5;
}

.card-list-suit ol li:last-child {
  border-bottom: none;
}

/* Article CTA */
.article-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #FAFDF7, var(--green-light));
  border: 2px solid #86EFAC;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.article-cta h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.article-cta p {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 20px;
  color: #555;
}

.article-cta .cta-btn {
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .article-body h1 { font-size: 1.6rem; }
  .article-body h2 { font-size: 1.3rem; }
  .card-list-grid { grid-template-columns: 1fr; }
}

/* --- Contact Section --- */
.contact-section {
  padding: 60px 0;
}

.contact-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-form {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group .optional {
  font-weight: 400;
  color: #999;
  font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #DDD;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--charcoal);
  transition: border-color 0.15s;
  background: var(--sand-pale);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-btn {
  margin-top: 4px;
  background: var(--brown);
  box-shadow: 0 4px 16px rgba(139,111,71,0.3);
}

.contact-btn:hover {
  background: var(--brown-dark) !important;
  box-shadow: 0 6px 24px rgba(139,111,71,0.4);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* --- Trading Cards Hub --- */
.tc-hero {
  text-align: center;
  padding: 48px 0 24px;
}

.tc-hero h1 {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tc-hero p {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 48px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-align: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  border-color: var(--sand);
}

.category-card .cat-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.category-card .cat-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.4;
}

.category-card .cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-card.cat-featured {
  border-color: var(--green);
  background: linear-gradient(135deg, #FAFDF7, var(--green-light));
}

.category-card.cat-premium {
  border-color: var(--orange);
  background: linear-gradient(135deg, #FFFBEB, var(--orange-light));
}

.category-card.cat-premium .cat-badge {
  background: var(--orange-light);
  color: #92400E;
}

/* --- Category / Lot Pages --- */
.cat-page-hero {
  text-align: center;
  padding: 40px 0 16px;
}

.cat-page-hero h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cat-page-hero p {
  font-size: 1rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.lot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 48px;
}

.lot-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.lot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.lot-card .lot-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.lot-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.lot-card .lot-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.lot-card .lot-includes {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
}

.lot-card .lot-includes li {
  padding: 3px 0 3px 18px;
  position: relative;
  font-size: 0.85rem;
  color: #555;
}

.lot-card .lot-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.lot-card .lot-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.lot-card .lot-per {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 14px;
}

.lot-card .lot-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--green), #22C55E);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

.lot-card .lot-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22,163,74,0.4);
}

.lot-card.lot-popular {
  border: 2px solid var(--green);
  position: relative;
}

.lot-card.lot-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.05em;
}

/* Browse Other Categories */
.browse-others {
  padding: 0 0 48px;
  text-align: center;
}

.browse-others h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-align: center;
}

.browse-others-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.browse-others-grid a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid #DDD;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.15s;
}

.browse-others-grid a:hover {
  border-color: var(--brown);
  background: var(--sand-light);
  text-decoration: none;
}

.browse-others-grid a.current {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  pointer-events: none;
}

/* --- Graded Cards --- */
.graded-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px 0 48px;
}

.graded-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.graded-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.graded-card .graded-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #CCC;
}

.graded-card .graded-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.graded-card .graded-info {
  padding: 16px 20px;
}

.graded-card .graded-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.graded-card .graded-meta {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 12px;
}

.graded-card .graded-grade {
  display: inline-block;
  background: var(--orange-light);
  color: #92400E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.graded-card .graded-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}

.graded-card .graded-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.graded-card .graded-btn:hover {
  background: var(--brown-dark);
  text-decoration: none;
}

/* --- Cross-sell Section (homepage) --- */
.crosssell-section {
  padding: 60px 0;
}

.crosssell-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.crosssell-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.crosssell-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.crosssell-card .cs-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.crosssell-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Responsive: Trading Cards --- */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .lot-grid { grid-template-columns: repeat(2, 1fr); }
  .crosssell-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .tc-hero h1 { font-size: 1.6rem; }
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .lot-grid { grid-template-columns: 1fr; gap: 16px; }
  .crosssell-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-page-hero h1 { font-size: 1.5rem; }
}

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