/* Restaurant Weißes Ross - Luxury Steakhouse & Gourmet Shop Styling */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-surface: #1e1e1e;
  
  --gold-primary: #ddb971;
  --gold-secondary: #c59d4c;
  --gold-light: #f5e2b8;
  --gold-dark: #8c6b27;
  --gold-glow: rgba(221, 185, 113, 0.18);
  --gold-border: rgba(221, 185, 113, 0.35);

  --text-main: #f5f5f5;
  --text-muted: #aaaaaa;
  --text-dim: #666666;

  --font-serif-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif-sub: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(221, 185, 113, 0.05);
}

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

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

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif-heading);
  letter-spacing: 1px;
}

.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #f5e2b8 0%, #ddb971 50%, #c59d4c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Containers */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(221, 185, 113, 0.3));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.cart-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  box-shadow: 0 0 18px var(--gold-glow);
}

.cart-count {
  background: var(--gold-primary);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-btn:hover .cart-count {
  background: var(--bg-dark);
  color: var(--gold-primary);
}

/* Hero Banner */
.hero {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(221, 185, 113, 0.12) 0%, rgba(10, 10, 10, 1) 70%);
  border-bottom: 1px solid rgba(221, 185, 113, 0.15);
}

.hero-logo-center {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(221, 185, 113, 0.4));
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--gold-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-desc {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
}

/* Section Title */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: 0 auto;
}

/* Section Wrapper */
.shop-section {
  padding: 80px 0;
}

.bg-surface {
  background: rgba(20, 20, 20, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Voucher Configurator Layout */
.configurator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .configurator-grid {
    grid-template-columns: 1fr;
  }
}

.config-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.preset-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.preset-btn {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.preset-btn:hover, .preset-btn.active {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  box-shadow: 0 0 14px var(--gold-glow);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #181818;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

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

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #ddb971 0%, #c59d4c 100%);
  color: var(--bg-dark);
  border: none;
  padding: 16px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 185, 113, 0.35);
}

/* Live Voucher Visual Card Preview */
.voucher-preview-wrapper {
  position: sticky;
  top: 110px;
}

.voucher-card-preview {
  background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(221, 185, 113, 0.15);
}

.voucher-card-preview::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  pointer-events: none;
}

.preview-header {
  text-align: center;
  border-bottom: 1px solid rgba(221, 185, 113, 0.25);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.preview-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(221, 185, 113, 0.35));
  margin-bottom: 6px;
}

.preview-tag {
  color: var(--gold-primary);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.preview-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.preview-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.preview-val {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.preview-amount-box {
  background: rgba(221, 185, 113, 0.08);
  border: 1px solid var(--gold-border);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 10px 0;
}

.preview-amount-val {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-serif-heading);
}

.preview-message-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold-primary);
  padding: 12px 16px;
  font-style: italic;
  font-size: 13px;
  color: #dddddd;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px stroke rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: var(--text-muted);
}

.qr-placeholder {
  width: 60px;
  height: 60px;
  background: #ffffff;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Physical Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.3;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-primary);
}

.add-cart-btn {
  background: rgba(221, 185, 113, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.add-cart-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

/* Slide-out Cart Sidebar */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--gold-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

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

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.close-cart-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #181818;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info {
  flex-grow: 1;
  padding-right: 12px;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.cart-item-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-primary);
}

.remove-item-btn {
  background: none;
  border: none;
  color: #ff5555;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 16px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
}

/* Modal Checkout */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.9);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
footer {
  background: #060606;
  border-top: 1px solid rgba(221, 185, 113, 0.2);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: var(--text-dim);
}
