:root {
  --primary: #e8856a;
  --secondary: #f5c842;
  --accent: #9ecad4;
  --dark: #5c6b8a;
  --light: #faf0dc;
  --text: #4a3728;
  --nav-height: 70px;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--light);
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: #fff8ee;
  border-bottom: 2px solid #f0dfc0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(92,59,46,0.08);
}

.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img-el {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0dfc0;
}

.hero-logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  margin: 0 auto 1.5rem;
  display: block;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 2px solid #f0dfc0;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  color: #7a6555;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: var(--primary);
}

/* PAGES */
.page { display: none; padding-top: var(--nav-height); min-height: 100vh; }
.page.active { display: block; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #fff4e2 0%, #fde8cc 50%, #fcdfc0 100%);
  color: var(--text);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(232,133,106,0.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(158,202,212,0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 .highlight { color: var(--secondary); }

.hero p {
  font-size: 1.2rem;
  color: #7a6555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-tagline {
  display: inline-block;
  background: rgba(232,133,106,0.15);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(232,133,106,0.35);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.5); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  margin-left: 1rem;
}

.btn-outline:hover { background: var(--dark); color: white; }

@media (max-width: 600px) {
  .hero .btn {
    display: block;
    width: 100%;
    margin-left: 0;
    text-align: center;
    box-sizing: border-box;
  }
  .hero .btn + .btn { margin-top: 0.75rem; }
}

/* SECTIONS */
section { padding: 5rem 2rem; }

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0.5rem auto 2.5rem;
}

/* FEATURES */
.features { background: #fffbf4; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff8ee;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid #f0dfc0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232,133,106,0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--dark); }
.feature-card p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* SHOWS */
.shows-section { background: #fff8ee; }

.shows-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: #fffbf4;
  border: 2px solid #f0dfc0;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.show-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,133,106,0.15);
  border-color: var(--primary);
}

.show-date-box {
  background: linear-gradient(135deg, #e8856a, #f5c842);
  border-radius: 12px;
  padding: 0.6rem 0.5rem;
  text-align: center;
  color: white;
  line-height: 1.2;
}

.show-date-box .month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.show-date-box .day {
  font-size: 1.8rem;
  font-weight: 900;
}

.show-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.show-meta {
  font-size: 0.85rem;
  color: #9a8070;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.show-table-badge {
  display: inline-block;
  background: #f0dfc0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-top: 0.3rem;
}

.show-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: all 0.2s;
}

.show-link:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 600px) {
  .show-row { grid-template-columns: 70px 1fr; }
  .show-link { display: none; }
}

/* EVENTS PAGE */
.events-header {
  background: linear-gradient(135deg, #f5c842, #e8856a);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.events-header h1 { font-size: 3rem; font-weight: 900; }
.events-header p { font-size: 1.1rem; opacity: 0.9; margin-top: 0.5rem; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s;
}

.event-card:hover { transform: translateY(-4px); }

.event-banner {
  height: 8px;
}

.event-card-body { padding: 1.5rem; }

.event-date {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.event-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--dark); }
.event-card p { color: #666; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1rem; }

.event-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

/* STORE PAGE */
.store-header {
  background: linear-gradient(135deg, #9ecad4, #7082a8);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.store-header h1 { font-size: 3rem; font-weight: 900; }
.store-header p { font-size: 1.1rem; opacity: 0.9; margin-top: 0.5rem; }

.store-search-wrap {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.store-search-wrap input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #f0dfc0;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  background: white;
  color: var(--dark);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.store-search-wrap input:focus { border-color: var(--primary); }

.store-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 2rem 0;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: var(--text);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s;
}

.product-card:hover { transform: translateY(-4px); }

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-body { padding: 1.25rem; }

.product-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-body h3 { margin: 0.3rem 0; font-size: 1.05rem; color: var(--dark); }
.product-body p { font-size: 0.88rem; color: #666; margin-bottom: 1rem; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.add-btn {
  background: var(--dark);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.add-btn:hover { background: var(--primary); }

.product-card { border: 2px solid #f0dfc0; }
.product-card:hover { box-shadow: 0 12px 40px rgba(232,133,106,0.15); }

/* CONTACT PAGE */
.contact-header {
  background: linear-gradient(135deg, #7082a8, #9ecad4);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.contact-header h1 { font-size: 3rem; font-weight: 900; }
.contact-header p { opacity: 0.9; margin-top: 0.5rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

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

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff8ee;
    border-bottom: 2px solid #f0dfc0;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(92,59,46,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
  }
}

.contact-info h2 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--dark); }
.contact-info p { color: #666; line-height: 1.7; margin-bottom: 2rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.info-item p { color: var(--dark); font-weight: 500; margin: 0; font-size: 0.95rem; }

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 1.25rem; }

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── OUR SHOWS PAGE ──────────────────────────────────────────────────────── */

.our-shows-header {
  background: linear-gradient(135deg, #e8856a, #f5c842);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.our-shows-header h1 { font-size: 3rem; font-weight: 900; }
.our-shows-header p { font-size: 1.1rem; opacity: 0.9; margin-top: 0.5rem; }

/* Home promo strip for hosted shows */
.hosted-promo {
  background: var(--dark);
  padding: 3rem 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

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

.promo-date-box {
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
  min-width: 60px;
}

.promo-date-box .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }
.promo-date-box .day   { font-size: 2rem; font-weight: 900; color: white; }

.promo-text { flex: 1; }
.promo-text .promo-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary); margin-bottom: 0.2rem; }
.promo-text h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.2rem; }
.promo-text p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.promo-countdown {
  text-align: center;
  flex-shrink: 0;
}

.promo-countdown .days-num { font-size: 2rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.promo-countdown .days-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* Full show cards on Our Shows page */
.hosted-show-card {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.show-card-inner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 2px solid #f0dfc0;
}

.show-card-banner {
  padding: 2.5rem 2.5rem 2rem;
  color: white;
  position: relative;
}

.show-card-banner .show-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.show-card-banner h2 { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }

.show-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.show-countdown-strip {
  background: rgba(0,0,0,0.15);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.countdown-boxes {
  display: flex;
  gap: 0.5rem;
}

.cbox {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  text-align: center;
  min-width: 52px;
}

.cbox .cnum { font-size: 1.4rem; font-weight: 900; color: white; line-height: 1; display: block; }
.cbox .clabel { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

.show-card-body {
  background: #fffbf4;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 640px) {
  .show-card-body { grid-template-columns: 1fr; }
  .show-card-banner h2 { font-size: 1.5rem; }
}

.show-description { color: #7a6555; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }

.highlights-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.highlights-list li { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 0.5rem; }
.highlights-list li::before { content: '✓'; color: var(--primary); font-weight: 900; }

.show-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.vendor-box {
  background: white;
  border: 2px solid #f0dfc0;
  border-radius: 14px;
  padding: 1.5rem;
}

.vendor-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.vendor-spots {
  font-size: 0.85rem;
  color: #9a8070;
  margin-bottom: 1rem;
}

.vendor-desc {
  font-size: 0.88rem;
  color: #7a6555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Vendor application form inside show card */
.vendor-form .form-group { margin-bottom: 0.9rem; }
.vendor-form .form-group label { font-size: 0.82rem; }
.vendor-form .form-group input,
.vendor-form .form-group textarea,
.vendor-form .form-group select { font-size: 0.88rem; padding: 0.65rem 0.85rem; }
.vendor-form textarea { min-height: 80px; }

/* ── SELL TO US PAGE ──────────────────────────────────────────────────────── */

.sell-header {
  background: linear-gradient(135deg, #7082a8, #9ecad4);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.sell-header h1 { font-size: 3rem; font-weight: 900; }
.sell-header p   { font-size: 1.1rem; opacity: 0.9; margin-top: 0.5rem; }

.sell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.sell-intro {
  font-size: 1rem;
  color: #7a6555;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff8ee;
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
}

.sell-subheading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.conditions-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.conditions-list li {
  background: #e8f8f5;
  color: #2d7a6a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1.5px solid #9ecad4;
}

.condition-note { font-size: 0.85rem; color: #9a8070; line-height: 1.6; margin-bottom: 1rem; }
.sell-contact-note { font-size: 0.92rem; color: #7a6555; line-height: 1.6; }

/* Want list */
.wantlist-col { position: sticky; top: 90px; align-self: start; }

.wantlist-set {
  background: white;
  border: 2px solid #f0dfc0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.wantlist-set-header {
  background: #fff4e2;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
  border-bottom: 1px solid #f0dfc0;
}

.wantlist-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid #f9f0e0;
  gap: 0.5rem;
}

.wantlist-card-row:last-child { border-bottom: none; }

.wantlist-card-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.wantlist-card-num  { font-size: 0.78rem; color: #aaa; margin-left: 0.3rem; }
.wantlist-card-cond { font-size: 0.75rem; color: #9a8070; }

.priority-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.priority-high   { background: #ffe0d8; color: #c0442a; }
.priority-medium { background: #fff4cc; color: #9a7000; }
.priority-low    { background: #e8f5e8; color: #3a7a3a; }

/* FOOTER */
footer {
  background: #fff4e2;
  border-top: 2px solid #f0dfc0;
  color: #9a8070;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer span { color: var(--primary); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9a8070;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.nav-instagram {
  background: linear-gradient(135deg, #e8856a, #f5c842) !important;
  color: white !important;
  border-radius: 6px;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
}

.nav-instagram:hover { opacity: 0.9; transform: none !important; }

.ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle;
}

.instagram-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */

.about-header {
  background: linear-gradient(135deg, #e8856a, #f5c842);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.about-header h1 { font-size: 3rem; font-weight: 900; }
.about-header p { font-size: 1.2rem; opacity: 0.9; margin-top: 0.5rem; font-style: italic; }

.about-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a4535;
  margin-bottom: 1.5rem;
}

.about-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--light);
}

.about-cta p {
  font-size: 1.2rem;
  color: #7a6555;
  margin-bottom: 1.5rem;
}

/* ── FAQ PAGE ────────────────────────────────────────────────────────────── */

.faq-header {
  background: linear-gradient(135deg, #9ecad4, #7082a8);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.faq-header h1 { font-size: 3rem; font-weight: 900; }
.faq-header p { opacity: 0.9; margin-top: 0.5rem; }

.faq-list {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 2rem 4rem;
}

.faq-item {
  border: 2px solid #f0dfc0;
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover { background: #fff8f0; }

.faq-chevron {
  font-size: 1.2rem;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #7a6555;
  line-height: 1.7;
  margin: 0;
}

/* ── GALLERY PAGE ────────────────────────────────────────────────────────── */

.gallery-header {
  background: linear-gradient(135deg, #f5c842, #e8856a);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.gallery-header h1 { font-size: 3rem; font-weight: 900; }
.gallery-header p { opacity: 0.9; margin-top: 0.5rem; }

.instagram-embed {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.instagram-cta {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 2px solid #f0dfc0;
}

.instagram-icon { font-size: 3rem; margin-bottom: 1rem; }

.instagram-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.instagram-cta p {
  color: #7a6555;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Promo cards: switch to vertical stack before they orphan */
@media (max-width: 1000px) {
  .hosted-promo { flex-direction: column; align-items: center; }
  .promo-card { min-width: 0; width: 100%; max-width: 560px; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  /* Headers */
  .our-shows-header h1,
  .events-header h1,
  .store-header h1,
  .sell-header h1,
  .contact-header h1,
  .about-header h1,
  .faq-header h1,
  .gallery-header h1 { font-size: 2.2rem; }

  .section-title { font-size: 1.8rem; }

  /* Hero */
  .hero-logo { width: 160px; height: 160px; }
  .hero { padding: 4rem 1.5rem 3rem; }

  /* Promo cards */
  .hosted-promo { padding: 2rem 1rem; gap: 1rem; flex-direction: column; align-items: center; }
  .promo-card {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    padding: 1.25rem;
    gap: 1rem;
  }
  .promo-text h3 { font-size: 1rem; }
  .promo-countdown .days-num { font-size: 1.5rem; }

  /* Show card */
  .show-countdown-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }
  .show-card-banner { padding: 1.5rem; }
  .show-card-banner h2 { font-size: 1.6rem; }
  .show-card-meta { gap: 0.4rem 1rem; font-size: 0.85rem; }
  .hosted-show-card { padding: 0 1rem; margin: 1.5rem auto; }
  .show-card-body { padding: 1.5rem; gap: 1.5rem; }
  .show-embed { padding: 0 1rem; }

  /* Shows list */
  .show-row { grid-template-columns: 70px 1fr; gap: 1rem; padding: 1rem; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; padding: 2rem 1rem; }

  /* Store */
  .store-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); padding: 1.5rem 1rem; }

  /* Contact / Sell / Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  /* Sell wantlist: un-stick on mobile */
  .wantlist-col { position: static; }

  /* Sections */
  section { padding: 3rem 1.5rem; }

  /* About */
  .about-story { padding: 2.5rem 1.5rem; }
  .about-cta { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {

  /* Headers */
  .our-shows-header h1,
  .events-header h1,
  .store-header h1,
  .sell-header h1,
  .contact-header h1,
  .about-header h1,
  .faq-header h1,
  .gallery-header h1 { font-size: 1.8rem; }

  /* Hero */
  .hero-logo { width: 130px; height: 130px; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero p { font-size: 1rem; }

  /* Promo cards: keep date | text | countdown row, just tighter */
  .promo-card { padding: 1rem; gap: 0.75rem; }
  .promo-date-box { min-width: 48px; padding: 0.4rem 0.5rem; }
  .promo-date-box .day { font-size: 1.5rem; }
  .promo-text h3 { font-size: 0.95rem; }
  .promo-text p { font-size: 0.8rem; }
  .promo-countdown .days-num { font-size: 1.4rem; }
  .promo-countdown .days-label { font-size: 0.6rem; }

  /* Show card countdown */
  .countdown-boxes { flex-wrap: wrap; }
  .cbox { min-width: 44px; padding: 0.3rem 0.5rem; }
  .cbox .cnum { font-size: 1.1rem; }

  /* Store grid: single column */
  .store-grid { grid-template-columns: 1fr; }

  /* Features grid: single column */
  .features-grid { grid-template-columns: 1fr; }

  /* Toast: full width at bottom */
  .toast { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; }

  /* Section padding */
  section { padding: 2.5rem 1rem; }
  .section-title { font-size: 1.6rem; }
}
