/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

:root {
    /* Dark Base Colors - Old School Vibe */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --bg-card-hover: #242424;
    --bg-card-light: #2a2a2a;
    
    /* Vibrant Orange Accents - Modern Touch */
    --orange-primary: #FF6B35;
    --orange-accent: #FF8C42;
    --orange-bright: #FFA366;
    --orange-dark: #E85D04;
    --orange-glow: #FF6B35;
    
    /* Old School Warm Tones */
    --sepia-dark: #3d2817;
    --sepia-medium: #5a3d2e;
    --sepia-light: #8B5A3C;
    --vintage-brown: #6B4423;
    --warm-cream: #D4AF6F;
    
    /* Text Colors */
    --text-light: #F5E6D3;
    --text-muted: #B8A082;
    --text-dark: #6B5D4F;
    --text-orange: #FF8C42;
    
    /* Border & Shadow Colors */
    --border-color: #2a2a2a;
    --border-orange: #FF6B35;
    --border-sepia: rgba(139, 90, 60, 0.3);
    
    /* Shadow & Glow */
    --shadow-orange: rgba(255, 107, 53, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --glow-orange: rgba(255, 107, 53, 0.6);
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Special Elite', cursive;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.03) 2px,
            rgba(255, 107, 53, 0.03) 4px
        ),
        radial-gradient(
            circle at 20% 50%,
            rgba(139, 90, 60, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 107, 53, 0.03) 0%,
            transparent 50%
        );
}

.old-school-text {
    font-family: 'Special Elite', cursive;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--border-sepia);
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-hero {
    position: absolute;
}

.navbar.scrolled,
.navbar-scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 2px solid var(--orange-primary);
    box-shadow: 
        0 2px 20px var(--shadow-dark),
        0 0 30px var(--shadow-orange);
    backdrop-filter: blur(15px);
    animation: navbarSlide 0.4s ease;
}

@keyframes navbarSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-menu-left {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: flex-end;
    justify-self: end;
}

.nav-menu-right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: flex-start;
}

.nav-right-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    gap: 1.5rem;
}

.nav-wrapper .logo {
    text-decoration: none;
    font-size: 1.75rem;
    color: var(--text-light);
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Special Elite', cursive;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-sepia);
    background: rgba(20, 14, 10, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-light);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cart {
    display: none;
}

body.page-shop .nav-cart,
body.page-cart .nav-cart,
body.page-checkout .nav-cart,
body.page-account .nav-cart,
body.woocommerce .nav-cart,
body.woocommerce-page .nav-cart,
body.single-product .nav-cart,
body.tax-product_cat .nav-cart {
    display: flex;
    position: relative;
    align-items: center;
}

.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.nav-icon-btn:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
    box-shadow: 0 2px 12px var(--shadow-orange);
}

.nav-icon-btn svg {
    flex-shrink: 0;
}

.nav-icon-btn.nav-cart-trigger,
.nav-cart .nav-icon-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 0.7rem;
    font-family: 'Special Elite', cursive;
    font-weight: 600;
    background: var(--orange-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 280px;
    background: var(--bg-card);
    border: 2px solid var(--orange-primary);
    box-shadow: 0 8px 24px var(--shadow-dark), 0 0 20px var(--shadow-orange);
    z-index: 1000;
    display: none;
}

.cart-dropdown.is-open {
    display: block;
}

.cart-dropdown-content {
    padding: 20px;
}

.cart-empty {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.cart-items {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.cart-dropdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.cart-item-name { color: var(--text-light); }
.cart-item-price { color: var(--orange-primary); }

.cart-dropdown-footer {
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.btn-cart-view {
    display: block;
    text-align: center;
    padding: 12px;
}

.logo h1 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.logo-accent {
    color: var(--orange-primary);
    margin-left: 8px;
    position: relative;
    text-shadow: 0 0 10px var(--glow-orange);
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-accent));
    opacity: 0.8;
    box-shadow: 0 0 8px var(--orange-primary);
}


.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--orange-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: 
        linear-gradient(
            rgba(10, 10, 10, 0.85) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(10, 10, 10, 0.85) 100%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 70%
        ),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-sepia);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 107, 53, 0.02) 10px,
            rgba(255, 107, 53, 0.02) 20px
        ),
        radial-gradient(
            ellipse at top,
            rgba(255, 107, 53, 0.05) 0%,
            transparent 50%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    padding: 50px 60px;
    border: 2px solid var(--border-sepia);
    border-radius: 0;
    background: 
        linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(30, 20, 15, 0.9) 100%
        );
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 
        0 0 40px var(--shadow-dark),
        0 0 60px var(--shadow-orange),
        inset 0 0 40px rgba(139, 90, 60, 0.1),
        inset 0 0 80px rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    margin: 25px auto;
    box-shadow: 0 0 10px var(--orange-primary);
    position: relative;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--orange-primary);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: var(--orange-primary);
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.8),
        0 0 20px var(--glow-orange),
        0 0 40px var(--shadow-orange);
    letter-spacing: 5px;
    line-height: 1.1;
    position: relative;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--warm-cream);
    letter-spacing: 3px;
    font-family: 'Special Elite', cursive;
    text-shadow: 0 0 10px rgba(212, 175, 111, 0.5);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Special Elite', cursive;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-secondary:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border: 2px solid var(--orange-primary);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Special Elite', cursive;
    background: transparent;
    color: var(--orange-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--orange-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg-dark);
    border-color: var(--orange-primary);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: transparent;
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-primary:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Section Styles */
section {
    position: relative;
}

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

.section-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    margin: 20px auto;
    box-shadow: 0 0 15px var(--orange-primary);
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-primary);
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--orange-primary);
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 20px var(--shadow-orange);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Special Elite', cursive;
}

/* About Section */
.about {
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 100px 0 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.street-view-image {
    width: 100%;
    height: 300px;
    position: relative;
    padding: 8px;
    background: var(--bg-card);
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.2),
        0 6px 20px var(--shadow-dark);
}

.street-view-placeholder {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--bg-card) 0%, rgba(139, 90, 60, 0.3) 100%),
        radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
}

.street-view-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px double var(--orange-primary);
    pointer-events: none;
    z-index: 1;
}

.street-view-image::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--border-sepia);
    pointer-events: none;
    z-index: 2;
}

.street-view-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 107, 53, 0.05) 20px,
            rgba(255, 107, 53, 0.05) 40px
        );
    z-index: 0;
}

.street-view-placeholder::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 0 15px rgba(255, 107, 53, 0.1);
}

.street-view-placeholder p {
    position: relative;
    z-index: 3;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    padding: 8px;
    background: var(--bg-card);
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.2),
        0 6px 20px var(--shadow-dark);
}

.map-border-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px double var(--orange-primary);
    pointer-events: none;
    z-index: 1;
    box-shadow: 
        inset 0 0 20px rgba(255, 107, 53, 0.2),
        0 0 0 2px var(--bg-dark),
        0 0 0 6px var(--orange-primary);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--border-sepia);
    pointer-events: none;
    z-index: 2;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    pointer-events: none;
    z-index: 2;
    box-shadow: inset 0 0 15px rgba(255, 107, 53, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    position: relative;
    z-index: 0;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    padding: 20px;
    border: 2px solid var(--border-sepia);
    background: rgba(255, 107, 53, 0.03);
    box-shadow: 
        inset 0 0 10px rgba(139, 90, 60, 0.1),
        0 2px 8px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.4s ease;
    z-index: 0;
}

.feature:hover {
    border-color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 
        inset 0 0 20px rgba(255, 107, 53, 0.15),
        0 4px 20px var(--shadow-orange),
        0 0 30px var(--glow-orange);
}

.feature:hover::before {
    left: 0;
}

.feature h4,
.feature p {
    position: relative;
    z-index: 1;
}

.feature h4 {
    color: var(--orange-accent);
    margin-bottom: 10px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.feature p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-muted);
}

.about-shop-cta {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--border-sepia);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about-shop-text {
    flex: 1;
    min-width: 200px;
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.about-shop-cta .btn {
    flex-shrink: 0;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: 
        linear-gradient(135deg, var(--bg-card) 0%, rgba(139, 90, 60, 0.3) 100%),
        radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border: 2px solid var(--border-sepia);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.2),
        0 0 0 1px var(--bg-dark),
        0 4px 15px var(--shadow-dark);
    transition: all 0.3s ease;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--orange-primary);
    box-shadow: 
        inset 0 0 40px rgba(255, 107, 53, 0.2),
        0 0 0 1px var(--bg-dark),
        0 0 30px var(--glow-orange),
        0 6px 25px var(--shadow-dark);
}

.image-placeholder:hover::before {
    opacity: 1;
}

/* Barbers Section */
.barbers {
    background: var(--bg-darker);
    padding: 120px 0;
    position: relative;
}

.barbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.barbers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.barbers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.barbers-grid .barber-card {
    flex: 0 0 calc(33.333% - 27px);
    max-width: 420px;
    min-width: 260px;
}

/* Tablet: 2 per row, centered */
@media (max-width: 1024px) and (min-width: 769px) {
    .barbers-grid .barber-card {
        flex: 0 0 calc(50% - 20px);
        max-width: 420px;
    }
}

.barber-card {
    position: relative;
    border: 2px solid var(--border-sepia);
    background: 
        linear-gradient(
            180deg,
            var(--bg-card) 0%,
            rgba(26, 18, 12, 0.98) 100%
        );
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.12),
        0 8px 24px var(--shadow-dark);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.barber-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 0 solid var(--orange-primary);
    transition: border-width 0.35s ease, box-shadow 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.barber-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 
        inset 0 0 40px rgba(255, 107, 53, 0.08),
        0 0 0 1px var(--orange-primary),
        0 20px 40px var(--shadow-dark),
        0 0 30px var(--shadow-orange);
}

.barber-card:hover::before {
    border-width: 3px;
    box-shadow: inset 0 0 25px rgba(255, 107, 53, 0.15);
}

.barber-card-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
}

.barbers-grid--redesign .barber-card {
    display: flex;
}

.barbers-grid--redesign .barber-card-inner {
    min-height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.barber-photo {
    position: relative;
    overflow: hidden;
}

.barber-photo-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.barber-card:hover .barber-photo-img {
    transform: scale(1.06);
}

.barber-photo-booking {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}

.barber-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: 
        linear-gradient(135deg, var(--bg-darker) 0%, rgba(139, 90, 60, 0.35) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 65%);
    border-bottom: 2px solid var(--border-sepia);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 4px;
    transition: transform 0.5s ease, color 0.35s ease;
}

.barber-card:hover .barber-photo-placeholder {
    transform: scale(1.06);
    color: var(--orange-accent);
}

.barber-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.barber-info h3 {
    color: var(--orange-primary);
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 12px var(--shadow-orange);
    line-height: 1.2;
}

.barber-title {
    color: var(--orange-accent);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.barber-experience {
    color: var(--warm-cream);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.barber-specialty {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 16px;
}

.barber-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.barber-more.is-open {
    max-height: 160px;
}

.barber-bio {
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 14px;
}

.btn-read-more {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 20px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.btn-read-more:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--shadow-orange);
}

.btn-read-more[aria-expanded="true"] {
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.barber-card-clickable {
    cursor: pointer;
}

.btn-book-barber--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    min-width: 44px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-book-barber--icon:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--shadow-orange);
}

.btn-book-barber--icon svg {
    flex-shrink: 0;
}

.barbers-grid--redesign .barber-info {
    text-align: center;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 28px 20px 36px;
    gap: 10px;
}

.barbers-grid--redesign .barber-card-actions {
    justify-content: center;
}

.barbers-grid--redesign .btn-read-more {
    margin-top: 0;
}

.barber-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Shop page */
.shop-section {
    padding: 150px 0 100px;
    min-height: 100vh;
    position: relative;
    background: 
        linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 40%, rgba(61, 40, 23, 0.3) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255, 107, 53, 0.03) 80px,
            rgba(255, 107, 53, 0.03) 81px
        );
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.shop-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.shop-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 18, 12, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(139, 90, 60, 0.12), 0 8px 24px var(--shadow-dark);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shop-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--orange-primary), 0 16px 36px var(--shadow-dark), 0 0 24px var(--shadow-orange);
}

.shop-card-image {
    position: relative;
    overflow: hidden;
}

.shop-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(139, 90, 60, 0.35) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    letter-spacing: 4px;
    border-bottom: 2px solid var(--border-sepia);
    transition: color 0.35s ease, transform 0.5s ease;
}

.shop-card:hover .shop-image-placeholder {
    color: var(--orange-accent);
    transform: scale(1.04);
}

.shop-card-info {
    padding: 22px 20px 24px;
}

.shop-card-info h3 {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.shop-card-desc {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 12px;
}

.shop-card-price {
    color: var(--warm-cream);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.btn-shop {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-shop:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--shadow-orange);
}

/* Shop preview section (homepage) */
.shop-preview {
    background: 
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255, 107, 53, 0.02) 60px,
            rgba(255, 107, 53, 0.02) 61px
        );
    padding: 100px 0;
    position: relative;
}

.shop-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.shop-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.shop-preview-header {
    text-align: center;
    margin-bottom: 48px;
}

.shop-preview-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 6px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.shop-preview-subtitle {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    margin: 0 0 20px;
}

.shop-preview-bar {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    margin: 0 auto 20px;
    box-shadow: 0 0 16px var(--shadow-orange);
}

.shop-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.shop-preview-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 18, 12, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(139, 90, 60, 0.12), 0 6px 20px var(--shadow-dark);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shop-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-preview-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--orange-primary), 0 12px 28px var(--shadow-dark), 0 0 20px var(--shadow-orange);
}

.shop-preview-card:hover::before {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: inset 0 0 24px rgba(255, 107, 53, 0.08);
}

.shop-preview-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--border-sepia);
}

.shop-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shop-preview-card:hover .shop-preview-img img {
    transform: scale(1.06);
}

.shop-preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(18, 12, 8, 0.95), transparent);
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 4px;
    text-align: center;
}

.shop-preview-card-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.shop-preview-card-title {
    margin: 0;
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

.shop-preview-price {
    color: var(--orange-primary);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.shop-preview-text {
    text-align: center;
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.shop-preview .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.btn-shop-cta {
    min-width: 200px;
}

/* Shop toolbar (search + filters) */
.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.shop-search {
    flex: 1;
    min-width: 200px;
}

.shop-search-input {
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
    border: 2px solid var(--border-sepia);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    transition: var(--transition);
}

.shop-search-input::placeholder {
    color: var(--text-muted);
}

.shop-search-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 2px var(--shadow-orange);
}

.shop-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-filters-label {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.shop-filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-sepia);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
}

.shop-no-results {
    text-align: center;
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    margin-top: 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Pricelist Section – same background as hero */
.pricelist {
    padding: 120px 0;
    position: relative;
    background:
        linear-gradient(
            rgba(10, 10, 10, 0.85) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(10, 10, 10, 0.85) 100%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 70%
        ),
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

.pricelist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.pricelist::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 20px var(--orange-primary);
}

.pricelist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 107, 53, 0.02) 10px,
            rgba(255, 107, 53, 0.02) 20px
        ),
        radial-gradient(
            ellipse at top,
            rgba(255, 107, 53, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.pricelist-container {
    position: relative;
    z-index: 1;
}

.pricelist-image-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricelist-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bounty-poster {
    max-width: 960px;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, #2a1f0f 0%, #3d2817 100%);
    border: 4px solid var(--sepia-medium);
    box-shadow: 
        0 4px 20px var(--shadow-dark),
        inset 0 0 40px rgba(139, 90, 60, 0.2),
        0 0 30px rgba(255, 107, 53, 0.1);
    padding: 0;
    position: relative;
    transform: rotate(-1.5deg);
}

.bounty-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 89, 59, 0.05) 2px,
            rgba(140, 89, 59, 0.05) 4px
        );
    pointer-events: none;
}

.bounty-header {
    background: linear-gradient(180deg, var(--sepia-dark) 0%, var(--sepia-medium) 100%);
    border-bottom: 3px solid var(--orange-dark);
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.bounty-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--orange-primary);
    letter-spacing: 6px;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}


.bounty-content {
    padding: 30px;
    background: 
        linear-gradient(135deg, #3d2817 0%, #2a1f0f 100%);
}

.bounty-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    margin-bottom: 12px;
    border-bottom: 2px dashed var(--sepia-light);
    background: transparent;
    position: relative;
}

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

.bounty-service {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bounty-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    color: var(--orange-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--shadow-orange);
}

.bounty-desc {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    color: var(--warm-cream);
    letter-spacing: 0.5px;
}

.bounty-reward {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--orange-primary);
    letter-spacing: 2px;
}

.bounty-footer {
    background: linear-gradient(180deg, var(--sepia-medium) 0%, var(--sepia-dark) 100%);
    border-top: 3px solid var(--orange-dark);
    padding: 18px;
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bounty-footer p {
    margin: 4px 0;
    color: var(--warm-cream);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 5px rgba(212, 175, 111, 0.5);
}

/* Contact Section – horizontal / lying down cards */
.contact-section {
    padding: 100px 0 80px;
    background: var(--bg-darker);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 16px var(--shadow-orange);
}

.contact-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.contact-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.contact-section-lead {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-section-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.contact-h-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    box-shadow: 0 4px 20px var(--shadow-dark), inset 0 0 30px rgba(139, 90, 60, 0.05);
    min-height: 0;
}

.contact-h-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange-primary);
    opacity: 0.9;
}

.contact-h-card {
    position: relative;
}

.contact-h-card-label {
    flex-shrink: 0;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    width: 72px;
}

.contact-h-card-val {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-section-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-section-link:hover {
    color: var(--orange-primary);
}

.contact-section-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.contact-section-form-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 40px 36px;
    box-shadow: 0 6px 28px var(--shadow-dark), inset 0 0 40px rgba(139, 90, 60, 0.05);
}

.contact-section-form-card::before {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--orange-primary);
    margin-bottom: 26px;
    box-shadow: 0 0 12px var(--shadow-orange);
}

.contact-section-form-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--orange-primary);
    margin: 0 0 30px;
}

.contact-section .form-group {
    margin-bottom: 22px;
}

.contact-section .form-group:last-of-type {
    margin-bottom: 28px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .contact-section-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 80px 0 60px;
    }
    .contact-section-title {
        font-size: 2.25rem;
        letter-spacing: 3px;
    }
    .contact-section-cards {
        grid-template-columns: 1fr;
    }
    .contact-h-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .contact-h-card-label {
        width: auto;
    }
    .contact-section-form-card {
        padding: 28px 24px;
    }
}

/* Contact Section v2 – two-column with icons */
.contact-section--v2 {
    padding: 100px 0 90px;
}

.contact-section-head--v2 {
    position: relative;
    margin-bottom: 48px;
}

.contact-section-head--v2 .contact-section-accent {
    width: 60px;
    height: 4px;
    background: var(--orange-primary);
    margin: 0 auto 20px;
    box-shadow: 0 0 14px var(--shadow-orange);
}

.contact-section-single-card {
    max-width: 960px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 32px 36px 40px;
    box-shadow: 0 6px 28px var(--shadow-dark), inset 0 0 40px rgba(139, 90, 60, 0.05);
}

/* Contact card v2 – two-column layout */
.contact-card--v2 {
    display: grid;
    grid-template-columns: 1fr auto 1.15fr;
    gap: 0;
    padding: 0;
    max-width: 1000px;
    overflow: hidden;
    border: 2px solid var(--border-sepia);
    box-shadow: 0 8px 36px var(--shadow-dark), 0 0 0 1px rgba(255, 107, 53, 0.08), inset 0 0 50px rgba(139, 90, 60, 0.06);
}

.contact-card-v2-left {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 32px 36px;
    min-height: 0;
}

.contact-card-v2-left .contact-card-v2-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.45rem;
    letter-spacing: 4px;
    color: var(--orange-primary);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-sepia);
    flex-shrink: 0;
}

.contact-card-v2-list {
    flex: 1;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    min-height: 0;
}

.contact-card-v2-cell {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(28, 22, 18, 0.5);
    border-left: 3px solid var(--orange-primary);
    min-height: 56px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-card-v2-cell:hover {
    background: rgba(255, 107, 53, 0.06);
    border-left-color: var(--orange-accent);
}

.contact-card-v2-cell-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--orange-primary);
}

.contact-card-v2-cell-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card-v2-cell-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-card-v2-left .contact-v2-label {
    font-size: 1rem;
}

.contact-card-v2-left .contact-v2-val {
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-card-v2-divider {
    width: 2px;
    min-height: 280px;
    background: linear-gradient(180deg, transparent, var(--border-sepia) 20%, var(--orange-primary) 50%, var(--border-sepia) 80%, transparent);
    opacity: 0.7;
}

.contact-card-v2-right {
    padding: 36px 40px 40px 32px;
}

.contact-card-v2-right .contact-v2-form-title {
    margin-top: 0;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .contact-card--v2 {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .contact-card-v2-left {
        padding: 24px 20px 20px;
    }
    .contact-card-v2-list {
        grid-template-rows: auto;
    }
    .contact-card-v2-cell {
        min-height: 0;
        padding: 12px 14px;
    }
    .contact-card-v2-divider {
        width: 100%;
        min-height: 2px;
        background: linear-gradient(90deg, transparent, var(--border-sepia), var(--orange-primary), var(--border-sepia), transparent);
    }
    .contact-card-v2-right {
        padding: 28px 24px 36px;
    }
}

.contact-v2-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-sepia);
}

.contact-v2-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-v2-item:first-child {
    padding-top: 0;
}

.contact-v2-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--orange-primary);
}

.contact-v2-icon svg {
    width: 100%;
    height: 100%;
}

.contact-v2-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-v2-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}

.contact-v2-val {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-single-card-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-sepia);
}

.contact-single-card-form::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange-primary);
    margin-bottom: 24px;
    box-shadow: 0 0 10px var(--shadow-orange);
}

.contact-v2-form-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: var(--orange-primary);
    margin: 0 0 24px;
}

.contact-section--v2 .form-group {
    margin-bottom: 18px;
}

.contact-section--v2 .form-group:last-of-type {
    margin-bottom: 24px;
}

.contact-section--v2 .contact-submit-btn {
    width: 100%;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .contact-section-single-card {
        padding: 24px 20px 32px;
    }
    .contact-section--v2 {
        padding: 80px 0 60px;
    }
}

/* Legacy contact (other pages may use) */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 20, 15, 0.8) 100%);
    padding: 40px;
    border: 2px solid var(--border-sepia);
    box-shadow: inset 0 0 20px rgba(139, 90, 60, 0.1), 0 4px 15px var(--shadow-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Special Elite', cursive;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    border-width: 3px;
    background: var(--bg-card);
    box-shadow: 
        0 0 0 2px var(--bg-dark),
        0 0 25px var(--glow-orange),
        inset 0 0 15px rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.form-group textarea {
    resize: vertical;
}

/* Profile page */
.profile-page {
    padding: 140px 0 80px;
    min-height: 80vh;
    background: var(--bg-darker);
}

.profile-header {
    text-align: center;
    margin-bottom: 48px;
}

.profile-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.profile-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 6px 28px var(--shadow-dark), inset 0 0 40px rgba(139, 90, 60, 0.06);
}

.profile-card-accent {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange-primary);
    margin-bottom: 24px;
    box-shadow: 0 0 12px var(--shadow-orange);
}

.profile-card--customer {
    text-align: center;
}
.profile-card--customer .profile-card-accent { margin-left: auto; margin-right: auto; }
.profile-card--barber-login .profile-card-accent { margin-left: 0; margin-right: auto; }

.profile-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 3px;
    color: var(--orange-primary);
    margin: 0 0 12px;
}

.profile-card-text {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0 0 24px;
    line-height: 1.5;
}

.profile-btn {
    display: inline-block;
    margin-top: 8px;
}

.profile-barber-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.profile-barber-form label {
    display: block;
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.profile-barber-form input,
.profile-barber-form select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
}

.profile-barber-form input:focus,
.profile-barber-form select:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.profile-barber-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.profile-demo-note {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 20px 0 0;
    line-height: 1.5;
}

/* Customer view – personal info with icons */
.profile-customer-section {
    margin-bottom: 36px;
}

.profile-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.profile-info-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border-sepia);
    background: var(--bg-dark);
    margin-bottom: 10px;
}

.profile-info-row dt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 90px;
}

.profile-info-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--orange-primary);
}

.profile-info-row dd {
    margin: 0;
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
}

/* Barber view (after login) */
.profile-header--barber {
    margin-bottom: 32px;
}

.profile-barber-welcome {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.profile-barber-welcome .profile-title {
    margin: 0;
}

.profile-barber-welcome .profile-sub {
    flex: 1 1 100%;
    margin: 4px 0 0;
}

.profile-logout-btn {
    flex-shrink: 0;
}

.barber-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.barber-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 20px;
    border: 2px solid var(--border-sepia);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.98) 100%);
    position: relative;
}

.barber-stat-icon {
    width: 36px;
    height: 36px;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.barber-stat-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
}

.barber-stat-value {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--orange-primary);
}

@media (max-width: 768px) {
    .barber-stats-grid {
        grid-template-columns: 1fr;
    }
}

.barber-calendar-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 32px 28px;
    box-shadow: 0 6px 28px var(--shadow-dark), inset 0 0 40px rgba(139, 90, 60, 0.05);
}

.barber-calendar-wrap .book-calendar-header {
    margin-bottom: 20px;
}

.barber-calendar-wrap .book-cal-month {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}

.barber-calendar-grid {
    margin-bottom: 32px;
}

.barber-cal-day--has-app {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.08);
}

.barber-cal-day--has-app em {
    display: block;
    font-size: 0.7rem;
    font-style: normal;
    color: var(--orange-primary);
}

.barber-appointments-list {
    padding-top: 24px;
    border-top: 2px solid var(--border-sepia);
}

.barber-appointments-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin: 0 0 16px;
}

.barber-appointments-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.barber-app-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border-sepia);
    background: var(--bg-dark);
    margin-bottom: 10px;
}

.barber-app-item--empty {
    grid-template-columns: 1fr;
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
}

.barber-app-time {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    color: var(--orange-primary);
}

.barber-app-customer {
    font-family: 'Special Elite', cursive;
    font-weight: 500;
    color: var(--text-light);
}

.barber-app-service {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-barber-welcome {
        flex-direction: column;
        align-items: flex-start;
    }
    .barber-app-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* Cart page */
.cart-page {
    padding: 140px 0 80px;
    min-height: 80vh;
    background: var(--bg-darker);
}

.cart-header {
    text-align: center;
    margin-bottom: 48px;
}

.cart-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.cart-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

.cart-empty-state {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 48px 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    box-shadow: 0 6px 28px var(--shadow-dark);
}

.cart-empty-text {
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 28px;
}

.cart-empty-btn {
    display: inline-block;
}

.cart-content {
    max-width: 640px;
    margin: 0 auto;
}

.cart-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    box-shadow: 0 6px 28px var(--shadow-dark);
}

.cart-page-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-sepia);
}

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

.cart-page-item-name {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.cart-page-item-qty {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-page-item-price {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    color: var(--orange-primary);
}

.cart-summary {
    padding: 28px 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    border-top: none;
    box-shadow: 0 6px 28px var(--shadow-dark);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 24px;
}

.cart-total-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}

.cart-total-amount {
    font-family: 'Special Elite', cursive;
    font-size: 1.35rem;
    color: var(--text-light);
}

.cart-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cart-continue-btn,
.cart-checkout-btn {
    min-width: 160px;
}

@media (max-width: 600px) {
    .profile-card,
    .cart-empty-state {
        padding: 32px 24px;
    }
    .cart-page-item {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }
    .cart-page-item-qty {
        grid-column: 1;
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-sepia);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 10px var(--orange-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--orange-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-btn:hover {
    color: var(--bg-dark);
    transform: rotate(5deg) scale(1.1);
}

.social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.footer-privacy {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
}

.footer-privacy a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: var(--orange-primary);
}

.footer-privacy span {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
}

/* Legal pages header (logo + home only) */
.navbar-legal .nav-menu-left,
.navbar-legal .nav-menu-right {
    display: none;
}

.nav-legal-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    width: 100%;
}

.navbar-legal .nav-legal-wrapper {
    grid-template-columns: none;
}

.nav-legal-wrapper .nav-link {
    text-decoration: none;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-legal-wrapper .nav-link:hover {
    color: var(--orange-accent);
}

.nav-legal-spacer {
    width: 80px;
}

/* Legal section content */
.legal-section {
    padding: 150px 0 100px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-title {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-align: center;
}

.legal-updated {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-content p {
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.legal-content h2 {
    color: var(--orange-accent);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-top: 32px;
    margin-bottom: 12px;
}

/* Floating Book Appointment Button */
.floating-book-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    padding: 14px 24px;
    background: var(--orange-primary);
    color: var(--bg-dark);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--orange-primary);
    box-shadow: 0 4px 20px var(--shadow-orange), 0 0 20px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.floating-book-btn:hover {
    background: var(--bg-dark);
    color: var(--orange-primary);
    box-shadow: 0 6px 25px var(--shadow-orange);
    transform: translateY(-2px);
}

/* ========== Barber profile page (barber.html) ========== */
.barber-page-single {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: var(--bg-darker);
}

.barber-page-single-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.barber-page-photo-wrap {
    margin-bottom: 2rem;
}

.barber-page-photo-wrap .barber-photo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.barber-page-content-wrap .barber-page-name {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 4px;
    margin: 0 0 0.5rem;
}

.barber-page-content-wrap .barber-page-title {
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1.15rem;
    margin: 0 0 1.5rem;
}

.barber-page-book {
    display: inline-block;
    text-decoration: none;
}

/* ========== Reserve page (booking – full redesign) ========== */
.reserve-page {
    min-height: 100vh;
    padding-bottom: 100px;
    background: var(--bg-darker);
}

.reserve-hero {
    padding: 140px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-bottom: 2px solid var(--border-sepia);
}

.reserve-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 10px;
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.1;
}

.reserve-hero-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 24px;
}

.reserve-hero-accent {
    width: 100px;
    height: 4px;
    background: var(--orange-primary);
    margin: 0 auto;
    box-shadow: 0 0 20px var(--shadow-orange);
}

.reserve-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 48px;
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px 44px;
    align-items: start;
}

.reserve-panel {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 36px 32px;
    box-shadow: 0 6px 24px var(--shadow-dark), inset 0 0 40px rgba(139, 90, 60, 0.06);
}

.reserve-panel-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 4px;
    color: var(--orange-primary);
    margin: 0 0 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-sepia);
}

.reserve-form .reserve-field {
    margin-bottom: 22px;
}

.reserve-form .reserve-field:last-of-type {
    margin-bottom: 0;
}

.reserve-form label {
    display: block;
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
    color: var(--text-muted);
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.reserve-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.reserve-form textarea {
    resize: vertical;
    min-height: 80px;
}

.reserve-info-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reserve-info-row {
    margin: 0;
}

.reserve-info-row dt {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin-bottom: 6px;
}

.reserve-info-row dd {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.reserve-actions {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 2px solid var(--border-sepia);
    text-align: center;
}

.reserve-confirm {
    min-width: 220px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

@media (max-width: 1100px) {
    .reserve-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reserve-calendar-area {
        grid-column: 1 / -1;
        order: 2;
    }
    .reserve-side--form { order: 1; }
    .reserve-side--info { order: 3; }
}

@media (max-width: 768px) {
    .reserve-hero {
        padding: 120px 0 36px;
    }
    .reserve-hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    .reserve-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .reserve-calendar-area {
        grid-column: auto;
        order: 2;
    }
    .reserve-panel {
        padding: 28px 24px;
    }
    .book-times-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .book-times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Calendar layout & functions – same structure, styled inside reserve panel */
.reserve-panel--calendar .book-calendar {
    margin-bottom: 24px;
}

.book-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.book-cal-month {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}

.book-cal-nav {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-sepia);
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.book-cal-nav:hover {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.book-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.book-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.book-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.book-cal-day--empty {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

.book-cal-day:not(.book-cal-day--empty):not(.book-cal-day--past):hover {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.12);
}

.book-cal-day--selected {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.book-cal-day--past {
    opacity: 0.35;
    cursor: not-allowed;
}

#bookingHoursSection {
    display: none;
}

#bookingHoursSection[aria-hidden="false"] {
    display: block;
}

.book-times-wrap {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-sepia);
}

.book-times-label {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.book-times-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.book-time-slot {
    padding: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.book-time-slot:hover {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
}

.book-time-slot--selected {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.book-info-card {
    margin-top: 32px;
}

.book-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.book-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.book-info-key {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}

.book-info-val {
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
}

.book-submit {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border-sepia);
    text-align: center;
}

.book-confirm-btn {
    min-width: 240px;
    padding: 18px 32px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .book-three-col {
        grid-template-columns: 1fr;
    }
    .book-col-left { order: 1; }
    .book-col-center { order: 2; }
    .book-col-right { order: 3; }
    .book-times-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .book-intro {
        padding: 140px 0 40px;
    }
    .book-intro-title {
        font-size: 2.75rem;
        letter-spacing: 4px;
    }
    .book-card {
        padding: 28px 24px;
    }
    .book-times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Shop section (landing) – redesigned ========== */
.shop-landing {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%);
    position: relative;
}

.shop-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 16px var(--shadow-orange);
}

.shop-landing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    box-shadow: 0 0 16px var(--shadow-orange);
}

.shop-landing-header {
    text-align: center;
    margin-bottom: 44px;
}

.shop-landing-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.shop-landing-sub {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 1.05rem;
    font-weight: 300;
    margin: 0 0 20px;
}

.shop-landing-line {
    width: 100px;
    height: 3px;
    background: var(--orange-primary);
    margin: 0 auto;
    box-shadow: 0 0 12px var(--shadow-orange);
}

.shop-landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.shop-landing-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 20, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    overflow: hidden;
    box-shadow: inset 0 0 24px rgba(139, 90, 60, 0.08), 0 6px 24px var(--shadow-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-landing-card:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 2px var(--orange-primary), 0 8px 28px var(--shadow-dark), 0 0 24px var(--shadow-orange);
}

.shop-landing-card-frame {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--border-sepia);
}

.shop-landing-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.shop-landing-card:hover .shop-landing-card-frame img {
    transform: scale(1.04);
}

.shop-landing-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(18, 12, 8, 0.9), transparent);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: var(--orange-primary);
    text-align: center;
}

.shop-landing-card-name {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    margin: 16px 16px 6px;
}

.shop-landing-card-price {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    color: var(--orange-primary);
    letter-spacing: 1px;
    margin: 0 16px 18px;
}

.shop-landing-cta-wrap {
    text-align: center;
}

.shop-landing-cta {
    display: inline-block;
    min-width: 200px;
}

@media (max-width: 992px) {
    .shop-landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shop-landing-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    .shop-landing-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Shop Section v2 – redesigned */
.shop-landing--v2 {
    padding: 100px 0 80px;
}

.shop-landing-header--v2 {
    margin-bottom: 48px;
}

.shop-landing-title--v2 {
    font-size: 3.25rem;
    letter-spacing: 8px;
    margin-bottom: 12px;
}

.shop-landing-sub--v2 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.shop-landing-accent--v2 {
    width: 80px;
    height: 4px;
    background: var(--orange-primary);
    margin: 0 auto;
    box-shadow: 0 0 14px var(--shadow-orange);
}

.shop-landing-grid--v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto 44px;
}

.shop-card-v2 {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 16, 12, 0.98) 100%);
    border: 1px solid var(--border-sepia);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.shop-card-v2:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 8px 32px var(--shadow-dark), 0 0 20px rgba(255, 107, 53, 0.12);
    transform: translateY(-4px);
}

.shop-card-v2-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-primary);
    opacity: 0.9;
    z-index: 1;
}

.shop-card-v2-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-darker);
}

.shop-card-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shop-card-v2:hover .shop-card-v2-img img {
    transform: scale(1.06);
}

.shop-card-v2-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-card-v2-cat {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--orange-primary);
}

.shop-card-v2-name {
    font-family: 'Special Elite', cursive;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.shop-card-v2-price {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    color: var(--orange-accent);
    letter-spacing: 1px;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .shop-landing-grid--v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shop-landing-grid--v2 {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .shop-landing-title--v2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
}

/* Booking Page Styles (legacy – kept for reference) */
.booking-section {
    padding: 180px 0 140px;
    min-height: 100vh;
    background: 
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 30%, var(--bg-darker) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 107, 53, 0.02) 80px,
            rgba(255, 107, 53, 0.02) 81px
        );
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px 64px;
    max-width: 1440px;
    margin: 0 auto;
    align-items: start;
}

.booking-submit-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 2px solid var(--border-sepia);
}

.btn-booking-confirm {
    min-width: 220px;
}

.booking-col-title {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.35rem;
    letter-spacing: 3px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-sepia);
}

.booking-left .booking-form-wrapper.booking-info-card {
    position: relative;
    padding: 44px 40px 48px;
    margin-top: 0;
}

.booking-form .form-group label {
    color: var(--orange-accent);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.booking-form .form-group {
    margin-bottom: 28px;
}

.booking-form .form-group:last-of-type {
    margin-bottom: 0;
}

#bookingHoursSection {
    display: none;
}

#bookingHoursSection[aria-hidden="false"] {
    display: block;
}

.booking-center {
    display: flex;
    flex-direction: column;
}

.booking-calendar-wrapper {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 20, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    padding: 36px 32px 40px;
    box-shadow: inset 0 0 30px rgba(139, 90, 60, 0.1), 0 8px 28px var(--shadow-dark);
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month-year {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.booking-calendar {
    margin-bottom: 28px;
}

.booking-hours {
    margin-top: 8px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    text-align: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day.empty {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

.calendar-day:not(.empty):not(.past):hover {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
}

.calendar-day.selected {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-hours-label {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.booking-hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hour-slot {
    padding: 10px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.hour-slot:hover {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
}

.hour-slot.selected {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.booking-right .booking-info-card {
    margin-top: 0;
    padding: 44px 40px 48px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26, 20, 14, 0.98) 100%);
    border: 2px solid var(--border-sepia);
    box-shadow: inset 0 0 30px rgba(139, 90, 60, 0.1), 0 8px 28px var(--shadow-dark);
}

.booking-form-wrapper {
    background: 
        linear-gradient(
            135deg,
            var(--bg-card) 0%,
            rgba(30, 20, 15, 0.9) 100%
        );
    padding: 50px;
    border: 2px solid var(--border-sepia);
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.2),
        0 6px 25px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px double var(--orange-primary);
    pointer-events: none;
    z-index: 1;
    box-shadow: 
        inset 0 0 20px rgba(255, 107, 53, 0.2),
        0 0 0 2px var(--bg-dark),
        0 0 0 6px var(--orange-primary);
}

.booking-form-wrapper::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px solid var(--border-sepia);
    pointer-events: none;
    z-index: 2;
}

.booking-form {
    position: relative;
    z-index: 3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 300;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-muted);
    font-family: 'Special Elite', cursive;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    border-width: 3px;
    background: var(--bg-card);
    box-shadow: 
        0 0 0 2px var(--bg-dark),
        0 0 25px var(--glow-orange),
        inset 0 0 15px rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

.info-card {
    background: 
        linear-gradient(
            135deg,
            var(--bg-card) 0%,
            rgba(30, 20, 15, 0.9) 100%
        );
    padding: 40px;
    border: 2px solid var(--border-sepia);
    box-shadow: 
        inset 0 0 30px rgba(139, 90, 60, 0.2),
        0 6px 25px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px double var(--orange-primary);
    pointer-events: none;
    z-index: 1;
    box-shadow: 
        inset 0 0 20px rgba(255, 107, 53, 0.2),
        0 0 0 2px var(--bg-dark),
        0 0 0 6px var(--orange-primary);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px solid var(--border-sepia);
    pointer-events: none;
    z-index: 2;
}

.info-card > * {
    position: relative;
    z-index: 3;
}

.info-card h3 {
    color: var(--orange-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px var(--shadow-orange);
}

.info-detail {
    margin-bottom: 30px;
}

.info-detail h4 {
    color: var(--orange-accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.info-detail p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
    }

    .nav-menu-left,
    .nav-menu-right {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        border-top: 2px solid var(--orange-primary);
        padding: 1.5rem 0;
        gap: 1.25rem;
        z-index: 999;
    }

    .nav-menu-left {
        top: 70px;
    }

    .nav-menu-right {
        top: 200px;
    }

    .nav-menu-left.active {
        display: flex;
    }

    .nav-menu-right.active {
        display: flex;
    }

    .nav-menu-left {
        order: 4;
    }

    .nav-wrapper .logo {
        grid-column: 1;
        justify-self: start;
        order: 1;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        grid-column: 2;
        justify-self: end;
        order: 2;
    }

    .nav-menu-right {
        order: 5;
    }

    .nav-right-group {
        grid-column: 3;
        justify-self: end;
        order: 3;
        gap: 0.5rem;
    }

    .nav-actions {
        justify-self: end;
    }

    .nav-icon-btn {
        width: 40px;
        height: 40px;
    }

    .nav-wrapper .logo {
        flex: 1;
        text-align: left;
    }

    .nav-right-group {
        flex: 0;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-submit-wrap {
        margin-top: 40px;
        padding-top: 32px;
    }

    .booking-center {
        order: 2;
    }

    .booking-right {
        order: 3;
    }

    .booking-hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-search-input {
        max-width: none;
    }

    .shop-filters {
        justify-content: flex-start;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-content,
    .contact-content,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .about-map {
        margin-top: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

    .street-view-image {
        height: 250px;
    }

    .map-wrapper {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .bounty-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bounty-reward {
        font-size: 1.8rem;
    }

    .barbers-grid {
        gap: 36px;
        max-width: 420px;
    }

    .barbers-grid .barber-card {
        flex: 0 0 100%;
        max-width: 420px;
    }

    .barber-info {
        align-items: center;
        text-align: center;
    }

    .btn-read-more {
        align-self: center;
    }

    .barber-more.is-open {
        max-height: 180px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-shop-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 15px 35px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Booking modal overlay */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.booking-modal-overlay.is-open {
    display: flex;
}
.booking-modal-box {
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.99) 100%);
    border: 2px solid var(--orange-primary);
    box-shadow: 0 0 40px var(--shadow-orange), 0 20px 60px var(--shadow-dark);
    position: relative;
}
.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-sepia);
    flex-shrink: 0;
}
.booking-modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
}
.booking-modal-close {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border-sepia);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
}
.booking-modal-close:hover {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}
.booking-modal-body {
    padding: 24px;
}
.booking-modal-body .reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
}
.booking-modal-body .reserve-panel {
    padding: 24px;
}
.booking-modal-body .reserve-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-sepia);
    text-align: center;
}
@media (max-width: 992px) {
    .booking-modal-body .reserve-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-modal-body .reserve-calendar-area {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .booking-modal-body .reserve-grid {
        grid-template-columns: 1fr;
    }
}

/* Integrated booking dropdown (barber pages) */
.booking-dropdown {
    margin-top: 32px;
    border: 2px solid var(--border-sepia);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 16, 12, 0.98) 100%);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.booking-dropdown.is-open {
    max-height: 1200px;
    opacity: 1;
}

.booking-dropdown-inner {
    padding: 24px;
}

.booking-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-sepia);
}

.booking-dropdown-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin: 0;
}

.booking-dropdown-close {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-sepia);
    background: transparent;
    color: var(--text-light);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.booking-dropdown-close:hover {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--bg-dark);
}

.booking-dropdown-body .reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 20px;
}

.booking-dropdown-body .reserve-panel {
    padding: 20px;
}

.booking-dropdown-body .reserve-actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-sepia);
    text-align: center;
}

@media (max-width: 992px) {
    .booking-dropdown-body .reserve-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-dropdown-body .reserve-calendar-area {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .booking-dropdown-body .reserve-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   BARBER PROFILE PAGE (template-barber.php)
============================================================= */

/* ── Hero ── */
.bp-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    max-height: 860px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.bp-hero-img-wrap {
    position: absolute;
    inset: 0;
}

.bp-hero-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #3d2817 0%, #1a0d08 60%, #0a0a0a 100%);
    background-size: cover;
    background-position: center top;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.bp-hero:hover .bp-hero-img {
    transform: scale(1);
}

.bp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.15) 100%),
        linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.bp-hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.45;
    mix-blend-mode: overlay;
}

.bp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem 72px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.bp-hero-name {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.2rem, 9vw, 7rem);
    letter-spacing: 8px;
    color: var(--text-light);
    line-height: 1;
    margin: 0.5rem 0 0.35rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 0 80px rgba(255,107,53,0.12);
}

.bp-hero-title {
    font-family: 'Special Elite', cursive;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--warm-cream);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.85;
}

/* ── Ornament divider ── */
.bp-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.85rem 0;
}

.bp-orn-line {
    display: block;
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--orange-primary), transparent);
    opacity: 0.7;
}

.bp-orn-icon {
    width: 14px;
    height: 14px;
    color: var(--orange-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--orange-primary));
}

/* ── Rating badge ── */
.bp-rating-section {
    background: var(--bg-darker);
    padding: 56px 0 52px;
}

.bp-rating-badge {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(139,90,60,0.28);
    padding: 32px 40px 28px;
}

.bp-badge-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--orange-primary);
    border-style: solid;
    opacity: 0.7;
}
.bp-badge-corner--tl { top: -1px; left: -1px;  border-width: 2px 0 0 2px; }
.bp-badge-corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.bp-badge-corner--bl { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; }
.bp-badge-corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.bp-rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bp-rating-stars svg {
    width: 28px;
    height: 28px;
    color: var(--orange-primary);
    filter: drop-shadow(0 0 6px rgba(255,107,53,0.55));
    transition: transform 0.2s ease;
}

.bp-rating-stars svg:hover {
    transform: scale(1.15);
}

.bp-rating-score {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    letter-spacing: 3px;
    color: var(--text-light);
    margin: 0 0 4px;
    line-height: 1;
}

.bp-rating-count {
    font-family: 'Special Elite', cursive;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin: 0;
}

/* ── Shared section header ── */
.bp-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.bp-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 6px;
    color: var(--text-light);
    margin: 0.3rem 0 0;
    line-height: 1;
}

/* ── Introduction ── */
.bp-intro-section {
    background: var(--bg-dark);
    padding: 72px 0 80px;
    position: relative;
}

.bp-intro-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,90,60,0.4), transparent);
}

.bp-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,90,60,0.4), transparent);
}

.bp-intro-card {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.bp-quote-mark {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 0.6;
    color: var(--orange-primary);
    opacity: 0.18;
    position: absolute;
    top: -10px;
    left: 0;
    pointer-events: none;
    user-select: none;
}

.bp-intro-text {
    font-family: 'Special Elite', cursive;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    color: var(--text-light);
    line-height: 1.9;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.6rem;
}

.bp-intro-sig {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.15rem;
    letter-spacing: 4px;
    color: var(--orange-primary);
    text-align: right;
    padding-right: 1rem;
    opacity: 0.85;
}

/* ── Gallery ── */
.bp-gallery-section {
    background: var(--bg-darker);
    padding: 72px 0 88px;
}

.bp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.bp-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.bp-gallery-item::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255,107,53,0.22);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.bp-gallery-item:hover::before {
    border-color: rgba(255,107,53,0.65);
}

.bp-gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}

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

.bp-gallery-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    background: linear-gradient(to top, rgba(5,5,5,0.82) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}

.bp-gallery-item:hover .bp-gallery-hover {
    opacity: 1;
}

.bp-gallery-hover span {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--warm-cream);
    text-transform: uppercase;
}

/* ── Book CTA ── */
.bp-cta-section {
    background: var(--bg-dark);
    text-align: center;
    padding: 72px 0 80px;
    position: relative;
}

.bp-cta-border {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,90,60,0.5), transparent);
    margin-bottom: 48px;
}

.bp-cta-border + .container {
    padding-bottom: 0;
}

.bp-cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 8px;
    color: var(--text-light);
    margin: 0.4rem 0 0.6rem;
}

.bp-cta-sub {
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.bp-cta-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 44px;
    letter-spacing: 3px;
}

/* ── Responsive ── */
@media (max-width: 760px) {
    .bp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .bp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bp-rating-badge {
        padding: 24px 24px 20px;
    }

    .bp-intro-card {
        padding: 0 1rem;
    }

    .bp-orn-line {
        width: 48px;
    }
}

/* =============================================================
   BARBER GALLERY LIGHTBOX (template-barber.php)
============================================================= */
.bp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.bp-lightbox.is-open { display: flex; }

.bp-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border: 2px solid var(--orange-primary);
    box-shadow: 0 0 40px var(--shadow-orange);
}

.bp-lightbox-close,
.bp-lightbox-prev,
.bp-lightbox-next {
    position: absolute;
    background: transparent;
    border: 2px solid var(--border-sepia);
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 1;
}
.bp-lightbox-close:hover,
.bp-lightbox-prev:hover,
.bp-lightbox-next:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}
.bp-lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.bp-lightbox-prev  { left:  20px; top: 50%; transform: translateY(-50%); padding: 8px 14px; }
.bp-lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); padding: 8px 14px; }

/* Gallery items — image via inline background-image */
.bp-gallery-item .bp-gallery-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 1;
}

/* =============================================================
   WOOCOMMERCE OVERRIDES
   All WooCommerce default styles are removed (filter in
   functions.php). These rules restyle WC to match the theme.
============================================================= */

/* Generic page wrapper */
.woo-main {
    padding: 0 0 80px;
}

/* Shop page header area */
.shop-page-header {
    padding-top: 60px;
}

/* ---- Product grid ---- */
ul.products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 40px 0 0;
}

@media (max-width: 1024px) { ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { ul.products { grid-template-columns: 1fr; } }

ul.products li.product {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

ul.products li.product:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 0 20px var(--shadow-orange);
    transform: translateY(-4px);
}

ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2.woocommerce-loop-category__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-light);
    padding: 16px 16px 4px;
    margin: 0;
}

ul.products li.product .price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    color: var(--orange-primary);
    padding: 0 16px 12px;
    display: block;
}

ul.products li.product .price del { color: var(--text-dark); margin-right: 6px; }

ul.products li.product .button,
ul.products li.product .add_to_cart_button {
    display: block;
    margin: auto 16px 16px;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

ul.products li.product .button:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
}

ul.products li.product .onsale {
    background: var(--orange-primary);
    color: var(--bg-dark);
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 4px 10px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

/* ---- Single product ---- */
.single-product div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0 80px;
}

@media (max-width: 768px) {
    .single-product div.product { grid-template-columns: 1fr; }
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    border: 1px solid var(--border-sepia);
}

.single-product .entry-summary .product_title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.single-product .entry-summary .price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
    display: block;
}

.single-product .entry-summary .woocommerce-product-details__short-description {
    font-family: 'Special Elite', cursive;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.single-product .entry-summary .cart .qty {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    color: var(--text-light);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    padding: 10px 14px;
    width: 70px;
    margin-right: 12px;
}

.single-product .entry-summary .single_add_to_cart_button {
    background: var(--orange-primary);
    color: var(--bg-dark);
    border: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.single-product .entry-summary .single_add_to_cart_button:hover {
    background: var(--orange-dark);
}

/* Product tabs */
.woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-sepia);
    padding: 0;
    margin: 40px 0 0;
}

.woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    padding: 0;
}

.woocommerce-tabs ul.tabs li a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--orange-primary);
    border-bottom-color: var(--orange-primary);
}

.woocommerce-tabs .panel {
    padding: 24px 0;
    font-family: 'Special Elite', cursive;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Cart page ---- */
.cart-page { padding-top: 120px; }

.alfa-cart-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Special Elite', cursive;
    color: var(--text-light);
}

.alfa-cart-table thead tr {
    border-bottom: 2px solid var(--border-sepia);
}

.alfa-cart-table thead th {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 12px 16px;
    text-align: left;
}

.alfa-cart-table tbody tr {
    border-bottom: 1px solid var(--border-sepia);
}

.alfa-cart-table tbody td {
    padding: 16px;
    vertical-align: middle;
}

.alfa-cart-table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--border-sepia);
}

.alfa-cart-table .product-name a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.alfa-cart-table .product-name a:hover { color: var(--orange-primary); }

.alfa-cart-table .product-price,
.alfa-cart-table .product-subtotal { color: var(--orange-primary); font-family: 'Bebas Neue', cursive; font-size: 1.1rem; }

.alfa-cart-table .product-remove a {
    color: var(--text-muted);
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
}

.alfa-cart-table .product-remove a:hover { color: var(--orange-primary); }

.alfa-cart-table .actions {
    padding: 20px 0;
}

.alfa-cart-table .actions .coupon {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}

.alfa-cart-table .actions .coupon input {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    padding: 10px 14px;
}

.cart-collaterals { margin-top: 40px; }

.cart_totals h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cart_totals table {
    width: 100%;
    max-width: 420px;
    border-collapse: collapse;
}

.cart_totals table tr { border-bottom: 1px solid var(--border-sepia); }

.cart_totals table th,
.cart_totals table td {
    padding: 12px 0;
    font-family: 'Special Elite', cursive;
    color: var(--text-muted);
}

.cart_totals table .order-total th,
.cart_totals table .order-total td {
    color: var(--orange-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.wc-proceed-to-checkout .checkout-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    background: var(--orange-primary);
    color: var(--bg-dark);
    border: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.wc-proceed-to-checkout .checkout-button:hover { background: var(--orange-dark); }

/* ---- Checkout ---- */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 40px;
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-sepia) !important;
    color: var(--text-light) !important;
    font-family: 'Special Elite', cursive !important;
    border-radius: 0 !important;
}

.woocommerce-checkout #payment {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    padding: 24px;
    margin-top: 20px;
}

.woocommerce-checkout #payment .payment_methods label { color: var(--text-light); }

#place_order {
    background: var(--orange-primary) !important;
    color: var(--bg-dark) !important;
    border: none !important;
    font-family: 'Bebas Neue', cursive !important;
    font-size: 1.2rem !important;
    letter-spacing: 2px !important;
    padding: 14px 36px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    border-radius: 0 !important;
}

#place_order:hover { background: var(--orange-dark) !important; }

/* ---- My Account ---- */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 22%;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 75%;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; }
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    border: 1px solid var(--border-sepia);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-sepia);
    transition: var(--transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--orange-primary);
    background: rgba(255,107,53,0.05);
}

/* ---- WooCommerce notices ---- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 3px solid var(--orange-primary);
    background: var(--bg-card);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    padding: 16px 20px;
    margin-bottom: 24px;
    list-style: none;
}

.woocommerce-error { border-top-color: #e74c3c; }

/* ---- Results/ordering bar ---- */
.woocommerce-result-count,
.woocommerce-ordering {
    font-family: 'Special Elite', cursive;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.woocommerce-ordering select {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    color: var(--text-light);
    font-family: 'Special Elite', cursive;
    padding: 8px 12px;
}

/* ---- Pagination ---- */
.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 40px 0 0;
    justify-content: center;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 8px 14px;
    border: 1px solid var(--border-sepia);
    color: var(--text-muted);
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    transition: var(--transition);
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

/* ---- Generic page ---- */
.generic-page { padding-top: 120px; padding-bottom: 80px; }
.generic-page-content { max-width: 760px; margin: 40px auto 0; }
.generic-page-content h2 { font-size: 1.6rem; margin: 32px 0 12px; color: var(--orange-accent); }
.generic-page-content p { margin-bottom: 16px; color: var(--text-muted); }

/* ---- Barber page ---- */
.barber-page-single { padding-top: 120px; }
.barber-page-photo--img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--orange-primary);
    margin: 0 auto;
    display: block;
}
.barber-page-bio { color: var(--text-muted); margin: 20px 0 28px; max-width: 540px; }

/* ---- Blog loop ---- */
.blog-loop { padding: 40px 0; }
.blog-card { padding: 28px 0; border-bottom: 1px solid var(--border-sepia); }
.blog-card h2 a { color: var(--orange-accent); font-size: 1.6rem; text-decoration: none; }
.blog-card h2 a:hover { color: var(--orange-primary); }

/* ---- Quantity input (WooCommerce) ---- */
.quantity input[type=number] {
    background: var(--bg-card);
    border: 1px solid var(--border-sepia);
    color: var(--text-light);
    font-family: 'Bebas Neue', cursive;
    padding: 10px 12px;
    width: 70px;
    border-radius: 0;
}

/* =============================================================
   COMING SOON MODAL
============================================================= */
.cs-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-modal[hidden] { display: none; }
.cs-modal.is-open  { display: flex; }

.cs-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.cs-modal-box {
    position: relative;
    z-index: 1;
    background: var(--bg-card, #1a120a);
    border: 1px solid rgba(139, 90, 60, 0.35);
    padding: 52px 64px 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: csModalIn 0.3s ease;
}

@keyframes csModalIn {
    from { opacity: 0; transform: translateY(-18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cs-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted, #888);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.cs-modal-close:hover { color: var(--orange-primary, #ff6b35); }

/* Decorative corner brackets */
.cs-modal-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--orange-primary, #ff6b35);
    border-style: solid;
    opacity: 0.65;
}
.cs-modal-corner--tl { top: -1px;    left: -1px;   border-width: 2px 0 0 2px; }
.cs-modal-corner--tr { top: -1px;    right: -1px;  border-width: 2px 2px 0 0; }
.cs-modal-corner--bl { bottom: -1px; left: -1px;   border-width: 0 0 2px 2px; }
.cs-modal-corner--br { bottom: -1px; right: -1px;  border-width: 0 2px 2px 0; }

.cs-modal-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.7rem 0;
}
.cs-modal-orn-line {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--orange-primary, #ff6b35), transparent);
    opacity: 0.6;
}
.cs-modal-orn-icon {
    width: 13px;
    height: 13px;
    color: var(--orange-primary, #ff6b35);
    filter: drop-shadow(0 0 4px var(--orange-primary, #ff6b35));
}

.cs-modal-soon {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.6rem, 8vw, 3.8rem);
    letter-spacing: 10px;
    color: var(--text-light, #f5f0eb);
    margin: 0.2rem 0 0.4rem;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.18);
}

.cs-modal-sub {
    font-family: 'Special Elite', cursive;
    font-size: 0.92rem;
    color: var(--text-muted, #888);
    letter-spacing: 1.5px;
    margin: 0;
}

/* =============================================================
   SHOP SECTION — COMING SOON PLACEHOLDER
============================================================= */
.shop-coming-soon {
    position: relative;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    padding: 52px 48px 44px;
    background: var(--bg-card, #1a120a);
    border: 1px solid rgba(139, 90, 60, 0.28);
    text-align: center;
}

.shop-cs-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--orange-primary, #ff6b35);
    border-style: solid;
    opacity: 0.6;
}
.shop-cs-corner--tl { top: -1px;    left: -1px;   border-width: 2px 0 0 2px; }
.shop-cs-corner--tr { top: -1px;    right: -1px;  border-width: 2px 2px 0 0; }
.shop-cs-corner--bl { bottom: -1px; left: -1px;   border-width: 0 0 2px 2px; }
.shop-cs-corner--br { bottom: -1px; right: -1px;  border-width: 0 2px 2px 0; }

.shop-cs-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 7vw, 3.6rem);
    letter-spacing: 10px;
    color: var(--text-light, #f5f0eb);
    margin: 0.2rem 0 0.4rem;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.shop-cs-sub {
    font-family: 'Special Elite', cursive;
    font-size: 0.92rem;
    color: var(--text-muted, #888);
    letter-spacing: 1.5px;
    margin: 0;
}
