/*
 Theme Name:   Benji's Barberia
 Theme URI:    https://benjis-barberia.de
 Description:  Premium luxury barbershop theme
 Author:       Benji's Barberia
 Version:      2.0.0
 Text Domain:  benjis-barberia
 Requires at least: 6.0
 Requires PHP: 8.0
*/

/* ==========================================================================
   DESIGN SYSTEM v2 — Benji's Barberia (BladeHub-Inspired)
   Warm True-Black + Gold Luxury | Mulish 900 + Open Sans
   ========================================================================== */

/* === DESIGN TOKENS === */
:root {
  /* Colors — Warm true-black + gold accent (barbershop interior palette) */
  --bb-black: #0d0d0d;
  --bb-charcoal: #161614;
  --bb-charcoal-light: #1e1e1a;
  --bb-charcoal-lighter: #2a2a24;
  --bb-gold: #D4AF37;
  --bb-gold-light: #E4B77D;
  --bb-gold-dark: #A37E2C;
  --bb-white: #F5F5F5;
  --bb-white-muted: rgba(245, 245, 245, 0.6);
  --bb-white-dim: rgba(245, 245, 245, 0.3);
  --bb-accent-dark: #0a0a08;
  --bb-red: #f03759;
  --bb-olive: #3a4a2f;
  --bb-olive-light: #4d5e3e;
  --bb-gold-overlay: rgba(212, 175, 55, 0.15);
  --bb-gold-border: rgba(212, 175, 55, 0.12);
  --bb-gold-border-hover: rgba(212, 175, 55, 0.5);

  /* Gold Gradients */
  --bb-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #E4B77D 50%, #D4AF37 100%);
  --bb-gold-gradient-text: linear-gradient(135deg, #D4AF37 0%, #F5E6B8 50%, #D4AF37 100%);
  --bb-dark-gradient: linear-gradient(180deg, #0d0d0d 0%, #161614 100%);

  /* Spacing */
  --bb-spacing-xs: 0.5rem;
  --bb-spacing-sm: 1rem;
  --bb-spacing-md: 2rem;
  --bb-spacing-lg: 4rem;
  --bb-spacing-xl: 6rem;
  --bb-spacing-section: 7rem;

  /* Layout */
  --bb-max-width: 1200px;
  --bb-max-width-narrow: 800px;
  --bb-max-width-wide: 1400px;

  /* Border */
  --bb-radius: 4px;
  --bb-radius-lg: 8px;

  /* Transitions */
  --bb-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bb-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --bb-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --bb-shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
  --bb-shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.25);
  --bb-shadow-glow: 0 0 60px rgba(212, 175, 55, 0.15);
}

/* === GLOBAL BASE === */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bb-black);
  color: var(--bb-white);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === TYPOGRAPHY — Mulish Headings === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
  color: var(--bb-white);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); color: var(--bb-gold); }
h4 { font-size: 1.25rem; font-weight: 800; color: var(--bb-gold-light); }
h5 { font-size: 1.125rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 700; }

p {
  color: var(--bb-white-muted);
  margin-bottom: 1.25em;
}

a {
  color: var(--bb-gold);
  text-decoration: none;
  transition: var(--bb-transition);
}
a:hover { color: var(--bb-gold-light); }

::selection {
  background: var(--bb-gold);
  color: var(--bb-black);
}

/* === GOLD LABEL === */
.bb-label {
  display: inline-block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: var(--bb-spacing-sm);
}

/* === GOLD DIVIDER === */
.bb-gold-line {
  width: 60px;
  height: 3px;
  background: var(--bb-gold);
  margin: var(--bb-spacing-sm) 0;
  border: none;
}
.bb-gold-line--center { margin-left: auto; margin-right: auto; }
.bb-gold-line--wide { width: 100px; }

/* === GRADIENT TEXT === */
.bb-gradient-text {
  background: var(--bb-gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.bb-container {
  max-width: var(--bb-max-width);
  margin: 0 auto;
  padding: 0 var(--bb-spacing-md);
}
.bb-container--narrow { max-width: var(--bb-max-width-narrow); }
.bb-container--wide { max-width: var(--bb-max-width-wide); }

/* === SECTIONS === */
.bb-section {
  padding: var(--bb-spacing-section) 0;
  position: relative;
  overflow: hidden;
}
.bb-section--dark { background-color: var(--bb-black); }
.bb-section--charcoal { background-color: var(--bb-charcoal); }
.bb-section--accent { background-color: var(--bb-accent-dark); }

@media (max-width: 767px) {
  .bb-section { padding: var(--bb-spacing-lg) 0; }
}

/* ==========================================================================
   BUTTONS — BladeHub Bold Style
   ========================================================================== */

.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--bb-radius);
  transition: var(--bb-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.bb-btn--primary {
  background: var(--bb-gold);
  color: var(--bb-black);
  border: 2px solid var(--bb-gold);
}
.bb-btn--primary:hover {
  background: var(--bb-gold-light);
  border-color: var(--bb-gold-light);
  color: var(--bb-black);
  transform: translateY(-3px);
  box-shadow: var(--bb-shadow-gold);
}

.bb-btn--outline {
  background: transparent;
  color: var(--bb-gold);
  border: 2px solid var(--bb-gold);
}
.bb-btn--outline:hover {
  background: var(--bb-gold);
  color: var(--bb-black);
  transform: translateY(-3px);
}

.bb-btn--ghost {
  background: transparent;
  color: var(--bb-gold);
  border: none;
  padding: 8px 0;
  letter-spacing: 0.08em;
  position: relative;
}
.bb-btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bb-gold);
  transition: var(--bb-transition);
}
.bb-btn--ghost:hover::after { width: 100%; }

/* Ripple effect */
.bb-btn--primary::before,
.bb-btn--outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}
.bb-btn--primary:active::before,
.bb-btn--outline:active::before {
  width: 400px;
  height: 400px;
  opacity: 1;
}

/* ==========================================================================
   CARDS — BladeHub Style
   ========================================================================== */

.bb-card {
  background: var(--bb-charcoal);
  border: 1px solid var(--bb-gold-border);
  border-radius: var(--bb-radius);
  padding: var(--bb-spacing-md);
  transition: var(--bb-transition);
  position: relative;
}
.bb-card:hover {
  border-color: var(--bb-gold-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--bb-shadow-card-hover);
}
.bb-card--accent-top { border-top: 3px solid var(--bb-gold); }

/* ==========================================================================
   FLIP CARDS — BladeHub Inspired
   ========================================================================== */

.bb-flip-card {
  perspective: 1000px;
  height: 320px;
  cursor: pointer;
}

.bb-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.bb-flip-card:hover .bb-flip-card__inner,
.bb-flip-card.is-flipped .bb-flip-card__inner {
  transform: rotateY(180deg);
}

.bb-flip-card__front,
.bb-flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--bb-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--bb-spacing-md);
}

.bb-flip-card__front {
  background: var(--bb-charcoal);
  border: 1px solid var(--bb-gold-border);
}

/* Each card gets a unique subtle gradient */
.bb-flip-card:nth-child(1) .bb-flip-card__front {
  background: linear-gradient(145deg, #1a1f16 0%, #161614 60%, #1c1a14 100%);
}
.bb-flip-card:nth-child(2) .bb-flip-card__front {
  background: linear-gradient(145deg, #1a1614 0%, #161614 60%, #1f1a16 100%);
}
.bb-flip-card:nth-child(3) .bb-flip-card__front {
  background: linear-gradient(145deg, #14181a 0%, #161614 60%, #161a1a 100%);
}
.bb-flip-card:nth-child(4) .bb-flip-card__front {
  background: linear-gradient(145deg, #1f1b12 0%, #1a1710 60%, #1c1812 100%);
}

.bb-flip-card__back {
  background: var(--bb-charcoal-light);
  border: 2px solid var(--bb-gold);
  transform: rotateY(180deg);
}

.bb-flip-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: var(--bb-spacing-sm);
  color: var(--bb-gold);
}

.bb-flip-card__title {
  font-family: 'Mulish', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bb-white);
  margin-bottom: var(--bb-spacing-xs);
}

.bb-flip-card__price {
  font-family: 'Mulish', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bb-gold);
}

.bb-flip-card__description {
  font-size: 0.9375rem;
  color: var(--bb-white-muted);
  margin-bottom: var(--bb-spacing-sm);
}

.bb-flip-card__duration {
  font-size: 0.8125rem;
  color: var(--bb-white-dim);
  margin-bottom: var(--bb-spacing-md);
}

/* Mobile: tap to flip */
@media (hover: none) {
  .bb-flip-card:hover .bb-flip-card__inner {
    transform: none;
  }
  .bb-flip-card.is-flipped .bb-flip-card__inner {
    transform: rotateY(180deg);
  }
}

/* ==========================================================================
   SCROLLING MARQUEE — BladeHub Text Path Inspired
   ========================================================================== */

.bb-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--bb-gold-border);
  border-bottom: 1px solid var(--bb-gold-border);
  background: var(--bb-accent-dark);
}

.bb-marquee__track {
  display: inline-flex;
  animation: bb-marquee-scroll 30s linear infinite;
}

.bb-marquee__text {
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bb-gold);
  padding: 0 2rem;
  flex-shrink: 0;
}

.bb-marquee__text--muted {
  color: var(--bb-white-dim);
}

.bb-marquee__separator {
  color: var(--bb-gold);
  padding: 0 1rem;
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes bb-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.bb-marquee:hover .bb-marquee__track {
  animation-play-state: paused;
}

/* ==========================================================================
   BACKGROUND WATERMARK TEXT — BladeHub Background Text Module
   ========================================================================== */

.bb-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 15vw, 14rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 245, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bb-watermark--gold {
  color: rgba(212, 175, 55, 0.03);
}

/* ==========================================================================
   SHAPE DIVIDERS — BladeHub Torn/Angle Dividers
   ========================================================================== */

.bb-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.bb-divider--top {
  top: -1px;
}

.bb-divider--bottom {
  bottom: -1px;
}

.bb-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.bb-divider--flip svg {
  transform: scaleX(-1);
}

/* ==========================================================================
   ANIMATED COUNTERS — BladeHub Stats Module
   ========================================================================== */

.bb-section:has(.bb-counters) {
  padding: 3rem 0;
}

.bb-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bb-spacing-md);
  text-align: center;
}

.bb-counter {
  padding: var(--bb-spacing-md);
}

.bb-counter__number {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--bb-gold);
  line-height: 1;
  margin-bottom: var(--bb-spacing-xs);
}

.bb-counter__suffix {
  font-size: 0.6em;
  color: var(--bb-gold-light);
}

.bb-counter__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bb-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .bb-counters { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   CURSOR GLOW — BladeHub Dynamic Highlights Inspired
   ========================================================================== */

.bb-cursor-glow {
  display: none; /* Disabled — full-screen compositing layer causes GPU overload */
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.bb-cursor-glow.is-active {
  opacity: 1;
}

/* ==========================================================================
   IMAGE LAYERS — BladeHub Parallax Image Stacking
   ========================================================================== */

.bb-image-layers {
  position: relative;
  min-height: 500px;
}

.bb-image-layers__item {
  position: absolute;
  border-radius: var(--bb-radius);
  overflow: hidden;
  box-shadow: var(--bb-shadow-card);
}

.bb-image-layers__item--main {
  width: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bb-image-layers__item--secondary {
  width: 50%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 3px solid var(--bb-gold);
}

.bb-image-layers__item--accent {
  width: 80px;
  height: 80px;
  z-index: 3;
}

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

@media (max-width: 767px) {
  .bb-image-layers {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--bb-spacing-sm);
  }
  .bb-image-layers__item {
    position: relative;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}

/* ==========================================================================
   SERVICE ROW (Pricing Page)
   ========================================================================== */

.bb-service-row {
  display: flex;
  align-items: baseline;
  padding: var(--bb-spacing-sm) 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--bb-transition);
}
.bb-service-row:hover {
  background: rgba(212, 175, 55, 0.03);
  padding-left: var(--bb-spacing-xs);
}
.bb-service-row__name {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bb-white);
  white-space: nowrap;
}
.bb-service-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--bb-gold-border-hover);
  margin: 0 var(--bb-spacing-sm);
  min-width: 40px;
  position: relative;
  top: -4px;
}
.bb-service-row__price {
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--bb-gold);
  white-space: nowrap;
}
.bb-service-row__duration {
  font-size: 0.8125rem;
  color: var(--bb-white-muted);
  margin-left: var(--bb-spacing-sm);
  white-space: nowrap;
}

/* Inline gold icon prefix on a service row (used on /leistungen/) */
.bb-service-row__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 0.875rem;
  color: var(--bb-gold);
  position: relative;
  top: 4px;
}
.bb-service-row__icon svg { display: block; }

/* Compact section variant — used to tighten the leistungen layout */
.bb-section--compact { padding: 4.5rem 0; }
@media (max-width: 767px) {
  .bb-section--compact { padding: 3rem 0; }
}

/* Featured pakete card with "Beliebt" badge */
.bb-card--featured {
  position: relative;
  border: 1px solid var(--bb-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(22, 22, 20, 0) 60%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 32px rgba(212, 175, 55, 0.12);
}
.bb-card--featured:hover {
  box-shadow: 0 0 0 1px var(--bb-gold), 0 12px 40px rgba(212, 175, 55, 0.20);
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bb-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  display: inline-block;
  padding: 5px 14px;
  font-family: 'Mulish', sans-serif;
  font-weight: 900;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-black);
  background: linear-gradient(135deg, #D4AF37 0%, #A37E2C 100%);
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   TEAM CARDS — Enhanced with BladeHub hover reveal
   ========================================================================== */

.bb-team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bb-radius);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--bb-transition);
}
.bb-team-card:hover {
  border-bottom-color: var(--bb-gold);
}

.bb-team-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: var(--bb-transition-slow);
}
.bb-team-card:hover .bb-team-card__image {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.bb-team-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--bb-spacing-md);
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.95));
  transform: translateY(40px);
  transition: var(--bb-transition);
}
.bb-team-card:hover .bb-team-card__overlay {
  transform: translateY(0);
}

.bb-team-card__name {
  font-family: 'Mulish', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bb-white);
  margin-bottom: 4px;
}
.bb-team-card__specialty {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--bb-gold);
  margin-bottom: var(--bb-spacing-sm);
}
.bb-team-card__bio {
  font-size: 0.8125rem;
  color: var(--bb-white-muted);
  margin-bottom: var(--bb-spacing-sm);
  opacity: 0;
  transition: var(--bb-transition);
}
.bb-team-card:hover .bb-team-card__bio {
  opacity: 1;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */

.bb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}

.bb-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.bb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--bb-transition-slow);
}
.bb-gallery__item:hover img {
  transform: scale(1.08);
}
.bb-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.12);
  opacity: 0;
  transition: var(--bb-transition);
}
.bb-gallery__item:hover::after { opacity: 1; }

/* Gallery filter tabs */
.bb-gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--bb-spacing-sm);
  margin-bottom: var(--bb-spacing-lg);
  flex-wrap: wrap;
}
.bb-gallery-filter {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white-dim);
  background: none;
  border: 1px solid transparent;
  padding: 8px 20px;
  cursor: pointer;
  transition: var(--bb-transition);
  border-radius: var(--bb-radius);
}
.bb-gallery-filter:hover,
.bb-gallery-filter.is-active {
  color: var(--bb-gold);
  border-color: var(--bb-gold);
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */

.bb-testimonial {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: var(--bb-spacing-lg) 8%;
  box-sizing: border-box;
}
.bb-testimonial__quote-mark {
  font-family: 'Mulish', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.5;
  color: var(--bb-gold);
  opacity: 0.4;
}
.bb-testimonial__text {
  font-family: 'Mulish', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.7;
  color: var(--bb-white);
  margin: var(--bb-spacing-md) auto;
  max-width: 650px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bb-testimonial__stars {
  color: var(--bb-gold);
  font-size: 1.25rem;
  margin-bottom: var(--bb-spacing-xs);
  letter-spacing: 4px;
}
.bb-testimonial__author {
  font-family: 'Mulish', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--bb-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.bb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.bb-hero--short { min-height: 50vh; }

.bb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bb-hero__bg img,
.bb-hero__bg video,
.bb-hero__bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.7) 50%,
    rgba(13, 13, 13, 0.95) 100%
  );
  z-index: 1;
}

.bb-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: var(--bb-spacing-md);
}
.bb-hero__title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: var(--bb-spacing-xs);
}
.bb-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--bb-gold-light);
  margin-bottom: var(--bb-spacing-md);
}
.bb-hero__buttons {
  display: flex;
  gap: var(--bb-spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.bb-scroll-indicator {
  position: absolute;
  bottom: var(--bb-spacing-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bb-bounce 2s infinite;
}
.bb-scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: var(--bb-gold);
  stroke-width: 2;
  fill: none;
}

@keyframes bb-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.bb-cta-banner {
  position: relative;
  padding: var(--bb-spacing-xl) var(--bb-spacing-md);
  text-align: center;
  overflow: hidden;
}
.bb-cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bb-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bb-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.88);
  z-index: 1;
}
.bb-cta-banner__content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   OPENING HOURS TABLE
   ========================================================================== */

.bb-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}
.bb-hours-table tr {
  border-bottom: 1px solid rgba(245, 245, 245, 0.06);
}
.bb-hours-table td {
  padding: 10px 0;
  color: var(--bb-white-muted);
}
.bb-hours-table td:last-child {
  text-align: right;
  color: var(--bb-white);
  font-weight: 600;
}
.bb-hours-table tr.is-today td {
  color: var(--bb-gold);
  font-weight: 700;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.bb-form-field {
  margin-bottom: var(--bb-spacing-sm);
}
.bb-form-field label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bb-white-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bb-form-field input,
.bb-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bb-charcoal);
  border: 1px solid var(--bb-gold-border);
  border-radius: var(--bb-radius);
  color: var(--bb-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  transition: var(--bb-transition);
}
.bb-form-field input:focus,
.bb-form-field textarea:focus {
  outline: none;
  border-color: var(--bb-gold);
  box-shadow: 0 0 0 3px var(--bb-gold-overlay);
}
.bb-form-field input::placeholder,
.bb-form-field textarea::placeholder {
  color: var(--bb-white-dim);
}

.bb-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--bb-spacing-sm);
}
.bb-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bb-gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.bb-form-checkbox label {
  font-size: 0.8125rem;
  color: var(--bb-white-muted);
  line-height: 1.5;
}

/* ==========================================================================
   BEFORE/AFTER SLIDER
   ========================================================================== */

.bb-before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--bb-radius);
  max-width: 600px;
  margin: 0 auto;
}
.bb-before-after__after { width: 100%; display: block; }
.bb-before-after__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0 50% 0 0);
}
.bb-before-after__slider {
  position: absolute;
  inset: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
  z-index: 2;
}
.bb-before-after__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 3px;
  height: 100vh;
  background: var(--bb-gold);
}
.bb-before-after__label {
  position: absolute;
  bottom: var(--bb-spacing-sm);
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white);
  background: rgba(13, 13, 13, 0.7);
  padding: 4px 12px;
  border-radius: var(--bb-radius);
  z-index: 1;
}
.bb-before-after__label--before { left: var(--bb-spacing-sm); }
.bb-before-after__label--after { right: var(--bb-spacing-sm); }

/* ==========================================================================
   GRIDS
   ========================================================================== */

.bb-grid {
  display: grid;
  gap: var(--bb-spacing-md);
}
.bb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bb-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .bb-grid--3, .bb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .bb-grid--2, .bb-grid--3, .bb-grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HEX PATTERN BACKGROUND
   ========================================================================== */

.bb-section--hex-pattern {
  background-image: url('images/hex-pattern.svg');
  background-repeat: repeat;
  background-size: 200px;
  background-color: var(--bb-charcoal);
}

.bb-hex-clip {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ==========================================================================
   HEADER & NAVIGATION (Custom Theme)
   ========================================================================== */

.bb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.bb-header.is-scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-gold-border);
  padding: 0.75rem 0;
}

.bb-header__inner {
  max-width: var(--bb-max-width-wide);
  margin: 0 auto;
  padding: 0 var(--bb-spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-header__logo {
  text-decoration: none;
}

.bb-header__logo-text {
  font-family: 'Mulish', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bb-gold);
  transition: var(--bb-transition);
}

.bb-header__logo:hover .bb-header__logo-text {
  color: var(--bb-gold-light);
}

/* Desktop Navigation */
.bb-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.bb-nav__link {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white);
  text-decoration: none;
  transition: var(--bb-transition);
  position: relative;
  padding: 4px 0;
}

.bb-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bb-gold);
  transition: var(--bb-transition);
}

.bb-nav__link:hover,
.bb-nav__link.is-active {
  color: var(--bb-gold);
}

.bb-nav__link:hover::after,
.bb-nav__link.is-active::after {
  width: 100%;
}

/* Header CTA */
.bb-header__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* Hamburger */
.bb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.bb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bb-white);
  transition: var(--bb-transition);
}

.bb-hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.bb-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.bb-hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.bb-mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bb-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.bb-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.bb-mobile-nav__list li {
  margin-bottom: 1.5rem;
}

.bb-mobile-nav__link {
  font-family: 'Mulish', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white);
  text-decoration: none;
  transition: var(--bb-transition);
}

.bb-mobile-nav__link:hover {
  color: var(--bb-gold);
}

body.no-scroll {
  overflow: hidden;
}

/* Responsive nav */
@media (max-width: 991px) {
  .bb-nav,
  .bb-header__cta {
    display: none;
  }
  .bb-hamburger {
    display: flex;
  }
}

/* WordPress header overrides (for Kadence/Bricks) */
.header-sticky-active {
  background-color: rgba(13, 13, 13, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-gold-border);
}

.header-navigation a {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white) !important;
  transition: var(--bb-transition);
}
.header-navigation a:hover { color: var(--bb-gold) !important; }

.mobile-navigation-content {
  background: var(--bb-charcoal) !important;
}

/* ==========================================================================
   FOOTER (Custom Theme)
   ========================================================================== */

.bb-footer {
  background: var(--bb-accent-dark);
  border-top: 1px solid var(--bb-gold-border);
  padding: var(--bb-spacing-xl) 0 var(--bb-spacing-md);
}

.bb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--bb-spacing-lg);
  margin-bottom: var(--bb-spacing-lg);
}

.bb-footer__logo {
  font-family: 'Mulish', sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bb-gold);
  display: block;
  margin-bottom: var(--bb-spacing-xs);
}

.bb-footer__tagline {
  font-style: italic;
  color: var(--bb-white-dim);
  font-size: 0.9375rem;
  margin-bottom: var(--bb-spacing-md);
}

.bb-footer__social {
  display: flex;
  gap: 1rem;
}

.bb-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bb-gold-border);
  border-radius: 50%;
  color: var(--bb-white-muted);
  transition: var(--bb-transition);
}

.bb-footer__social-link:hover {
  border-color: var(--bb-gold);
  color: var(--bb-gold);
  transform: translateY(-3px);
}

.bb-footer__heading {
  font-family: 'Mulish', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-white);
  margin-bottom: var(--bb-spacing-sm);
}

.bb-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-footer__links li {
  margin-bottom: 0.5rem;
}

.bb-footer__links a {
  font-size: 0.9375rem;
  color: var(--bb-white-muted);
  text-decoration: none;
  transition: var(--bb-transition);
}

.bb-footer__links a:hover {
  color: var(--bb-gold);
  padding-left: 4px;
}

.bb-footer__contact-info {
  font-size: 0.9375rem;
  color: var(--bb-white-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.bb-footer__contact-info a {
  color: var(--bb-white-muted);
}

.bb-footer__contact-info a:hover {
  color: var(--bb-gold);
}

.bb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--bb-spacing-md);
  border-top: 1px solid rgba(245, 245, 245, 0.06);
  font-size: 0.8125rem;
  color: var(--bb-white-dim);
}

.bb-footer__bottom a {
  color: var(--bb-white-dim);
  text-decoration: none;
  transition: var(--bb-transition);
}

.bb-footer__bottom a:hover {
  color: var(--bb-gold);
}

.bb-footer__sep {
  margin: 0 0.75rem;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .bb-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--bb-spacing-md);
  }
}

@media (max-width: 575px) {
  .bb-footer__grid {
    grid-template-columns: 1fr;
  }
  .bb-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* WordPress footer override */
.site-footer {
  background: var(--bb-accent-dark);
  border-top: 1px solid var(--bb-gold-border);
}

/* ==========================================================================
   TESTIMONIAL DOTS
   ========================================================================== */

.bb-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bb-white-dim);
  margin: 0 4px;
  cursor: pointer;
  transition: var(--bb-transition);
}

.bb-dot.is-active {
  background: var(--bb-gold);
  transform: scale(1.2);
}

.bb-dot:hover {
  background: var(--bb-gold-light);
}

/* ==========================================================================
   PRELOADER TEXT LOGO
   ========================================================================== */

.bb-preloader__inner {
  text-align: center;
}

.bb-preloader__logo-text {
  font-family: 'Mulish', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bb-gold);
  line-height: 1.3;
  animation: bb-pulse 1.5s infinite ease-in-out;
}

/* ==========================================================================
   FLIP CARD DETAILS ROW
   ========================================================================== */

.bb-flip-card__details {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--bb-spacing-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--bb-white-muted);
}

.bb-flip-card__details span:first-child {
  font-weight: 700;
  color: var(--bb-gold);
}

/* Small button variant */
.bb-btn--sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ==========================================================================
   PLACEHOLDER IMAGES (dev only — remove in production)
   ========================================================================== */

img[src*="placeholders"] {
  background: linear-gradient(135deg, #161614 0%, #1e1e1a 50%, #161614 100%);
  min-height: 200px;
  display: block;
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bb-black); }
::-webkit-scrollbar-thumb { background: var(--bb-charcoal-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bb-gold-dark); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.bb-preloader {
  position: fixed;
  inset: 0;
  background: var(--bb-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.bb-preloader.is-hidden { opacity: 0; visibility: hidden; }
.bb-preloader__logo {
  width: 120px;
  animation: bb-pulse 1.5s infinite ease-in-out;
}
@keyframes bb-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   VAT NOTICE
   ========================================================================== */

.bb-vat-notice {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--bb-white-muted);
  text-align: center;
  padding-top: var(--bb-spacing-md);
  border-top: 1px solid rgba(245, 245, 245, 0.06);
  margin-top: var(--bb-spacing-lg);
}

/* ==========================================================================
   GSAP ANIMATION PREP
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
}

.no-js [data-animate],
.no-js [data-animate-stagger] > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */

.bb-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--bb-gold-gradient);
  z-index: 10001;
  pointer-events: none;
  will-change: width;
}

/* ==========================================================================
   OPEN/CLOSED BADGE
   ========================================================================== */

.bb-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1rem;
  vertical-align: middle;
}

.bb-open-badge--open {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.bb-open-badge--closed {
  background: rgba(240, 55, 89, 0.12);
  color: var(--bb-red);
}

.bb-open-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: bb-badge-pulse 1.5s ease-in-out infinite;
}

@keyframes bb-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ==========================================================================
   FLOATING CTA (Mobile)
   ========================================================================== */

.bb-floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 998;
  text-align: center;
  background: var(--bb-gold);
  color: var(--bb-black);
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px;
  border-radius: var(--bb-radius);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(100px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bb-floating-cta.is-visible {
  transform: translateY(0);
}

.bb-floating-cta:hover {
  background: var(--bb-gold-light);
  color: var(--bb-black);
}

@media (max-width: 991px) {
  .bb-floating-cta { display: block; }
}

/* ==========================================================================
   TESTIMONIAL CAROUSEL
   ========================================================================== */

.bb-testimonials-slider {
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}

.bb-testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bb-testimonials-track .bb-testimonial {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bb-testimonials-track .bb-testimonial.is-active {
  visibility: visible;
  opacity: 1;
}

.bb-testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bb-testimonials-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bb-gold-border);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.6);
  color: var(--bb-gold);
  cursor: pointer;
  transition: var(--bb-transition);
  flex-shrink: 0;
}

.bb-testimonials-arrow:hover {
  border-color: var(--bb-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.1);
}

.bb-testimonials-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.bb-testimonials-dots {
  display: flex;
  gap: 8px;
}

@media (max-width: 575px) {
  .bb-testimonials-arrow { display: none; }
}

/* ==========================================================================
   GALLERY LIGHTBOX
   ========================================================================== */

.bb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(10, 10, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: zoom-out;
}

.bb-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.bb-lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--bb-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bb-lightbox.is-open .bb-lightbox__image {
  transform: scale(1);
}

.bb-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bb-gold-border);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.8);
  color: var(--bb-white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--bb-transition);
  z-index: 2;
}

.bb-lightbox__close:hover {
  border-color: var(--bb-gold);
  color: var(--bb-gold);
}

.bb-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--bb-gold-border);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.8);
  color: var(--bb-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--bb-transition);
  z-index: 2;
}

.bb-lightbox__arrow:hover {
  border-color: var(--bb-gold);
  background: rgba(212, 175, 55, 0.15);
}

.bb-lightbox__arrow--prev { left: 20px; }
.bb-lightbox__arrow--next { right: 20px; }

.bb-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Mulish', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bb-white-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 575px) {
  .bb-lightbox__arrow { display: none; }
}

/* ==========================================================================
   POPULAR BADGE
   ========================================================================== */

.bb-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bb-gold);
  color: var(--bb-black);
  font-family: 'Mulish', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 5;
  animation: bb-popular-pulse 2s ease-in-out infinite;
}

@keyframes bb-popular-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   GLASSMORPHISM
   ========================================================================== */

.bb-glass {
  background: rgba(30, 30, 26, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(245, 245, 245, 0.04);
}

.bb-glass--subtle {
  background: rgba(22, 22, 20, 0.85);
}

/* ==========================================================================
   GRADIENT BORDER ANIMATION
   ========================================================================== */

@property --bb-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.bb-gradient-border {
  position: relative;
  background: var(--bb-charcoal);
  z-index: 0;
}

.bb-gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: calc(var(--bb-radius) + 2px);
  background: conic-gradient(
    from var(--bb-border-angle, 0deg),
    transparent 30%,
    var(--bb-gold) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bb-gradient-border:hover::before {
  opacity: 1;
  animation: bb-border-rotate 3s linear infinite;
}

@keyframes bb-border-rotate {
  to { --bb-border-angle: 360deg; }
}

/* Fallback for browsers without @property support */
@supports not (background: conic-gradient(red, blue)) {
  .bb-gradient-border:hover {
    border-color: var(--bb-gold);
  }
}

/* ==========================================================================
   HERO FLOATING SHAPES
   ========================================================================== */

.bb-hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.bb-shape {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--size, 60px);
  height: var(--size, 60px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  opacity: 0.25;
  animation: bb-float var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.bb-shape--hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(212, 175, 55, 0.03);
}

.bb-shape--diamond {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.02);
}

.bb-shape--circle {
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.02);
}

.bb-shape--ring {
  border-radius: 50%;
  border-width: 2px;
  background: transparent;
}

.bb-shape--small-hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: none;
  background: rgba(212, 175, 55, 0.06);
}

@keyframes bb-float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate-start, 0deg)); }
  50% { transform: translateY(var(--float-y, -20px)) rotate(var(--rotate-end, 5deg)); }
}

/* Reduce or disable on mobile for performance */
@media (max-width: 767px) {
  .bb-shape { opacity: 0.12; }
  .bb-shape:nth-child(n+4) { display: none; }
}

/* ==========================================================================
   TEXT REVEAL (Split Text)
   ========================================================================== */

.bb-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.bb-word__inner {
  display: inline-block;
  will-change: transform;
}

/* ==========================================================================
   BENTO GRID
   ========================================================================== */

.bb-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bb-bento__item {
  background: var(--bb-charcoal);
  border: 1px solid var(--bb-gold-border);
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  transition: var(--bb-transition);
}

.bb-bento__item:hover {
  border-color: var(--bb-gold-border-hover);
}

.bb-bento__item--text {
  grid-column: span 2;
  grid-row: span 2;
  padding: var(--bb-spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-bento__item--image-tall {
  grid-row: span 2;
}

.bb-bento__item--image-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-bento__item--stat {
  padding: var(--bb-spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(30, 30, 26, 0.85);
}

.bb-bento__stat-number {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--bb-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bb-bento__stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bb-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bb-bento__item--image-wide {
  grid-column: span 2;
}

.bb-bento__item--image-wide img,
.bb-bento__item--image-wide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  max-height: 450px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .bb-bento__item--image-wide img,
  .bb-bento__item--image-wide video {
    max-height: 280px;
    min-height: 150px;
  }
}

@media (max-width: 991px) {
  .bb-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bb-bento__item--text {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .bb-bento {
    grid-template-columns: 1fr;
  }
  .bb-bento__item--text,
  .bb-bento__item--image-wide {
    grid-column: span 1;
  }
}

/* ==========================================================================
   HORIZONTAL SCROLL GALLERY
   ========================================================================== */

.bb-hscroll {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.bb-hscroll::-webkit-scrollbar {
  display: none;
}

.bb-hscroll__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 var(--bb-spacing-md);
}

.bb-hscroll__item {
  width: 35vw;
  min-width: 300px;
  max-width: 500px;
  flex-shrink: 0;
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  position: relative;
}

.bb-hscroll__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.6s ease;
}

.bb-hscroll__item:hover img {
  transform: scale(1.05);
}

.bb-hscroll__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(13, 13, 13, 0.8));
  pointer-events: none;
}

.bb-hscroll__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Mulish', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bb-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bb-hscroll__progress {
  margin-top: 2rem;
  text-align: center;
}

.bb-hscroll__progress-bar {
  width: 120px;
  height: 3px;
  background: var(--bb-charcoal-lighter);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.bb-hscroll__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--bb-gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}

@media (max-width: 767px) {
  .bb-hscroll__item {
    width: 75vw;
    min-width: 260px;
  }
}

/* ==========================================================================
   ANIMATED SVG ICONS (Stroke Draw)
   ========================================================================== */

.bb-icon-animated path,
.bb-icon-animated line,
.bb-icon-animated circle,
.bb-icon-animated polyline,
.bb-icon-animated rect {
  stroke: var(--bb-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bb-icon-animated.is-drawn path,
.bb-icon-animated.is-drawn line,
.bb-icon-animated.is-drawn circle,
.bb-icon-animated.is-drawn polyline,
.bb-icon-animated.is-drawn rect {
  stroke-dashoffset: 0;
}

/* ==========================================================================
   CUSTOM CURSOR (Desktop only)
   ========================================================================== */

.bb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.bb-cursor__dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--bb-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.bb-cursor.is-hover {
  width: 60px;
  height: 60px;
  border-color: var(--bb-gold);
  background: rgba(212, 175, 55, 0.06);
}

.bb-cursor.is-click {
  width: 32px;
  height: 32px;
  border-color: var(--bb-gold-light);
}

.bb-cursor.is-text {
  width: 3px;
  height: 28px;
  border-radius: 2px;
  border-color: var(--bb-gold);
  background: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px), (pointer: coarse) {
  .bb-cursor, .bb-cursor__dot { display: none !important; }
  * { cursor: auto !important; }
}

/* ==========================================================================
   PAGE TRANSITION
   ========================================================================== */

.bb-page-transition {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bb-gold-gradient);
  transform-origin: top center;
  pointer-events: none;
}

/* ==========================================================================
   FILM GRAIN OVERLAY
   ========================================================================== */

/* Film grain disabled — mix-blend-mode: overlay on a fixed full-screen
   element forces GPU compositing on every frame and crashes Chrome.
   Re-enable only after real images replace SVG placeholders. */
/*
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url('images/noise-grain.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}
*/

/* ==========================================================================
   3D TILT — Team Cards
   ========================================================================== */

.bb-team-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.bb-team-card__image,
.bb-team-card__overlay {
  transform: translateZ(0);
}

.bb-team-card__overlay {
  transform: translateZ(20px) translateY(40px);
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES (575px and below)
   ========================================================================== */

@media (max-width: 575px) {
  /* Container: reduce padding on small screens */
  .bb-container {
    padding: 0 1rem;
  }

  /* Section: reduce vertical spacing */
  .bb-section {
    padding: 3rem 0;
  }

  /* Hero: tighter layout */
  .bb-hero__subtitle {
    font-size: 1rem;
  }
  .bb-hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .bb-hero__buttons .bb-btn {
    width: 100%;
    text-align: center;
  }

  /* Flip cards: reduce height */
  .bb-flip-card {
    height: 260px;
  }

  /* Counters: tighter gap */
  .bb-counters {
    gap: 1rem;
  }
  .bb-counter {
    padding: 1rem;
  }
  .bb-counter__number {
    font-size: 2rem;
  }

  /* Testimonial: smaller quote mark */
  .bb-testimonial__quote-mark {
    font-size: 4rem;
  }
  .bb-testimonial {
    padding: var(--bb-spacing-md) 1rem;
  }
  .bb-testimonial__text {
    font-size: 1rem;
  }

  /* Service rows: allow wrapping */
  .bb-service-row__name,
  .bb-service-row__price,
  .bb-service-row__duration {
    white-space: normal;
  }

  /* Team cards: reduce aspect ratio */
  .bb-team-card__image {
    aspect-ratio: 4/5;
  }

  /* Footer: tighter gap */
  .bb-footer__grid {
    gap: 2rem;
  }

  /* Gallery filter buttons: smaller */
  .bb-gallery-filters .bb-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  /* Mobile nav links: slightly smaller */
  .bb-mobile-nav__link {
    font-size: 1.25rem;
  }

  /* H-scroll gallery items */
  .bb-hscroll__item {
    min-width: 240px;
  }
}

/* Tablet-specific fixes (576px to 768px) */
@media (min-width: 576px) and (max-width: 768px) {
  .bb-container {
    padding: 0 1.5rem;
  }
  .bb-flip-card {
    height: 280px;
  }
  .bb-footer__grid {
    gap: 2rem;
  }
}

/* ==========================================================================
   BOOKING SYSTEM
   ========================================================================== */

/* Step Indicator */
.bb-step-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem;
}
.bb-step-indicator__step {
  display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; z-index: 1;
}
.bb-step-indicator__step span {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bb-gold-border); color: var(--bb-white-dim); font-family: 'Mulish', sans-serif;
  font-weight: 900; font-size: 0.875rem; background: var(--bb-charcoal); transition: all 0.3s;
}
.bb-step-indicator__step small {
  font-size: 0.6875rem; color: var(--bb-white-dim); text-transform: uppercase; letter-spacing: 0.05em;
}
.bb-step-indicator__step.is-active span {
  background: var(--bb-gold); color: var(--bb-black); border-color: var(--bb-gold);
}
.bb-step-indicator__step.is-done span {
  background: transparent; border-color: var(--bb-gold); color: var(--bb-gold);
}
.bb-step-indicator__line {
  flex: 1; max-width: 60px; height: 2px; background: var(--bb-gold-border);
}

/* Steps */
.bb-step { display: none; }
.bb-step.is-active { display: block; animation: bbFadeIn 0.3s ease; }

@keyframes bbFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Booking Grid — 3 columns, popular card spans bottom-center */
.bb-booking-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bb-booking-card--popular {
  grid-column: 2 / 3;
  transform: scale(1.08);
  border-color: var(--bb-gold);
  background: linear-gradient(135deg, #1a1a14 0%, #252518 50%, #1a1a14 100%);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 0 60px rgba(212, 175, 55, 0.05);
  animation: bbPopularGlow 3s ease-in-out infinite;
}
.bb-booking-card--popular .bb-booking-card__name {
  color: var(--bb-gold); font-size: 1.125rem;
}
.bb-booking-card--popular .bb-booking-card__price {
  font-size: 1.125rem;
}
.bb-booking-card--popular::after {
  background: linear-gradient(135deg, var(--bb-gold), #e4b77d);
  padding: 3px 12px; font-size: 0.6875rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.bb-booking-card--popular:hover {
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.25), 0 0 80px rgba(212, 175, 55, 0.08);
}
.bb-booking-card--popular.is-selected {
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), 0 0 0 3px rgba(212, 175, 55, 0.3);
}
@keyframes bbPopularGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), 0 0 60px rgba(212, 175, 55, 0.05); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.25), 0 0 80px rgba(212, 175, 55, 0.1); }
}

@media (max-width: 767px) {
  .bb-booking-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-booking-card--popular { grid-column: span 2; transform: none; }
}
@media (max-width: 575px) {
  .bb-booking-grid { grid-template-columns: 1fr; }
  .bb-booking-card--popular { grid-column: span 1; }
}

/* Booking Card */
.bb-booking-card {
  background: var(--bb-charcoal); border: 1px solid var(--bb-gold-border); border-radius: var(--bb-radius);
  padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s; position: relative;
}
.bb-booking-card:hover { border-color: var(--bb-gold-border-hover); transform: translateY(-2px); }
.bb-booking-card.is-selected { border-color: var(--bb-gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.2); }
.bb-booking-card--popular::after {
  content: 'Beliebt'; position: absolute; top: 8px; right: 8px;
  background: var(--bb-gold); color: var(--bb-black); font-size: 0.625rem; font-weight: 800;
  padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.05em;
}
/* Cards with a barber photo: image fills entire card, text overlaid on a
   bottom gradient. Selector scoped via :has() so service cards (no photo)
   keep their existing layout. */
.bb-booking-card:has(> .bb-booking-card__photo) {
  padding: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.bb-booking-card:has(> .bb-booking-card__photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.6) 32%,
    rgba(13, 13, 13, 0.0) 60%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.bb-booking-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  border: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}

.bb-booking-card:has(> .bb-booking-card__photo) .bb-booking-card__name,
.bb-booking-card:has(> .bb-booking-card__photo) .bb-booking-card__price {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  text-align: center;
}
.bb-booking-card:has(> .bb-booking-card__photo) .bb-booking-card__name {
  bottom: 3rem;
  font-size: 1.125rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.bb-booking-card:has(> .bb-booking-card__photo) .bb-booking-card__price {
  bottom: 1.1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Keep "Kein Wunsch" (no photo) card vertically centered + same aspect so the
   row stays aligned with the photo card. */
.bb-booking-card--any {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bb-booking-card__icon { margin-bottom: 0.75rem; }
.bb-booking-card__name { font-family: 'Mulish', sans-serif; font-weight: 900; color: var(--bb-white); margin-bottom: 0.25rem; }
.bb-booking-card__price { color: var(--bb-gold); font-weight: 700; font-size: 0.875rem; }
.bb-booking-card__duration { color: var(--bb-white-dim); font-size: 0.75rem; margin-top: 0.25rem; }

/* Calendar */
.bb-booking-datetime { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.bb-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bb-cal-title { font-family: 'Mulish', sans-serif; font-weight: 900; color: var(--bb-white); }
.bb-cal-nav {
  background: none; border: 1px solid var(--bb-gold-border); color: var(--bb-gold); width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.bb-cal-nav:hover { background: rgba(212,175,55,0.1); border-color: var(--bb-gold); }

.bb-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.bb-cal-days span { text-align: center; font-size: 0.6875rem; color: var(--bb-gold); font-weight: 700; text-transform: uppercase; padding: 4px; }

.bb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bb-cal-day {
  background: none; border: 1px solid transparent; color: var(--bb-white-muted); padding: 8px; text-align: center;
  cursor: pointer; border-radius: 4px; font-size: 0.875rem; transition: all 0.2s;
}
.bb-cal-day:hover:not(:disabled) { background: rgba(212,175,55,0.1); border-color: var(--bb-gold-border); }
.bb-cal-day--today { border-color: var(--bb-gold-border); color: var(--bb-gold); font-weight: 700; }
.bb-cal-day--disabled { color: var(--bb-white-dim); opacity: 0.3; cursor: not-allowed; }
.bb-cal-day--empty { cursor: default; }
.bb-cal-day.is-selected { background: var(--bb-gold); color: var(--bb-black); font-weight: 700; border-color: var(--bb-gold); }

/* Time Slots */
#bb-slots { display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start; }
.bb-slot {
  background: var(--bb-charcoal); border: 1px solid var(--bb-gold-border); color: var(--bb-white);
  padding: 8px 16px; border-radius: 4px; cursor: pointer; font-size: 0.875rem; transition: all 0.2s;
}
.bb-slot:hover { border-color: var(--bb-gold); background: rgba(212,175,55,0.1); }
.bb-slot.is-selected { background: var(--bb-gold); color: var(--bb-black); font-weight: 700; border-color: var(--bb-gold); }
.bb-slots-loading, .bb-slots-empty { color: var(--bb-white-dim); font-size: 0.875rem; padding: 1rem 0; }

/* Summary */
.bb-booking-summary {
  background: var(--bb-charcoal); border: 1px solid var(--bb-gold-border); border-radius: var(--bb-radius);
  padding: 1.5rem; margin-bottom: 2rem;
}
.bb-summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
.bb-summary-row span:first-child { color: var(--bb-white-muted); }
.bb-summary-row span:last-child { color: var(--bb-white); font-weight: 600; }
.bb-summary-row--total { border-top: 1px solid var(--bb-gold-border); margin-top: 0.5rem; padding-top: 0.75rem; }
.bb-summary-row--total span:last-child { color: var(--bb-gold); font-size: 1.125rem; }

/* Booking Fields */
.bb-booking-fields { display: grid; gap: 1rem; margin-bottom: 1.5rem; }

/* Payment Toggle */
.bb-payment-options { display: flex; gap: 8px; flex-wrap: wrap; }
.bb-payment-option {
  flex: 1; min-width: 140px; background: var(--bb-charcoal); border: 1px solid var(--bb-gold-border);
  border-radius: var(--bb-radius); padding: 1rem; text-align: center; cursor: pointer; transition: all 0.2s;
  color: var(--bb-white-muted);
}
.bb-payment-option:hover { border-color: var(--bb-gold-border-hover); }
.bb-payment-option.is-active { border-color: var(--bb-gold); color: var(--bb-white); }
.bb-payment-option__icon { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; }
.bb-payment-option__label { font-size: 0.8125rem; font-weight: 600; }

/* Booking Nav */
.bb-booking-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.bb-booking-nav .bb-btn { min-width: 140px; }

/* Confirmation */
.bb-confirm-check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bb-gold); color: var(--bb-black);
  font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  animation: bbPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes bbPop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.bb-confirm-details { max-width: 400px; margin: 2rem auto; background: var(--bb-charcoal); border-radius: var(--bb-radius); padding: 1.5rem; }
.bb-confirm-email { color: var(--bb-white-muted); font-size: 0.875rem; margin-top: 1.5rem; }

/* Shake Animation */
@keyframes bbShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-8px); } 75% { transform: translateX(8px); } }
.bb-shake { animation: bbShake 0.3s ease; }

/* Responsive */
@media (max-width: 767px) {
  .bb-booking-datetime { grid-template-columns: 1fr; }
  .bb-step-indicator__step small { display: none; }
  .bb-step-indicator__line { max-width: 30px; }
  .bb-payment-options { flex-direction: column; }
}

@media (max-width: 575px) {
  .bb-booking-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  body { background: white; color: black; }
  body::after { display: none; }
  .bb-hero, .bb-scroll-indicator, .bb-preloader, .bb-marquee, .bb-cursor-glow,
  .bb-scroll-progress, .bb-floating-cta, .bb-lightbox, .bb-cursor, .bb-cursor__dot { display: none; }
}
