/* ==========================================================================
   PIZZAWERK Schweiz - officina della pizza | Bespoke Craft Theme CSS
   Gastro Guard GmbH, Blumenbergplatz 7, 9000 St. Gallen
   WhatsApp: +41 77 282 44 27
   ========================================================================== */

: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;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  font-family: var(--pw-font-body);
  color: #f3f4f6;
  background-color: var(--pw-dark);
  overflow-x: hidden !important;
  width: 100%;
  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-top-info-bar {
  background: #09090c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.pw-top-info-bar a:hover {
  color: var(--pw-gold) !important;
  transition: color 0.2s ease;
}

.pw-live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3838;
  border-radius: 50%;
}

.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;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* -------------------------------------------------------------
   Header & Navigation (Fix Overlap Bug completely)
   ------------------------------------------------------------- */
/* -------------------------------------------------------------
   Header & Navigation (100% Responsive & Zero Overflow)
   ------------------------------------------------------------- */
header#header.header {
  background: rgba(12, 12, 16, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body.scrolled header#header.header {
  padding: 10px 0 !important;
  background: rgba(10, 10, 14, 0.98) !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7) !important;
}

header#header .container {
  max-width: 1340px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

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

header#header .logo .pw-logo-img {
  width: auto !important;
  height: 52px !important;
  max-width: 52px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 10px rgba(255, 111, 0, 0.5)) drop-shadow(0 0 3px rgba(255, 179, 0, 0.3));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

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

/* Desktop Navigation (Center) */
header#header .navmenu {
  margin: 0 auto !important;
}

header#header .navmenu > ul {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

header#header .navmenu a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  padding: 8px 15px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  letter-spacing: 0.3px;
}

header#header .navmenu a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

header#header .navmenu a.active {
  color: #ffffff !important;
  font-weight: 700 !important;
  background: rgba(255, 179, 0, 0.15) !important;
  border: 1px solid rgba(255, 179, 0, 0.35) !important;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.2) !important;
}

/* Mobile Sub-Navigation Strip (Horizontale Pill-Leiste auf Smartphones/Tablets) */
.pw-mobile-subnav {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding-bottom: 2px !important;
}

.pw-mobile-subnav::-webkit-scrollbar {
  display: none !important;
}

.pw-mobile-subnav ul {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 4px 0 !important;
}

.pw-subnav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.pw-subnav-link:hover,
.pw-subnav-link.active {
  color: #0c0c10 !important;
  background: var(--pw-gold) !important;
  border-color: var(--pw-gold) !important;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.5) !important;
}

/* Hochwertiger, kontrastreicher Header CTA */
.btn-pw-nav-cta {
  background: linear-gradient(135deg, #e65100 0%, #ffb300 100%) !important;
  color: #0c0c10 !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.45) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
  letter-spacing: 0.4px;
  flex-shrink: 0 !important;
}

.btn-pw-nav-cta i {
  font-size: 1rem !important;
  color: #0c0c10 !important;
}

.btn-pw-nav-cta:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ffffff 100%) !important;
  color: #000000 !important;
  box-shadow: 0 6px 22px rgba(255, 179, 0, 0.65) !important;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  header#header.header {
    padding: 12px 0 !important;
  }
  header#header .logo .pw-logo-img {
    height: 46px !important;
    max-width: 46px !important;
  }
  header#header .logo h1 {
    font-size: 1.6rem !important;
  }
  .btn-pw-nav-cta {
    padding: 7px 16px !important;
    font-size: 0.84rem !important;
  }
}

@media (max-width: 575.98px) {
  header#header.header {
    padding: 10px 0 !important;
  }
  header#header .logo {
    gap: 10px !important;
  }
  header#header .logo .pw-logo-img {
    height: 40px !important;
    max-width: 40px !important;
  }
  header#header .logo h1 {
    font-size: 1.4rem !important;
    letter-spacing: 1.2px !important;
  }
  header#header .logo .tagline {
    font-size: 0.72rem !important;
  }
  .btn-pw-nav-cta {
    padding: 6px 13px !important;
    font-size: 0.8rem !important;
  }
  .pw-subnav-link {
    font-size: 0.78rem !important;
    padding: 5px 12px !important;
  }
}

/* -------------------------------------------------------------
   WhatsApp Support Banner & Dezent-Edler Button
   ------------------------------------------------------------- */
.pw-whatsapp-banner {
  background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(10, 10, 14, 0.95) 100%) !important;
  border: 1px solid rgba(37, 211, 102, 0.25) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.pw-whatsapp-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.btn-pw-whatsapp {
  background: rgba(37, 211, 102, 0.14) !important;
  color: #25d366 !important;
  border: 1px solid rgba(37, 211, 102, 0.45) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.btn-pw-whatsapp:hover {
  background: #25d366 !important;
  color: #0c0c10 !important;
  border-color: #25d366 !important;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.55) !important;
  transform: translateY(-2px) !important;
}

.btn-pw-primary {
  background: linear-gradient(135deg, var(--pw-gold) 0%, var(--pw-primary) 100%) !important;
  color: #0c0c10 !important;
  font-weight: 800 !important;
  padding: 10px 24px !important;
  min-height: 48px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 179, 0, 0.5) !important;
  box-shadow: 0 4px 18px rgba(255, 179, 0, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  text-align: center !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.3px !important;
}

.btn-pw-primary:hover {
  background: linear-gradient(135deg, #ffc107 0%, #ff6f00 100%) !important;
  color: #000000 !important;
  border-color: #ffc107 !important;
  box-shadow: 0 6px 26px rgba(255, 179, 0, 0.6) !important;
  transform: translateY(-2px) !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.45);
  z-index: 1050;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
}

/* 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%, 100% { transform: translateY(0px); }
}

/* -------------------------------------------------------------
   Das Konzept ("Was ist PIZZAWERK & Was tun wir?")
   ------------------------------------------------------------- */
.pw-concept-section {
  background-color: var(--pw-dark-surface);
  color: #fff;
  padding: 70px 0;
  position: relative;
}

.pw-concept-card {
  background: var(--pw-dark-card);
  border: 1px solid var(--pw-dark-border);
  border-radius: 20px;
  padding: 22px 22px 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pw-concept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 0, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 179, 0, 0.08);
}

.pw-concept-img-wrap {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #1a1a24;
}

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

.pw-concept-card:hover .pw-concept-img-wrap img {
  transform: scale(1.06);
}

.pw-concept-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pw-gold);
  background: rgba(18, 18, 24, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 179, 0, 0.35);
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.pw-concept-img-wrap .pw-concept-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.pw-concept-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
}

.pw-concept-features li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pw-concept-features li i {
  color: var(--pw-gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   Instagram Feed ("Wo unser Ofen heute glüht: Live-Feed & Standort")
   ------------------------------------------------------------- */
.pw-instagram-section {
  background: linear-gradient(180deg, var(--pw-dark) 0%, #111116 50%, var(--pw-dark) 100%);
  padding: 85px 0;
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255, 179, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pw-insta-profile-card {
  background: linear-gradient(145deg, #181923 0%, #111117 100%);
  border: 1px solid rgba(255, 179, 0, 0.28);
  border-radius: 22px;
  padding: 24px 30px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 179, 0, 0.08);
}

.pw-insta-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(220, 39, 67, 0.5);
  animation: pw-story-glow 3s infinite alternate ease-in-out;
}

@keyframes pw-story-glow {
  0% { box-shadow: 0 0 10px rgba(220, 39, 67, 0.4); }
  100% { box-shadow: 0 0 22px rgba(240, 148, 51, 0.7); }
}

.pw-insta-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.pw-insta-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(231, 76, 60, 0.18);
  border: 1px solid rgba(231, 76, 60, 0.45);
  color: #ff6b6b;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pw-insta-live-dot {
  width: 7px;
  height: 7px;
  background-color: #ff3838;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #ff3838;
}

.pw-insta-location-notice {
  background: rgba(255, 179, 0, 0.07);
  border: 1px solid rgba(255, 179, 0, 0.25);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991.98px) {
  .pw-insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .pw-insta-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.pw-insta-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #15151a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pw-insta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 179, 0, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 179, 0, 0.15);
}

.pw-insta-post-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(12, 12, 16, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.pw-insta-card:hover .pw-insta-post-badge {
  background: rgba(0, 0, 0, 0.95);
  border-color: var(--pw-gold);
  color: var(--pw-gold);
}

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

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

.pw-insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.88) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
}

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

.pw-insta-caption {
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pw-insta-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
}

.pw-btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 24px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.4);
}

.pw-btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.6);
  color: #fff !important;
}

.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(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

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

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

.pw-craft-card:hover {
  transform: translateY(-5px);
  border-color: var(--pw-gold);
  box-shadow: 0 12px 30px rgba(255, 179, 0, 0.15);
}

.pw-craft-icon-wrap {
  width: 60px;
  height: 60px;
  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: 1.6rem;
  color: var(--pw-gold);
  margin-bottom: 16px;
}

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

.pw-nav-pills .nav-link {
  color: #d1d5db;
  font-family: var(--pw-font-heading);
  font-size: 1.2rem;
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid var(--pw-dark-border);
  background: var(--pw-dark-card);
  margin: 0 4px 8px;
  transition: all 0.25s ease;
  min-height: 44px;
  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 4px 15px rgba(230, 81, 0, 0.35);
}

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

.pw-menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(230, 81, 0, 0.18);
  border-color: var(--pw-gold);
}

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

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

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

.pw-menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  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: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pw-menu-price {
  font-family: var(--pw-font-heading);
  font-size: 1.75rem;
  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: 65px 0;
}

.pw-package-card {
  background: var(--pw-dark-card);
  border-radius: 22px;
  padding: 34px 24px 28px;
  border: 1px solid var(--pw-dark-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pw-package-card .package-subtitle {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pw-package-card.featured {
  border-color: var(--pw-gold);
  box-shadow: 0 12px 40px rgba(255, 179, 0, 0.22);
  transform: scale(1.02);
  background: linear-gradient(145deg, #1f1f2a 0%, #292938 100%);
}

.pw-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pw-gold) 0%, var(--pw-primary) 100%);
  color: #0c0c10;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
  white-space: nowrap;
}

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

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

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

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

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

.pw-package-card button, 
.pw-package-card a.btn-select-package {
  margin-top: auto !important;
  border-radius: 30px !important;
  min-height: 48px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.3px !important;
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* -------------------------------------------------------------
   Catering- & Event-Dossier Card (Offizielles PDF)
   ------------------------------------------------------------- */
.pw-dossier-card {
  background: linear-gradient(145deg, #1c1c27 0%, #13131b 100%);
  border: 1px solid rgba(255, 179, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 179, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-dossier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--pw-gold) 0%, var(--pw-primary) 100%);
}

.pw-dossier-card:hover {
  border-color: var(--pw-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 179, 0, 0.16);
}

.pw-dossier-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(255, 179, 0, 0.14);
  border: 1px solid rgba(255, 179, 0, 0.35);
  color: var(--pw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.pw-dossier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--pw-gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* -------------------------------------------------------------
   Catering Configurator & Live Price Calculator (ab 10 Personen)
   ------------------------------------------------------------- */
.pw-configurator-wrap {
  margin-top: 25px;
  position: relative;
}

.pw-configurator-card {
  background: #14141d !important;
  background: linear-gradient(145deg, #181926 0%, #101017 100%) !important;
  border: 1.5px solid rgba(255, 179, 0, 0.45) !important;
  border-radius: 24px !important;
  padding: 38px 30px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 179, 0, 0.12) !important;
  position: relative;
  overflow: hidden;
}

.pw-configurator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pw-gold), var(--pw-primary), transparent);
}

.pw-step-number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: var(--pw-gold) !important;
  color: #0c0c10 !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  box-shadow: 0 0 10px rgba(255, 179, 0, 0.5) !important;
}

.pw-guest-badge {
  background: #0d0e14 !important;
  border: 1.5px solid rgba(255, 179, 0, 0.5) !important;
  padding: 4px 16px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.6) !important;
}

/* Range Slider */
.pw-range-slider,
.form-range.pw-range-slider {
  height: 10px !important;
  background: #252636 !important;
  border-radius: 8px !important;
  outline: none !important;
  cursor: pointer !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.pw-range-slider::-webkit-slider-thumb,
.form-range.pw-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: var(--pw-gold) !important;
  background-color: var(--pw-gold) !important;
  border: 3px solid #ffffff !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.85) !important;
  transition: transform 0.15s ease !important;
}
.pw-range-slider::-webkit-slider-thumb:hover,
.form-range.pw-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2) !important;
}
.pw-range-slider::-moz-range-thumb,
.form-range.pw-range-slider::-moz-range-thumb {
  background: var(--pw-gold) !important;
  background-color: var(--pw-gold) !important;
  border: 3px solid #ffffff !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.85) !important;
}

/* Pill buttons */
.btn-pw-pill {
  background: #1c1d29 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #d1d5db !important;
  border-radius: 20px !important;
  padding: 5px 14px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}
.btn-pw-pill:hover {
  background: rgba(255, 179, 0, 0.2) !important;
  border-color: var(--pw-gold) !important;
  color: #fff !important;
}
.btn-pw-pill.active {
  background: var(--pw-gold) !important;
  border-color: var(--pw-gold) !important;
  color: #0c0c10 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.4) !important;
}

.pw-setup-notice {
  background: #111219 !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-left: 4px solid var(--pw-gold) !important;
}

/* Selectable Package Cards */
.pw-cfg-package-option {
  background: #1b1c28 !important;
  background: linear-gradient(145deg, #1f202e 0%, #151620 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  padding: 16px 14px !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  height: 100% !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}
.pw-cfg-package-option:hover {
  border-color: rgba(255, 179, 0, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 179, 0, 0.15) !important;
}
.pw-cfg-package-option.active {
  border: 2px solid var(--pw-gold) !important;
  background: linear-gradient(145deg, rgba(255, 179, 0, 0.18) 0%, rgba(230, 81, 0, 0.12) 100%) !important;
  box-shadow: 0 0 25px rgba(255, 179, 0, 0.28), inset 0 0 15px rgba(255, 179, 0, 0.08) !important;
}
.pw-cfg-badge-fav {
  position: absolute !important;
  top: -11px !important;
  right: 12px !important;
  background: var(--pw-gold) !important;
  color: #0c0c10 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 2px 10px !important;
  border-radius: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Extra Items Checkbox Cards */
.pw-extra-item {
  background: #181924 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin-bottom: 0 !important;
  user-select: none !important;
  width: 100% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}
.pw-extra-item:hover {
  background: #212230 !important;
  border-color: rgba(255, 179, 0, 0.5) !important;
}
.pw-extra-item:has(input:checked) {
  background: linear-gradient(145deg, rgba(255, 179, 0, 0.14) 0%, rgba(230, 81, 0, 0.08) 100%) !important;
  border-color: var(--pw-gold) !important;
  box-shadow: 0 0 15px rgba(255, 179, 0, 0.18) !important;
}
.pw-extra-item input[type="checkbox"] {
  width: 19px !important;
  height: 19px !important;
  accent-color: var(--pw-gold) !important;
  cursor: pointer !important;
}
.x-small {
  font-size: 0.76rem;
}

/* Summary Card */
.pw-config-summary-card {
  background: #171822 !important;
  background: linear-gradient(160deg, #1b1c28 0%, #111118 100%) !important;
  border: 1.5px solid rgba(255, 179, 0, 0.4) !important;
  border-radius: 20px !important;
  padding: 26px 22px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 179, 0, 0.1) !important;
}

.pw-total-price-box {
  background: linear-gradient(180deg, rgba(255, 179, 0, 0.12) 0%, rgba(230, 81, 0, 0.16) 100%) !important;
  border: 1.5px solid var(--pw-gold) !important;
  border-radius: 14px !important;
  box-shadow: 0 0 25px rgba(255, 179, 0, 0.18), inset 0 0 20px rgba(255, 179, 0, 0.08) !important;
}

/* WhatsApp Button (Ruhig & Hochwertig) */
.pw-btn-whatsapp-pulse {
  background-color: var(--pw-whatsapp) !important;
  border-color: var(--pw-whatsapp) !important;
  color: #fff !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
}
.pw-btn-whatsapp-pulse:hover {
  background-color: var(--pw-whatsapp-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
}

@media (max-width: 991.98px) {
  .pw-configurator-card {
    padding: 26px 18px !important;
  }
}

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

.pw-form-card {
  background: var(--pw-dark-card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--pw-dark-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.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;
}

.form-check-input.pw-form-check-input {
  background-color: #121216;
  border: 1px solid #333342;
  cursor: pointer;
  border-radius: 4px;
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.2em;
}

.form-check-input.pw-form-check-input:checked {
  background-color: var(--pw-gold);
  border-color: var(--pw-gold);
}

.form-check-input.pw-form-check-input:focus {
  border-color: var(--pw-gold);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.25);
}

/* -------------------------------------------------------------
   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;
  }
  .pw-hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .pw-usp-item {
    font-size: 0.78rem;
    padding: 5px 10px;
  }
  .pw-concept-card {
    padding: 18px 16px 22px 16px !important;
  }
  .pw-concept-img-wrap {
    height: 175px !important;
    margin-bottom: 16px !important;
  }
  .pw-dossier-card {
    padding: 20px 16px !important;
  }
  .pw-dossier-card h5 {
    font-size: 1.02rem !important;
  }
  .pw-package-card {
    padding: 24px 18px !important;
  }
  .pw-insta-profile-card {
    padding: 18px 16px !important;
    gap: 16px !important;
    border-radius: 16px !important;
  }
  .pw-insta-profile-card .pw-btn-instagram {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .pw-insta-location-notice {
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 420px) {
  header#header .logo h1 {
    font-size: 1.22rem !important;
    letter-spacing: 1px !important;
  }
  header#header .logo .pw-logo-img {
    height: 34px !important;
    max-width: 34px !important;
  }
  header#header .logo .tagline {
    font-size: 0.65rem !important;
  }
  .btn-pw-nav-cta {
    padding: 5px 9px !important;
    font-size: 0.74rem !important;
  }
  .pw-cockpit-stats {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 4px !important;
  }
  .pw-cockpit-stat-item {
    padding: 8px 4px !important;
  }
  .pw-cockpit-stat-num {
    font-size: 1.05rem !important;
  }
  .pw-package-card .package-subtitle {
    min-height: auto;
  }
}
