/* ============================================================
   Whisky Wendelmuth – Stylesheet
   ============================================================ */

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

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

:root {
  --bg: #1A1612;
  --bg-card: #302A25;
  --bg-card-hover: #3D362F;
  --accent: #C8943E;
  --accent-hover: #d9a84f;
  --accent-dark: #a07430;
  --text: #E8E0D4;
  --text-muted: #9A9088;
  --danger: #c0392b;
  --danger-hover: #e74c3c;
  --success: #27ae60;
  --green: #5A9E6F;
  --orange: #D4904A;
  --red: #C85A5A;
  --border: #3a3530;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

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

a:hover {
  color: var(--accent-hover);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  text-align: center;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--bg);
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: transparent;
  color: var(--accent);
}

.btn-primary:hover {
  color: var(--bg);
}

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

.btn-outline:hover {
  color: var(--bg);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-danger::before {
  display: none;
}

.btn-danger:hover {
  background: var(--danger-hover);
  border-color: var(--danger-hover);
  color: #fff;
}

.btn-danger-outline {
  background: transparent;
  color: var(--danger);
  border-color: var(--danger);
}

.btn-danger-outline::before {
  display: block;
  background: var(--danger);
}

.btn-danger-outline:hover {
  background: transparent;
  color: #fff;
}

.btn-sm {
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-muted);
}

.btn:disabled::before {
  display: none;
}

.btn:disabled:hover {
  color: var(--text-muted);
  background: transparent;
}

/* ---- Top Info Bar ---- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 1001;
  background: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 4px 80px 0;
}

.top-bar-hours,
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.top-bar-hours {
  text-decoration: none;
}

.top-bar-hours:hover {
  color: var(--accent);
}

.top-bar-hours.is-open {
  color: #6fbf73;
}

.top-bar-hours.is-open svg {
  color: #6fbf73;
}

.top-bar-hours.is-closed {
  color: #cf6679;
}

.top-bar-hours.is-closed svg {
  color: #cf6679;
}

.top-bar-all-hours {
  color: var(--accent);
  margin-left: 4px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.top-bar-hours:hover .top-bar-all-hours {
  opacity: 1;
}

.top-bar-hours svg,
.top-bar-contact svg {
  color: var(--accent);
  flex-shrink: 0;
}

.top-bar-contact {
  margin-left: auto;
}

.top-bar-contact a {
  color: var(--accent);
  font-size: 0.78rem;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(12px);
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: none;
  padding: 0 80px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: 1px;
}

.nav-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: relative;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* Language Toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  line-height: 1;
}

.lang-option {
  color: var(--text-muted);
  transition: color var(--transition);
}

.lang-option.active {
  color: var(--accent);
  font-weight: 500;
}

.lang-sep {
  color: var(--border);
  font-size: 0.7rem;
}

.lang-toggle:hover {
  border-color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Pages Sliding System ---- */
.pages-wrapper {
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.pages-track {
  display: flex;
  width: 300vw;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pages-track[data-page="0"] { transform: translateX(0); }
.pages-track[data-page="1"] { transform: translateX(-100vw); }
.pages-track[data-page="2"] { transform: translateX(-200vw); }

.page {
  width: 100vw;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  scroll-behavior: smooth;
  flex-shrink: 0;
  background: var(--bg);
}

.page.page-active {
  overflow-y: auto;
}

/* ---- Nav Indicator ---- */
.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-links a[data-page].active,
.nav-links a[data-section].active {
  color: var(--accent);
}

/* ---- Page Arrows ---- */
.page-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--text-muted);
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.page-arrow:hover {
  color: var(--accent);
  opacity: 1;
}

.page-arrow[hidden] {
  display: none;
}

.page-arrow svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  animation: arrowHint 2.5s ease-in-out infinite;
}

.page-arrow-left {
  left: 16px;
}

.page-arrow-left svg {
  animation-name: arrowHintLeft;
}

.page-arrow-right {
  right: 16px;
}

.page-arrow-right svg {
  animation-name: arrowHintRight;
}

.page-arrow-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1.25;
}

.page-arrow-left .page-arrow-label {
  text-align: right;
}

.page-arrow-right .page-arrow-label {
  text-align: left;
}

@keyframes arrowHintLeft {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

@keyframes arrowHintRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ---- Mobile Page Nav Bar ---- */
.page-nav-mobile {
  display: none;
}

/* (Whiskies placeholder removed – now using wk-* classes) */

/* ---- Public Whisky Display ---- */
#whiskies-section {
  padding-top: 80px;
}

/* Category Side Navigation */
.wk-cat-nav {
  position: fixed;
  left: calc(50% - 600px - 24px);
  top: 28%;
  transform: translateX(-100%) translateY(-50%);
  text-align: right;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.wk-cat-nav.wk-cat-nav-visible {
  opacity: 1;
  pointer-events: auto;
}

.wk-cat-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--orange);
  opacity: 0.5;
  text-align: right;
  padding: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.wk-cat-nav-btn:hover,
.wk-cat-nav-btn.active {
  opacity: 1;
}

/* Inline category nav (small screens) */
.wk-cat-nav-inline {
  display: none;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, var(--bg) 75%, transparent);
  padding: 16px 0 56px;
  margin-bottom: 40px;
}

@media (max-width: 1700px) {
  .wk-cat-nav {
    display: none !important;
  }

  .wk-cat-nav-inline {
    display: flex;
  }
}

@media (max-width: 480px) {
  .wk-cat-nav-inline {
    gap: 16px;
    padding: 12px 0 20px;
    margin-bottom: 40px;
  }

  .wk-cat-nav-inline .wk-cat-nav-btn {
    font-size: 1rem;
  }
}

.wk-category {
  margin-bottom: 56px;
}

.wk-category:last-child {
  margin-bottom: 0;
}

.wk-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 148, 62, 0.2);
}

.wk-category-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.56rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.wk-cat-neuerscheinung {
  color: var(--accent);
}

.wk-cat-angebot {
  color: var(--orange);
}

.wk-cat-special {
  color: var(--accent);
}

.wk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.wk-grid .wk-card {
  height: 100%;
}

.wk-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 148, 62, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.wk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wk-card:hover {
  border-color: rgba(200, 148, 62, 0.3);
  transform: translateY(-4px);
}

.wk-card:hover::before {
  transform: scaleX(1);
}

/* Card with image */
.wk-card-has-image {
  padding: 0;
}

.wk-card-has-image .wk-card-body {
  padding: 2rem;
}

.wk-card-image {
  width: 180px;
  max-height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-card-image-empty {
  background: rgba(200, 148, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-card-image-empty svg {
  width: 80%;
  height: 80%;
  color: var(--accent);
  opacity: 0.4;
}

.wk-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.wk-card:hover .wk-card-image img {
  transform: scale(1.03);
}

.wk-card-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

.wk-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
  overflow: hidden;
  height: calc(3 * 1.7em);
}

.wk-card-desc strong {
  font-weight: 600;
  color: var(--text);
}

.wk-card-abv {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.5px;
  min-height: 3rem;
  display: flex;
  align-items: flex-end;
}

.wk-card-region {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.8rem;
}

.wk-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.3 * 1.5rem);
  color: #F5F0E8;
  padding-bottom: 0.5rem;
  line-height: 1.3;
}

.wk-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.wk-tag {
  display: inline-block;
  font-size: 0.68rem;
  padding: 3px 8px;
  letter-spacing: 0.5px;
  background: rgba(200, 148, 62, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(200, 148, 62, 0.1);
  font-family: 'Outfit', sans-serif;
}

.wk-tag-quality {
  background: rgba(90, 158, 111, 0.1);
  border-color: rgba(90, 158, 111, 0.15);
  color: var(--green);
}

.wk-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(200, 148, 62, 0.1);
  padding-top: 1rem;
  margin-top: 1.2rem;
  align-self: start;
}

.wk-card-price {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 3rem;
}

.wk-card-age {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wk-card-age-text {
  font-size: 1.8rem;
  flex-direction: row;
  align-items: flex-end;
}

.wk-card-age small {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 2px;
  margin-top: 8px;
}

.wk-price {
  font-size: 1.1rem;
  color: #F5F0E8;
  font-weight: 500;
}

.wk-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.wk-price-original {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.wk-price-sale {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 500;
}

.wk-price-sale small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---- Whisky Detail Modal ---- */
.modal.wkm-modal {
  max-width: 1000px;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
}

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.modal.wkm-modal > #whisky-detail-content {
  display: flex;
  flex-direction: row;
  max-height: 85vh;
}

.wkm-image {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg);
}

.wkm-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.wkm-image-empty {
  background: rgba(200, 148, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wkm-image-empty svg {
  width: 80%;
  height: 80%;
  color: var(--accent);
  opacity: 0.4;
}

.wkm-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.wkm-region {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.wkm-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

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

.wkm-divider {
  border: none;
  border-top: 1px solid rgba(200, 148, 62, 0.15);
  margin: 0 0 1.5rem;
}

.wkm-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.wkm-desc strong {
  font-weight: 600;
  color: var(--text);
}

.wkm-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin-bottom: 1.5rem;
}

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

.wkm-detail-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wkm-detail-value {
  font-size: 0.95rem;
  color: var(--text);
}

.wkm-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.wkm-badge {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 148, 62, 0.3);
  border-radius: var(--radius);
  padding: 4px 10px;
}

.wkm-type-badge {
  margin-bottom: 1rem;
}

.wkm-price-block {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(200, 148, 62, 0.15);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.wkm-price-block .wk-card-age {
  font-size: 2.8rem;
  min-height: auto;
}

.wkm-price-block .wk-card-abv {
  font-size: 1.6rem;
  min-height: auto;
}

.wkm-price-main {
  font-size: 1.6rem;
  color: #F5F0E8;
  font-weight: 500;
}

.wkm-price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.wkm-price-sale {
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 500;
}

.wkm-price-vol {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wkm-price-wrap {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Tablet: 1 column but keep horizontal card layout */
/* ---- Whiskies Banner ---- */
.whiskies-banner {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(26,22,18,0.82) 0%, rgba(26,22,18,0.65) 50%, rgba(26,22,18,0.82) 100%),
    url('/uploads/whiskies-banner.png') center/cover no-repeat;
  border: 1px solid rgba(200,148,62,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.whiskies-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 48px 56px;
  position: relative;
  z-index: 1;
  min-height: 280px;
}

.whiskies-banner-icon {
  width: 110px;
  height: 220px;
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(200,148,62,0.3));
}

.whiskies-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .whiskies-banner {
    min-height: 200px;
  }

  .whiskies-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .whiskies-banner-icon {
    width: 72px;
    height: 72px;
  }

  .whiskies-banner-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 1024px) {
  .wk-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}

/* Mobile landscape: horizontal cards like desktop */
@media (max-width: 1024px) and (orientation: landscape) {
  #whiskies-section {
    padding-top: 40px;
  }

  .wk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: none;
  }

  .wk-card-image {
    width: 100px;
  }

  .wk-card-has-image .wk-card-body {
    padding: 1.5rem;
  }

  /* Modal: horizontal like desktop, smaller */
  .modal.wkm-modal {
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
  }

  .modal.wkm-modal > #whisky-detail-content {
    flex-direction: row;
    max-height: 85vh;
  }

  .wkm-image {
    width: 320px;
    flex-shrink: 0;
  }

  .wkm-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
  }

  .wkm-name {
    font-size: 1.5rem;
  }

  .wkm-price-block .wk-card-age {
    font-size: 2rem;
  }

  .wkm-price-block .wk-card-abv {
    font-size: 1.2rem;
  }

  .wkm-price-main,
  .wkm-price-sale {
    font-size: 1.2rem;
  }
}

/* Mobile portrait: compact vertical cards */
@media (max-width: 768px) and (orientation: portrait) {
  #whiskies-section {
    padding-top: 40px;
  }

  .wk-grid {
    gap: 1rem;
    max-width: none;
  }

  .wk-category {
    margin-bottom: 30px;
  }

  /* Compact horizontal card with small image */
  .wk-card {
    padding: 0;
    flex-direction: row;
  }

  .wk-card-has-image {
    padding: 0;
  }

  .wk-card-image {
    width: 80px;
  }

  .wk-card-has-image .wk-card-body,
  .wk-card-body {
    padding: 1rem 1.2rem;
  }

  .wk-card-body {
    grid-template-rows: auto auto auto;
  }

  /* Hide description in portrait */
  .wk-card-desc {
    display: none;
  }

  .wk-card-region {
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding-bottom: 0.3rem;
  }

  .wk-card-name {
    font-size: 1.1rem;
    padding-bottom: 0.3rem;
    min-height: unset;
  }

  .wk-card-meta {
    padding-top: 0.6rem;
  }

  .wk-card-age {
    font-size: 1.3rem;
    min-height: auto;
  }

  .wk-card-age small {
    font-size: 0.55rem;
    margin-top: 3px;
  }

  .wk-card-abv {
    font-size: 0.85rem;
    min-height: auto;
  }

  .wk-price,
  .wk-price-sale {
    font-size: 0.85rem;
  }

  .wk-price-original {
    font-size: 0.7rem;
  }

  .wk-card-price {
    min-height: auto;
  }

  /* Modal: vertical, full-width */
  .modal.wkm-modal {
    max-width: 95vw;
    max-height: 90vh;
  }

  .modal.wkm-modal > #whisky-detail-content {
    flex-direction: column;
    height: auto;
    max-height: calc(90vh - 2rem);
    overflow-y: auto;
  }

  .wkm-image {
    width: 100%;
    max-height: none;
    flex-shrink: 0;
    order: 2;
    aspect-ratio: 9 / 16;
  }

  .wkm-image img {
    object-fit: contain;
  }

  .wkm-body {
    order: 1;
    overflow-y: visible;
  }

  .wkm-image-empty {
    display: none;
  }

  .wkm-body {
    padding: 1.5rem;
  }

  .wkm-name {
    font-size: 1.4rem;
  }

  .wkm-details {
    grid-template-columns: 1fr 1fr;
  }

  .wkm-price-block .wk-card-age {
    font-size: 2rem;
  }

  .wkm-price-block .wk-card-abv {
    font-size: 1.2rem;
  }

  .wkm-price-main,
  .wkm-price-sale {
    font-size: 1.2rem;
  }
}

/* ---- Hero ---- */
.hero {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,148,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(200,148,62,0.05) 0%, transparent 50%);
}

.nowrap {
  white-space: nowrap;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-accent {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #F5F0E8;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.8;
  min-height: 5.4em;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 0;
}

/* ---- Highlights ---- */
.highlights-section {
  background: var(--bg);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--bg);
  border: 1px solid rgba(200,148,62,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.35s ease, transform 0.35s ease;
}


.highlight-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.5rem;
}

.highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 0.8rem;
}

.highlight-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .highlight-card {
    padding: 2rem 1.5rem;
  }
}

/* ---- Tasting Banner ---- */
.tastings-banner {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(26,22,18,0.82) 0%, rgba(26,22,18,0.65) 50%, rgba(26,22,18,0.82) 100%),
    url('/uploads/tastings-banner.png') center/cover no-repeat;
  border: 1px solid rgba(200,148,62,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.tastings-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 48px 56px;
  position: relative;
  z-index: 1;
  min-height: 280px;
}

.tastings-banner-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(200,148,62,0.3));
}

.tastings-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .tastings-banner {
    min-height: 200px;
  }

  .tastings-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .tastings-banner-icon {
    width: 72px;
    height: 72px;
  }

  .tastings-banner-text {
    font-size: 1.15rem;
  }
}

/* ---- Tasting-Liste ---- */
.tastings-grid {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tasting-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  border: 1px solid rgba(200,148,62,0.15);
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  overflow: hidden;
}

.tasting-card:hover {
  border-color: rgba(200,148,62,0.3);
}

.tasting-date-block {
  background: rgba(200,148,62,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(200,148,62,0.1);
}

.tasting-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.tasting-date-month {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  white-space: nowrap;
}

.tasting-date-time {
  font-size: 0.85rem;
  color: var(--accent-hover);
  margin-top: 0.5rem;
  text-align: center;
}

.tasting-info {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tasting-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 0.4rem;
}

.tasting-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.tasting-desc strong,
.announcement-slide p strong {
  font-weight: 600;
  color: var(--text);
}

.tasting-meta-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.tasting-price-tag {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
}

.tasting-seats {
  font-size: 0.95rem;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
}

.seats-available {
  background: rgba(90,158,111,0.15);
  color: var(--green);
}

.seats-low {
  background: rgba(212,144,74,0.15);
  color: var(--orange);
}

.seats-full {
  background: rgba(200,90,90,0.15);
  color: var(--red);
}

.tasting-action {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.btn-book {
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-book:hover {
  color: var(--bg);
}

.btn-book:hover::before {
  left: 0;
}

.btn-book:disabled {
  border-color: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  background: transparent;
}

.btn-book:disabled:hover {
  background: transparent;
  color: var(--text-muted);
}

/* ---- Über uns ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.about-image-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  margin-bottom: 12px;
}

.about-image-placeholder span {
  display: block;
  font-size: 0.85rem;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--accent);
}

.about-content .accent-text {
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-content p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.35rem;
  line-height: 1.8;
  text-align: justify;
  hyphens: auto;
}

.about-gallery {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}

.about-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-gallery-item:first-child {
  flex: 0 0 30%;
}

.about-gallery-item:last-child {
  flex: 1;
}

.about-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ---- Kontakt ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

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

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

/* Date input with calendar button */
.date-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.date-input-wrap input[type="text"] {
  padding-right: 40px;
}
.date-picker-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  right: 0;
  bottom: 0;
}
.date-picker-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.date-picker-btn:hover {
  color: var(--accent);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9088' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-self: end;
}

.contact-info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-info-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-info-block .address-text {
  color: var(--accent);
}

.contact-info-block a {
  color: var(--accent);
}

.contact-info-block a:hover {
  color: var(--accent-hover);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  gap: 0.75rem;
  padding: 4px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.contact-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-list li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--accent);
}

.hours-list li span:first-child {
  min-width: 70px;
}

.hours-list li span:last-child {
  color: var(--accent);
  min-width: 185px;
}

.hours-list li span:last-child {
  color: var(--accent);
}

/* ---- Maintenance Mode ---- */

.maintenance-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 108px);
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.maintenance-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maintenance-banner svg {
  color: var(--accent);
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  opacity: 0.6;
}

.maintenance-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.maintenance-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.maintenance-banner .maintenance-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
  margin: 24px auto;
}

body.maintenance-mode .hero,
body.maintenance-mode #highlights,
body.maintenance-mode #about {
  display: none;
}

body.maintenance-mode .page-arrow {
  display: none !important;
}

body.maintenance-mode .page-nav-mobile {
  display: none !important;
}

body.maintenance-mode .nav-links a.nav-disabled {
  opacity: 0.35;
  pointer-events: none;
}

body.maintenance-mode .announcement-slide {
  display: none;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.nav-admin {
  margin-left: 20px;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.3;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
}

.nav-admin:hover {
  opacity: 0.7;
  color: var(--accent);
}

.nav-admin-mobile {
  display: none;
}

.footer-responsible {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.5;
}

.footer-legal {
  margin-top: 12px;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--text-muted);
  letter-spacing: 1px;
}

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

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s 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;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

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

.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.modal-tasting-info {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Bestätigung im Modal */
.booking-success {
  text-align: center;
  padding: 20px 0;
}

.booking-success svg {
  width: 64px;
  height: 64px;
  color: var(--success);
  margin-bottom: 16px;
}

.booking-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.booking-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.booking-details {
  background: rgba(200,148,62,0.08);
  border: 1px solid rgba(200,148,62,0.2);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0;
  text-align: left;
  font-size: 0.9rem;
}

.booking-details div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.booking-details div span:first-child {
  color: var(--text-muted);
}

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 36px 16px 20px;
  position: relative;
  max-width: 400px;
  box-shadow: var(--shadow);
  animation: toastIn 0.4s ease;
  position: relative;
}

.toast.toast-out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}

.toast-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}

.toast-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color var(--transition);
}

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

/* ---- Keine Tastings ---- */
.no-tastings {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-tastings svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
  margin-bottom: 16px;
}

/* ---- Loading ---- */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Announcement Slide-ins ---- */
.announcement-container {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.announcement-slide {
  position: relative;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid rgba(200, 148, 62, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
}

.announcement-slide.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.announcement-slide.hiding {
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
}

.announcement-slide-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.announcement-slide-close svg {
  width: 24px;
  height: 24px;
}

.announcement-slide-close:hover {
  color: var(--accent);
}

.announcement-slide-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200, 148, 62, 0.15);
}

.announcement-slide-header svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
  filter: drop-shadow(0 1px 6px rgba(200, 148, 62, 0.3));
}

.announcement-slide-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.announcement-slide-top strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.announcement-slide-top #announcement-date {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #F5F0E8;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.announcement-slide p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Important Announcement */
.announcement-slide.announcement-important {
  border-color: rgba(200, 90, 90, 0.5);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(200, 90, 90, 0.25), inset 0 0 30px rgba(200, 90, 90, 0.06);
  background: linear-gradient(135deg, var(--bg-card) 0%, #3a2a2a 100%);
}

.announcement-slide.announcement-important .announcement-slide-header {
  border-bottom-color: rgba(200, 90, 90, 0.3);
}

.announcement-slide.announcement-important .announcement-slide-header svg {
  color: var(--red);
  filter: drop-shadow(0 2px 8px rgba(200, 90, 90, 0.5));
}

.announcement-slide.announcement-important .announcement-slide-top strong {
  color: var(--red);
}

.announcement-slide.announcement-important .announcement-slide-top #announcement-date {
  color: var(--red);
}

/* ---- Responsive ---- */

/* Arrow → header bar when screen is too narrow for side arrows */
@media (max-width: 1700px) {
  .page-arrow {
    display: none !important;
  }

  .page-nav-mobile {
    display: flex;
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    z-index: 999;
    height: 52px;
    background: rgba(26, 22, 18, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }

  .page-nav-mobile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    color: var(--text-muted);
    transition: color 0.3s ease;
  }

  .page-nav-mobile-btn:hover {
    color: var(--accent);
  }

  .page-nav-mobile-btn[hidden] {
    visibility: hidden;
    pointer-events: none;
  }

  .page-nav-mobile-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .page-nav-mobile-btn span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .page-nav-mobile-left span {
    text-align: left;
  }

  .page-nav-mobile-right span {
    text-align: right;
  }

  .pages-wrapper {
    top: 160px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .top-bar-inner {
    padding: 0 16px;
  }

  .top-bar-contact,
  .nav-admin {
    display: none;
  }

  .navbar {
    top: 36px;
  }

  .announcement-container {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .announcement-slide {
    width: auto;
  }

  .navbar .container {
    padding: 0 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-admin {
    display: none;
  }

  .nav-admin-mobile {
    display: list-item;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .nav-admin-mobile a {
    font-size: 0.65rem !important;
    opacity: 0.35;
    letter-spacing: 2px;
  }

  .nav-indicator {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 22, 18, 0.98);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: 100%;
    padding: 60px 16px;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .nowrap {
    white-space: normal;
  }

  .hero .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .section {
    padding: 60px 0;
  }

  .tasting-card {
    grid-template-columns: 90px 1fr;
    grid-template-rows: 1fr auto;
  }

  .tasting-date-block {
    grid-row: 1 / -1;
  }

  .tasting-action {
    padding: 0 2rem 1.5rem;
    justify-content: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-gallery {
    flex-direction: column;
    margin-top: 32px;
  }

  .about-gallery-item:first-child {
    flex: none;
  }

  .about-image {
    aspect-ratio: auto;
    order: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    justify-self: stretch;
  }

  .modal .form-row {
    grid-template-columns: 1fr;
  }

  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    max-width: 100%;
  }
}

/* Mobile landscape: compact header */
@media (max-height: 500px) and (orientation: landscape) {
  .top-bar {
    height: 24px;
  }

  .top-bar-inner {
    height: 24px;
    padding: 0 24px;
    font-size: 0.65rem;
  }

  .top-bar-contact {
    display: none;
  }

  .navbar {
    top: 24px;
  }

  .navbar .container {
    height: 48px;
    padding: 0 24px;
  }

  .nav-logo-title {
    font-size: 1.2rem;
  }

  .nav-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .page-nav-mobile {
    top: 72px;
    height: 40px;
  }

  .page-nav-mobile-btn span {
    font-size: 1.1rem;
  }

  .page-nav-mobile-btn svg {
    width: 20px;
    height: 20px;
  }

  .pages-wrapper {
    top: 112px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Admin-Panel Styles
   ============================================================ */
.admin-body {
  padding-top: 0;
  overflow: auto;
  height: auto;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.admin-login-card h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.admin-login-card .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.admin-login-card .form-group {
  text-align: left;
}

.admin-login-card .login-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.admin-login-card .login-back {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-login-card .login-back:hover {
  color: var(--accent);
}

.admin-login-card .login-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

/* Admin Dashboard */
.admin-wrapper {
  display: none;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  justify-content: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  gap: 4px;
}

.admin-tab {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.admin-tab:hover {
  color: var(--text);
}

.admin-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 500;
}

.admin-tab-panel {
  display: none;
}

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

.admin-sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-size: 1.2rem;
  color: var(--accent);
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-header-right a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-icon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.btn-icon-header:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.smtp-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  cursor: help;
  position: relative;
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.smtp-info-icon:hover {
  opacity: 1;
  color: var(--accent);
}

.smtp-info-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
  width: 260px;
  z-index: 1000;
  box-shadow: var(--shadow);
  pointer-events: none;
}

.smtp-info-icon:hover::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--border);
  z-index: 1001;
  pointer-events: none;
}

.btn-icon-header.active {
  color: var(--accent);
  border-color: var(--accent);
}

.settings-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  max-width: 640px;
}

.settings-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.settings-section-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* ---- Help Section ---- */

.help-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 720px;
}

.help-category {
  margin-bottom: 32px;
  max-width: 720px;
}

.help-category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.5px;
}

.help-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.help-item[open] {
  border-color: var(--accent);
}

.help-item summary {
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
  user-select: none;
}

.help-item summary::-webkit-details-marker {
  display: none;
}

.help-item summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.help-item[open] summary::after {
  transform: rotate(45deg);
  border-color: var(--accent);
}

.help-item summary:hover {
  color: var(--accent);
}

.help-content {
  padding: 0 18px 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.help-content ol,
.help-content ul {
  padding-left: 20px;
  margin: 8px 0;
}

.help-content li {
  margin-bottom: 6px;
}

.help-content li ul {
  margin-top: 6px;
}

.help-content p {
  margin: 8px 0;
}

.help-content strong {
  color: var(--accent);
  font-weight: 600;
}

.help-content code {
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent);
}


.smtp-settings-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.smtp-settings-actions .btn {
  width: auto;
}

/* Validation error highlight */
.input-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.25);
}

/* Settings toast notification */
.settings-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}
.settings-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.settings-toast-error {
  background: #e74c3c;
}

.admin-content {
  padding: 32px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.admin-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.admin-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.admin-stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Admin Sections */
.admin-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.admin-section h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-section h2 svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-section-header h2 {
  margin-bottom: 0;
}

/* Tasting Form */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-form-grid .full-width {
  grid-column: 1 / -1;
}

/* Tasting List */
.admin-tasting-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: background var(--transition);
}

.admin-tasting-item:hover {
  background: rgba(200,148,62,0.04);
}

.admin-tasting-info {
  flex: 1;
}

.admin-tasting-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.admin-tasting-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

.admin-tasting-info .admin-tasting-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2px;
}

.admin-tasting-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-tasting-bar {
  width: 120px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.admin-tasting-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  transition: width var(--transition);
}

.admin-tasting-bar-fill.bar-low {
  background: var(--orange);
}

.admin-tasting-bar-fill.bar-full {
  background: var(--red);
}

.admin-tasting-seats {
  font-size: 0.82rem;
  color: var(--text-muted);
  min-width: 80px;
  text-align: center;
}

/* Bookings Table */
.admin-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.admin-filters select,
.admin-filters input {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  min-width: 200px;
}

.admin-filters select:focus,
.admin-filters input:focus {
  outline: none;
  border-color: var(--accent);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.admin-table tr:hover td {
  background: rgba(200,148,62,0.04);
}

.admin-table .btn-danger {
  padding: 4px 12px;
  font-size: 0.78rem;
}

.admin-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .admin-table thead {
    display: none;
  }

  .admin-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .admin-table tr {
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    gap: 4px;
  }

  .admin-table tr:hover td {
    background: none;
  }

  .admin-table td {
    display: block;
    padding: 2px 0;
    border-bottom: none;
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
  }

  .admin-table td:last-child::before {
    display: none;
  }

  .admin-table td:last-child {
    margin-top: 6px;
    text-align: right;
  }

  .help-category {
    max-width: 100%;
  }

  .help-item summary {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .help-content {
    padding: 0 14px 14px;
    font-size: 0.85rem;
  }
}

.btn-toggle-past {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background: none;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-toggle-past:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-year-group {
  margin-top: 24px;
}

.admin-year-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.admin-tasting-item.past {
  opacity: 1;
}

.admin-tasting-item.past > *:not(.admin-item-actions) {
  opacity: 0.5;
}

.admin-tasting-item.past:hover > *:not(.admin-item-actions) {
  opacity: 0.8;
}

/* Delete Booking Modal */
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.modal-actions .btn {
  flex: 1;
  text-align: center;
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .admin-header {
    padding: 12px 12px;
    gap: 8px;
  }

  .admin-header h1 {
    font-size: 0.95rem;
  }

  .admin-header-right {
    gap: 8px;
  }

  .admin-header-right a {
    font-size: 0.7rem;
  }
}

.delete-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.delete-booking-actions .btn {
  width: 100%;
  text-align: center;
}

/* Format Buttons */
.format-buttons {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.btn-format {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 20px;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.btn-format:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-format.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* Description Editor (contenteditable) */
.desc-editor {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  min-height: 80px;
  overflow-y: auto;
  transition: border-color var(--transition);
  outline: none;
}

.desc-editor:focus {
  border-color: var(--accent);
}

.desc-editor.is-empty::before {
  content: attr(data-placeholder);
  color: var(--text-muted);
  opacity: 0.5;
  pointer-events: none;
}

.desc-editor strong,
.desc-editor b {
  font-weight: 600;
  color: var(--text);
}

/* Preview Modal (wider for tasting card) */
.modal-preview {
  max-width: 900px;
}

.modal-preview .tasting-card {
  margin: 16px 0;
}

/* Edit/Preview button spacing in tasting items */
.admin-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
}

.admin-tasting-item .btn + .btn {
  margin-left: 0;
}

@media (max-width: 600px) {
  .admin-item-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .admin-item-actions .btn {
    white-space: nowrap;
  }

  .admin-tasting-item .admin-tasting-info {
    order: 1;
  }

  .admin-tasting-item .admin-tasting-capacity {
    order: 2;
    width: 100%;
  }

  .admin-tasting-item .admin-item-actions {
    order: 3;
  }
}

@media (max-width: 768px) {
  .modal-preview .tasting-card {
    grid-template-columns: 90px 1fr;
    grid-template-rows: 1fr auto;
  }

  .modal-preview .tasting-date-block {
    grid-row: 1 / -1;
  }

  .modal-preview .tasting-action {
    padding: 0 1.5rem 1.5rem;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-tasting-item {
    flex-wrap: wrap;
  }

  .admin-filters {
    flex-direction: column;
  }

  .admin-filters select,
  .admin-filters input {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-content {
    padding: 20px 16px;
  }

  .admin-section {
    padding: 20px 16px;
  }

  .admin-tabs {
    padding: 0 16px;
  }

  .admin-tab {
    padding: 12px 16px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   Whisky Admin Styles
   ============================================================ */

/* Whisky Thumbnail */
.admin-whisky-clickable .whisky-thumb,
.admin-whisky-clickable .admin-tasting-info {
  cursor: pointer;
}

.admin-whisky-clickable .admin-tasting-info h4:hover,
.admin-tasting-clickable h4:hover {
  color: var(--accent);
}

.whisky-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.whisky-thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.whisky-thumb-empty svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  opacity: 0.4;
}

/* Kategorie-Badges */
.whisky-category-badge {
  display: inline-block;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  margin-left: 8px;
  vertical-align: middle;
}

.whisky-cat-special {
  background: rgba(200, 148, 62, 0.15);
  color: var(--accent);
}

.whisky-cat-neuerscheinung {
  background: rgba(200, 148, 62, 0.15);
  color: var(--accent);
}

.whisky-cat-angebot {
  background: rgba(212, 144, 74, 0.15);
  color: var(--orange);
}

/* File Input */
.whisky-file-input {
  width: 100%;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.whisky-file-input:hover {
  border-color: var(--accent);
}

.whisky-file-input::file-selector-button {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  padding: 4px 12px;
  margin-right: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.whisky-file-input::file-selector-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Image Preview */
.whisky-image-preview {
  margin-top: 12px;
}

.whisky-image-preview img {
  max-width: 200px;
  max-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: contain;
  background: var(--bg);
}

/* Current Image (Edit Modal) */
.whisky-current-image {
  margin-bottom: 12px;
}

.whisky-current-image img {
  max-width: 200px;
  max-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: contain;
  background: var(--bg);
}

.whisky-current-image span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Details Aufklapper */
.whisky-details-section {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.whisky-details-section summary {
  padding: 12px 16px;
  background: var(--bg);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: color var(--transition), background var(--transition);
  list-style: none;
}

.whisky-details-section summary::-webkit-details-marker {
  display: none;
}

.whisky-details-section summary::before {
  content: '\25B6';
  display: inline-block;
  margin-right: 8px;
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.whisky-details-section[open] summary::before {
  transform: rotate(90deg);
}

.whisky-details-section summary:hover {
  color: var(--accent);
  background: rgba(200, 148, 62, 0.04);
}

.whisky-details-section .admin-form-grid {
  padding: 0 16px 16px;
}

/* Whisky Group Collapsible */
.whisky-group {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.whisky-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition);
}

.whisky-group-header:hover {
  background: rgba(200, 148, 62, 0.06);
}

.whisky-group-header.whisky-cat-neuerscheinung {
  color: var(--accent);
}

.whisky-group-header.whisky-cat-angebot {
  color: var(--orange);
}

.whisky-group-header.whisky-cat-special {
  color: var(--accent);
}

.whisky-group-arrow {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.whisky-group-arrow::before {
  content: '\25B6';
}

.whisky-group-arrow.whisky-group-open {
  transform: rotate(90deg);
}

.whisky-group-label {
  flex: 1;
  text-align: left;
}

.whisky-group-count {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.6;
}

.whisky-group-content {
  border-top: 1px solid var(--border);
  padding: 8px;
}

.whisky-group-content .admin-tasting-item:last-child {
  margin-bottom: 0;
}

/* Deaktivierte Whiskys */
.admin-tasting-item.whisky-inactive {
  opacity: 1;
}

.admin-tasting-item.whisky-inactive > *:not(.admin-item-actions),
.admin-tasting-item.whisky-inactive .admin-whisky-clickable .whisky-thumb,
.admin-tasting-item.whisky-inactive .admin-whisky-clickable .admin-tasting-info {
  opacity: 0.45;
}

.admin-tasting-item.whisky-inactive:hover > *:not(.admin-item-actions),
.admin-tasting-item.whisky-inactive:hover .admin-whisky-clickable .whisky-thumb,
.admin-tasting-item.whisky-inactive:hover .admin-whisky-clickable .admin-tasting-info {
  opacity: 0.7;
}

/* Aktivieren/Deaktivieren Buttons */
.whisky-btn-activate {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.whisky-btn-activate::before {
  background: var(--green) !important;
}

.whisky-btn-activate:hover {
  color: var(--bg) !important;
}

.whisky-btn-deactivate {
  border-color: var(--text-muted) !important;
  color: var(--text-muted) !important;
}

.whisky-btn-deactivate::before {
  background: var(--text-muted) !important;
}

.whisky-btn-deactivate:hover {
  color: var(--bg) !important;
}
