/* ==========================================================================
   BIKERS BARBER CLUB — PREMIUM STYLE SYSTEM
   Theme: Urban Biker Luxury & Dark High-Contrast
   ========================================================================== */

:root {
    --bg-color: #08080A;
    --surface-color: #121216;
    --surface-accent: #1B1B22;
    --surface-glass: rgba(18, 18, 22, 0.7);
    --border-glass: rgba(255, 255, 255, 0.06);
    --text-color: #F5F5FA;
    --accent-color: #D4AF37; /* Dorado Metálico Premium */
    --accent-hover: #F3E5AB;
    --muted-color: #90909A;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 25px rgba(212, 175, 55, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: clip !important;
    line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.font-heading {
    font-family: var(--font-heading);
}

.glass-panel {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

/* --- Header / Nav --- */
header {
    position: fixed !important;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    transition: var(--transition-smooth);
}


header.scrolled, .solid-header {
    top: 0 !important;
    background: rgba(8, 8, 10, 0.98) !important;
    border-bottom: 1px solid var(--border-glass) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

header .container {
    background: transparent;
    transition: var(--transition-smooth);
}

header:not(.scrolled):not(.solid-header) .container {
    background: rgba(18, 18, 22, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 0 2rem;
    max-width: 1200px;
}

header.scrolled .container, .solid-header .container {
    background: transparent;
    border: none;
    max-width: 1400px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.logo svg {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

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

/* --- Dynamic Nav (Premium Design) --- */
.outline-logo {
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.dynamic-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dynamic-nav .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dynamic-nav .nav-links a {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    font-weight: 600;
}

.dynamic-nav .nav-links a::after {
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: -5px; 
    left: 0; 
    background-color: var(--accent-color, #eab308); 
    transition: width 0.3s ease;
}

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

.dynamic-btn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease !important;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.dynamic-btn:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* ==========================================================================
   BOUTIQUE / STORE STYLES
   ========================================================================== */
.boutique-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), var(--surface-color));
}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0 6rem;
}

.product-card {
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    /* GPU Acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-neon);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.btn-buy {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-buy:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ==========================================================================
   TESTIMONIALS MARQUEE
   ========================================================================== */
.testimonials-section {
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-color);
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.testimonials-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 400px;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
    /* GPU Acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

.stars {
    color: var(--accent-color);
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.author-info h4 {
    font-size: 0.9rem;
    margin: 0;
}
.author-info span {
    font-size: 0.75rem;
    color: var(--muted-color);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .testimonial-card { width: 300px; padding: 1.5rem; }
    .testimonials-section::before, .testimonials-section::after { width: 100px; }
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.btn-book {
    background: var(--accent-color);
    color: #08080A;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-book:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    box-shadow: none;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.70) contrast(1.15);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    -webkit-text-stroke: 1.5px var(--accent-color);
    color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--muted-color);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- Experience Section (Unified Dark Luxury & Interactive Products) --- */
.experience {
    padding: 140px 0;
    position: relative;
    background: radial-gradient(circle at top left, #121216 0%, #08080A 80%);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    z-index: 2;
    overflow: visible;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-color);
}

.experience-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    position: relative;
    z-index: 10;
}

/* Card Wrapper for interactive 3D elements */
.card-wrapper {
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
    height: 100%;
}

.card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 4.5rem 3rem 4rem 3rem;
    border-radius: 24px;
    text-align: left;
    transition: var(--transition-smooth), transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    box-shadow: var(--shadow-premium);
    height: 100%;
    z-index: 5;
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 175, 55, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-premium), var(--shadow-neon);
}

.card:hover::before {
    opacity: 1;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 1rem;
    right: 2rem;
    transition: var(--transition-smooth);
}

.card:hover .card-number {
    -webkit-text-stroke: 1px var(--accent-color);
    opacity: 0.15;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    display: inline-block;
    transform: translateZ(30px);
}

.card-icon svg {
    width: 42px;
    height: 42px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-color);
    transform: translateZ(20px);
}

.card-description {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.7;
    transform: translateZ(10px);
}

/* Floating Product Image styles */
.floating-product {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.9));
    transition: transform 0.15s ease-out;
}

/* Individual layout adjustments for each product to look natural */
.fp-1 {
    width: 210px;
    height: auto;
    top: -65px;
    left: -40px;
}

.fp-2 {
    width: 220px;
    height: auto;
    top: -55px;
    right: -45px;
}

.fp-3 {
    width: 210px;
    height: auto;
    bottom: -45px;
    right: -35px;
}

/* Drinks Banner Wrapper */
.drinks-banner-wrapper {
    position: relative;
    width: 100%;
    margin-top: 6rem;
    z-index: 10;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.drinks-banner {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(8, 8, 10, 0.95) 100%);
    border: 1px solid rgba(214, 175, 55, 0.15);
    border-radius: 24px;
    padding: 4.5rem 3.5rem;
    text-align: left;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(214, 175, 55, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
    max-width: 1100px;
    margin: 0 auto;
}

.drinks-banner:hover {
    border-color: var(--accent-color);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(214, 175, 55, 0.08);
}

.drinks-content {
    max-width: 780px;
}

.drinks-content h3 {
    color: var(--accent-color);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: translateZ(30px);
}

.drinks-content h3 svg {
    width: 32px;
    height: 32px;
}

.drinks-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.drinks-content strong {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 1px dotted rgba(214, 175, 55, 0.4);
}

.fp-4 {
    width: 220px;
    height: auto;
    right: 5%;
    top: -50px;
}

/* --- Cuts Catalog --- */
.cuts-section {
    padding: 140px 0;
    background: #050507;
}

.cuts-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

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

.cut-item {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cut-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cut-item:hover {
    border-color: var(--accent-color);
    background: var(--surface-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.cut-item:hover::before {
    opacity: 1;
}

.cut-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cut-price {
    font-size: 1.1rem;
    color: var(--text-color);
    font-family: var(--font-main);
}

.cut-desc {
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cuts-video-sticky {
    position: sticky;
    top: 120px;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-premium);
}

.cuts-video-sticky video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

/* --- Dynamic Modal --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--accent-color);
    width: 90%;
    max-width: 700px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--accent-color);
    color: #08080A;
}

.modal-img-container {
    height: 380px;
    width: 100%;
    position: relative;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 3rem;
}

.modal-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.modal-text {
    color: var(--muted-color);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Feature Section --- */
.feature {
    padding: 140px 0;
    background: radial-gradient(circle at bottom, #161620 0%, #08080A 80%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 6rem;
}

.feature-content {
    padding-right: 2rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    line-height: 1.05;
}

.feature-text {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-list svg {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-premium);
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Gallery Slider Section --- */
.gallery {
    padding: 140px 0;
    background: #050507;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 30px;
}

.gallery-item {
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-premium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(5, 5, 7, 0.95), transparent);
}

.gallery-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.4rem;
}

/* --- Bookings & Tickets Form --- */
.bookings {
    padding: 140px 0;
    background: var(--bg-color);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: start;
}

.booking-info h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.booking-info p {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-item svg {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: var(--transition-smooth);
}

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

.booking-card {
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-premium);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--muted-color);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group select option {
    background-color: #121214;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #08080A;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-neon);
}

/* --- VIP Digital Ticket Component --- */
.ticket-wrapper {
    display: none;
    justify-content: center;
    margin-top: 2rem;
}

.ticket {
    background: linear-gradient(135deg, #1A1A22 0%, #0D0D11 100%);
    border: 2px solid var(--accent-color);
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium), var(--shadow-neon);
}

/* Rounded cutouts on the sides to simulate a real ticket */
.ticket::before,
.ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--surface-color);
    border-radius: 50%;
    z-index: 5;
    border: 2px solid var(--accent-color);
}
.ticket::before {
    left: -17px;
    transform: translateY(-50%);
}
.ticket::after {
    right: -17px;
    transform: translateY(-50%);
}

.ticket-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 2px dashed rgba(212, 175, 55, 0.3);
}

.ticket-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.ticket-header p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--muted-color);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.ticket-body {
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ticket-field {
    display: flex;
    flex-direction: column;
}

.ticket-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted-color);
    letter-spacing: 0.5px;
}

.ticket-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 0.2rem;
}

.ticket-footer {
    padding: 2rem;
    text-align: center;
    background: rgba(0,0,0,0.2);
}

.ticket-barcode {
    font-family: 'Libre Barcode 39', cursive, sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* --- Branded Animated Social Icons --- */
.social-links-container {
    margin-top: 1.5rem;
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float-social 3s ease-in-out infinite;
}

.social-icon.facebook { color: #1877F2; animation-delay: 0s; }
.social-icon.instagram { color: #E1306C; animation-delay: 0.5s; }
.social-icon.tiktok { color: #00F2EA; animation-delay: 1s; }

.social-icon:hover {
    transform: translateY(-8px) scale(1.15) rotate(5deg) !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: currentColor;
}

.social-icon.facebook:hover { box-shadow: 0 0 25px rgba(24, 119, 242, 0.6); }
.social-icon.instagram:hover { box-shadow: 0 0 25px rgba(225, 48, 108, 0.6); }
.social-icon.tiktok:hover { box-shadow: 0 0 25px rgba(0, 242, 234, 0.6); }

@keyframes float-social {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- Servicios Editorial Layout --- */
.services-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Space for fixed header */
}

.services-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6) contrast(1.15); /* Dark overlay */
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.editorial-menu-section {
    padding: 100px 5%;
    background: var(--bg-color);
}

.editorial-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.editorial-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.editorial-item:hover {
    border-bottom-color: var(--accent-color);
}

.editorial-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.editorial-item-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.editorial-item-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.editorial-item-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services-hero-title { font-size: 3rem; }
}

/* --- Barberos Editorial Layout --- */
.barbers-hero {
    padding: 160px 5% 60px;
    text-align: center;
    background: var(--bg-color);
}

.barbers-grid-editorial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.barber-card-editorial {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: #111;
}

.barber-card-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.barber-card-editorial:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.barber-editorial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
    transition: transform 0.4s ease;
}

.barber-card-editorial:hover .barber-editorial-info {
    transform: translateY(-10px);
}

.barber-editorial-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.barber-editorial-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* --- Footer --- */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #050507;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-socials a {
    color: var(--muted-color);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--accent-color);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* --- Team / Barbers Section --- */
.team-section {
    padding: 140px 0;
    background: radial-gradient(circle at center, #121216 0%, #050507 100%);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.team-member {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(80%) contrast(1.1);
}
.team-member:hover .team-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.4s ease;
}
.team-member:hover .team-info {
    transform: translateY(0);
    opacity: 1;
}
.team-name {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.team-role {
    color: var(--text-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Location & Contact Section --- */
.location-section {
    padding: 100px 0;
    background: #08080A;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-info-box {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-item svg {
    color: var(--accent-color);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.contact-item p {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.6;
}
.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    border: 1px solid rgba(214, 175, 55, 0.2);
    box-shadow: var(--shadow-neon);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2); /* Dark mode map trick */
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* --- Responsive Layouts --- */
@media (max-width: 1024px) {
    .section-title { font-size: 3rem; }
    .grid-cards { grid-template-columns: repeat(2, 1fr); }
    .cuts-split { grid-template-columns: 1fr; }
    .cuts-video-sticky { height: 400px; position: relative; top: 0; }
    .feature-grid { grid-template-columns: 1fr; gap: 4rem; }
    .booking-grid { grid-template-columns: 1fr; gap: 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Hide mobile menu trigger on desktop --- */
.mobile-menu-trigger {
    display: none !important;
}

@media (max-width: 968px) {
    /* ==========================================================
       MOBILE HEADER — SIEMPRE FIJO, SIEMPRE VISIBLE
       Regla definitiva: el header en mobile SIEMPRE está pegado
       arriba (top:0), oscuro y con 2 filas. Sin excepción.
    ========================================================== */
    header:not(.scrolled):not(.solid-header),
    header.scrolled,
    header.solid-header,
    header.transparent-header {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 92px !important;
        background: rgba(8, 8, 10, 0.97) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
        border-radius: 0 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition: var(--transition-smooth);
    }


    /* El contenedor siempre ocupa todo el ancho, sin glassmorphism pill */
    header .container,
    header:not(.scrolled):not(.solid-header) .container,
    header.scrolled .container,
    header.solid-header .container,
    header.transparent-header .container {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 0.8rem !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        transition: none !important;
    }

    nav {
        height: 100% !important;
        transition: none !important;
    }

    /* ---- GRID de 2 FILAS ---- */
    .dynamic-nav {
        display: grid !important;
        grid-template-areas:
            "logo actions"
            "links links" !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        padding: 8px 0 6px !important;
        gap: 6px 0 !important;
        box-sizing: border-box !important;
        transition: none !important;
    }

    .logo, a.logo {
        grid-area: logo !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        gap: 5px !important;
        letter-spacing: 0.5px !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
    }
    .logo span, a.logo span {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        min-width: 0 !important;
        flex-shrink: 1 !important;
        display: inline-block !important;
    }
    .logo svg, .logo i, a.logo svg, a.logo i {
        width: 14px !important;
        height: 14px !important;
        color: var(--accent-color) !important;
        flex-shrink: 0 !important;
    }

    /* CONTENEDOR DE ACCIONES — Fila superior derecha */
    .nav-actions {
        grid-area: actions !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        justify-content: flex-end !important;
    }

    /* REDES SOCIALES EN MOBILE HEADER */
    .header-social-links {
        display: flex !important;
        gap: 0.4rem !important;
        align-items: center !important;
    }

    .header-social-icon {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .header-social-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* BOTÓN AGENDAR EN MOBILE */
    .nav-actions a.dynamic-btn {
        padding: 6px 12px !important;
        font-size: 0.72rem !important;
        background: var(--accent-color) !important;
        color: #000 !important;
        border: 1px solid var(--accent-color) !important;
        box-shadow: 0 0 10px rgba(234, 179, 8, 0.35) !important;
        font-weight: 800 !important;
        letter-spacing: 0.3px !important;
        border-radius: 6px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 3px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        text-decoration: none !important;
    }

    .nav-actions a.dynamic-btn svg,
    .nav-actions a.dynamic-btn i {
        width: 11px !important;
        height: 11px !important;
        color: #000 !important;
    }

    /* LINKS — Fila inferior completa */
    .dynamic-nav .nav-links,
    .dynamic-nav ul.nav-links {
        grid-area: links !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.07) !important;
        padding-top: 6px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .dynamic-nav .nav-links li {
        flex: 1 !important;
        text-align: center !important;
        min-width: 0 !important;
    }

    .dynamic-nav .nav-links li a {
        font-size: clamp(0.58rem, 2.2vw, 0.72rem) !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        color: rgba(161,161,170,0.9) !important;
        padding: 3px 0 !important;
        display: block !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        transition: color 0.25s ease !important;
    }

    .dynamic-nav .nav-links li a.active,
    .dynamic-nav .nav-links li a:hover {
        color: var(--accent-color) !important;
    }

    /* Sin subrayado en mobile */
    .dynamic-nav .nav-links a::after {
        display: none !important;
    }

    /* Ocultar burger: todo siempre visible */
    .mobile-menu-trigger, #mobile-menu-btn {
        display: none !important;
    }

    /* WhatsApp flotante más pequeño */
    .whatsapp-float {
        width: 46px !important;
        height: 46px !important;
        bottom: 18px !important;
        right: 18px !important;
    }
    .whatsapp-float svg { width: 20px !important; height: 20px !important; }

    /* Offsets de contenido para no quedar tapado por el header de 92px */
    .services-hero {
        margin-top: 92px !important;
    }

    /* Layout general & Hero mobile tweaks to prevent clipping */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .hero-content {
        padding: 0 1.5rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .hero-title {
        font-size: clamp(2.0rem, 8.5vw, 3.5rem) !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.0 !important;
    }

    .hero-cta {
        margin-top: 1.8rem !important;
        gap: 0.8rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        display: flex !important;
    }
    
    .hero-cta .dynamic-btn {
        padding: 10px 22px !important;
        font-size: 0.88rem !important;
    }
    .grid-cards { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .card { padding: 3rem 2rem; }
    .booking-card { padding: 2.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}


@media (max-width: 375px) {
    .logo, a.logo {
        font-size: 0.82rem !important;
        letter-spacing: 0.3px !important;
    }
    .dynamic-nav > a.dynamic-btn {
        padding: 4px 7px !important;
        font-size: 0.62rem !important;
    }
    .dynamic-nav .nav-links li a {
        font-size: clamp(0.52rem, 2vw, 0.65rem) !important;
    }
}

/* --- Mobile Menu Drawer (Premium Glassmorphism Overlay) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100000;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.mobile-menu-close svg, .mobile-menu-close i {
    width: 28px !important;
    height: 28px !important;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 72vh;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.mobile-menu-logo svg, .mobile-menu-logo i {
    color: var(--accent-color);
    width: 22px !important;
    height: 22px !important;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    will-change: transform, opacity;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

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

.mobile-nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
    will-change: transform, opacity;
}

.mobile-drawer-btn {
    width: 100%;
    justify-content: center;
    background: var(--accent-color) !important;
    color: #000 !important;
    border-color: var(--accent-color) !important;
    font-weight: 700 !important;
    padding: 15px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    font-size: 1rem !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-drawer-btn:hover {
    background: #fff !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.mobile-location-text {
    color: var(--muted-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-location-text svg, .mobile-location-text i {
    color: var(--accent-color);
    width: 16px !important;
    height: 16px !important;
}

/* ==========================================================================
   BIKERS BARBER CLUB — PREMIUM UX REFACTOR STYLES (GOLD & GLASSMORPHIC)
   ========================================================================== */

/* --- Fidelity Program Card --- */
.fidelity-badge-custom {
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}
.fidelity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.fidelity-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
}
.fidelity-ratio-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(214, 175, 55, 0.25);
}
.fidelity-progress-track {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    height: 10px;
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.fidelity-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 9999px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 10px rgba(214, 175, 55, 0.5);
}
.fidelity-desc {
    font-size: 0.75rem;
    color: var(--muted-color);
    font-weight: 500;
}

/* --- Barber Visual Selector Card Grid --- */
.barbers-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.barber-select-card {
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.barber-select-card:hover {
    border-color: rgba(214, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.barber-select-card.selected {
    border-color: var(--accent-color);
    background: rgba(214, 175, 55, 0.04);
    box-shadow: var(--shadow-neon);
}
.barber-select-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}
.barber-select-card.selected .barber-select-img {
    border-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(214, 175, 55, 0.3);
}
.barber-select-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
.barber-select-specialty {
    font-size: 0.7rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.barber-select-card .select-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.barber-select-card.selected .select-icon {
    opacity: 1;
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.barber-select-card.selected .select-icon svg {
    color: #000;
    width: 10px;
    height: 10px;
}

/* --- Interactive Time Pills --- */
.time-pills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.time-pill {
    background: var(--surface-color);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.9rem 0.5rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.time-pill:hover:not(.disabled):not(.selected) {
    border-color: rgba(214, 175, 55, 0.4);
    background: rgba(255,255,255,0.02);
    transform: translateY(-1px);
}
.time-pill.selected {
    background: var(--accent-color);
    color: #000000;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
}
.time-pill.disabled {
    opacity: 0.3;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    color: var(--muted-color);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* --- Glassmorphic Toast Notifications --- */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000001;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 350px;
    max-width: calc(100vw - 60px);
    pointer-events: none;
}
.toast-custom {
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    color: var(--text-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: auto;
}
.toast-custom.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-custom.hide {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}
.toast-custom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.toast-custom-icon svg, .toast-custom-icon i {
    width: 18px;
    height: 18px;
}
.toast-custom-content {
    flex-grow: 1;
}
.toast-custom-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.toast-custom-msg {
    font-size: 0.8rem;
    color: var(--muted-color);
    line-height: 1.4;
}
.toast-custom.toast-success {
    border-left-color: #22c55e;
}
.toast-custom.toast-success .toast-custom-icon {
    color: #22c55e;
}
.toast-custom.toast-error {
    border-left-color: #ef4444;
}
.toast-custom.toast-error .toast-custom-icon {
    color: #ef4444;
}
.toast-custom.toast-info {
    border-left-color: var(--accent-color);
}
.toast-custom.toast-info .toast-custom-icon {
    color: var(--accent-color);
}

/* --- VIP Pass Holographic Shimmer --- */
.ticket {
    position: relative;
    overflow: hidden;
}
.ticket-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 250% 250%;
    pointer-events: none;
    z-index: 15;
    animation: shimmer-ticket 8s infinite linear;
}
@keyframes shimmer-ticket {
    0% { background-position: -150% -150%; }
    100% { background-position: 150% 150%; }
}

/* --- Header Social Links --- */
.header-social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.header-social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-social-icon:hover {
    transform: translateY(-2px) scale(1.15);
}
.header-social-icon.facebook:hover {
    color: #1877F2 !important;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.5));
}
.header-social-icon.instagram:hover {
    color: #E1306C !important;
    filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.5));
}
.header-social-icon.tiktok:hover {
    color: #00F2EA !important;
    filter: drop-shadow(0 0 8px rgba(0, 242, 234, 0.5));
}


@media (min-width: 1101px) and (max-width: 1200px) {
    .nav-links, .dynamic-nav .nav-links {
        gap: 1.25rem !important;
    }
    .nav-actions {
        gap: 1rem !important;
    }
}

@media (min-width: 969px) and (max-width: 1100px) {
    .logo img, .outline-logo img {
        height: 55px !important;
        max-width: 170px !important;
    }
    .nav-links, .dynamic-nav .nav-links {
        gap: 0.85rem !important;
    }
    .dynamic-nav .nav-links a {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }
    .nav-actions {
        gap: 0.75rem !important;
    }
    .header-social-links {
        gap: 0.75rem !important;
    }
    .dynamic-btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}


/* ==========================================================================
   PRELOADER — Premium Full-Screen Loader (BBC)
   ========================================================================== */

#loader-wrap {
    position: fixed;
    inset: 0;
    z-index: 1000000 !important;
    background: #07070A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: all;
}

/* Subtle radial glow behind logo - pulsing to feel alive */
@keyframes glow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
    }
}
#loader-wrap::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glow-pulse 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.loader-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Gentle breathing animation for the logo */
@keyframes logo-breathe {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 16px rgba(212,175,55,0.25));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 0 28px rgba(212,175,55,0.45));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 16px rgba(212,175,55,0.25));
    }
}
.loader-logo {
    height: 120px;
    width: auto;
    opacity: 0.95;
    animation: logo-breathe 3.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.loader-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 0.9;
}

.loader-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-align: center;
    margin-top: 0.2rem;
}

.loader-bar-track {
    width: 320px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ca8a04, var(--accent-color), #fde047);
    border-radius: 99px;
    box-shadow: 0 0 16px rgba(212,175,55,0.6);
    transition: width 0.05s linear;
    will-change: width;
}

.loader-counter {
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* Loader hide animation — triggered via JS class */
#loader-wrap.loader-hidden {
    pointer-events: none;
}

/* ==========================================================================
   TACTILE BUTTON FEEDBACK — Active/Press States
   ========================================================================== */

.dynamic-btn {
    transition: all 0.3s ease, transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.dynamic-btn:active {
    transform: scale(0.96) !important;
    opacity: 0.88 !important;
}

.btn-book {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.btn-book:active {
    transform: scale(0.96) !important;
    box-shadow: 0 4px 16px rgba(234, 179, 8, 0.35) !important;
}
