﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

.modal, .cart-modal, .checkout-modal, .order-success-modal { display: none !important; }
.modal.active, .cart-modal.active, .checkout-modal.active, .order-success-modal.active { display: flex !important; }

:root {
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #8B7020;
    --copper: #B87333;
    --copper-light: #DA9F5B;
    --bronze: #CD7F32;
    
    --bg-dark: #12100E;
    --bg-card: #1C1917;
    --bg-card-hover: #292524;
    --bg-elevated: #3D3835;
    --bg-warm: #2A2520;
    
    --text-primary: #FAF7F2;
    --text-secondary: #D6D3D1;
    --text-muted: #A8A29E;
    --text-gold: #C9A227;
    
    --success: #4ADE80;
    --success-bg: rgba(74, 222, 128, 0.15);
    --warning: #FBBF24;
    --warning-bg: rgba(251, 191, 36, 0.15);
    --error: #F87171;
    --error-bg: rgba(248, 113, 113, 0.15);
    --info: #60A5FA;
    --info-bg: rgba(96, 165, 250, 0.15);
    
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #E8C547 50%, #C9A227 100%);
    --gradient-warm: linear-gradient(135deg, #2A2520 0%, #1C1917 100%);
    --gradient-dark: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
    
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 39, 0.72) rgba(18, 16, 14, 0.72);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(18, 16, 14, 0.72);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D8B338 0%, #B77723 100%);
    border: 2px solid rgba(18, 16, 14, 0.88);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F0CC55 0%, #C98A2E 100%);
}

*::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}

.section-tag::before {
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1s ease forwards;
}

.section-tag::after {
    transform: scaleX(0);
    transform-origin: right;
    animation: lineExpand 1s ease forwards;
}

@keyframes lineExpand {
    to { transform: scaleX(1); }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

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

.btn--secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
}

.btn--success {
    background: var(--success);
    color: var(--bg-dark);
}

.btn--warning {
    background: var(--warning);
    color: var(--bg-dark);
}

.btn--error {
    background: var(--error);
    color: var(--bg-dark);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn--lg {
    padding: 18px 44px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(18, 16, 14, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

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

.header__utility {
    display: none;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    transform-origin: left center;
}

.nav__logo .logo-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    transform-origin: 50% 50%;
}

.nav__logo.is-scroll-animated .logo-icon {
    animation: logoScissorPulse 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav__logo.is-scroll-animated span {
    animation: logoTextGlow 0.72s ease;
}

.nav__logo:hover .logo-icon,
.nav__logo:focus-visible .logo-icon,
.footer__logo:hover svg,
.footer__logo:focus-visible svg {
    animation: logoScissorPulse 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav__logo:hover span,
.nav__logo:focus-visible span,
.footer__logo:hover span,
.footer__logo:focus-visible span {
    animation: logoTextGlow 0.72s ease;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__menu-admin {
    display: none;
}

.nav__menu-close-item {
    display: none;
}

.nav__link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

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

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

.nav__cta {
    padding: 12px 28px;
    order: 2;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav__branch-slot {
    display: none;
}

.nav__admin-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
    order: 1;
}

.nav__admin-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    color: var(--gold);
}

.nav__admin-link svg {
    width: 20px;
    height: 20px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav__gooey {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920&h=1080&fit=crop') center/cover no-repeat;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 16, 14, 0.95) 0%, rgba(18, 16, 14, 0.75) 50%, rgba(18, 16, 14, 0.9) 100%);
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(18, 16, 14, 0.4) 100%);
    pointer-events: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero__texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 120px 0;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero__badge svg {
    width: 18px;
    height: 18px;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
}

.hero__title-word {
    display: inline-block;
    overflow: hidden;
}

.hero__title-word--accent {
    color: var(--gold);
    font-style: italic;
}

.hero__title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
    transform-origin: bottom;
}

.hero__title .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__cta-primary {
    min-width: 220px;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__stat {
    text-align: center;
    padding: 0 32px;
}

.hero__stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero__stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero__info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 24px;
    height: 24px;
}

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

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

.servicios {
    padding: 92px 0;
    position: relative;
    background: var(--bg-dark);
}

.servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-dark);
    pointer-events: none;
}

.servicios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 16px;
}

.servicio-card {
    position: relative;
    background: var(--gradient-warm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.servicio-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servicio-card.is-selected {
    border-color: rgba(201, 162, 39, 0.55);
    background: linear-gradient(145deg, rgba(34, 29, 22, 0.98), rgba(68, 52, 17, 0.36));
    box-shadow: 0 18px 42px rgba(201, 162, 39, 0.16), inset 0 0 0 1px rgba(248, 240, 223, 0.06);
}

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

.servicio-card.is-selected::before {
    opacity: 1;
}

.servicio-card.is-selected::after {
    content: 'Seleccionado';
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.16);
    border: 1px solid rgba(201, 162, 39, 0.36);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.servicio-card--featured {
    border-color: rgba(201, 162, 39, 0.4);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 162, 39, 0.08) 100%);
}

.servicio-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 11px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.servicio-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.servicio-card:hover .servicio-card__icon {
    background: var(--gradient-gold);
    border-color: transparent;
    transform: scale(1.06);
}

.servicio-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    transition: var(--transition);
}

.servicio-card:hover .servicio-card__icon svg {
    color: var(--bg-dark);
}

.servicio-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.servicio-card__desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.55;
}

.servicio-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.servicio-card__precio {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
}

.servicio-card__tiempo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.servicio-card__tiempo svg {
    width: 14px;
    height: 14px;
}

.servicio-card__btn {
    width: 100%;
    padding: 11px 12px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.servicio-card__btn:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
}

.servicio-card__btn.selected {
    background: rgba(201, 162, 39, 0.18);
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(248, 240, 223, 0.05);
}

.catalogo {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.catalogo__filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.catalogo__smart {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 220px;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 34px;
}

.catalogo__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.catalogo__search svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.catalogo__search input,
.catalogo__sort {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.catalogo__sort {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.native-select-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.select-enhanced {
    position: relative;
    width: 100%;
    z-index: 12;
}

.catalogo__toolbar .select-enhanced,
.catalogo__sort + .select-enhanced {
    min-width: 220px;
}

.select-enhanced.is-open {
    z-index: 70;
}

.select-enhanced__button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.98), rgba(18, 15, 13, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font: 600 14px 'Outfit', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catalogo__toolbar .select-enhanced__button,
.catalogo__sort + .select-enhanced .select-enhanced__button {
    border-radius: 999px;
}

.select-enhanced__button:hover,
.select-enhanced.is-open .select-enhanced__button {
    border-color: rgba(201, 162, 39, 0.75);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.select-enhanced__button svg {
    width: 17px;
    height: 17px;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.select-enhanced.is-open .select-enhanced__button svg {
    transform: rotate(180deg);
}

.select-enhanced__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    max-height: 250px;
    overflow: auto;
    padding: 8px;
    background: rgba(18, 15, 13, 0.98);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    z-index: 99999;
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 39, 0.72) rgba(18, 16, 14, 0.72);
}

.select-enhanced__menu::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.select-enhanced__menu::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.select-enhanced.is-open .select-enhanced__menu,
.select-enhanced__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.select-enhanced__option {
    width: 100%;
    display: block;
    padding: 11px 12px;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--text-secondary);
    font: 600 14px 'Outfit', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.select-enhanced__option:hover,
.select-enhanced__option.is-selected {
    background: rgba(201, 162, 39, 0.16);
    color: var(--text-primary);
}

.catalogo__filter {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.catalogo__filter.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
}

.catalogo__compare-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    margin-bottom: 40px;
    animation: slideDown 0.3s ease;
}

.catalogo__compare-bar.active {
    display: flex;
}

.catalogo__compare-bar > span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gold);
}

.compare__products {
    display: flex;
    gap: 12px;
}

.compare__product {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-dark);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.compare__product button {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    padding: 0;
    display: flex;
}

.compare__product button:hover {
    color: var(--text-primary);
}

.btn--small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--small i {
    width: 14px;
    height: 14px;
}

.compare__clear {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 12px;
}

.compare__clear:hover {
    color: var(--error);
}

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

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

.catalogo__empty {
    grid-column: 1 / -1;
    padding: 44px 20px;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
}

.catalogo__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.catalogo__pager button {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: var(--text-secondary);
    cursor: pointer;
}

.catalogo__pager button.active,
.catalogo__pager button:hover:not(:disabled) {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
}

.catalogo__pager button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card.hidden {
    display: none;
}

.product-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.product-card__compare {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 16, 14, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.product-card__compare:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.product-card__compare.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

/* El comparador no aporta al flujo real de compra; se oculta para limpiar la tienda. */
.catalogo__compare-bar,
.product-card__compare {
    display: none !important;
}

.product-card__image--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.16), rgba(42, 37, 32, 0.95));
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-form {
    max-width: 820px;
    margin: 52px auto 0;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(135deg, rgba(42, 37, 32, 0.96), rgba(18, 16, 14, 0.96)),
        var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.review-form h3 {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    text-align: center;
}

.review-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    align-items: stretch;
}

.review-form textarea,
.review-form input,
.review-form select {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    box-sizing: border-box;
    background: rgba(18, 16, 14, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    line-height: 1.2;
}

.review-form input:not([type="range"]):not([type="file"]),
.review-form select {
    height: 48px;
}

.review-rating-control,
.review-field,
.review-file-field {
    width: 100%;
    min-height: 72px;
    padding: 14px 16px;
    background: rgba(18, 16, 14, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    color: var(--text-primary);
}

.review-field {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 10px 14px;
}

.review-field > label {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.review-field .select-enhanced__button {
    min-height: 34px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.review-rating-control {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.review-rating-control label,
.review-field > label,
.review-file-field span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.review-rating-control__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 12px;
    align-items: center;
}

.review-rating-control input[type="range"] {
    padding: 0;
    accent-color: var(--gold);
}

.review-rating-control input[type="number"] {
    padding: 9px 10px;
    text-align: center;
}

.review-rating-control span {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.review-file-field {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "title action"
        "hint action";
    gap: 2px 12px;
    align-items: center;
    cursor: pointer;
}

.review-file-field input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.review-file-field__title {
    grid-area: title;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-file-field__action {
    grid-area: action;
    padding: 8px 15px;
    border-radius: 11px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-size: 12px;
    line-height: 1;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.review-file-field small {
    grid-area: hint;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.review-form button {
    margin-top: 22px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    min-width: 238px;
}

.product-card__compare i {
    width: 18px;
    height: 18px;
}

.product-card__info {
    padding: 24px;
}

.product-card__brand {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper);
}

.product-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 8px 0 16px;
    color: var(--text-primary);
}

.product-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.product-card__specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.35;
}

.product-card__specs i {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex: 0 0 auto;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.barberos {
    padding: 120px 0;
    background: var(--bg-card);
    position: relative;
}

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

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

.barbero-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.barbero-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.barbero-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.barbero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(30%);
}

.barbero-card:hover .barbero-card__image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.barbero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 16, 14, 0.95) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.barbero-card:hover .barbero-card__overlay {
    opacity: 1;
}

.barbero-card__reserve {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.barbero-card__reserve:hover {
    transform: scale(1.05);
}

.barbero-card__reserve svg {
    width: 18px;
    height: 18px;
}

.barbero-card__info {
    padding: 24px;
    text-align: center;
}

.barbero-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.barbero-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.barbero-card__rating svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
    transform-origin: center;
}

.barbero-card__rating span {
    margin-left: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    transform-origin: left center;
}

.barbero-card:hover .barbero-card__rating svg,
.barbero-card__rating:hover svg {
    animation: starTwinkle 0.85s ease both;
}

.barbero-card:hover .barbero-card__rating svg:nth-child(2),
.barbero-card__rating:hover svg:nth-child(2) {
    animation-delay: 0.06s;
}

.barbero-card:hover .barbero-card__rating svg:nth-child(3),
.barbero-card__rating:hover svg:nth-child(3) {
    animation-delay: 0.12s;
}

.barbero-card:hover .barbero-card__rating svg:nth-child(4),
.barbero-card__rating:hover svg:nth-child(4) {
    animation-delay: 0.18s;
}

.barbero-card:hover .barbero-card__rating svg:nth-child(5),
.barbero-card__rating:hover svg:nth-child(5) {
    animation-delay: 0.24s;
}

.barbero-card:hover .barbero-card__rating span,
.barbero-card__rating:hover span {
    animation: ratingCountPop 0.85s ease both;
}

.barbero-card__experience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.barbero-card__experience svg {
    width: 16px;
    height: 16px;
    color: var(--copper);
}

.barbero-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 6px 14px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 20px;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.barbero-card__price {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
}

.barbero-card__price strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

@keyframes starTwinkle {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0));
    }
    45% {
        transform: scale(1.28) rotate(-8deg);
        filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.6));
    }
}

@keyframes ratingCountPop {
    0%,
    100% {
        transform: scale(1);
        color: var(--text-secondary);
    }
    45% {
        transform: scale(1.08);
        color: var(--gold);
    }
}

.agenda {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.agenda__wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.agenda__summary {
    position: sticky;
    top: 100px;
    background: var(--gradient-warm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 28px;
}

.agenda__summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

.agenda__summary-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}

.agenda__summary-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.agenda__summary-empty p {
    font-size: 14px;
}

.agenda__summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.agenda__summary-items::-webkit-scrollbar {
    width: 4px;
}

.agenda__summary-items::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 4px;
}

.agenda__summary-items::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.summary-item:hover {
    background: var(--bg-card-hover);
}

.summary-item__info {
    display: flex;
    flex-direction: column;
}

.summary-item__name {
    font-weight: 500;
    font-size: 14px;
}

.summary-item__price {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.summary-item__remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition);
}

.summary-item__remove:hover {
    background: var(--error-bg);
    color: var(--error);
}

.summary-item__remove svg {
    width: 18px;
    height: 18px;
}

.agenda__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.total-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.agenda__form {
    background: var(--gradient-warm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 36px;
}

.form-section {
    margin-bottom: 32px;
}

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

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.form-section h4 svg {
    width: 20px;
    height: 20px;
}

.date-picker {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 24px;
}

.date-picker__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.date-picker__header span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.date-picker__nav {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.date-picker__nav:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
}

.date-picker__nav svg {
    width: 20px;
    height: 20px;
}

.date-picker__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.date-picker__weekdays span {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.day:hover:not(.day--disabled):not(.day--selected) {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
}

.day--other {
    color: var(--text-muted);
}

.day--today {
    border: 2px solid var(--gold);
}

.day--selected {
    background: var(--gradient-gold) !important;
    color: var(--bg-dark) !important;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.day--disabled {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover:not(.time-slot--disabled) {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.time-slot--selected {
    background: var(--gradient-gold) !important;
    border-color: transparent !important;
    color: var(--bg-dark) !important;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.time-slot--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition);
}

.form-group .form-input:focus ~ .form-label,
.form-group .form-input:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%);
    left: 14px;
    font-size: 11px;
    background: var(--bg-card);
    padding: 0 6px;
    color: var(--gold);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 12px;
    margin-top: 8px;
    min-height: 18px;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.checkbox-item.is-highlighted {
    border-color: rgba(201, 162, 39, 0.85);
    background: rgba(201, 162, 39, 0.12);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}

.checkbox-item.is-suggested {
    border-color: rgba(201, 162, 39, 0.42);
    background: rgba(201, 162, 39, 0.07);
}

.checkbox-item.is-muted-by-barber {
    opacity: 0.46;
}

.checkbox-item.is-muted-by-barber:hover,
.checkbox-item.is-muted-by-barber:has(input:checked) {
    opacity: 1;
}

.checkbox-item input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    border-radius: 3px;
    transform: scale(0);
    transition: var(--transition);
}

.checkbox-item input:checked ~ .checkbox-custom {
    border-color: var(--gold);
}

.checkbox-item input:checked ~ .checkbox-custom::after {
    transform: scale(1);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.service-suggestion-badge {
    display: inline-flex;
    margin-left: 8px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.16);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.barber-service-suggestions {
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(201, 162, 39, 0.07);
    color: var(--text-secondary);
    font-size: 13px;
}

.barber-service-suggestions strong {
    display: block;
    color: var(--gold);
    margin-bottom: 4px;
}

.barber-service-suggestions span {
    display: block;
    line-height: 1.5;
}

.galeria {
    padding: 120px 0;
    background: var(--bg-card);
}

.galeria__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.galeria__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(20%);
}

.galeria__item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.galeria__item--tall {
    grid-row: span 2;
}

.galeria__item--wide {
    grid-column: span 2;
}

.galeria__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 16, 14, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.galeria__item:hover .galeria__overlay {
    opacity: 1;
}

.galeria__overlay span {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.resenas {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

.resenas__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.resenas__stat {
    text-align: center;
    padding: 24px 40px;
    background: var(--gradient-warm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.resenas__stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.resenas__stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.resenas__slider-container {
    position: relative;
    overflow: hidden;
    padding: 14px 4px 18px;
}

.resenas__slider {
    display: flex;
    align-items: stretch;
    gap: clamp(16px, 2vw, 24px);
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    will-change: transform;
}

.resena-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    min-height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gradient-warm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: clamp(22px, 2vw, 28px);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    transform: translateZ(0);
}

.resena-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .resena-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .resena-card {
        /* 1 card por fila en móviles */
        flex: 0 0 100%;
        min-width: 0;
    }
}

.resena-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.resena-card__client {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.resena-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.resena-card__info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
    overflow-wrap: anywhere;
}

.resena-card__info span {
    color: var(--text-muted);
    font-size: 13px;
}

.resena-card__stars {
    display: flex;
    flex-shrink: 0;
    gap: 4px;
}

.resena-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.resena-card__text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    overflow-wrap: anywhere;
}

.resena-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.resena-card__barbero {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.resena-card__barbero img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.resena-card__date {
    font-size: 12px;
    color: var(--text-muted);
}

.resenas__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.resenas__btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.resenas__btn:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
}

.resenas__btn svg {
    width: 24px;
    height: 24px;
}

.resenas__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.resenas__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-elevated);
    cursor: pointer;
    transition: var(--transition);
}

.resenas__dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

.contacto {
    padding: 120px 0;
    background: var(--bg-card);
    overflow: hidden;
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contacto__info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.contacto__info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contacto__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contacto__item {
    display: flex;
    gap: 20px;
}

.contacto__item svg {
    width: 24px;
    height: 24px;
    color: var(--copper);
    flex-shrink: 0;
    margin-top: 2px;
}

.contacto__item strong {
    display: block;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contacto__item span {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contacto__social {
    display: flex;
    gap: 14px;
}

.contacto__social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contacto__social a:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--bg-dark);
    transform: translateY(-4px);
}

.contacto__social a:hover svg,
.contacto__social a:focus-visible svg,
.contacto__social a:hover i,
.contacto__social a:focus-visible i,
.footer__social a:hover svg,
.footer__social a:focus-visible svg,
.footer__social a:hover i,
.footer__social a:focus-visible i,
.footer__social a:hover,
.footer__social a:focus-visible,
.brand-social:hover,
.brand-social:focus-visible {
    animation: logoScissorPulse 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contacto__social svg {
    width: 22px;
    height: 22px;
}

.brand-social {
    font: 800 20px/1 'Outfit', sans-serif;
    text-decoration: none;
}

.contacto__social i[data-lucide="facebook"]:empty::before,
.social-link i[data-lucide="facebook"]:empty::before { content: "f"; font: 700 20px/1 'Outfit', sans-serif; }
.contacto__social i[data-lucide="instagram"]:empty::before,
.social-link i[data-lucide="instagram"]:empty::before { content: "◎"; font: 700 20px/1 'Outfit', sans-serif; }
.contacto__social i[data-lucide="message-circle"]:empty::before,
.social-link i[data-lucide="message-circle"]:empty::before { content: "☏"; font: 700 18px/1 'Outfit', sans-serif; }
.contacto__social i[data-lucide="music-2"]:empty::before,
.contacto__social i[data-lucide="music"]:empty::before,
.social-link i[data-lucide="music-2"]:empty::before,
.social-link i[data-lucide="music"]:empty::before { content: "♪"; font: 700 22px/1 'Outfit', sans-serif; }

input[type="file"] {
    color: var(--text-secondary);
    min-height: 48px;
    padding: 8px 12px;
    background: rgba(18, 16, 14, 0.72);
    border: 1px solid rgba(248, 240, 223, 0.14);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
}

input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.contacto__map {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.contacto__info,
.contacto__item,
.contacto__social,
.contacto__map {
    opacity: 0;
    transform: translateY(26px);
}

.contacto.is-animated .contacto__info {
    animation: fadeInUp 0.72s ease both;
}

.contacto.is-animated .contacto__item {
    animation: fadeInUp 0.62s ease both;
}

.contacto.is-animated .contacto__item:nth-child(1) { animation-delay: 0.08s; }
.contacto.is-animated .contacto__item:nth-child(2) { animation-delay: 0.16s; }
.contacto.is-animated .contacto__item:nth-child(3) { animation-delay: 0.24s; }
.contacto.is-animated .contacto__item:nth-child(4) { animation-delay: 0.32s; }

.contacto.is-animated .contacto__social {
    animation: fadeInUp 0.62s ease 0.4s both;
}

.contacto.is-animated .contacto__map {
    animation: contactMapReveal 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both;
}

.contacto__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    justify-content: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer__logo svg {
    width: 32px;
    height: 32px;
}

.footer__brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 14px;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    color: var(--copper);
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.social-link svg,
.social-link i {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--gold);
    font-weight: 700;
    transition: var(--transition);
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
    color: var(--gold-light);
    text-shadow: 0 0 16px rgba(201, 162, 39, 0.42);
}

.heart-icon {
    color: var(--copper);
    width: 14px;
    height: 14px;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

.heart-icon:hover,
.footer__bottom:hover .heart-icon {
    animation: heartbeat 0.72s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes logoScissorPulse {
    0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0)); }
    38% { transform: rotate(-18deg) scale(1.12); filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.55)); }
    68% { transform: rotate(10deg) scale(1.06); }
    100% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0)); }
}

@keyframes logoTextGlow {
    0%, 100% { text-shadow: none; letter-spacing: 2px; }
    45% { text-shadow: 0 0 18px rgba(201, 162, 39, 0.55); letter-spacing: 3px; }
}

@keyframes contactMapReveal {
    from {
        opacity: 0;
        transform: translateX(34px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: var(--gradient-warm);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal__content {
    transform: scale(1) translateY(0);
}

.modal__icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-bg);
    border-radius: 50%;
    margin: 0 auto 28px;
}

.modal__icon svg {
    width: 48px;
    height: 48px;
    color: var(--success);
}

.modal__content--error .modal__icon {
    background: var(--error-bg);
}

.modal__content--error .modal__icon svg {
    color: var(--error);
}

.modal__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal__content p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.modal__details {
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 28px;
    text-align: left;
}

.modal__details p {
    margin-bottom: 10px;
    font-size: 14px;
}

.modal__details p:last-child {
    margin-bottom: 0;
}

.modal__details strong {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .agenda__wrapper {
        grid-template-columns: 1fr;
    }

    .agenda__summary {
        position: static;
    }

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

    .contacto__map {
        order: -1;
    }

    .resena-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

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

@media (max-width: 1100px) {
    .header__utility {
        display: none;
        min-height: 0;
        margin-top: 0;
    }

    .header {
        padding: 14px 0;
    }

    .nav {
        gap: 14px;
    }

    .nav__logo {
        gap: 10px;
        font-size: 1.35rem;
        letter-spacing: 1.4px;
    }

    .nav__logo .logo-icon {
        width: 30px;
        height: 30px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        padding: 118px 24px 44px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1200;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu .nav__link {
        display: inline-block;
        font-size: 1.7rem;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__link {
        opacity: 1;
        transform: scale(1);
    }

    .nav__menu.active .nav__link:nth-child(1) { transition-delay: 0.1s; }
    .nav__menu.active .nav__link:nth-child(2) { transition-delay: 0.15s; }
    .nav__menu.active .nav__link:nth-child(3) { transition-delay: 0.2s; }
    .nav__menu.active .nav__link:nth-child(4) { transition-delay: 0.25s; }
    .nav__menu.active .nav__link:nth-child(5) { transition-delay: 0.3s; }
    .nav__menu.active .nav__link:nth-child(6) { transition-delay: 0.35s; }

    .nav__menu-close-item {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        list-style: none;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    .nav__menu.active .nav__menu-close-item {
        opacity: 1;
        transform: scale(1);
    }

    .nav__menu-close {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        background: var(--gold);
        color: var(--bg-dark);
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
    }

    .nav__menu-close svg {
        width: 20px;
        height: 20px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active {
        background: var(--gold);
    }

    .nav__toggle.active .hamburger-line {
        background: var(--bg-dark);
    }

    .nav__actions {
        display: flex;
        margin-left: auto;
        gap: 10px;
        max-width: none;
        flex-wrap: nowrap;
    }

    .nav__cta,
    .nav__admin-link {
        display: none;
    }

    .nav__menu-admin {
        display: block;
        width: 100%;
        list-style: none;
        text-align: center;
    }

    .nav__menu-admin .nav__link {
        display: inline-block;
        font-size: 1.7rem;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__menu-admin .nav__link {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.4s;
    }

    .nav__branch-slot {
        display: block;
        width: 100%;
        list-style: none;
        text-align: center;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__branch-slot {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.4s;
    }

    .nav__actions .branch-switcher {
        display: none;
    }

    .nav__gooey {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        z-index: 1190;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav__gooey.active {
        right: 0;
    }

    .nav__gooey.active::before {
        content: '';
        position: absolute;
        top: -100px;
        right: 20px;
        width: 250px;
        height: 250px;
        background: var(--bg-card);
        border-radius: 50%;
        filter: blur(50px);
        opacity: 0.9;
        animation: gooeyBlob 6s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .header__utility {
        display: none;
        min-height: 0;
        margin-top: 0;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        padding: 118px 24px 44px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1200;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu .nav__link {
        display: inline-block;
        font-size: 1.7rem;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__link {
        opacity: 1;
        transform: scale(1);
    }

    .nav__menu.active .nav__link:nth-child(1) { transition-delay: 0.1s; }
    .nav__menu.active .nav__link:nth-child(2) { transition-delay: 0.15s; }
    .nav__menu.active .nav__link:nth-child(3) { transition-delay: 0.2s; }
    .nav__menu.active .nav__link:nth-child(4) { transition-delay: 0.25s; }
    .nav__menu.active .nav__link:nth-child(5) { transition-delay: 0.3s; }
    .nav__menu.active .nav__link:nth-child(6) { transition-delay: 0.35s; }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active {
        background: var(--gold);
    }

    .nav__toggle.active .hamburger-line {
        background: var(--bg-dark);
    }

    .nav__actions {
        display: flex;
        margin-left: auto;
        gap: 10px;
        max-width: none;
        flex-wrap: nowrap;
    }

    .nav__cta {
        display: none;
    }

    .nav__admin-link {
        display: none;
    }

    .nav__menu-admin {
        display: block;
        width: 100%;
        list-style: none;
        text-align: center;
    }

    .nav__menu-admin .nav__link {
        display: inline-block;
        font-size: 1.7rem;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__menu-admin .nav__link {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.4s;
    }

    .nav__branch-slot {
        display: block;
        width: 100%;
        list-style: none;
        text-align: center;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav__menu.active .nav__branch-slot {
        opacity: 1;
        transform: scale(1);
        transition-delay: 0.4s;
    }

    .nav__actions .branch-switcher {
        display: none;
    }

    .nav__gooey {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        z-index: 1190;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav__gooey.active {
        right: 0;
    }

    .nav__gooey.active::before {
        content: '';
        position: absolute;
        top: -100px;
        right: 20px;
        width: 250px;
        height: 250px;
        background: var(--bg-card);
        border-radius: 50%;
        filter: blur(50px);
        opacity: 0.9;
        animation: gooeyBlob 6s ease-in-out infinite;
    }

    @keyframes gooeyBlob {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, 30px) scale(1.1); }
        50% { transform: translate(0, 60px) scale(0.9); }
        75% { transform: translate(-30px, 30px) scale(1.05); }
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
        padding: 132px 0 110px;
    }

    .hero__cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 34px;
    }

    .hero__cta .btn {
        width: min(100%, 320px);
    }

    .hero__info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 320px;
        margin: 22px auto 0;
    }

    .hero__info-item {
        justify-content: center;
        text-align: center;
        font-size: 13px;
        line-height: 1.35;
    }

    .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 8px;
        align-items: start;
        margin-bottom: 8px;
    }

    .hero__stat {
        padding: 0 6px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stat-number {
        font-size: clamp(2.5rem, 9vw, 3.2rem);
    }

    .hero__stat-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .hero__title {
        font-size: clamp(2.6rem, 12vw, 4rem);
        line-height: 1.02;
        justify-content: center;
    }

    .hero__subtitle {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.45;
        margin-bottom: 28px;
    }

    .hero__badge {
        margin-bottom: 22px;
        padding: 9px 18px;
    }

    .hero__scroll {
        display: flex;
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        justify-content: center;
        margin-top: 16px;
        gap: 4px;
        opacity: 0.82;
    }

    .hero__scroll span {
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    .hero__scroll svg {
        width: 18px;
        height: 18px;
    }

    .galeria__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .galeria__item--tall,
    .galeria__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .resena-card {
        flex: 0 0 100%;
        min-width: 0;
    }

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

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
    }

    .resenas__stats {
        gap: 20px;
    }

    .resenas__stat {
        padding: 16px 24px;
        flex: 1;
        min-width: 100px;
    }

    .resenas__stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .servicios__grid,
    .barberos__grid {
        grid-template-columns: 1fr;
    }

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

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

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

.compare-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 40px 20px;
}

.compare-modal.active {
    opacity: 1;
    visibility: visible;
}

.compare-modal__content {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.compare-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-modal__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.compare-modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.compare-modal__close:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

.compare-modal__close i {
    width: 20px;
    height: 20px;
}

.compare-modal__table {
    padding: 24px 32px 32px;
}

.compare-modal__table table {
    width: 100%;
    border-collapse: collapse;
}

.compare-modal__table th,
.compare-modal__table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-modal__table th:first-child,
.compare-modal__table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    width: 150px;
}

.compare-modal__table thead th:not(:first-child) {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-bottom: 24px;
}

.compare-modal__table tbody td:not(:first-child) {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--gold) !important;
}

.best-icon {
    color: var(--success);
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .catalogo__compare-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .compare-modal__table {
        font-size: 12px;
    }
    
    .compare-modal__table th,
    .compare-modal__table td {
        padding: 10px 6px;
    }
}

.cart-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    z-index: 1000;
}

.cart-float-btn:hover {
    transform: scale(1.1);
}

.cart-float-btn svg {
    width: 28px;
    height: 28px;
    color: var(--bg-dark);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: var(--error);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.cart-modal.active .cart-modal__content {
    animation: cartSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cart-modal__content {
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.cart-modal.active .cart-modal__content {
    transform: scale(1) translateY(0);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.cart-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal__header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.cart-modal__header h2 svg {
    width: 24px;
    height: 24px;
}

.cart-modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.cart-modal__close:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

.cart-modal__close svg {
    width: 20px;
    height: 20px;
}

.cart-modal__items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cart-empty i {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--text-muted);
}

.cart-empty p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cart-empty span {
    font-size: 14px;
    color: var(--text-muted);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cart-item__brand {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item__price {
    color: var(--gold);
    font-weight: 700;
}

.cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-item__quantity button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
    cursor: pointer;
}

.cart-item__quantity span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    padding: 8px;
}

.cart-item__remove:hover {
    color: var(--text-primary);
}

.cart-modal__footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-warm);
}

.cart-summary {
    margin-bottom: 20px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.cart-summary__total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
}

.cart-summary__total span:last-child {
    color: var(--gold);
}

.cart-continue {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 12px;
}

.cart-continue:hover {
    color: var(--gold);
}

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.checkout-modal__content {
    max-width: 600px;
    width: min(100%, 600px);
    max-height: 92vh;
    margin: 0 auto;
    padding: 40px 24px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.checkout-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.checkout-modal__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.checkout-modal__back,
.checkout-modal__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.checkout-modal__back:hover,
.checkout-modal__close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.checkout-step.active {
    color: var(--gold);
}

.checkout-step.completed {
    color: var(--success);
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid currentColor;
    border-radius: 50%;
    font-weight: 700;
}

.checkout-step.active .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.checkout-step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.checkout-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.checkout-form.hidden {
    display: none;
}

.checkout-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--gold);
}

.payment-method input {
    margin-right: 16px;
    accent-color: var(--gold);
}

.payment-method__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method__info svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.card-details {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.payment-verification {
    background: var(--bg-dark);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.payment-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-sm);
}

.payment-note strong {
    color: var(--gold);
    font-size: 14px;
}

.payment-note span {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}

.verification-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.verification-check input {
    margin-top: 3px;
    accent-color: var(--gold);
}

.verification-check.is-invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.checkout-summary {
    background: var(--bg-warm);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.checkout-summary h4 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.checkout-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary__total span:last-child {
    color: var(--gold);
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--success);
    font-size: 13px;
}

.checkout-secure svg {
    width: 16px;
    height: 16px;
}

.order-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-success-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.order-success-modal__content {
    background: var(--bg-card);
    border: 2px solid var(--success);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 480px;
    text-align: center;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.order-success-modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-success-modal__icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.order-success-modal__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--success);
    margin-bottom: 16px;
}

.order-success-modal__content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.order-details {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.order-details p {
    margin-bottom: 8px;
}

.order-details span {
    color: var(--gold);
    font-weight: 700;
}

.order-message {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cart-modal {
        align-items: flex-end;
    }
    
    .cart-modal__content {
        max-width: 100%;
        max-height: 85vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .checkout-steps {
        gap: 20px;
    }
    
    .step-label {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mejoras funcionales agregadas */
body.modal-open {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.error-message {
    display: block;
    min-height: 18px;
    margin-top: 8px;
    color: var(--error);
    font-size: 12px;
}

.form-input.is-invalid,
.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.date-picker__blank {
    width: 45px;
    height: 45px;
    margin: 4px;
}

.date-picker__date:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    text-decoration: line-through;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-line strong,
.agenda__summary-total .total-price {
    color: var(--gold);
}

.agenda__summary-total {
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    margin-top: 16px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.cart-line {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(42, 37, 32, 0.96), rgba(18, 16, 14, 0.96));
    border: 1px solid rgba(201, 162, 39, 0.16);
    border-radius: 14px;
}

.cart-line__thumb {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    color: var(--gold);
}

.cart-line__thumb svg {
    width: 24px;
    height: 24px;
}

.cart-line__main {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-line__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-line__main strong {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.25;
}

.cart-line__main span {
    color: var(--text-muted);
    font-size: 12px;
}

.cart-line__main b {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 15px;
}

.cart-line__actions {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: fit-content;
    padding: 6px;
    background: rgba(18, 16, 14, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.cart-line__actions span {
    min-width: 24px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.cart-line__actions button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    font: inherit;
}

.cart-line__actions button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.cart-line__actions button[data-cart-remove] {
    color: var(--error);
}

.cart-line__actions svg {
    width: 15px;
    height: 15px;
}

.cart-empty-state {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty-state svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.product-card__compare.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.site-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 5000;
    max-width: min(420px, calc(100% - 32px));
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
    transition: var(--transition);
}

.site-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-toast[data-type="warning"] {
    border-color: rgba(251, 191, 36, 0.55);
}

.branch-utility {
    position: fixed;
    right: 30px;
    bottom: 104px;
    z-index: 1100;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
}

.branch-utility__toggle {
    min-width: 164px;
    height: 50px;
    padding: 0 18px 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: linear-gradient(180deg, rgba(24, 21, 18, 0.96), rgba(16, 14, 12, 0.96));
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 999px;
    color: var(--gold);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.branch-utility__toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 162, 39, 0.48);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.branch-utility__toggle::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.branch-utility__toggle svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.branch-utility__toggle span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.branch-utility.active .branch-utility__toggle::after {
    transform: rotate(225deg) translateY(-1px);
    opacity: 1;
}

.branch-utility__panel {
    width: min(360px, calc(100vw - 32px));
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(28, 24, 20, 0.98), rgba(18, 16, 14, 0.98));
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    position: relative;
}

.branch-utility__panel::after {
    content: '';
    position: absolute;
    right: 32px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: rgba(18, 16, 14, 0.98);
    border-right: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
    transform: rotate(45deg);
}

.branch-utility__panel[hidden] {
    display: none;
}

.branch-utility__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.branch-utility__panel-head strong {
    font-size: 1.18rem;
    font-weight: 700;
    color: #f6f1e7;
    line-height: 1.1;
}

.branch-utility__hint {
    margin-bottom: 18px;
    color: rgba(232, 229, 224, 0.76);
    font-size: 14px;
    line-height: 1.5;
    max-width: 30ch;
}

.branch-utility__close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.branch-utility__close:hover {
    transform: rotate(90deg);
    border-color: rgba(201, 162, 39, 0.42);
    background: rgba(201, 162, 39, 0.08);
}

.branch-utility__close svg {
    width: 16px;
    height: 16px;
}

.branch-utility__slot {
    display: block;
}

.branch-switcher {
    width: min(520px, 100%);
    margin: 0 auto 22px;
    display: grid;
    gap: 8px;
    text-align: left;
}

.branch-switcher--nav {
    width: auto;
    min-width: 0;
    max-width: 176px;
    flex: 0 0 176px;
    margin: 0 0 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    align-items: center;
    gap: 6px;
    order: 3;
}

.branch-switcher--utility {
    width: min(260px, 100%);
    max-width: 260px;
    flex: none;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 8px;
}

.branch-switcher--popover {
    width: 100%;
    max-width: none;
    flex: none;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 10px;
    order: initial;
}

.branch-switcher--nav label,
.branch-switcher--popover label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.branch-switcher--nav .form-input,
.branch-switcher--popover .form-input {
    min-height: 38px;
    padding: 8px 34px 8px 12px;
}

.branch-switcher--nav .select-enhanced,
.branch-switcher--popover .select-enhanced {
    width: 100%;
}

.branch-switcher--nav .select-enhanced__button,
.branch-switcher--popover .select-enhanced__button {
    min-height: 48px;
    padding: 12px 14px 12px 16px;
    border-radius: 16px;
    background: rgba(13, 12, 10, 0.96);
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: none;
    gap: 12px;
}

.branch-switcher--nav .select-enhanced__button:hover,
.branch-switcher--nav .select-enhanced.is-open .select-enhanced__button,
.branch-switcher--popover .select-enhanced__button:hover,
.branch-switcher--popover .select-enhanced.is-open .select-enhanced__button {
    border-color: rgba(201, 162, 39, 0.42);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.08);
}

.branch-switcher--nav .select-enhanced__button span,
.branch-switcher--popover .select-enhanced__button span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.branch-switcher--nav .select-enhanced__button svg,
.branch-switcher--popover .select-enhanced__button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.branch-geo {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 14px;
    background: rgba(13, 12, 10, 0.9);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.branch-geo:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 162, 39, 0.46);
    background: rgba(201, 162, 39, 0.08);
}

.branch-switcher--menu {
    width: min(340px, 84vw);
    max-width: min(340px, 84vw);
    flex: none;
    margin: 10px auto 0;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
}

.branch-switcher--menu .select-enhanced__button {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
}

.branch-switcher--menu .select-enhanced__button span {
    font-size: 14px;
}

.branch-switcher--menu .branch-geo {
    width: 38px;
    height: 38px;
    border-radius: 14px;
}

body.nav-open .branch-utility,
body.nav-open #cart-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.branch-switcher label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .hero {
        min-height: 100svh;
        padding-top: 86px;
    }

    .branch-utility {
        top: 88px;
        right: 16px;
        bottom: auto;
    }

    .hero__content {
        padding: 148px 0 148px;
    }

    .hero__badge {
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(2.55rem, 12vw, 3.6rem);
        line-height: 0.98;
        margin-bottom: 12px;
    }

    .hero__subtitle {
        font-size: 0.98rem;
        max-width: 92%;
        margin: 0 auto 24px;
    }

    .hero__cta {
        margin-bottom: 24px;
    }

    .hero__stats {
        gap: 14px 6px;
        margin-bottom: 14px;
    }

    .hero__stat-number {
        font-size: clamp(2.2rem, 8.8vw, 2.8rem);
    }

    .hero__info {
        margin-top: 14px;
    }

    .hero__scroll {
        display: flex;
        position: absolute;
        left: 50%;
        bottom: 26px;
        transform: translateX(-50%);
        justify-content: center;
        margin: 0;
        gap: 4px;
        opacity: 0.78;
        z-index: 2;
    }

    .hero__scroll span {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .hero__scroll svg {
        width: 16px;
        height: 16px;
    }

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

    .review-form__grid {
        grid-template-columns: 1fr;
    }

    .cart-line {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .cart-line__thumb {
        width: 48px;
        height: 48px;
    }

    .cart-line__actions {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }

    .branch-utility__toggle {
        min-width: 136px;
        width: auto;
        height: 44px;
        padding: 0 14px 0 12px;
        border-radius: 999px;
        font-size: 13px;
    }

    .branch-utility__toggle span {
        display: inline;
    }

    .branch-utility__toggle svg {
        width: 14px;
        height: 14px;
    }

    .branch-utility__panel {
        width: min(320px, calc(100vw - 24px));
        padding: 16px;
    }

    .branch-utility__panel::after {
        right: 28px;
    }

    #cart-btn {
        right: 18px;
        bottom: 92px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 932px) and (orientation: landscape) {
    .hero {
        min-height: 100svh;
        padding-top: 68px;
        align-items: flex-start;
    }

    .hero__content {
        padding: 74px 0 38px;
        max-width: min(760px, 84vw);
    }

    .hero__badge {
        margin-bottom: 10px;
        padding: 7px 14px;
    }

    .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 10px;
    }

    .hero__subtitle {
        max-width: min(640px, 86vw);
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .hero__cta {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 12px;
    }

    .hero__cta .btn {
        width: auto;
        min-width: 190px;
        min-height: 46px;
    }

    .hero__stats {
        max-width: 560px;
        margin: 0 auto 8px;
    }

    .hero__stat-number {
        font-size: clamp(1.7rem, 4.4vw, 2.4rem);
    }

    .hero__stat-label {
        font-size: 10px;
    }

    .hero__info {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 620px;
        gap: 8px 16px;
        margin-top: 8px;
    }

    .hero__info-item {
        font-size: 11px;
    }

    .hero__scroll {
        display: flex;
        position: absolute;
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        justify-content: center;
        margin: 0;
        gap: 4px;
        opacity: 0.72;
        z-index: 2;
    }

    .hero__scroll span {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .hero__scroll svg {
        width: 14px;
        height: 14px;
    }

    .branch-utility {
        top: 78px;
        right: 16px;
        bottom: auto;
    }

    .branch-utility__toggle {
        min-width: 136px;
        width: auto;
        height: 44px;
        padding: 0 14px 0 12px;
        border-radius: 999px;
        font-size: 13px;
    }

    .branch-utility__toggle span {
        display: inline;
    }

    .branch-utility__toggle svg {
        width: 14px;
        height: 14px;
    }

    .branch-utility__panel {
        width: min(320px, calc(100vw - 24px));
        padding: 16px;
    }

    #cart-btn {
        right: 16px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }
}

/* Recuperacion visual del sitio */
.hero {
    min-height: 100svh;
    padding-top: 92px;
}

.hero__content {
    text-align: center;
    margin-inline: auto;
}

.hero__subtitle,
.hero__cta,
.hero__stats,
.hero__info {
    margin-inline: auto;
    justify-content: center;
}

.agenda {
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 162, 39, 0.08), transparent 34%),
        linear-gradient(180deg, #141412 0%, #111413 52%, #17120f 100%);
}

.agenda .section-header {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-inline: auto;
}

.agenda__wrapper {
    max-width: 1180px;
    margin-inline: auto;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
}

.agenda__summary,
.agenda__form {
    background: linear-gradient(145deg, rgba(35, 30, 25, 0.94), rgba(22, 21, 19, 0.98));
    border: 1px solid rgba(214, 211, 209, 0.14);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.agenda__summary {
    top: 112px;
    overflow: hidden;
}

.agenda__summary h3 {
    background: transparent;
    border-bottom-color: rgba(214, 211, 209, 0.14);
    color: var(--text-primary);
}

.agenda__summary-empty {
    background: rgba(10, 12, 12, 0.32);
    border: 1px dashed rgba(214, 211, 209, 0.16);
    border-radius: 14px;
}

.agenda__form {
    display: grid;
    gap: 20px;
    padding: 28px;
}

.form-section {
    margin: 0;
    padding: 24px;
    background: rgba(10, 12, 12, 0.28);
    border: 1px solid rgba(214, 211, 209, 0.1);
    border-radius: 18px;
}

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

.form-section h4 {
    background: transparent;
    color: var(--text-primary);
    font-size: 1.22rem;
    margin-bottom: 18px;
}

.form-section h4 svg {
    color: var(--gold);
}

.date-picker {
    background: rgba(12, 14, 14, 0.52);
    border-color: rgba(214, 211, 209, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    max-width: 560px;
    margin-inline: auto;
    padding: 18px;
}

.date-picker__header span {
    color: var(--text-primary);
    text-transform: capitalize;
}

.date-picker__nav {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(214, 211, 209, 0.18);
    border-radius: 12px;
}

.date-picker__days {
    gap: 7px;
}

.date-picker__blank,
.date-picker__date {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 10px;
}

.date-picker__blank {
    background: transparent;
    border: 1px solid transparent;
}

.date-picker__date {
    border: 1px solid rgba(214, 211, 209, 0.13);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-direction: column;
    gap: 2px;
}

.date-picker__date small {
    color: currentColor;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .72;
}

.date-picker__date:hover:not(:disabled) {
    border-color: rgba(201, 162, 39, 0.68);
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    transform: translateY(-1px);
}

.date-picker__date.selected {
    border-color: transparent;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.22);
}

.date-picker__date:disabled {
    background: rgba(255, 255, 255, 0.025);
    color: rgba(214, 211, 209, 0.25);
    border-color: rgba(214, 211, 209, 0.06);
    opacity: 1;
    cursor: not-allowed;
    text-decoration: none;
}

.date-picker__date.is-holiday {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.22);
    color: rgba(248, 190, 190, 0.72);
}

.day {
    min-height: 38px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-secondary);
}

.day:hover:not(.day--disabled):not(.day--selected) {
    border-color: rgba(201, 162, 39, 0.48);
}

.day--disabled {
    background: transparent;
}

.time-slots,
.services-checkboxes {
    gap: 12px;
}

.time-slot,
.checkbox-item,
.form-input,
.select-enhanced__button {
    background: rgba(9, 10, 10, 0.58);
    border-color: rgba(214, 211, 209, 0.16);
    box-shadow: none;
}

.time-slot {
    min-height: 54px;
    text-align: center;
}

.time-slot:disabled {
    opacity: .36;
    cursor: not-allowed;
    color: rgba(214, 211, 209, .45);
    background: rgba(255, 255, 255, .025);
    border-color: rgba(214, 211, 209, .08);
}

.checkbox-item {
    min-height: 60px;
}

.checkbox-item.is-highlighted,
.checkbox-item:has(input:checked) {
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.62);
}

.checkbox-label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-row {
    align-items: start;
}

.agenda__form .btn--full {
    max-width: 360px;
    margin-left: auto;
}

.servicio-card,
.product-card,
.barbero-card,
.resena-card {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
    .agenda__wrapper {
        grid-template-columns: 1fr;
    }

    .agenda__summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .agenda__form,
    .form-section {
        padding: 18px;
    }

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