/* ===== HIDDENSEER STEINVERKAUF — MAIN STYLES ===== */
:root {
  --blue: #005B94;
  --gold: #FDB913;
  --bg: #e8f4fc;
  --bg-light: #f2f9ff;
  --white: #ffffff;
  --text: #1a2e3b;
  --text-muted: #4a6578;
  --border: rgba(0,91,148,0.15);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,91,148,0.12);
  --transition: 0.22s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== LANG BAR ===== */
#lang-bar {
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 24px;
  font-size: 12px;
  justify-content: flex-end;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

/* ===== HEADER ===== */
header {
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,91,148,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-crest {
  height: 48px;
  width: auto;
  display: block;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.site-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

#basket-icon {
  background: var(--gold);
  color: var(--text);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
#basket-icon:hover { background: #e5a610; }

#basket-count {
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ===== WAVES ===== */
.wave-top { line-height: 0; background: var(--blue); }
.wave-top svg, .wave-footer svg { display: block; width: 100%; }
.wave-footer { line-height: 0; }

.wave-scatter { margin: -8px 0; padding: 0 24px; opacity: 0.6; }
.wave-scatter.right { text-align: right; }
.wave-scatter svg { max-width: 600px; }

/* ===== HERO ===== */
#hero {
  background: linear-gradient(160deg, #cce8f7 0%, #e8f4fc 60%, #f2f9ff 100%);
  padding: 72px 24px 60px;
  text-align: center;
}

.opening-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,91,148,0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.oh-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.oh-times { font-weight: 700; color: var(--blue); }
.oh-sep { color: rgba(0,91,148,0.4); }
.oh-extra { font-size: 12px; color: var(--text-muted); }

#hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.2;
}

#hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(253,185,19,0.4);
}
.cta-btn:hover {
  background: #e5a610;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,185,19,0.5);
}
.cta-btn.full-width { width: 100%; text-align: center; }

/* ===== SHOP SECTION ===== */
#shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--blue);
  margin-bottom: 8px;
}
.section-header p { color: var(--text-muted); font-size: 15px; }

/* FILTERS */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,91,148,0.18);
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #cce8f7, #e8f4fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }

.product-cat-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,91,148,0.09);
  color: var(--blue);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
}

.product-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-name { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; flex: 1; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-price { font-size: 18px; font-weight: 700; color: var(--blue); }

.product-stock { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 10px; }
.stock-ok  { background: #e8f8f0; color: #1e8a4a; }
.stock-low { background: #fff3e0; color: #c0640a; }
.stock-out { background: #fde8e8; color: #c0392b; }

.add-to-basket-btn {
  width: 100%;
  margin-top: 10px;
  background: var(--gold);
  color: var(--text);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.add-to-basket-btn:hover:not(:disabled) {
  background: #e5a610;
  transform: translateY(-1px);
}
.add-to-basket-btn:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

/* ===== BASKET DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
}
.drawer-panel {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(400px, 95vw);
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  animation: slideIn 0.25s ease;
}
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--blue);
  color: #fff;
}
.drawer-header h3 { font-size: 16px; font-weight: 600; }
.drawer-header button { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }

#basket-items { flex: 1; overflow-y: auto; padding: 16px; }
#basket-empty { text-align: center; color: var(--text-muted); padding: 40px 16px; font-size: 14px; }

.basket-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.basket-item-emoji { font-size: 28px; }
.basket-item-info { flex: 1; }
.basket-item-name { font-weight: 600; color: var(--text); }
.basket-item-price { color: var(--blue); font-weight: 600; font-size: 13px; }
.basket-item-remove { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 16px; }

#basket-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.basket-total { font-size: 16px; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; }

/* ===== MODALS ===== */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  width: min(500px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.95) translateY(10px)} to{opacity:1;transform:scale(1) translateY(0)} }

.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); }
.modal-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--blue); margin-bottom: 12px; }

.checkout-info {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 8px;
  padding: 12px 16px; font-size: 13px; color: #7a5a00; margin-bottom: 20px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  transition: var(--transition); background: var(--bg-light); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; }

#checkout-summary { background: var(--bg); border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; }

.success-box { text-align: center; padding: 48px 36px; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-box h3 { color: #27ae60; margin-bottom: 12px; }
.success-box p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

/* ===== ANNIVERSARY OVERLAY ===== */
#anniversary-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,30,60,0.95);
  display: flex; align-items: center; justify-content: center;
}
#fireworks-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
#anniversary-text { position: relative; z-index: 2; text-align: center; color: #fff; padding: 24px; }
.anni-badge {
  display: inline-block; background: var(--gold); color: var(--text);
  font-weight: 700; font-size: 14px; letter-spacing: 2px; padding: 6px 20px;
  border-radius: 20px; margin-bottom: 20px; text-transform: uppercase;
}
#anniversary-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 6vw, 56px); color: var(--gold);
  margin-bottom: 12px; text-shadow: 0 0 30px rgba(253,185,19,0.5);
}
#anniversary-text p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
#anniversary-text button {
  background: var(--gold); color: var(--text); border: none; padding: 14px 36px;
  border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(253,185,19,0.5);
}
#anniversary-text button:hover { background: #fff; transform: scale(1.04); }

/* ===== FOOTER ===== */
footer { background: var(--blue); color: rgba(255,255,255,0.9); padding: 40px 24px 0; }

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr 1.4fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-crest { height: 40px; width: auto; display: block; }
.footer-site-title { font-size: 14px; font-weight: 600; color: var(--gold); }
.footer-site-sub { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

footer h4 { font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
footer p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.7); }

.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.fh-row { display: flex; justify-content: space-between; font-size: 13px; gap: 12px; }
.fh-row strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.fh-row span { color: rgba(255,255,255,0.7); }

.map-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold); text-decoration: none; font-size: 13px;
  font-weight: 500; margin-bottom: 12px; transition: var(--transition);
}
.map-link:hover { color: #fff; text-decoration: underline; }
.map-embed { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12px; transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== ABOUT PAGE ===== */
#about-hero { background: linear-gradient(160deg, #cce8f7, #e8f4fc); padding: 72px 24px; text-align: center; }
.about-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
#about-hero h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 48px); color: var(--blue); margin-bottom: 16px; }
#about-hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.about-content { max-width: 1100px; margin: 0 auto; padding: 64px 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--blue); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow); }
.value-icon { font-size: 28px; }
.value-card h4 { font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.anni-section { background: var(--gold); padding: 56px 24px; }
.anni-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.anni-number { font-family: 'Playfair Display', serif; font-size: 96px; font-weight: 700; color: var(--blue); line-height: 1; flex-shrink: 0; }
.anni-text-block h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--blue); margin-bottom: 12px; }
.anni-text-block p { color: rgba(0,30,60,0.75); font-size: 15px; line-height: 1.7; }

/* ===== UTILITIES ===== */
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  nav { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .site-title { font-size: 17px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .anni-inner { flex-direction: column; text-align: center; }
  .anni-number { font-size: 72px; }
  .modal-box { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .oh-extra { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
