/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors derived from logo.jpg and hero.jpg */
  --primary-brown: #4E3B31;
  --primary-brown-light: #6C5547;
  --primary-brown-rgb: 78, 59, 49;
  
  --retro-orange: #D95B1F;
  --retro-orange-light: #E76F51;
  --retro-orange-rgb: 217, 91, 31;
  
  --accent-gold: #E09A18;
  --accent-gold-light: #F4A261;
  
  --accent-teal: #8AB8C2;
  --accent-teal-dark: #6C9DA9;
  --accent-teal-light: #EBF2F3;
  
  --bg-cream: #FCF9F2;
  --bg-cream-darker: #F4EFE6;
  --bg-cream-rgb: 252, 249, 242;
  
  --text-dark: #3D2D23;
  --text-muted: #7E6C61;
  --white: #FFFFFF;
  
  /* Fonts */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --navbar-height: 80px;
  --max-width: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-brown-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--retro-orange);
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.section-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--primary-brown);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--retro-orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 15px;
}

/* ==========================================================================
   NAVBAR & STICKY HEADER
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: rgba(252, 249, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78, 59, 49, 0.1);
  z-index: 1000;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(252, 249, 242, 0.95);
  box-shadow: 0 4px 20px rgba(78, 59, 49, 0.08);
}

.nav-container {
  height: 100%;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-brown);
  font-weight: bold;
}

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-brown);
  box-shadow: 0 2px 10px rgba(78, 59, 49, 0.1);
  transition: transform var(--transition-normal);
}

.nav-logo:hover .logo-circle {
  transform: rotate(360deg);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-brown);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--retro-orange);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--retro-orange);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-brown);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(78, 59, 49, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transition: right var(--transition-slow);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--primary-brown);
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-brown);
  font-weight: bold;
}

.drawer-link:hover {
  color: var(--retro-orange);
  padding-left: 10px;
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(78, 59, 49, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 59, 49, 0.1); /* Subtle dark overlay for readability */
}

/* Smooth transition gradient into the cream section background below */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(
    to bottom,
    rgba(252, 249, 242, 0) 0%,
    rgba(252, 249, 242, 0.6) 50%,
    rgba(252, 249, 242, 0.9) 80%,
    rgba(252, 249, 242, 1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 600px;
}

/* Vintage Fabric Label/Badge style overlay card */
.hero-badge {
  background-color: rgba(252, 249, 242, 0.96);
  border: 3px double var(--primary-brown);
  border-radius: var(--border-radius-lg);
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(78, 59, 49, 0.15);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpHero 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.badge-tag {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--retro-orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.badge-divider {
  width: 100px;
  height: 1px;
  background-color: var(--primary-brown);
  margin: 0 auto 20px auto;
  position: relative;
}

.badge-divider::before {
  content: '✿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-cream);
  color: var(--accent-gold);
  padding: 0 8px;
  font-size: 0.9rem;
}

.badge-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.badge-footer {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.hero-cta-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  background-color: var(--primary-brown);
  color: var(--bg-cream);
  border: 1px solid var(--primary-brown);
}

.hero-cta-btn.secondary {
  background-color: transparent;
  color: var(--primary-brown);
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 59, 49, 0.2);
}

.hero-cta-btn:not(.secondary):hover {
  background-color: var(--retro-orange);
  border-color: var(--retro-orange);
}

.hero-cta-btn.secondary:hover {
  background-color: var(--primary-brown);
  color: var(--bg-cream);
}

@keyframes slideUpHero {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-cream);
  position: relative;
  z-index: 5;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--bg-cream-darker);
  color: var(--primary-brown);
  border: 1px solid rgba(78, 59, 49, 0.15);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background-color: var(--primary-brown);
  color: var(--bg-cream);
  border-color: var(--primary-brown);
}

.filter-btn.active {
  background-color: var(--retro-orange);
  color: var(--white);
  border-color: var(--retro-orange);
  box-shadow: 0 4px 15px rgba(217, 91, 31, 0.3);
}

/* Masonry/Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(78, 59, 49, 0.08);
  background-color: var(--white);
  border: 1px solid rgba(78, 59, 49, 0.05);
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity 0.4s ease;
  animation: fadeInGrid 0.5s ease-out forwards;
}

@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(78, 59, 49, 0.18);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

/* Info overlay sliding up on hover */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(78, 59, 49, 0.9) 0%,
    rgba(78, 59, 49, 0.4) 60%,
    rgba(78, 59, 49, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--bg-cream);
  color: var(--primary-brown);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

.item-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.item-category {
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform var(--transition-normal) 0.05s;
}

.gallery-item:hover .item-title,
.gallery-item:hover .item-category {
  transform: translateY(0);
}

/* ==========================================================================
   INFORMATION SECTION (Tabs on Desktop, Accordion on Mobile)
   ========================================================================== */
.info-section {
  background-color: var(--bg-cream-darker);
  position: relative;
}

.info-responsive-tabs {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(78, 59, 49, 0.1);
  box-shadow: 0 10px 30px rgba(78, 59, 49, 0.05);
  overflow: hidden;
  padding: 40px;
}

/* Desktop Navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid var(--bg-cream-darker);
  padding-bottom: 25px;
  margin-bottom: 45px;
}

.tab-btn {
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 30px;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn i {
  font-size: 1.05rem;
}

.tab-btn:hover {
  color: var(--primary-brown);
  background-color: var(--bg-cream-darker);
}

.tab-btn.active {
  background-color: var(--primary-brown);
  color: var(--white);
}

/* Accordion Header (Hidden on Desktop) */
.accordion-header {
  display: none;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-brown);
  background-color: var(--bg-cream-darker);
  border: 1px solid rgba(78, 59, 49, 0.1);
  border-radius: var(--border-radius);
  justify-content: flex-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.accordion-header .chevron-icon {
  transition: transform var(--transition-normal);
}

/* Desktop Visibility Panels */
.tab-panel {
  display: none;
  animation: fadeInTab 0.5s ease-out forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-text-box {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.guide-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Tab 1 Content: Price Tickets */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.ticket-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(78, 59, 49, 0.05);
  border: 1px solid rgba(78, 59, 49, 0.08);
  position: relative;
  transition: transform var(--transition-normal);
}

.ticket-card:hover {
  transform: translateY(-5px);
}

.ticket-stub {
  background-color: var(--retro-orange);
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px dashed var(--bg-cream-darker);
  position: relative;
}

/* Decorative ticket punch holes */
.ticket-stub::before,
.ticket-stub::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--bg-cream); /* matches parent container */
  border-radius: 50%;
  right: -8px;
}

.ticket-stub::before {
  top: -8px;
}

.ticket-stub::after {
  bottom: -8px;
}

.ticket-stub span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.ticket-body {
  flex: 1;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 8px;
}

.price-range {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--retro-orange);
  margin-bottom: 10px;
}

.ticket-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticket-note::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 1.25rem;
}

/* Tab 2 Content: Size Guide Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius);
  border: 1px solid rgba(78, 59, 49, 0.1);
  box-shadow: 0 4px 15px rgba(78, 59, 49, 0.03);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
  min-width: 500px;
}

.size-table th,
.size-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--bg-cream-darker);
}

.size-table th {
  background-color: var(--primary-brown);
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.size-table tr:last-child td {
  border-bottom: none;
}

.size-table tbody tr {
  transition: background-color var(--transition-fast);
}

.size-table tbody tr:hover {
  background-color: var(--bg-cream-darker);
}

.size-name {
  font-weight: 700;
  color: var(--retro-orange);
  font-size: 1.15rem;
}

/* Tab 3 Content: Purchase Grid */
.purchase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.purchase-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 35px;
  border: 1px solid rgba(78, 59, 49, 0.08);
  box-shadow: 0 6px 20px rgba(78, 59, 49, 0.04);
  transition: transform var(--transition-normal);
}

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

.purchase-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent-teal-light);
  color: var(--accent-teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.purchase-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-brown);
  margin-bottom: 15px;
}

.purchase-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.purchase-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.purchase-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.purchase-card ul li::before {
  content: '✿';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--retro-orange);
  font-size: 0.8rem;
}

.full-width-card {
  grid-column: span 2;
}

.payment-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-cream-darker);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-item strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--retro-orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-item strong i {
  font-size: 1rem;
}

.detail-item span {
  font-size: 1rem;
  color: var(--text-dark);
}

/* ==========================================================================
   CONTACT & FOOTER
   ========================================================================== */
.footer-section {
  background-color: var(--primary-brown);
  color: var(--bg-cream);
  position: relative;
  z-index: 5;
  border-top: 4px solid var(--retro-orange);
}

.footer-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  margin-bottom: 45px;
}

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--retro-orange);
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.footer-brand h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--bg-cream-darker);
  font-weight: 300;
  opacity: 0.8;
}

.footer-cta-container {
  max-width: 600px;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.footer-cta-container h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-cta-container p {
  color: var(--bg-cream-darker);
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.7;
}

.instagram-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: var(--retro-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(217, 91, 31, 0.4);
  transition: all var(--transition-normal);
}

.instagram-cta-btn:hover {
  transform: translateY(-3px);
  background-color: #E26E30;
  box-shadow: 0 12px 30px rgba(217, 91, 31, 0.6);
}

.instagram-cta-btn:active {
  transform: translateY(-1px);
}

.footer-bottom {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid rgba(252, 249, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

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

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(78, 59, 49, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: rgba(252, 249, 242, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  z-index: 10002;
}

.lightbox-close:hover {
  background-color: var(--retro-orange);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(252, 249, 242, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  z-index: 10001;
}

.lightbox-nav:hover {
  background-color: var(--retro-orange);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(252, 249, 242, 0.9);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.lightbox-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.lightbox-caption span {
  color: var(--accent-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE-FIRST)
   ========================================================================== */

/* Tablet & Mobile Layout Shifts */
@media (max-width: 1024px) {
  .purchase-grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .payment-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Hero */
  .hero-section {
    height: 75vh;
  }
  
  .hero-badge {
    padding: 25px 15px;
  }
  
  /* Info Section: Convert Tabs to Accordion */
  .tabs-nav {
    display: none; /* Hide horizontal tabs on mobile */
  }
  
  .info-responsive-tabs {
    padding: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .tabs-panels {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .tab-panel {
    display: block; /* Make all panel wrappers displayable */
    width: 100%;
  }
  
  .accordion-header {
    display: flex; /* Show headers as triggers */
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    cursor: pointer;
  }
  
  /* Collapsed panel content by default on mobile */
  .tab-panel .panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal);
    background-color: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border: 1px solid rgba(78, 59, 49, 0.1);
    border-top: none;
  }
  
  /* Expanded Panel Content */
  .tab-panel.active .panel-content {
    max-height: 2000px; /* high value to fit contents */
    transition: max-height var(--transition-slow) ease-in;
  }
  
  .tab-panel.active .accordion-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background-color: var(--primary-brown);
    color: var(--white);
  }
  
  .tab-panel.active .accordion-header .chevron-icon {
    transform: rotate(180deg);
  }
  
  .panel-inner {
    padding: 24px 16px;
  }
  
  /* Purchase Grid Stacking */
  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .full-width-card {
    grid-column: span 1;
  }
  
  /* Lightbox adjustments */
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
  
  .lightbox-content {
    max-width: 95%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 65vh;
    padding-bottom: 40px;
  }
  
  .hero-badge {
    border-radius: var(--border-radius);
  }
  
  .badge-footer {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-cta-btn {
    width: 100%;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .price-cards {
    grid-template-columns: 1fr;
  }
}
