/* Book Chafing Dish v3 - Stylesheet */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #065f46;
  background-color: #FAF7F2;
}

/* Header Styles - Elegant Emerald & Champagne - FIXED beim Scrollen */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  color: #065f46;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 3px solid #C9A227;
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.1);
}

/* Platz für den fixed Header */
body {
  padding-top: 100px;
}

header nav a {
  margin-left: 1.5rem;
  color: #065f46;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A227, #E8D48A);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav a:hover {
  color: #C9A227;
  transform: translateY(-2px);
}

header nav a:hover::after {
  width: 80%;
}

header nav a#warenkorb-indikator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

header nav a#warenkorb-indikator::after {
  content: attr(data-count);
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #C9A227, #E8D48A);
  color: #065f46;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.4rem;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
  width: auto;
  height: auto;
  left: auto;
  bottom: auto;
  transform: none;
}

header nav a#warenkorb-indikator:hover::after {
  width: auto;
}

#superevents_logo {
  height: 70px;
  border-radius: 12px;
}

/* Scene Container */
.scene-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.scene {
  padding: 2rem;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  flex: 1;
}

.scene.active {
  display: block;
}

#scene-contact {
  position: relative;
  left: -20%;
}

#scene-products {
  /* Kein overflow, damit sticky Sidebar funktioniert */
}

/* Product Suggestions Sidebar */
.suggestions-sidebar {
  width: 300px;
  position: sticky;
  top: 170px;
  height: fit-content;
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E6 100%);
  border: 2px solid #047857;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.15);
}

.suggestions-sidebar h3 {
  color: #065f46;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #047857;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.suggestions-sidebar h3 img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #065f46;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.suggestion-item:hover {
  background: #047857;
  color: white;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}

.suggestion-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid #047857;
}

.suggestion-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
}

.suggestion-badge {
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .scene-container {
    flex-direction: column;
  }
  .suggestions-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* General Styles */
.rental-period {
  color: #065f46;
  font-weight: bold;
  font-size: 1.3rem;
}

.calendar {
  margin-bottom: 1rem;
  border: 2px solid #065f46;
  padding: 0.5rem;
  border-radius: 6px;
  color: #065f46;
  width: 100%;
  max-width: 300px;
}

.weiter-button, .zurueck-button {
  background-color: #065f46;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 1rem;
}

/* Product Styles */
.product-header {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 1.5rem;
  padding: 0.25rem 0.5rem;
  background-color: #047857;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: center;
}

.product-item {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.product-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
}

.product-qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.product-qty label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #065f46;
  white-space: nowrap;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #065f46;
}

.product-title {
  font-weight: bold;
  color: #065f46;
  font-size: 1.1rem;
  text-align: center;
  width: 70px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #065f46;
  border-radius: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title-rectangular {
  font-weight: bold;
  color: #065f46;
  font-size: 1.1rem;
  text-align: center;
  width: 120px;
  padding: 0.5rem 0.3rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #065f46;
  border-radius: 8px;
  white-space: nowrap;
}

.product-article-number {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  width: 100%;
}

.product-info {
  display: block;
  width: fit-content;
  line-height: 1.8;
}

.product-info-text {
  margin-bottom: 1rem;
  white-space: pre-line;
  font-size: 0.88rem;
}

.chafing-dish-variants {
  color: #065f46;
  margin-top: -1rem;
  font-size: 1.3rem;
  text-align: center;
}

.qty-price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
}

/* Magnifier Styles */
.magnifier-container {
  position: relative;
  width: 300px;
  height: auto;
  overflow: hidden;
}

.magnifier-image {
  width: 300px;
  height: auto;
  display: block;
}

.magnifier-glass {
  position: absolute;
  border: 3px solid #065f46;
  border-radius: 50%;
  cursor: none;
  width: 100px;
  height: 100px;
  visibility: hidden;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

/* Quantity Control - matching cart modal style */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 0.35rem;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #047857;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.qty-control button:hover {
  background: #047857;
  color: white;
  transform: scale(1.05);
}

.qty-control button:active {
  transform: scale(0.95);
}

.qty-control button:first-child {
  border-radius: 8px;
}

.qty-control button:nth-child(3) {
  border-radius: 8px;
}

.qty-control input {
  width: 3rem;
  text-align: center;
  border: none;
  background: transparent;
  padding: 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #065f46;
}

.qty-control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart Bar */
.cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #065f46;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.cart-actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.book-now {
  background-color: white;
  color: #065f46;
}

.inquire {
  background-color: #d1fae5;
  color: #065f46;
}

/* Popup Warning */
#popup-warning,
#popup-confirm-brennpaste {
  /* jetzt via .modal-overlay gesteuert */
}

/* ═══════════════════════════════════════════════════
   EINHEITLICHE MODAL-SYSTEM (alle Dialoge)
═══════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 30, 20, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 16px;
  animation: modalFadeIn 0.25s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-card {
  background: #fff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  animation: modalSlideUp 0.35s cubic-bezier(.22,.68,0,1.2);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* --- Header-Varianten --- */
.modal-card-header {
  padding: 36px 32px 28px;
  border-radius: 24px 24px 0 0;
  text-align: center;
  color: #fff;
}

.modal-header-success { background: linear-gradient(135deg, #065f46 0%, #047857 100%); }
.modal-header-warning  { background: linear-gradient(135deg, #92400e 0%, #b45309 100%); }
.modal-header-error    { background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%); }

.modal-icon-ring {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-card-header h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.2px;
}

.modal-brand {
  margin: 0;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modal-gold { color: #C9A227; font-weight: 700; }

/* --- Body --- */
.modal-card-body {
  padding: 28px 32px 8px;
}

.modal-card-body p {
  font-size: .98rem;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 12px;
}

.modal-intro {
  text-align: center;
  color: #6b7280 !important;
  font-size: .9rem !important;
  margin-bottom: 8px !important;
}

.modal-email-badge {
  background: #ecfdf5;
  border: 2px solid #6ee7b7;
  color: #065f46;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px !important;
  word-break: break-all;
}

/* Schritte */
.modal-steps-new {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-step-new {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8faf9;
  border-radius: 12px;
  padding: 12px 16px;
}

.step-icon-new {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.step-text-new {
  font-size: .88rem;
  color: #374151;
  line-height: 1.5;
}

.step-text-new strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #065f46;
  margin-bottom: 2px;
}

/* Zusammenfassung */
.modal-summary-box {
  background: #f8faf9;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.modal-summary-box h3 {
  font-size: .9rem;
  font-weight: 700;
  color: #065f46;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid #a7f3d0;
  padding-bottom: 8px;
}

#modal-summary-content {
  font-size: .88rem;
  color: #444;
  line-height: 1.7;
  white-space: pre-line;
}

.modal-note {
  font-size: .82rem !important;
  color: #9ca3af !important;
  text-align: center;
  font-style: italic;
  margin-bottom: 4px !important;
}

/* --- Footer --- */
.modal-card-footer {
  padding: 20px 32px 28px;
  text-align: center;
}

.modal-footer-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* --- Buttons --- */
.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  letter-spacing: .3px;
}

.modal-btn-primary {
  background: linear-gradient(135deg, #C9A227 0%, #a87d1a 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(201,162,39,.4);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,162,39,.5);
}

.modal-btn-secondary {
  background: #f3f4f6;
  color: #374151;
  box-shadow: none;
}

.modal-btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* Validierungs-Fehler */
.validation-error-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.validation-error-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff5f5;
  border-left: 3px solid #b91c1c;
  border-radius: 8px;
  color: #333;
  font-size: .93rem;
  line-height: 1.5;
}

.validation-error-list li::before {
  content: '✖';
  color: #b91c1c;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pflichtfeld-Markierungen */
.required-mark {
  color: #e53935;
  font-weight: 700;
  margin-left: 2px;
}

.optional-mark {
  color: #888;
  font-weight: 400;
  font-size: 0.85em;
  margin-left: 4px;
}

/* Alte Klassen (Kompatibilität) */
.modal-content, .modal-header, .modal-body, .modal-footer,
.modal-icon, .modal-steps, .modal-step, .step-number,
.modal-email, .modal-summary, .modal-close-btn,
.modal-header-warning, .modal-validation-content { /* per neue Klassen ersetzt */ }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.contact-form label {
  font-weight: bold;
  color: #065f46;
}

.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.rental-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  padding: 0.5rem;
  border: 2px solid #065f46;
  border-radius: 6px;
  width: 100%;
}

#summary-output {
  background-color: #F5F0E6;
  border: 2px solid #065f46;
  border-radius: 6px;
  padding: 0.5rem;
  white-space: pre-wrap;
}

/* Loading and Success Scenes */
#loading-scene {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 40vh;
  color: #065f46;
  font-weight: 600;
}

.dots span {
  animation: blink 1.5s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

#success-scene {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 40vh;
  color: #28a745;
  font-weight: 600;
}

#success-message {
  display: block;
  text-align: center;
  color: green;
  font-size: 1.2rem;
  margin-top: 2rem;
}

/* Progress Indicator */
.progress-bar {
  background-color: #F5F0E6;
  border-bottom: 2px solid #047857;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 100px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0, 115, 131, 0.1);
}

.progress-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #065f46;
  font-weight: 600;
  font-size: 1rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #065f46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #047857;
}

.progress-step.active {
  background-color: #047857;
  color: white;
}

.progress-step.completed {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

.progress-divider {
  width: 40px;
  height: 2px;
  background-color: #d1fae5;
}

.progress-divider.completed {
  background-color: #28a745;
}

.progress-button {
  background-color: #047857;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-button:hover {
  background-color: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 115, 131, 0.3);
}

.progress-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #FAF7F2;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: #047857;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #065f46;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #065f46;
  font-weight: 600;
}

.breadcrumb-separator {
  color: #999;
  font-size: 0.9rem;
}

/* ================================================
   Mobile Navigation – Hamburger Menu
   ================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(201, 162, 39, 0.15);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #065f46;
  border-radius: 2px;
  position: absolute;
  left: 11px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header.nav-open ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* ================================================
   Mobile Responsive Styles
   ================================================ */
@media (max-width: 768px) {
  body {
    padding-top: 74px;
  }

  header {
    padding: 0.75rem 1.25rem;
  }

  #superevents_logo {
    height: 52px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 200;
    border-left: 3px solid #C9A227;
    overflow-y: auto;
  }

  header.nav-open nav {
    right: 0;
  }

  header nav a {
    margin-left: 0;
    width: 100%;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    font-size: 1rem;
  }

  header nav a:hover {
    transform: none;
  }

  header nav a::after {
    display: none;
  }

  /* Progress bar */
  .progress-bar {
    top: 74px;
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .progress-info {
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .progress-button {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  /* Scene layout */
  .scene-container {
    padding: 0 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  #scene-contact {
    left: 0;
  }

  /* Product grid: stack columns on mobile */
  .product-header {
    display: none;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .product-right,
  .product-qty {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .qty-price-wrapper {
    flex-wrap: wrap;
  }

  /* Contact layout */
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 0.75rem 1rem;
  }

  .breadcrumb-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.5rem 1rem;
  }

  #superevents_logo {
    height: 44px;
  }

  body {
    padding-top: 64px;
  }

  .progress-bar {
    top: 64px;
  }

  .modal-btn {
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  .modal-footer-row {
    flex-direction: column;
  }

  .modal-card-body {
    padding: 20px 20px 8px;
  }

  .modal-card-footer {
    padding: 16px 20px 24px;
  }
}

