/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* USA 250th Anniversary Palette */
  --navy-dark:   #0d1b4b;
  --navy:        #002868;
  --navy-mid:    #1e3a7a;
  --red:         #B22234;
  --red-dark:    #8b1a27;
  --gold:        #C8A951;
  --gold-light:  #d9bf7a;
  --cream:       #EEF2F8;
  --off-white:   #F8F9FC;
  --white:       #FFFFFF;
  --text-dark:   #0a1530;
  --text-mid:    #1a3570;
  --shadow:      rgba(13, 27, 75, 0.12);
  --shadow-md:   rgba(13, 27, 75, 0.25);
  --radius: 10px;
  --transition: 0.25s ease;
  --header-h: 72px;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--navy-mid);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 1rem auto 0;
  border-radius: 2px;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.35);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px var(--shadow-md);
  height: var(--header-h);
  border-bottom: 3px solid var(--red);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 5px;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform var(--transition);
}

.nav-link:hover::after, .nav-link:focus-visible::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover, .nav-link:focus-visible { color: var(--gold); }

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem;
  border-radius: 6px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.cart-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--off-white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px var(--shadow-md);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--navy-dark);
  color: var(--white);
  border-bottom: 3px solid var(--red);
}

.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}

.cart-close {
  color: rgba(255,255,255,0.8);
  padding: 0.3rem;
  border-radius: 4px;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--gold); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.875rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  border-left: 3px solid var(--red);
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--navy-dark);
  grid-column: 1;
}

.cart-item-price {
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
  grid-column: 2;
  text-align: right;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  grid-column: 1;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--navy-mid);
  color: var(--navy-dark);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.qty-display {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.remove-btn {
  color: #aaa;
  font-size: 0.75rem;
  text-decoration: underline;
  grid-column: 2;
  text-align: right;
  transition: color var(--transition);
}
.remove-btn:hover { color: #c0392b; }

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffc439;
  color: #003087;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: 6px;
  border: none;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.paypal-btn:hover { background: #f0b429; transform: translateY(-1px); }

.continue-shopping {
  background: transparent;
  color: var(--navy-mid);
  font-size: 0.9rem;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition);
}
.continue-shopping:hover { color: var(--red); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  padding: 2rem;
  text-align: center;
  color: var(--navy-mid);
}
.cart-empty p { font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wood-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9,20,58,0.68) 0%, rgba(13,27,75,0.74) 55%, rgba(100,12,25,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(200,169,81,0.6);
  border-radius: 20px;
  background: rgba(200,169,81,0.08);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-title span { color: var(--gold); }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,244,248,0.88);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Promo banner strip injected by storefront-firebase.js inside hero */
.promo-hero-strip {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}
.promo-hero-strip a { color: var(--navy-dark); text-decoration: underline; }
.promo-hero-strip span { font-weight: 400; opacity: 0.85; }

/* Stars row in hero */
.hero-stars {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* ===== SHOP SECTION ===== */
.shop-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 25px;
  border: 2px solid var(--navy-mid);
  color: var(--navy-mid);
  font-size: 0.9rem;
  font-weight: 700;
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px var(--shadow-md);
  border-top-color: var(--gold);
}

.product-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.product-img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-info {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  flex: 1;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.25rem;
}

.add-to-cart {
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.add-to-cart:hover {
  background: var(--red);
  transform: scale(1.02);
}

.add-to-cart.added {
  background: #2e7d32;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 5rem 0;
  background: var(--cream);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: 0 3px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.gallery-item svg { width: 100%; height: 100%; display: block; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,27,75,0.88));
  color: var(--white);
  padding: 1.5rem 0.75rem 0.75rem;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,10,30,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img-wrap {
  max-width: min(600px, 90vw);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-img-wrap svg { width: 100%; height: auto; display: block; max-height: 70vh; }

.lightbox-caption {
  color: var(--gold-light);
  font-size: 1rem;
  text-align: center;
  opacity: 0.9;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ===== CUSTOM ORDER ===== */
.custom-order-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.custom-order-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--shadow);
  border-top: 4px solid var(--red);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
}

.optional-label {
  font-weight: 400;
  color: var(--navy-mid);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #dde3f0;
  border-radius: 7px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fafbfe;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,40,104,0.12);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1.1em;
}

.file-upload-wrap {
  position: relative;
}

.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px dashed var(--navy-mid);
  border-radius: 7px;
  color: var(--navy-mid);
  font-size: 0.9rem;
  background: #fafbfe;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.file-upload-wrap:hover .file-upload-display {
  border-color: var(--navy);
  background: var(--white);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--shadow);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 4px solid #2e7d32;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success.visible { display: flex; }

.form-success h3 {
  font-size: 1.8rem;
  color: var(--navy-dark);
}

.form-success p {
  color: var(--navy-mid);
  font-size: 1.05rem;
}

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

/* ===== ABOUT ===== */
.about-section {
  padding: 5rem 0 3rem;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title { text-align: left; }

.about-text .section-divider {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(0,40,104,0.18);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.badge-icon { font-size: 1.1rem; }

.about-visual { flex-shrink: 0; }

.rustic-divider {
  padding: 1.5rem 0 0;
  width: 100%;
}
.rustic-divider svg { width: 100%; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.contact-item a, .contact-item span {
  color: var(--navy-dark);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  border: 1px solid rgba(13,27,75,0.15);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.social-link:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { flex-shrink: 0; }
.social-link:hover svg { stroke: var(--white); fill: var(--white); }

.contact-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

/* Shows list */
.shows-list {
  margin-bottom: 1.5rem;
}

.shows-list h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.875rem;
}

.show-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,40,104,0.1);
  align-items: start;
}

.show-item:last-child { border-bottom: none; }

.show-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  padding-top: 0.1rem;
}

.show-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  grid-column: 2;
}

.show-loc {
  font-size: 0.78rem;
  color: var(--navy-mid);
  grid-column: 2;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo { margin-bottom: 0.75rem; }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

.footer-links h3,
.footer-contact-info h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--gold); }

.footer-newsletter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.25rem;
}
.footer-newsletter-text h3 { font-family:'Playfair Display',serif; font-size:1rem; color:white; margin-bottom:0.2rem; }
.footer-newsletter-text p  { font-size:0.82rem; color:rgba(255,255,255,0.55); }
.footer-newsletter-form {
  display: flex; gap: 0.5rem; flex: 1; min-width: 260px; max-width: 420px;
}
.footer-newsletter-form input {
  flex: 1; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 8px;
  padding: 0.55rem 0.85rem; background: rgba(255,255,255,0.08);
  color: white; font-family:'Lato',sans-serif; font-size:0.9rem;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form input:focus { outline:none; border-color:var(--gold); }
.footer-newsletter-form button {
  background: var(--gold); color: var(--navy-dark); border: none;
  border-radius: 8px; padding: 0.55rem 1.1rem; font-weight:700;
  font-size:0.88rem; cursor:pointer; white-space:nowrap;
  transition: background var(--transition);
}
.footer-newsletter-form button:hover { background: var(--gold-light); }
.footer-newsletter-form button:disabled { opacity:0.6; cursor:not-allowed; }
.newsletter-msg { font-size:0.8rem; width:100%; }
.newsletter-msg.ok  { color: #7ecfa0; }
.newsletter-msg.err { color: #f08080; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer { font-style: italic; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(178,34,52,0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,40,104,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text .section-divider { margin: 0 auto 1.5rem; }
  .about-text .section-title { text-align: center; }
  .about-visual { display: flex; justify-content: center; }
  .about-badges { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 1.25rem;
    box-shadow: 0 8px 24px var(--shadow-md);
    z-index: 999;
    border-bottom: 3px solid var(--red);
  }

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

  .nav-link {
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-link::after { display: none; }

  .cart-btn { margin-left: 0; }

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

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

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

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .custom-order-form { padding: 1.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 1001;
  position: relative;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  /* Make the black SVG render in gold on the dark header */
  filter: brightness(0) saturate(100%) invert(75%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%);
  flex-shrink: 0;
}

.logo-img--footer {
  width: 44px;
  height: 44px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

/* ===== CATEGORY GRID (Shop) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 3px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px var(--shadow-md);
}

.category-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--cream);
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  width: 100%;
  flex: 1;
}

.subcategory-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream);
  line-height: 1.4;
}

.subcategory-list li:last-child {
  border-bottom: none;
}

.category-cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.55rem 1.25rem;
  border-radius: 25px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.category-cta:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== SHOWS — RECURRING BADGE ===== */
.recurring-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SOCIAL LINKS — COMING SOON ===== */
.social-link--soon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  cursor: default;
  font-size: 0.95rem;
  color: var(--navy-mid);
  pointer-events: none;
}

.coming-soon-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--cream);
  color: var(--navy-mid);
  border: 1px solid var(--navy-mid);
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
}

/* ===== RESPONSIVE — NEW ELEMENTS ===== */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .category-card {
    padding: 1.25rem 1rem;
  }
  .category-icon {
    width: 56px;
    height: 56px;
  }
  .category-name {
    font-size: 0.95rem;
  }
}

/* ── Subcategory list links ───────────────────────────────────── */
.subcategory-list a {
  color: var(--navy-mid);
  text-decoration: none;
  transition: color var(--transition);
  display: block;
}
.subcategory-list a:hover {
  color: var(--red);
  text-decoration: underline;
}
