/* ===== ORIA Live Kitchen - Dark Premium Theme ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Phosphor Icons --- */
@import url('https://unpkg.com/phosphor-icons@1.4.2/src/css/icons.css');

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

:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #050505;
  --gold: #D4A853;
  --gold-light: #F5D68A;
  --gold-dark: #B8912E;
  --text-primary: #FFFFFF;
  --text-secondary: #F0F0F0;
  --text-muted: #999999;
  --card-bg: rgba(17, 17, 17, 0.85);
  --card-border: 1px solid rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(10, 10, 10, 0.85);
  --nav-height: 72px;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--card-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--text-primary); }

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-badge.live {
  background: rgba(255, 59, 48, 0.15);
  color: #FF3B30;
  border-color: rgba(255, 59, 48, 0.3);
  animation: pulse-live 2s ease-in-out infinite;
}

.hero-badge.upcoming {
  background: rgba(255, 204, 0, 0.12);
  color: #FFCC00;
  border-color: rgba(255, 204, 0, 0.25);
}

.hero-badge.offline {
  background: rgba(153, 153, 153, 0.12);
  color: #999;
  border-color: rgba(153, 153, 153, 0.2);
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero h1 {
  margin-bottom: 1rem;
  line-height: 1.1;
}

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

.hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0A0A;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0A;
}

.btn-play {
  margin-top: 2.5rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: #0A0A0A;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.3);
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(212, 168, 83, 0.5);
}

.stream-embed {
  margin-top: 2rem;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--card-border);
}

.stream-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* --- Sections General --- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.price { 
  font-size: 1.25rem; 
  font-weight: 700; 
  color: var(--gold);
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.live-badge {
  background: rgba(255, 59, 48, 0.15);
  color: #FF3B30;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.orias-score {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem;
  font-size: 0.85rem;
}

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #0A0A0A;
  border-left: var(--card-border);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: var(--card-border);
}

.cart-header h3 {
  font-size: 1.3rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.cart-close:hover { color: var(--text-primary); }

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

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #FF3B30;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.cart-item-remove:hover { opacity: 1; }

.cart-total {
  padding: 1.5rem;
  border-top: var(--card-border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cart-total-row span:last-child {
  color: var(--gold);
}

.cart-checkout {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0A0A;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

/* --- Events --- */
.events-list {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.event-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.event-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.event-date {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.event-time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.event-tickets {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ticket-option {
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.ticket-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ticket-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.25rem 0;
}

.ticket-btn {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.ticket-btn:hover {
  background: var(--gold-light);
}

/* --- Club / Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0A0A;
  padding: 0.25rem 1.25rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-tier {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Story Section --- */
.story-timeline {
  position: relative;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--bg-primary);
  z-index: 1;
}

.timeline-content h4 {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.story-col {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.story-col h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.story-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.story-quote {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.story-quote p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.story-quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

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

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

.form-group select {
  color: var(--text-primary);
}

.form-group select option {
  background: #0A0A0A;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info-card .btn {
  margin-top: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
  transform: translateY(-2px);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #0A0A0A;
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  backdrop-filter: blur(20px);
}

.modal h3 {
  margin-bottom: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Footer --- */
.footer {
  background: var(--card-bg);
  border-top: var(--card-border);
  padding: 3rem 1.5rem 1.5rem;
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: all 800ms cubic-bezier(0.32, 0.72, 0, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card-bg);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 5000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  backdrop-filter: blur(20px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: rgba(52, 199, 89, 0.4); color: #34C759; }
.toast.error { border-color: rgba(255, 59, 48, 0.4); color: #FF3B30; }

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-page {
  padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page strong {
  color: var(--text-secondary);
}

/* --- Cart Counter Badge --- */
.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF3B30;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
}

/* --- Notification Banner --- */
.notification {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6000;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { order: -1; grid-column: 1 / -1; transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .story-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: var(--card-border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .products-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .story-columns { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .timeline-content { width: 80%; }
  .timeline-dot { left: 10%; }
  .timeline-item:nth-child(odd) { flex-direction: row; }
  .story-timeline::before { left: 10%; }

  .cart-sidebar { width: 100%; }

  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .event-tickets { flex-direction: column; }
}
