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

:root {
  --bg: #0a0a14;
  --surface: #13131f;
  --surface-2: #1c1c2e;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f8;
  --text-muted: rgba(240,240,248,0.55);
  --accent: #D4AF37;
  --radius: 12px;
  --transition: 0.2s ease;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

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

/* ─── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

.header-logo span {
  color: var(--accent);
  margin: 0 4px;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--text); }

/* ─── Home Hero ────────────────────────────────────────────────────── */
.home-hero {
  text-align: center;
  padding: 80px 24px 64px;
}

.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}

.home-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Show Cards (Home) ────────────────────────────────────────────── */
.shows-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.show-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}

.show-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.show-card-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.show-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.show-card-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: auto;
}

/* ─── Show Hero ────────────────────────────────────────────────────── */
.show-hero {
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.show-hero-inner { max-width: 640px; margin: 0 auto; }

.show-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.show-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 8px;
}

.show-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 16px;
}

.show-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Products Section ─────────────────────────────────────────────── */
.products-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.products-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}

.products-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
}

.products-count {
  font-size: 13px;
  color: var(--text-muted);
}

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

/* ─── Product Card ─────────────────────────────────────────────────── */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.product-card--featured {
  border-color: rgba(212, 175, 55, 0.35);
}

.product-card--featured:hover {
  border-color: rgba(212, 175, 55, 0.7);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
  text-transform: uppercase;
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  flex: 1;
}

.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.product-store {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.product-card:hover .product-cta {
  color: var(--text);
}

/* ─── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
}

.site-footer a { color: var(--accent); }
.site-footer a:hover { text-decoration: underline; }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-header { padding: 0 16px; }
  .header-nav { gap: 16px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .show-hero { padding: 48px 16px 36px; }
  .products-section { padding: 32px 16px 60px; }
}
