/*
Theme Name: The Barber Bros
Theme URI: https://thebarberbros.de
Author: The Barber Bros
Author URI: https://thebarberbros.de
Description: Ein dunkles, edles OnePager WordPress-Theme für The Barber Bros Barbershop – mit animierter Hero-Section, Leistungsübersicht, Preisliste, Öffnungszeiten und Kontakt.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: barber-bros
Tags: one-page, dark, barbershop, responsive, custom-menu, widgets
*/

/* =========================================
   CSS VARIABLES & ROOT
   ========================================= */
:root {
  --color-black:      #0a0a0a;
  --color-dark:       #111111;
  --color-dark-2:     #1a1a1a;
  --color-dark-3:     #222222;
  --color-gold:       #c9a84c;
  --color-gold-light: #e4c06e;
  --color-gold-dark:  #9a7a2e;
  --color-red:        #b01c1c;
  --color-red-light:  #d42020;
  --color-white:      #f5f0e8;
  --color-white-dim:  rgba(245, 240, 232, 0.7);
  --color-white-faint:rgba(245, 240, 232, 0.15);

  --font-display:     'Playfair Display', serif;
  --font-heading:     'Oswald', sans-serif;
  --font-body:        'DM Sans', sans-serif;

  --shadow-gold:      0 0 30px rgba(201, 168, 76, 0.25);
  --shadow-dark:      0 20px 60px rgba(0,0,0,0.6);

  --transition:       all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow:  all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --border-gold:      1px solid rgba(201, 168, 76, 0.3);
  --max-width:        1200px;
  --header-height:    80px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.wp-admin {
  cursor: auto;
}

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

a:hover {
  color: var(--color-gold-light);
}

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

ul {
  list-style: none;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

body:hover .cursor { opacity: 1; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.display-font {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}

.gold { color: var(--color-gold); }
.red  { color: var(--color-red-light); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

/* =========================================
   LAYOUT HELPERS
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

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

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  margin: 20px auto 0;
}

/* =========================================
   HEADER
   ========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
  box-shadow: var(--shadow-dark);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  /* overflow: visible damit Scheren-Klingen nicht abgeschnitten werden */
  overflow: visible;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  /* Clip-path begrenzt den Hintergrund auf den Kreis */
  clip-path: circle(50%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  font-style: italic;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-white-dim);
  letter-spacing: 0.05em;
}

.header-contact svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: none;
}

.btn-book:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
}

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--color-gold);
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: none;
  line-height: 1;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(176, 28, 28, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 80% 10%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 1px;
  height: 200%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.12), transparent);
  transform: rotate(-25deg);
}

.hero-bg-lines::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 30%;
  width: 1px;
  height: 200%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.06), transparent);
  transform: rotate(-25deg);
}

/* Hero barber pole */
.barber-pole {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 320px;
  border-radius: 45px;
  border: 3px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
  z-index: 3;
  box-shadow:
    0 0 40px rgba(201, 168, 76, 0.1),
    inset 0 0 30px rgba(0,0,0,0.5);
}

.barber-pole-inner {
  position: absolute;
  inset: 0;
  /* 
    Stripe-Periode: 80px (4 × 20px Streifen).
    background-size muss auf exakt diese Breite gesetzt sein,
    damit background-position-Verschiebung um 80px = 1 vollständige Wiederholung = nahtloser Loop.
  */
  background: repeating-linear-gradient(
    -55deg,
    #c9a84c  0px,
    #c9a84c  20px,
    #f5f0e8  20px,
    #f5f0e8  40px,
    #b01c1c  40px,
    #b01c1c  60px,
    #f5f0e8  60px,
    #f5f0e8  80px
  );
  background-size: 113px 113px; /* 80px / sin(45°) ≈ 113px für -45deg */
  animation: barberSpin 3s linear infinite;
  will-change: background-position;
}

@keyframes barberSpin {
  0%   { background-position: 0 0; }
  100% { background-position: 0 113px; }
}

.barber-pole-cap {
  position: absolute;
  left: -3px; right: -3px;
  height: 28px;
  background: var(--color-gold);
  border-radius: 45px 45px 0 0;
  z-index: 2;
}
.barber-pole-cap.bottom {
  top: auto;
  bottom: -3px;
  border-radius: 0 0 45px 45px;
}
.barber-pole-cap.top { top: -3px; }

/* Giant decorative scissors SVG background */
.hero-scissors-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 55%;
  max-width: 700px;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow-line {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-title {
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-title-line1 {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.95;
}

.hero-title-line2 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1;
  margin-top: 8px;
}

.hero-title-line3 {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.95;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.25);
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-white-dim);
  max-width: 480px;
  margin: 28px 0 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover {
  color: var(--color-black);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  transition: var(--transition);
  cursor: none;
}

.btn-secondary:hover {
  color: var(--color-white);
  gap: 16px;
}

.btn-secondary svg {
  transition: var(--transition);
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 50px;
  left: 0; right: 0;
  z-index: 5;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.1s forwards;
}

.hero-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  flex: 1;
  padding: 22px 28px;
  border-left: var(--border-gold);
  position: relative;
}

.hero-stat:first-child { border-left: none; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  margin-top: 5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  right: 32px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.3s forwards;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white-dim);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Floating scissors animation */
.scissors-float {
  position: absolute;
  z-index: 4;
  color: var(--color-gold);
  opacity: 0.15;
  animation: scissorsFloat 8s ease-in-out infinite;
}

.scissors-float.s1 {
  top: 18%;
  right: 18%;
  font-size: 28px;
  animation-delay: 0s;
}

.scissors-float.s2 {
  top: 65%;
  right: 22%;
  font-size: 16px;
  animation-delay: 2.5s;
}

.scissors-float.s3 {
  top: 30%;
  right: 35%;
  font-size: 12px;
  animation-delay: 5s;
}

@keyframes scissorsFloat {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50%       { transform: translateY(-18px) rotate(-10deg); }
}

/* =========================================
   SERVICE CARDS – Einblend-Animation beim Laden
   (kein JS nötig, rein CSS)
   ========================================= */
.anim-card {
  animation: cardFadeIn 0.55s ease both;
}
.anim-card.reveal-delay-1 { animation-delay: 0.08s; }
.anim-card.reveal-delay-2 { animation-delay: 0.16s; }
.anim-card.reveal-delay-3 { animation-delay: 0.24s; }
.anim-card.reveal-delay-4 { animation-delay: 0.32s; }

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

/* =========================================
   SERVICES / LEISTUNGEN SECTION
   ========================================= */
#leistungen {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

#leistungen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  border: var(--border-gold);
}

.service-card {
  padding: 44px 36px;
  background: var(--color-dark-2);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-right: var(--border-gold);
}

.service-card:last-child,
.service-card:nth-child(3) {
  border-right: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red));
  transition: width 0.5s ease;
}

.service-card:hover {
  background: var(--color-dark-3);
  transform: translateY(-4px);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-size: 24px;
  position: relative;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--color-white-dim);
  line-height: 1.65;
}

/* Preisliste */
.price-section {
  margin-top: 20px;
}

.price-section-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.price-column {
  padding: 0 40px 0 0;
}

.price-column:last-child {
  padding: 0 0 0 40px;
  border-left: var(--border-gold);
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  position: relative;
  transition: var(--transition);
}

.price-item:hover {
  padding-left: 12px;
}

.price-item:last-child {
  border-bottom: none;
}

.price-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 500;
}

.price-dots {
  flex: 1;
  margin: 0 12px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(245,240,232,0.12) 0, rgba(245,240,232,0.12) 3px,
    transparent 3px, transparent 8px
  );
  position: relative;
  top: -3px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Products strip */
.products-strip {
  margin-top: 80px;
  padding-top: 60px;
  border-top: var(--border-gold);
}

.products-title {
  text-align: center;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-dark-3);
  border: var(--border-gold);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

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

.product-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  filter: grayscale(0.3);
  transition: var(--transition);
}

.product-card:hover .product-emoji {
  filter: none;
  transform: scale(1.15);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 6px;
}

.product-brand {
  font-size: 0.72rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================
   INFO SECTION (Öffnungszeiten + Anschrift)
   ========================================= */
#info {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

#info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-gold);
}

.info-block {
  padding: 60px;
  position: relative;
}

.info-block:first-child {
  border-right: var(--border-gold);
}

.info-block-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-block-title svg {
  color: var(--color-gold);
}

/* Opening hours table */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white-dim);
  font-weight: 500;
}

.hours-time {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.hours-time.closed {
  color: var(--color-red-light);
  font-style: normal;
}

.hours-row.today .hours-day {
  color: var(--color-gold);
}

.hours-row.today .hours-time {
  color: var(--color-gold);
}

/* Address & contact */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-content {
  flex: 1;
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 5px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--color-white);
}

.contact-item-value a:hover {
  color: var(--color-gold);
}

/* Social links */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: var(--border-gold);
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-dim);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: var(--color-dark);
  border-top: var(--border-gold);
  padding: 40px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-white-dim);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-dim);
}

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

/* =========================================
   FLOATING WIDGET (sticky, rechts unten)
   ========================================= */
.floating-widget {
  position: fixed;
  right: 28px;
  bottom: 88px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Jedes Widget-Item: Button + ausfahrendes Label */
.fw-item {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Das seitlich ausfahrende Label */
.fw-phone-label {
  background: var(--color-dark-2);
  border: var(--border-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 16px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px 0 0 4px;
  border-right: none;
  /* Versteckt, fährt von rechts rein */
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity    0.25s ease,
              padding    0.35s ease;
  padding-left: 0;
  padding-right: 0;
}

/* Hover auf dem ganzen fw-item → Label einfahren */
.fw-item:hover .fw-phone-label {
  max-width: 200px;
  opacity: 1;
  padding: 0 16px;
}

/* Der runde Button */
.fw-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* Telefon – gold */
.fw-btn-phone {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}
.fw-btn-phone:hover {
  background: var(--color-gold-light);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.6);
  color: var(--color-black);
}

/* WhatsApp – dunkelgrün */
.fw-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.fw-btn-wa:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Instagram – lila/pink */
.fw-btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 6px 20px rgba(253, 29, 29, 0.3);
}
.fw-btn-ig:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(253, 29, 29, 0.45);
  color: #fff;
}

/* Puls-Animation auf dem Telefon-Button */
.fw-btn-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.5);
  animation: fwPulse 2.5s ease infinite;
}

@keyframes fwPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Mobil: Label immer sichtbar beim Touch (kein hover) */
@media (hover: none) {
  .fw-phone-label {
    display: none;
  }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================
   PRICE HIGHLIGHT (empfohlene Preise)
   ========================================= */
.price-item.price-highlight .price-name {
  color: var(--color-white);
  font-weight: 600;
}

.price-item.price-highlight .price-amount {
  color: var(--color-gold-light);
  font-size: 1.05rem;
}

.price-item.price-highlight {
  position: relative;
}

.price-item.price-highlight::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--color-gold);
  border-radius: 2px;
}

/* =========================================
   ADMIN BAR COMPENSATION
   ========================================= */
.admin-bar #site-header {
  top: 32px;
}

.admin-bar #hero {
  padding-top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
  .admin-bar #hero {
    padding-top: 46px;
  }
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--color-dark-2);
  border: var(--border-gold);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  cursor: none;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

/* =========================================
   ACCESSIBILITY: FOCUS STYLES
   ========================================= */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
  #site-header,
  .floating-widget,
  .scroll-top-btn,
  .cursor,
  .cursor-follower,
  .barber-pole,
  .hero-scissors-bg,
  .scissors-float,
  .scroll-indicator { display: none !important; }

  body { background: white; color: black; }
  .section { padding: 40px 0; }

  .price-amount { color: black !important; }
  h1, h2, h3 { color: black !important; }
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3) {
    border-right: var(--border-gold);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .barber-pole {
    right: 3%;
    width: 70px;
    height: 240px;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }

  .main-nav, .header-right { display: none; }
  .hamburger { display: flex; }

  .hero-stats-inner {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 45%;
  }

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

  .info-block:first-child {
    border-right: none;
    border-bottom: var(--border-gold);
  }

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

  .price-column:last-child {
    padding: 0;
    border-left: none;
    border-top: var(--border-gold);
    padding-top: 20px;
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section   { padding: 70px 0; }

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

  .service-card {
    border-right: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-block { padding: 40px 24px; }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .barber-pole { display: none; }

  .hero-stats { display: none; }

  .scroll-indicator { display: none; }
}
