/* ==========================================================================
   PIZZAWERK Schweiz - officina della pizza | Bespoke Craft Theme CSS
   Gastro Guard GmbH, Blumenbergplatz 7, 9000 St. Gallen
   WhatsApp: +41 78 705 68 85
   ========================================================================== */

:root {
  --pw-primary: #e65100;       /* Feuriges Terracotta / Flame Orange */
  --pw-primary-dark: #bf360c;
  --pw-primary-light: #ff7043;
  --pw-red: #c62828;           /* Neapolitan Pizza Red */
  --pw-gold: #ffb300;          /* Glutgelb / Amber Glow */
  --pw-gold-glow: rgba(255, 179, 0, 0.45);
  --pw-whatsapp: #25d366;      /* WhatsApp Brand Green */
  --pw-whatsapp-dark: #128c7e;
  
  --pw-dark: #0f0f12;          /* Ultra-tiefes Anthrazit / Holzkohle */
  --pw-dark-surface: #16161b;  /* Werkstatt-Dark Surface */
  --pw-dark-card: #1e1e26;     /* Card Dark */
  --pw-dark-border: #2e2e3a;
  
  --pw-light: #faf8f5;         /* Warmer Mehlton */
  --pw-light-card: #ffffff;
  --pw-light-border: #e8e2d8;
  
  --pw-text-dark: #1e2024;
  --pw-text-muted: #6b7280;
  --pw-text-light: #f3f4f6;
  --pw-text-light-muted: #9ca3af;
  
  --pw-font-heading: 'Bebas Neue', 'Amatic SC', sans-serif;
  --pw-font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --pw-font-serif: 'Playfair Display', serif;
}

/* Global Reset & Smooth Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--pw-font-body);
  color: #f3f4f6;
  background-color: var(--pw-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--pw-font-heading);
  letter-spacing: 0.8px;
}

/* -------------------------------------------------------------
   Top Live Bar
   ------------------------------------------------------------- */
.pw-live-bar {
  background: linear-gradient(90deg, #09090b 0%, #20120f 50%, #09090b 100%);
  color: #fff;
  padding: 8px 0;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 179, 0, 0.25);
  position: relative;
  z-index: 1001;
}

.pw-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(231, 76, 60, 0.18);
  color: #ff6b6b;
  padding: 4px 13px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(231, 76, 60, 0.4);
  transition: all 0.3s ease;
}

.pw-live-badge.status-live {
  background: rgba(231, 76, 60, 0.18);
  color: #ff6b6b;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

.pw-live-badge.status-next {
  background: rgba(255, 179, 0, 0.18);
  color: #ffb300;
  border: 1px solid rgba(255, 179, 0, 0.45);
}

.pw-live-badge.status-event {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.45);
}

.pw-live-badge.status-closed {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.pw-live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3838;
  border-radius: 50%;
  animation: pulse-dot 2s infinite ease-in-out;
}

.pw-live-dot.dot-red {
  background-color: #ff3838;
  box-shadow: 0 0 6px rgba(255, 56, 56, 0.8);
}

.pw-live-dot.dot-yellow {
  background-color: #ffb300;
  box-shadow: 0 0 6px rgba(255, 179, 0, 0.8);
}

.pw-live-dot.dot-blue {
  background-color: #60a5fa;
  box-shadow: 0 0 6px rgba(96, 165, 250, 0.8);
}

.pw-live-dot.dot-gray {
  background-color: #94a3b8;
  box-shadow: none;
  animation: none;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* -------------------------------------------------------------
   Header & Navigation (Fix Overlap Bug completely)
   ------------------------------------------------------------- */
header#header.header {
  background: rgba(15, 15, 18, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

header#header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 15px;
}

/* Header Brand Logo */
header#header .logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

header#header .logo .pw-logo-img {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 10px rgba(230, 81, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header#header .logo:hover .pw-logo-img {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 0 14px rgba(255, 179, 0, 0.7));
}

header#header .logo h1 {
  font-family: var(--pw-font-heading) !important;
  font-size: 1.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #ffffff 30%, var(--pw-gold) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: var(--pw-gold) !important;
}

header#header .logo .tagline {
  font-family: var(--pw-font-serif) !important;
  font-style: italic !important;
  font-size: 0.75rem !important;
  color: var(--pw-gold) !important;
  letter-spacing: 1.5px !important;
  display: block !important;
  margin-top: 1px !important;
  line-height: 1 !important;
  opacity: 0.9;
}

/* Desktop Navlinks */
@media (min-width: 1200px) {
  header#header .navmenu {
    margin: 0 auto !important;
  }
  header#header .navmenu > ul {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  header#header .navmenu a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  header#header .navmenu > ul > li > a:before {
    display: none !important;
  }
  header#header .navmenu a:hover {
    color: var(--pw-gold) !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }
  header#header .navmenu a.active {
    color: #ffffff !important;
    background: rgba(230, 81, 0, 0.25) !important;
    border: 1px solid rgba(255, 179, 0, 0.35) !important;
  }
}

/* =============================================================
   Rock-Solid Standalone Mobile Navigation Drawer
   ============================================================= */
.pw-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 320px !important;
  max-width: 88vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #0f0f14 !important;
  border-left: 1px solid rgba(255, 179, 0, 0.25) !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9) !important;
  z-index: 100000 !important;
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
}

.pw-mobile-drawer.show {
  transform: translateX(0) !important;
}

.pw-mobile-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(6, 6, 9, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 99990 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pw-mobile-backdrop.show {
  opacity: 1 !important;
  visibility: visible !important;
}

body.mobile-drawer-open {
  overflow: hidden !important;
}

.pw-mob-link {
  color: #f1f5f9 !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  padding: 13px 18px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.pw-mob-link:hover,
.pw-mob-link.active {
  color: var(--pw-gold) !important;
  background: rgba(255, 179, 0, 0.15) !important;
  border-color: rgba(255, 179, 0, 0.4) !important;
}

.mobile-nav-toggle {
  color: #ffffff !important;
  cursor: pointer !important;
  padding: 6px 10px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 179, 0, 0.15) !important;
  border-color: rgba(255, 179, 0, 0.4) !important;
  color: var(--pw-gold) !important;
}

/* -------------------------------------------------------------
   Bespoke Buttons
   ------------------------------------------------------------- */
.btn-pw-primary {
  background: linear-gradient(135deg, var(--pw-primary) 0%, var(--pw-red) 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 26px;
  min-height: 48px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 18px rgba(230, 81, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-pw-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.65);
  background: linear-gradient(135deg, var(--pw-primary-light) 0%, var(--pw-primary) 100%);
  color: #fff !important;
}

.btn-pw-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 26px;
  min-height: 48px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-pw-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  background: linear-gradient(135deg, #2ae771 0%, #17a08f 100%);
  color: #fff !important;
}

.btn-pw-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff !important;
  border: 2px solid var(--pw-gold);
  font-weight: 700;
  padding: 10px 24px;
  min-height: 48px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-pw-outline:hover {
  background: var(--pw-gold);
  color: #0f0f12 !important;
  box-shadow: 0 4px 20px var(--pw-gold-glow);
  transform: translateY(-2px);
}

.btn-pw-outline.btn-sm, .btn-pw-primary.btn-sm, .btn-pw-whatsapp.btn-sm {
  min-height: 38px;
  padding: 6px 18px;
  font-size: 0.88rem;
}

/* -------------------------------------------------------------
   Floating WhatsApp Button (Pulsar)
   ------------------------------------------------------------- */
.pw-whatsapp-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 1050;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2.5s infinite;
}

.pw-whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  color: #ffffff !important;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll-to-Top Button (Exakt über dem WhatsApp-Button platziert) */
.scroll-top {
  right: 33px !important;
  bottom: -25px !important;
  z-index: 1040 !important;
  width: 44px !important;
  height: 44px !important;
  background: var(--pw-primary) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45) !important;
}

.scroll-top.active {
  bottom: 96px !important;
}

.scroll-top:hover {
  background: var(--pw-primary-dark) !important;
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
   Hero Section & Aura Glow
   ------------------------------------------------------------- */
.pw-hero-section {
  background: radial-gradient(circle at 80% 25%, rgba(230, 81, 0, 0.18) 0%, rgba(15, 15, 18, 0.98) 60%), #0f0f12;
  color: #fff;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.pw-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

.pw-hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
}

.pw-hero-title span.glow-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--pw-gold) 70%, var(--pw-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pw-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #cbd5e1;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.pw-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pw-usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.pw-hero-image-wrap {
  position: relative;
  text-align: center;
}

.pw-hero-image-wrap img.main-img {
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 550px;
}

.pw-hero-image-wrap:hover img.main-img {
  transform: scale(1.015);
}

.pw-floating-badge {
  position: absolute;
  background: rgba(22, 22, 27, 0.95);
  border: 1px solid rgba(255, 179, 0, 0.5);
  padding: 12px 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  animation: float-badge 4s ease-in-out infinite alternate;
  z-index: 2;
}

.pw-floating-badge .text-muted,
.pw-floating-badge .text-white-50 {
  color: rgba(220, 225, 235, 0.8) !important;
}

.pw-floating-badge.badge-top {
  top: -15px;
  right: -10px;
}

.pw-floating-badge.badge-bottom {
  bottom: -15px;
  left: -10px;
  animation-delay: -2s;
}

@keyframes float-badge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* -------------------------------------------------------------
   Live-Standort & Live-Cockpit ("Etwas Spezielles")
   ------------------------------------------------------------- */
.pw-location-section {
  background-color: var(--pw-dark-surface);
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.section-tag {
  font-family: var(--pw-font-heading);
  color: var(--pw-gold);
  font-size: 1.15rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.section-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.pw-live-cockpit {
  background: linear-gradient(145deg, #181820 0%, #242430 100%);
  border-radius: 24px;
  color: #fff;
  padding: 35px;
  border: 1px solid rgba(255, 179, 0, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 30px rgba(230, 81, 0, 0.15);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pw-cockpit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.pw-cockpit-stat-item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.pw-cockpit-stat-num {
  font-family: var(--pw-font-heading);
  font-size: 1.8rem;
  color: var(--pw-gold);
  line-height: 1;
}

.pw-tour-card {
  background: var(--pw-dark-card);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid var(--pw-dark-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pw-tour-card.fixed-spot {
  background: linear-gradient(145deg, rgba(35, 30, 20, 0.6) 0%, rgba(22, 22, 28, 0.95) 100%);
  border: 1px solid rgba(255, 179, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 179, 0, 0.08);
}

.pw-tour-card.event-spot {
  background: linear-gradient(145deg, rgba(35, 20, 18, 0.5) 0%, rgba(22, 22, 28, 0.95) 100%);
  border: 1px solid rgba(230, 81, 0, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(230, 81, 0, 0.08);
}

.pw-tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--pw-gold);
  box-shadow: 0 16px 40px rgba(255, 179, 0, 0.2);
}

.pw-tour-day-badge {
  background: #000;
  color: var(--pw-gold);
  font-family: var(--pw-font-heading);
  font-size: 1.25rem;
  padding: 4px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 179, 0, 0.35);
  letter-spacing: 0.8px;
}

.pw-tour-tag-fixed {
  background: rgba(255, 179, 0, 0.15);
  color: #ffb300;
  border: 1px solid rgba(255, 179, 0, 0.35);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
}

.pw-tour-tag-event {
  background: rgba(230, 81, 0, 0.15);
  color: #ff8a65;
  border: 1px solid rgba(230, 81, 0, 0.35);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
}

/* -------------------------------------------------------------
   Das Handwerk & 3 Säulen
   ------------------------------------------------------------- */
.pw-craft-section {
  background-color: var(--pw-dark);
  color: #fff;
  padding: 110px 0;
  position: relative;
}

.pw-craft-card {
  background: var(--pw-dark-card);
  border-radius: 22px;
  padding: 38px 28px;
  border: 1px solid var(--pw-dark-border);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.pw-craft-card:hover {
  transform: translateY(-8px);
  border-color: var(--pw-gold);
  box-shadow: 0 15px 40px rgba(255, 179, 0, 0.2);
}

.pw-craft-icon-wrap {
  width: 76px;
  height: 76px;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--pw-gold);
  margin-bottom: 22px;
}

.pw-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  height: 100%;
}

.pw-stat-num {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-family: var(--pw-font-heading);
  color: var(--pw-gold);
  line-height: 1;
  margin-bottom: 5px;
}

/* -------------------------------------------------------------
   Werksverzeichnis / Speisekarte
   ------------------------------------------------------------- */
.pw-menu-section {
  background-color: var(--pw-dark-surface);
  color: #fff;
  padding: 110px 0;
}

.pw-nav-pills .nav-link {
  color: #d1d5db;
  font-family: var(--pw-font-heading);
  font-size: 1.35rem;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid var(--pw-dark-border);
  background: var(--pw-dark-card);
  margin: 0 6px 12px;
  transition: all 0.3s ease;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pw-nav-pills .nav-link.active, .pw-nav-pills .nav-link:hover {
  background: linear-gradient(135deg, var(--pw-primary) 0%, var(--pw-primary-dark) 100%);
  color: #ffffff;
  border-color: var(--pw-gold);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

.pw-menu-card {
  background: var(--pw-dark-card);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--pw-dark-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pw-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(230, 81, 0, 0.2);
  border-color: var(--pw-gold);
}

.pw-menu-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.pw-menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pw-menu-card:hover .pw-menu-img-wrap img {
  transform: scale(1.08);
}

.pw-menu-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-signature {
  background: linear-gradient(135deg, var(--pw-gold) 0%, var(--pw-primary) 100%);
  color: #000;
}

.badge-spicy {
  background: #c62828;
  color: #fff;
}

.badge-veggie {
  background: #2e7d32;
  color: #fff;
}

.pw-menu-body {
  padding: 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pw-menu-price {
  font-family: var(--pw-font-heading);
  font-size: 1.9rem;
  color: var(--pw-gold);
  line-height: 1;
  white-space: nowrap;
}

/* -------------------------------------------------------------
   Catering & Event Section (CHF)
   ------------------------------------------------------------- */
.pw-catering-section {
  background: linear-gradient(180deg, #0f0f12 0%, #16161b 100%);
  color: #fff;
  padding: 110px 0;
}

.pw-package-card {
  background: var(--pw-dark-card);
  border-radius: 26px;
  padding: 38px 30px;
  border: 1px solid var(--pw-dark-border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pw-package-card.featured {
  border-color: var(--pw-gold);
  box-shadow: 0 12px 45px rgba(255, 179, 0, 0.25);
  transform: scale(1.03);
  background: linear-gradient(145deg, #1e1e28 0%, #282834 100%);
}

.pw-package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pw-gold) 0%, var(--pw-primary) 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pw-package-card:hover {
  transform: translateY(-8px);
  border-color: var(--pw-gold);
}

.pw-package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pw-feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  flex-grow: 1;
}

.pw-feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.pw-feature-list li i {
  color: var(--pw-gold);
  font-size: 1.1rem;
}

.pw-package-card button, .pw-package-card a.btn-select-package {
  margin-top: auto;
}

/* -------------------------------------------------------------
   Interaktiver Rechner Box (CHF)
   ------------------------------------------------------------- */
.pw-calc-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 179, 0, 0.35);
  border-radius: 26px;
  padding: 40px;
  margin-top: 55px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pw-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: #2e2e3a;
  outline: none;
  margin: 16px 0;
}

.pw-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pw-gold);
  cursor: pointer;
  box-shadow: 0 0 14px var(--pw-gold);
}

.pw-range-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pw-gold);
  cursor: pointer;
  box-shadow: 0 0 14px var(--pw-gold);
  border: none;
}

/* -------------------------------------------------------------
   Social Proof & Instagram Feed
   ------------------------------------------------------------- */
.pw-social-section {
  background-color: var(--pw-dark);
  color: #fff;
  padding: 100px 0;
}

.pw-insta-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--pw-dark-border);
}

.pw-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pw-insta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 18, 0.82);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.pw-insta-item:hover .pw-insta-overlay {
  opacity: 1;
}

.pw-insta-item:hover img {
  transform: scale(1.1);
}

/* -------------------------------------------------------------
   Buchungsmaschine Formular
   ------------------------------------------------------------- */
.pw-booking-section {
  background-color: var(--pw-dark-surface);
  color: #fff;
  padding: 110px 0;
}

.pw-form-card {
  background: var(--pw-dark-card);
  border-radius: 26px;
  padding: 42px;
  border: 1px solid var(--pw-dark-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pw-form-control {
  border-radius: 12px;
  padding: 14px 16px;
  background-color: #121216;
  border: 1px solid #333342;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.pw-form-control:focus {
  background-color: #16161c;
  border-color: var(--pw-primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.25);
}

.pw-form-control::placeholder {
  color: #6b7280;
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.pw-footer {
  background-color: #08080a;
  color: #9ca3af;
  padding: 75px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pw-footer h4 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 20px;
}

.pw-footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.pw-social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pw-social-icon:hover {
  background: var(--pw-primary);
  color: #fff;
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
   Responsive Fine-Tuning across all Viewports
   ------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .pw-package-card.featured {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .pw-hero-section {
    padding: 70px 0 50px;
  }
  .pw-floating-badge {
    display: none !important;
  }
  .pw-calc-box {
    padding: 28px 20px;
  }
  .pw-form-card {
    padding: 30px 22px;
  }
  .pw-hero-image-wrap img.main-img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .pw-hero-section {
    padding: 45px 0 35px;
  }
  .pw-hero-title {
    font-size: 2.1rem;
  }
  .pw-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }
  .pw-cockpit-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .pw-cockpit-stat-item {
    padding: 10px 6px !important;
  }
  .pw-cockpit-stat-num {
    font-size: 1.15rem !important;
  }
  .pw-hero-usps {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 20px;
  }
  .pw-usp-item {
    padding: 6px 12px;
    font-size: 0.82rem;
  }
  .pw-nav-pills .nav-link {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .pw-package-card {
    padding: 26px 18px;
  }
  .pw-stat-box {
    padding: 16px 10px;
  }
  .pw-stat-num {
    font-size: 2rem;
  }
  .pw-form-card {
    padding: 24px 16px;
  }
  .pw-whatsapp-floating {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .scroll-top {
    right: 25px !important;
    width: 42px !important;
    height: 42px !important;
  }
  .scroll-top.active {
    bottom: 82px !important;
  }
}

@media (max-width: 575.98px) {
  .pw-live-bar {
    font-size: 0.8rem;
    padding: 6px 0;
  }
  header#header {
    padding: 8px 0 !important;
  }
  header#header .logo img {
    height: 38px !important;
    max-height: 38px !important;
  }
  .header .logo h1 {
    font-size: 1.45rem !important;
  }
  .header .logo span.tagline {
    font-size: 0.72rem !important;
  }
  .pw-live-cockpit {
    padding: 20px 14px;
  }
  .pw-live-cockpit h3 {
    font-size: 1.6rem !important;
  }
  .pw-hero-section .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    gap: 10px !important;
  }
  .pw-hero-section .d-flex.flex-wrap.gap-3 .btn-pw-whatsapp,
  .pw-hero-section .d-flex.flex-wrap.gap-3 .btn-pw-outline {
    width: 100%;
    text-align: center;
  }
}
