/* ==========================================================================
   BARBER GANG PRESCISE DESIGN SYSTEM - lp_barbergang
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;700;800;900&family=Rye&family=Dancing+Script:wght@700&display=swap');

:root {
  --primary: #d90429;
  --primary-hover: #ef233c;
  --primary-rgb: 217, 4, 41;
  --secondary: #0a0a0c;
  --accent-blue: #3b82f6;
  --accent-blue-rgb: 59, 130, 246;
  --bg-dark: #070709;
  --bg-card: #121216;
  --bg-card-hover: #191922;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-color-hover: rgba(255, 255, 255, 0.15);
  --text-white: #ffffff;
  --text-muted: #808b9e;
  --text-gray: #cbd5e1;
  
  --font-display: 'Epilogue', sans-serif;
  --font-chicano: 'Rye', cursive;
  --font-signature: 'Dancing Script', cursive;
  
  --shadow-neon-red: 0 0 15px rgba(217, 4, 41, 0.45), 0 0 30px rgba(217, 4, 41, 0.15);
  --shadow-neon-blue: 0 0 15px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.15);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.85);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #030304;
}

body {
  background-color: #030304;
  color: var(--text-white);
  font-family: var(--font-display);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Scrollbars */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: #050507;
}
::-webkit-scrollbar-thumb {
  background: #1b1b20;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
  color: inherit;
}

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

/* --- TYPOGRAPHY --- */
.font-chicano {
  font-family: var(--font-chicano) !important;
}

.font-signature {
  font-family: var(--font-signature) !important;
}

.font-display {
  font-family: var(--font-display) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent-blue {
  color: var(--accent-blue) !important;
}

/* --- BACKGROUNDS & NOISE --- */
.concrete-bg {
  background-color: #0a0a0c;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
}

/* --- SPA VIEW TRANSITIONS --- */
.view-container {
  display: none;
  opacity: 0;
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
  background-color: #0a0a0c;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-premium);
  position: relative;
  padding-bottom: 90px; /* Space for floating buttons */
}

.view-container.active {
  display: flex !important;
  animation: viewFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* --- BARBER STRIPES & POLAR ROTATION --- */
.barber-stripe-thin {
  background: repeating-linear-gradient(90deg,
      var(--primary),
      var(--primary) 3px,
      transparent 3px,
      transparent 6px,
      var(--accent-blue) 6px,
      var(--accent-blue) 9px,
      transparent 9px,
      transparent 12px);
}

@keyframes barberpole {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

.barber-pole-icon {
  width: 20px;
  height: 70px;
  background: repeating-linear-gradient(-45deg,
      var(--primary),
      var(--primary) 12px,
      #ffffff 12px,
      #ffffff 24px,
      var(--secondary) 24px,
      var(--secondary) 36px,
      #ffffff 36px,
      #ffffff 48px);
  background-size: 200% 200%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  box-shadow:
    0 0 15px rgba(59, 130, 246, 0.75),
    0 0 5px rgba(255, 255, 255, 0.9),
    inset 0 0 6px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  animation: barberpole 4s linear infinite;
}

.barber-pole-cap {
  height: 4px;
  width: 150%;
  background: linear-gradient(to right, #888, #fff, #888);
  position: absolute;
  left: -25%;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.barber-pole-cap.top {
  top: 0;
  border-radius: 3px 3px 0 0;
}

.barber-pole-cap.bottom {
  bottom: 0;
  border-radius: 0 0 3px 3px;
}

.barber-pole-container {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.25);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   VIEW 1: LANDING PAGE ESTILOS
   ========================================================================== */

.view-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-badge:hover {
  transform: translateY(-1px);
}

.brand-logo-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.25);
  background-color: rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.brand-badge:hover .brand-logo-wrapper {
  transform: scale(1.06) rotate(8deg);
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.brand-badge:hover .brand-logo-img {
  transform: scale(1.1);
}

.fallback-wrapper {
  background: rgba(217, 4, 41, 0.1);
  padding: 12px;
}

.brand-svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  filter: drop-shadow(0 0 4px var(--primary));
  transition: fill 0.3s ease;
}

.brand-badge:hover .brand-svg {
  fill: #ffffff;
}

.brand-name-text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(to right, #ffffff, #dcdcdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease;
}

.brand-badge:hover .brand-name-text {
  background: linear-gradient(to right, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pole-wrapper {
  pointer-events: auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 520px;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0a0a0c 0%, rgba(10, 10, 12, 0.55) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 2.25rem;
  z-index: 10;
}

.hero-accent-line {
  height: 2.5px;
  width: 50px;
  background-color: var(--primary);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 8px var(--primary);
}

.hero-tagline {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--primary), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(217, 4, 41, 0.3));
}

.hero-desc {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.85;
  max-width: 85%;
}

/* Info Section */
.info-section {
  padding: 1.5rem;
  background-color: #0a0a0c;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-card);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-fast);
}

.info-card:hover {
  border-color: var(--border-color-hover);
  background-color: var(--bg-card-hover);
}

.info-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 4, 41, 0.08);
  border: 1px solid rgba(217, 4, 41, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.1);
}

.info-text h4 {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 800;
}

.info-text p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.15rem;
}

/* Founder Section */
.founder-section {
  padding: 0 1.5rem 2.5rem;
}

.founder-card {
  position: relative;
  background: linear-gradient(135deg, #101014 0%, #15151b 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-premium);
}

.founder-pin {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transform: rotate(12deg);
}

.founder-pin span {
  font-size: 0.85rem;
  font-weight: 900;
}

.founder-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.founder-quote {
  font-size: 0.725rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.founder-signature-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-role {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.founder-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
}

.founder-sig {
  font-size: 1.75rem;
  color: var(--primary);
  transform: rotate(-3deg);
  filter: drop-shadow(0 0 5px rgba(217, 4, 41, 0.4));
}

/* Dividers */
.section-divider-barber {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg,
      var(--primary),
      var(--primary) 3px,
      transparent 3px,
      transparent 6px,
      var(--accent-blue) 6px,
      var(--accent-blue) 9px,
      transparent 9px,
      transparent 12px);
  opacity: 0.8;
  margin-bottom: 2.25rem;
}

/* Sections Global */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.section-subtitle-badge {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-title-simple {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Barbers Slider */
.barbers-section {
  padding: 0 1.5rem 2.5rem;
}

.barbers-landing-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
}

.barber-landing-card {
  flex: 0 0 auto;
  width: 90px;
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.barber-landing-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-color-hover);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.barber-landing-avatar-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.5rem;
  border: 2.5px solid #202025;
  transition: var(--transition-smooth);
}

.barber-landing-card:hover .barber-landing-avatar-box {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}

.barber-landing-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.barber-landing-card:hover img {
  filter: grayscale(0%);
}

.barber-landing-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.barber-landing-card p {
  font-size: 0.5rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Services Landing Grid */
.services-section {
  padding: 0 1.5rem 2.5rem;
}

.services-landing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.group-service-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  width: 100%;
}

.group-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.group-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-color-hover);
}

.group-service-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transition: var(--transition-fast);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.15rem;
  width: 80%;
  z-index: 10;
}

.card-line {
  height: 2px;
  width: 24px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  margin-bottom: 0.5rem;
  box-shadow: 0 0 5px var(--primary);
}

.group-service-card:hover .card-line {
  width: 50px;
}

.group-service-card.color-blue .card-line {
  background-color: var(--accent-blue);
  box-shadow: 0 0 5px var(--accent-blue);
}

.group-service-card.color-white .card-line {
  background-color: #ffffff;
  box-shadow: 0 0 5px #ffffff;
}

.card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.card-content p {
  font-size: 0.7rem;
  color: var(--text-gray);
  opacity: 0.85;
}

.card-price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.group-service-card.color-blue .card-price-tag {
  color: var(--accent-blue);
}

.group-service-card.color-white .card-price-tag {
  color: #ffffff;
}

/* Gallery Section */
.gallery-section {
  padding: 0 1.5rem 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.gallery-overlay span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* Footer styling */
.landing-footer {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 1.5rem;
}

.copyright-text {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.credit-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Floating Action Button */
.floating-cta-wrapper {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  z-index: 100;
  padding: 0 1.25rem;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.btn-floating-cta {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(13, 13, 15, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(217, 4, 41, 0.55);
  width: 100%;
  transition: var(--transition-smooth);
}

.btn-floating-cta:hover {
  border-color: rgba(217, 4, 41, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(217, 4, 41, 0.65);
}

.btn-floating-cta:active {
  transform: scale(0.97);
}

.cta-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-sub {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.btn-floating-cta:hover .cta-sub {
  color: var(--primary);
}

.cta-main {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.cta-badge {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.65rem 0.65rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  aspect-ratio: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: rotate(12deg);
  transition: transform 0.4s ease;
}

.btn-floating-cta:hover .cta-badge {
  transform: rotate(0deg);
}

/* ==========================================================================
   VIEW 2: BOOKING WIZARD ESTILOS
   ========================================================================== */

.wizard-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-icon-back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.btn-icon-back:hover {
  background: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.wizard-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.header-spacer {
  width: 32px;
}

.stepper-wrapper {
  padding: 1rem 1.5rem 0.5rem;
  background-color: #0a0a0c;
}

.stepper-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}

.stepper-line-bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.stepper-line-active {
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  width: 0%;
  box-shadow: 0 0 5px var(--primary);
}

.step-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #121215;
  border: 2px solid #25252a;
  color: #5f6672;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.step-indicator.active {
  background-color: #0a0a0c;
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-neon-red);
}

.step-indicator.completed {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.25);
}

.wizard-content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.wizard-screen {
  display: none;
  animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-screen.active {
  display: block;
}

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

.wizard-section-header {
  margin-bottom: 1.5rem;
}

.accent-bar {
  height: 2.5px;
  width: 40px;
  background-color: var(--primary);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 5px var(--primary);
}

.wizard-screen-title {
  font-size: 1.85rem;
  color: #ffffff;
  line-height: 1.1;
}

.wizard-screen-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Step 1: Barbers Selection */
.barbers-select-list {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  scroll-snap-type: x mandatory;
}

.barber-mask-card {
  position: relative;
  background-color: #121215;
  height: 185px;
  flex: 0 0 125px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.barber-mask-card:not(.disabled):hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.barber-mask-card.selected {
  border-color: var(--primary);
  background-color: rgba(217, 4, 41, 0.04);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.25);
}

.barber-avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  aspect-ratio: 1 / 1;
}

.barber-mask-card.selected .barber-avatar-wrapper {
  border-color: var(--primary);
}

.barber-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.barber-mask-card:not(.disabled):hover .barber-avatar-wrapper img {
  transform: scale(1.15);
}

.barber-avatar-wrapper .check-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.barber-mask-card.selected .check-overlay {
  opacity: 1;
}

.barber-avatar-wrapper .check-icon {
  color: var(--primary) !important;
  font-size: 28px !important;
  filter: drop-shadow(0 0 4px var(--primary));
}

.barber-mask-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.barber-mask-card.disabled .barber-avatar-wrapper {
  border-color: rgba(255, 255, 255, 0.05);
}

.barber-mask-card.disabled img {
  filter: grayscale(100%) blur(1px);
  opacity: 0.3;
}

.barber-busy-stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: rotate(-12deg);
}

.barber-busy-stamp span {
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 0.15rem 0.35rem;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.05em;
}

.barber-card-content {
  position: relative;
  z-index: 5;
  width: 100%;
  text-align: center;
}

.barber-card-content h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 0.15rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.barber-card-content p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
}

/* Step 2: Services Select List */
.services-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.service-list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem;
  border-radius: 12px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-list-item:hover {
  border-color: var(--border-color-hover);
  background-color: var(--bg-card-hover);
}

.service-list-item.selected {
  border-color: rgba(217, 4, 41, 0.45);
  background-color: rgba(217, 4, 41, 0.06);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.15);
}

.service-selection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(217, 4, 41, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

.service-list-info {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.service-list-info h4 {
  font-family: var(--font-chicano);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.service-list-info span.duration {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.service-list-price-check {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-list-price-check .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
}

.service-list-item.selected .service-list-price-check .price {
  color: var(--primary);
}

.service-list-price-check .check-circle {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.service-list-item.selected .service-list-price-check .check-circle {
  border-color: var(--primary);
  background-color: var(--primary);
}

.service-list-price-check .check-circle span {
  color: #ffffff;
}

/* Step 3: Calendar Panel */
.calendar-panel {
  background: #121215;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-premium);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.btn-week-nav {
  color: var(--text-muted);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.btn-week-nav:hover {
  color: #ffffff;
  opacity: 1;
}

.calendar-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.days-grid {
  display: flex;
  justify-content: space-between;
}

.day-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.25rem;
  border-radius: 8px;
  width: calc(100% / 7 - 3px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.day-card.selected {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 5px 12px rgba(217, 4, 41, 0.35);
  transform: scale(1.05);
}

.day-card span.day-name {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.day-card.selected span.day-name {
  color: rgba(255,255,255,0.8);
}

.day-card span.day-num {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.day-card span.day-month {
  font-size: 0.5rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.day-card.selected span.day-month {
  color: rgba(255,255,255,0.7);
}

.slots-panel {
  background: transparent;
}

.slots-message {
  text-align: center;
  color: var(--text-muted);
  padding: 1.5rem;
  background: #121215;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.slots-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.time-block-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-block-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 0.35rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #121215;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot:not(.occupied):hover {
  background: #1a1a20;
}

.time-slot.selected {
  border-color: rgba(217, 4, 41, 0.3);
  background: rgba(217, 4, 41, 0.05);
}

.time-slot.occupied {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Step 4: Summary Box & Form Input Groups */
.summary-box {
  background: linear-gradient(to right, #131317, #1c1c24);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-premium);
}

.summary-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.summary-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.summary-value.price-value {
  color: var(--primary);
  font-weight: 900;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.form-input {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: #ffffff;
  transition: var(--transition-fast);
  outline: none;
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-20px) scale(0.75);
  color: #ffffff;
}

.input-group:focus-within {
  border-bottom-color: #ffffff;
  box-shadow: 0 1px 0 #ffffff;
}

.input-icon {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.form-input:focus ~ .input-icon {
  color: #ffffff;
}

/* Payment selection methods */
.payment-section {
  margin-top: 1.5rem;
}

.payment-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.payment-switcher {
  display: flex;
  gap: 0.25rem;
  background: #121215;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.25rem;
  border-radius: 8px;
}

.payment-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.payment-btn.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.payment-btn:not(.active):hover {
  color: #ffffff;
}

.payment-notice {
  text-align: center;
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Step 5: Success Tick Anim */
.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 0;
}

.success-svg-wrapper {
  width: 80px;
  height: 80px;
}

.success-tick-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #22c55e;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #22c55e;
  animation: fill-success .4s ease-in-out .4s forwards, scale-success .3s ease-in-out .9s forwards;
}

.success-tick-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #22c55e;
  fill: none;
  animation: stroke-success 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-tick-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-success 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-success {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale-success {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill-success {
  100% {
    box-shadow: inset 0 0 0 40px rgba(34, 197, 94, 0.15);
  }
}

.success-title {
  font-size: 1.85rem;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-gray);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary-action {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  padding: 0.9rem 2.25rem;
  border-radius: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.45);
  transition: var(--transition-smooth);
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 4, 41, 0.6);
}

.btn-primary-action:active {
  transform: scale(0.98);
}

/* Booking Step Footers */
.booking-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.95) 75%, transparent 100%);
  padding: 1.25rem 1.5rem;
  z-index: 100;
  pointer-events: none;
}

.footer-price-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  pointer-events: auto;
}

.footer-price-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-price-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-buttons-row {
  display: flex;
  gap: 0.75rem;
  pointer-events: auto;
}

.btn-wizard-back {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #16161a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.btn-wizard-back:hover {
  background-color: #202025;
}

.btn-wizard-next {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.9rem;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.btn-wizard-next:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.btn-next-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-glare {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0.03;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-wizard-next:hover .btn-glare {
  opacity: 0.06;
}

.btn-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.6);
  z-index: 20;
}

/* --- RESPONSIVE MOBILE LIMITS --- */
@media (max-width: 480px) {
  .view-container {
    max-width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
  }
  
  .floating-cta-wrapper,
  .booking-footer {
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* --- RESPONSIVE TABLET LAYOUT (iPad / Screens > 500px) --- */
@media (min-width: 501px) and (max-width: 1023px) {
  .view-container {
    max-width: 768px !important;
    border-radius: 16px;
    margin: 1.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
  }
  
  .barbers-landing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    overflow-x: visible;
  }
  
  #booking-view .barbers-select-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 1rem;
    overflow-x: visible;
  }
  
  .services-landing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  #booking-view .services-select-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  
  .floating-cta-wrapper,
  #booking-view .booking-footer {
    max-width: 768px !important;
    bottom: 1.5rem;
    border-radius: 0 0 16px 16px;
  }
}

/* --- RESPONSIVE DESKTOP LAYOUT (PC / Laptop) --- */
@media (min-width: 1024px) {
  #landing-view.view-container,
  #booking-view.view-container {
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    padding-bottom: 120px !important;
  }

  /* Landing Page Desktop Constrained Centering */
  .view-header {
    max-width: 1200px !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    padding: 2rem 1.5rem !important;
    position: absolute !important;
  }

  .landing-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 4rem auto 0 !important;
    padding: 2.5rem 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
  }

  .landing-footer .credit-text {
    margin-top: 0 !important;
  }

  .hero-section,
  .info-section,
  .founder-section,
  .barbers-section,
  .services-section,
  .gallery-section {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .hero-section {
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 3rem !important;
  }

  /* Booking Wizard Desktop Constrained Centering */
  #booking-view .wizard-header {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
  }

  #booking-view .stepper-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  #booking-view .wizard-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding-bottom: 120px !important;
  }

  /* Booking Wizard Desktop Redesign */
  #booking-view .booking-footer {
    max-width: 1200px !important;
    bottom: 2rem !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    padding: 1.25rem 2rem !important;
    background: rgba(13, 13, 15, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    pointer-events: auto !important;
  }

  /* Step 1: Barber Selection Grid */
  #booking-view .barbers-select-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    overflow-x: visible;
    padding-bottom: 0;
  }

  #booking-view .barber-mask-card {
    height: 200px;
    flex: none;
    width: 100%;
    padding: 1.5rem 0.75rem;
  }

  #booking-view .barber-mask-card .barber-avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  #booking-view .barber-mask-card .barber-card-content h4 {
    font-size: 0.95rem;
  }

  /* Step 2: Service Selection Grid */
  #booking-view .services-select-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    max-height: 480px;
    padding-right: 0.5rem;
  }

  /* Step 3: Date and Time side-by-side */
  #booking-view .wizard-screen[data-step="3"].active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  #booking-view .wizard-screen[data-step="3"] .wizard-section-header {
    grid-column: 1 / -1;
  }

  #booking-view .calendar-panel {
    margin-bottom: 0;
    height: fit-content;
  }

  #booking-view .slots-wrapper {
    max-height: 380px;
  }

  /* Step 4: Summary and Form side-by-side */
  #booking-view .wizard-screen[data-step="4"].active {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
  }

  #booking-view .wizard-screen[data-step="4"] .wizard-section-header {
    grid-column: 1 / -1;
  }

  #booking-view .summary-box {
    margin-bottom: 0;
    height: 100%;
  }

  #booking-view .form-fields {
    gap: 1.5rem;
  }

  /* Hero Section Desktop Adjustment */
  .hero-section {
    height: 600px;
    border-radius: 12px 12px 0 0;
  }
  .hero-text-container {
    padding: 4rem;
  }
  .hero-title {
    font-size: 5.5rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 60%;
  }

  /* Info Grid Desktop: 3 Columns */
  .info-grid {
    flex-direction: row;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .info-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .info-icon-box {
    margin: 0 auto 0.75rem;
  }

  /* Founder Card Desktop */
  .founder-card {
    padding: 2.5rem;
    border-radius: 20px;
  }
  .founder-quote {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .founder-sig {
    font-size: 2.2rem;
  }

  /* Barbers Grid Desktop: Fills row */
  .barbers-landing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .barber-landing-card {
    width: auto;
    padding: 1.5rem 1.25rem;
  }
  .barber-landing-avatar-box {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
  }
  .barber-landing-card h4 {
    font-size: 1rem;
  }
  .barber-landing-card p {
    font-size: 0.7rem;
  }

  /* Services Grid Desktop: 3 Columns for larger display */
  .services-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .group-service-card {
    aspect-ratio: 16/10;
  }
  .card-content h4 {
    font-size: 1.5rem;
  }
  .card-content p {
    font-size: 0.85rem;
  }

  /* Gallery Grid Desktop: 4 Columns */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .gallery-overlay span {
    font-size: 0.8rem;
  }

  /* Floating CTA Centered */
  .floating-cta-wrapper {
    max-width: 1200px;
    bottom: 3rem;
  }
  .btn-floating-cta {
    width: auto;
    min-width: 340px;
    padding: 1.25rem 2rem;
    box-shadow: 0 20px 50px rgba(217, 4, 41, 0.45);
  }
}

