/* ============================================
   HARMONIQ — Luxury Music Store
   style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --white:        #FAFAF8;
  --off-white:    #F4F2EE;
  --paper:        #EDE9E1;
  --orange:       #E8622A;
  --orange-light: #F5915F;
  --orange-pale:  #FDE8DC;
  --green:        #2D6A4F;
  --green-light:  #52A07A;
  --green-pale:   #D6EDE4;
  --charcoal:     #1C1C1A;
  --mid-grey:     #6B6B65;
  --light-grey:   #C8C5BE;
  --border:       #E2DED7;

  --font-display: 'Cormorant Garamond', serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 24px rgba(28,28,26,0.07);
  --shadow-card: 0 8px 40px rgba(28,28,26,0.10);
  --shadow-hover: 0 16px 56px rgba(28,28,26,0.15);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 0.95rem; color: var(--mid-grey); line-height: 1.75; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
}

/* ── Layout Utilities ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }
.section-alt { background: var(--off-white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #C94E1E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #1D5240;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.btn-icon:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,222,215,0.6);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img-placeholder {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.logo-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.logo-img-placeholder .logo-fallback {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}
.logo-text span { color: var(--orange); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--mid-grey);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.2rem;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--orange);
}

.cart-count {
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55vw;
  height: 120vh;
  background: radial-gradient(ellipse at 60% 40%, var(--orange-pale) 0%, transparent 65%),
              radial-gradient(ellipse at 30% 80%, var(--green-pale) 0%, transparent 55%);
  z-index: 0;
  border-radius: 40% 0 0 40%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 4rem 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
.hero-eyebrow span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--mid-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  width: 340px;
  height: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-card-art {
  height: 240px;
  background: linear-gradient(145deg, var(--charcoal) 0%, #3a3a38 60%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-card-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(232,98,42,0.4) 0%, transparent 60%);
}

.vinyl {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: conic-gradient(
    #1a1a18 0deg, #2c2c2a 40deg, #1a1a18 80deg,
    #2c2c2a 120deg, #1a1a18 160deg, #2c2c2a 200deg,
    #1a1a18 240deg, #2c2c2a 280deg, #1a1a18 320deg, #2c2c2a 360deg
  );
  position: relative;
  animation: spin 8s linear infinite;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.vinyl::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.hero-card-info {
  padding: 1.25rem 1.5rem;
}
.hero-card-info .album-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.hero-card-info .album-artist {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-bottom: 0.9rem;
}

.progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-pill);
}

.playback-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232,98,42,0.4);
}
.ctrl-btn {
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-grey);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.ctrl-btn:hover { color: var(--charcoal); }

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float2 4s ease-in-out infinite;
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-badge.badge-ticket {
  top: 22%;
  right: -10px;
  animation-delay: -1.5s;
}
.hero-badge.badge-book {
  bottom: 28%;
  left: -30px;
  animation-delay: -3s;
}

.badge-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.badge-icon.orange { background: var(--orange-pale); }
.badge-icon.green  { background: var(--green-pale); }

.badge-text .label {
  font-size: 0.7rem;
  color: var(--mid-grey);
}
.badge-text .value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════
   CATEGORIES STRIP
═══════════════════════════════════════════ */
.categories {
  padding: 4rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

.categories-track {
  display: flex;
  gap: 1rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.categories-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}
.category-pill:hover,
.category-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.category-pill span { font-size: 1rem; }

/* ═══════════════════════════════════════════
   FEATURED SECTION
═══════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card-art {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.card-art-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-art-bg { transform: scale(1.06); }

.card-art-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-art-placeholder.music-bg {
  background: linear-gradient(145deg, #2C2C2A 0%, #1a1a18 50%, #3a1a0a 100%);
}
.card-art-placeholder.ticket-bg {
  background: linear-gradient(145deg, #1A3A2A 0%, #0d2019 60%, #0f2a1e 100%);
}
.card-art-placeholder.book-bg {
  background: linear-gradient(145deg, #2A1A0A 0%, #3d2910 60%, #1a0f05 100%);
}

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-new    { background: var(--orange); color: #fff; }
.badge-sale   { background: var(--green);  color: #fff; }
.badge-hot    { background: var(--charcoal); color: var(--orange); }
.badge-live   { background: var(--green);  color: #fff; }

.card-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(250,250,248,0.9);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .card-wish { opacity: 1; }
.card-wish:hover { background: var(--orange-pale); }

.card-body { padding: 1.2rem; }

.card-category {
  font-size: 0.68rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.card-subtitle {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.price-old {
  font-size: 0.8rem;
  color: var(--light-grey);
  text-decoration: line-through;
}

.add-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(232,98,42,0.3);
}
.add-btn:hover {
  background: #C94E1E;
  transform: scale(1.12);
}

/* Stars */
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.85rem;
}
.stars { color: #F5A623; font-size: 0.7rem; letter-spacing: 1px; }
.review-count { font-size: 0.72rem; color: var(--mid-grey); }

/* ═══════════════════════════════════════════
   TICKETS SECTION
═══════════════════════════════════════════ */
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ticket-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.ticket-date-col {
  width: 90px;
  flex-shrink: 0;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.5rem;
  position: relative;
}
.ticket-date-col::after {
  content: '';
  position: absolute;
  top: 50%; right: -12px;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--off-white);
  border-radius: 50%;
  border: 1px solid var(--border);
  z-index: 1;
}

.ticket-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.ticket-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.ticket-year {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.ticket-info {
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.ticket-genre {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.ticket-venue {
  font-size: 0.8rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-price-from {
  font-size: 0.72rem;
  color: var(--mid-grey);
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
}

.seats-left {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 500;
}
.seats-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

/* ═══════════════════════════════════════════
   BOOKS SECTION
═══════════════════════════════════════════ */
.books-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.books-intro h2 { margin-bottom: 1rem; }
.books-intro p  { margin-bottom: 2rem; }

.books-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.book-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.book-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.book-cover-1 { background: linear-gradient(160deg, #1C3A2A 0%, #0d2118 100%); }
.book-cover-2 { background: linear-gradient(160deg, #3A1C0D 0%, #261208 100%); }
.book-cover-3 { background: linear-gradient(160deg, #1A1C3A 0%, #0d0f26 100%); }
.book-cover-4 { background: linear-gradient(160deg, #2A1A1C 0%, #1a0d0f 100%); }
.book-cover-5 { background: linear-gradient(160deg, #1C2A1A 0%, #0f1a0d 100%); }
.book-cover-6 { background: linear-gradient(160deg, #2A2A1C 0%, #1a1a0d 100%); }

.book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  background: rgba(0,0,0,0.3);
}

.book-info { padding: 0.9rem; }
.book-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.book-author {
  font-size: 0.72rem;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}
.book-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
}

/* ═══════════════════════════════════════════
   NEWSLETTER BANNER
═══════════════════════════════════════════ */
.newsletter {
  background: var(--charcoal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.12) 0%, transparent 70%);
}
.newsletter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.15) 0%, transparent 70%);
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner .section-label {
  justify-content: center;
  color: var(--orange-light);
}
.newsletter-inner .section-label::before { background: var(--orange-light); }

.newsletter-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.newsletter-inner p {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--orange); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; max-width: 260px; line-height: 1.75; }

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid-grey);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--mid-grey);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--light-grey);
}
.footer-payment {
  display: flex;
  gap: 0.5rem;
}
.payment-badge {
  padding: 0.3rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid-grey);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 140px 0 60px; }
  .hero-visual { height: 460px; }
  .hero-card-main { width: 300px; height: 380px; }
  .books-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .books-scroll { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 50px; }
  .hero-content { padding: 0; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }

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

  .ticket-card { flex-direction: column; }
  .ticket-date-col { width: 100%; flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 0.75rem 1.25rem; }
  .ticket-date-col::after { display: none; }

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

  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .books-scroll { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .cart-btn span:not(.cart-count) { display: none; }
}
