/* ----------------------------------------------------
   PELUQUERÍA MAGYS - CONFIGURACIÓN DE ESTILO PREMIUM
   Theme: Oscuro y Elegante (Negro Lujoso, Acentos Dorados y Bronce)
   ---------------------------------------------------- */

:root {
    /* Paleta de Colores Lujosa */
    --bg-main: #0B0B0E;
    --bg-card: #141419;
    --bg-input: #1C1C24;
    --bg-modal: rgba(20, 20, 25, 0.95);
    
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #A6801E;
    --gold-glow: rgba(212, 175, 55, 0.12);
    --gold-glow-strong: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #A6801E 100%);
    --gold-border: rgba(212, 175, 55, 0.2);
    
    --text-main: #FFFFFF;
    --text-muted: #9E9EAE;
    --text-gold: #E5C158;
    
    /* Estados de Citas */
    --status-pending: #F59E0B;
    --status-pending-bg: rgba(245, 158, 11, 0.15);
    --status-confirmed: #3B82F6;
    --status-confirmed-bg: rgba(59, 130, 246, 0.15);
    --status-completed: #10B981;
    --status-completed-bg: rgba(16, 185, 129, 0.15);
    --status-canceled: #EF4444;
    --status-canceled-bg: rgba(239, 68, 68, 0.15);
    
    /* Fuentes */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', Helvetica, Arial, sans-serif;
    
    /* Efectos & Animaciones */
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --gold-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(20, 20, 25, 0.7);
    --glass-blur: blur(12px);
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ----------------------------------------------------
   ESTILOS GENERALES Y RESETS
   ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-main);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------------------------------
   BOTONES E INPUTS
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background: var(--gold-glow);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.4);
    color: #FFFFFF;
}

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

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Controls */
.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 8px 0;
    background: rgba(11, 11, 14, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.main-header.scrolled .header-container {
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-scissors {
    color: var(--gold-primary);
    font-size: 1.5rem;
    transform: rotate(-30deg);
    transition: var(--transition);
}

.logo:hover .logo-scissors {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Opening Status Badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.status-badge.open {
    color: #10B981;
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.status-badge.closed {
    color: #EF4444;
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.status-badge.open .status-dot {
    background-color: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: pulse 1.8s infinite;
}

.status-badge.closed .status-dot {
    background-color: #EF4444;
    box-shadow: 0 0 8px #EF4444;
}

/* Server Status Badge */
.server-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.server-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.server-badge.online {
    color: #10B981;
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.server-badge.demo {
    color: #F59E0B;
    background-color: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.server-badge.offline {
    color: #EF4444;
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.server-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.server-badge.online .server-badge-dot {
    background-color: #10B981;
    box-shadow: 0 0 6px #10B981;
    animation: pulse 1.8s infinite;
}

.server-badge.demo .server-badge-dot {
    background-color: #F59E0B;
    box-shadow: 0 0 6px #F59E0B;
    animation: pulse 1.8s infinite;
}

.server-badge.offline .server-badge-dot {
    background-color: #EF4444;
    box-shadow: 0 0 6px #EF4444;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 0;
    padding-top: 117%; /* fallback para aspect-ratio: 0.85 */
}

.visual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gold-border);
    box-shadow: var(--box-shadow);
    background-color: var(--bg-card);
    transition: var(--transition);
}

.visual-frame:hover .visual-img {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

/* Logo variant styles */
.visual-frame-logo {
    height: 0;
    padding-top: 100%; /* fallback para aspect-ratio: 1 */
    background: #121212;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gold-primary);
    display: block;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    box-shadow: var(--box-shadow), 0 0 40px rgba(212, 175, 55, 0.25);
}

.visual-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: none;
    background: transparent;
    filter: none;
    padding: 0;
}

.visual-frame-logo:hover .visual-logo {
    transform: scale(1.05);
    filter: none;
}

.visual-card {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--gold-border);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--box-shadow);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.visual-decor-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--gold-primary);
    border-right: 3px solid var(--gold-primary);
    border-radius: 0 var(--border-radius-lg) 0 0;
    pointer-events: none;
    z-index: -1;
}

.visual-decor-2 {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* ----------------------------------------------------
   PROMOTION BANNER
   ---------------------------------------------------- */
.promo-banner {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, rgba(197, 168, 128, 0.1) 50%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 20px 0;
}

.promo-container {
    display: flex;
    justify-content: center;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    text-align: center;
}

.promo-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    animation: wave 2.5s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}

/* ----------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px auto 0;
    border-radius: var(--border-radius-sm);
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, var(--gold-glow) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--gold-shadow);
}

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

.service-tag-promo {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: #000000;
    border-color: var(--gold-primary);
    transform: scale(1.1);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    flex-grow: 1;
    min-height: 75px;
}

.service-disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-gold);
    font-style: italic;
    font-weight: 500;
    opacity: 0.9;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.price-original {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-promo {
    font-size: 2.2rem;
    color: var(--gold-primary);
    font-weight: 700;
    font-family: var(--font-serif);
}

.service-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    width: 100%;
    justify-content: center;
}

.service-meta i {
    color: var(--gold-primary);
}

/* ----------------------------------------------------
   STYLIST SECTION
   ---------------------------------------------------- */
.stylist-section {
    padding: 100px 0;
    background-color: #0F0F13;
}

.stylist-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.stylist-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.stylist-visual {
    position: relative;
    width: 100%;
}

.stylist-img-container {
    width: 100%;
    height: 260px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gold-border);
    overflow: hidden;
    background-color: var(--bg-main);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.stylist-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--gold-primary);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
}

.stylist-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
}

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

.stylist-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.stylist-role {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.stylist-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.stylist-stars i {
    color: var(--gold-primary);
    font-size: 0.95rem;
}

.stars-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 8px;
}

.stylist-bio {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.stylist-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stylist-features .tag {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stylist-features .tag i {
    color: var(--gold-primary);
}

/* ----------------------------------------------------
   TESTIMONIALS / REVIEWS SECTION
   ---------------------------------------------------- */
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--text-main);
}

.review-client {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.client-tag {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

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

.carousel-btn:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: var(--gold-primary);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background-color: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: #0F0F13;
}

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

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--gold-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-text span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: #000000;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Simulated Map */
.contact-map-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-wrapper {
    height: 350px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gold-border);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.mock-map {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, #1c1d24 0%, #0d0e12 100%);
    position: relative;
}

/* Decorative map grid lines using linear-gradients */
.mock-map::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Simulated streets */
.mock-map::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(transparent 100px, rgba(255,255,255,0.05) 100px, rgba(255,255,255,0.05) 115px, transparent 115px),
        linear-gradient(90deg, transparent 200px, rgba(255,255,255,0.05) 200px, rgba(255,255,255,0.05) 215px, transparent 215px);
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 25, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--gold-primary);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    width: 280px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.map-pin {
    font-size: 2.2rem;
    color: var(--gold-primary);
    display: inline-block;
    animation: bounce 2s infinite;
    margin-bottom: 8px;
}

.map-label {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.map-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.main-footer {
    background-color: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-access-wrapper {
    display: inline-block;
}

.btn-admin-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-admin-link:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* ----------------------------------------------------
   MODALS AND WIZARDS
   ---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px;
}

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

.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: var(--gold-shadow);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Form Step Wizard Progress Bar */
.step-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.step-line {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-input);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-dot.active {
    background-color: #000000;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
}

.step-dot.completed {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000000;
}

.step-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.step-dot.active .step-label {
    color: var(--gold-primary);
}

/* Wizard Form Steps Visibility */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

.form-step h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-align: center;
}

.step-instruction {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* STEP 1: Service selection cards */
.step-services-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-option-card {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.service-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-check {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--gold-primary);
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.service-option-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.service-option-card input[type="radio"]:checked + .option-check {
    opacity: 1;
    transform: scale(1);
}

.service-option-card input[type="radio"]:checked ~ .option-icon {
    color: #000000;
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
}

.service-option-card input[type="radio"]:checked ~ * {
    color: var(--text-main);
}

.service-option-card input[type="radio"]:checked {
    border-color: var(--gold-primary);
}

/* Target card element based on checked status through JS class assignment, 
   but we can also do adjacent sibling selectors in CSS since input is first child! */
.service-option-card:has(input[type="radio"]:checked),
.service-option-card.active {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background-color: rgba(20, 20, 25, 0.3);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--gold-primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.option-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.option-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.text-original-cross {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.option-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* STEP 2: Calendar */
.calendar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.elegant-date-input {
    max-width: 320px;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid var(--gold-border);
}

.calendar-helper-msg {
    margin-top: 12px;
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
}

.calendar-helper-msg.success { color: #10B981; }
.calendar-helper-msg.error { color: #EF4444; }

/* STEP 3: Time Slot Grid */
.time-grid-wrapper {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 16px;
    background-color: rgba(0,0,0,0.15);
    margin-bottom: 32px;
}

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

.time-slot-btn {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 10px 4px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.time-slot-btn:hover:not(:disabled) {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.time-slot-btn.active {
    background: var(--gold-gradient);
    color: #000000;
    border-color: var(--gold-primary);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.time-slot-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.01);
    border-color: transparent;
    color: var(--text-muted);
    text-decoration: line-through;
}

.step-info-selected-date {
    text-align: center;
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* STEP 4: Personal Info Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group label i {
    color: var(--gold-primary);
    margin-right: 6px;
}

.booking-summary-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--gold-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.booking-summary-box h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.summary-list li strong {
    color: var(--text-main);
}

.summary-list li span {
    color: var(--text-main);
}

.summary-list .summary-total {
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 1.1rem;
}

.summary-list .summary-total strong {
    color: var(--text-main);
}

.summary-list .summary-total span {
    color: var(--gold-primary);
    font-weight: 700;
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
}

.step-actions button {
    min-width: 130px;
}

/* Botón toggle Promo Junio */
.btn-promo-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-promo-toggle:hover {
    border-color: var(--gold-primary);
    color: var(--text-main);
}

.btn-promo-toggle.active {
    border-color: var(--gold-primary);
    background: var(--gold-glow);
    color: var(--gold-light);
}

.promo-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-toggle-pill {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
    transition: var(--transition);
}

.promo-toggle-pill.active {
    background: var(--gold-primary);
    color: #000;
}

.promo-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 0;
    padding-left: 4px;
}

/* Tag especial para la promo 2x150 */
.service-tag-special {
    background: linear-gradient(135deg, #6B21A8, #A855F7) !important;
}


/* ----------------------------------------------------
   TICKET RECEIPT DISPLAY
   ---------------------------------------------------- */
.ticket-overlay {
    overflow-y: auto;
}

.ticket-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .ticket-container {
    transform: translateY(0) scale(1);
}

.ticket-card {
    background-color: var(--bg-card);
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold-border);
}

.ticket-header {
    background-color: rgba(20, 20, 25, 0.8);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ticket-scissors {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold-glow);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transform: rotate(-30deg);
}

.ticket-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ticket-tag {
    background-color: var(--status-completed-bg);
    color: var(--status-completed);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 30px;
    text-transform: uppercase;
}

.ticket-body {
    padding: 0 32px 32px;
    position: relative;
}

.ticket-cut-line {
    height: 20px;
    position: relative;
    margin-left: -32px;
    margin-right: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ticket-cut-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    top: 50%;
}

.ticket-cut-line.border-only {
    margin-top: 24px;
    margin-bottom: 20px;
}

/* Inside the cut lines are ticket notches */
.notch {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-main);
    z-index: 10;
    top: 0;
}

.notch.left {
    left: -10px;
    border-right: 1px solid var(--gold-border);
}

.notch.right {
    right: -10px;
    border-left: 1px solid var(--gold-border);
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    font-weight: 600;
}

.total-row {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.15rem;
}

.total-row .detail-val {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.ticket-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.ticket-notes {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 20px;
}

.ticket-notes i {
    color: var(--gold-primary);
}

.barcode {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 2px;
    opacity: 0.5;
    margin-bottom: 12px;
}

.barcode-line {
    background-color: var(--text-main);
    height: 100%;
}

.barcode-line.w-1 { width: 1px; }
.barcode-line.w-2 { width: 2px; }
.barcode-line.w-3 { width: 3px; }
.barcode-line.w-4 { width: 4px; }

.ticket-id {
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.ticket-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.ticket-actions button {
    flex: 1;
}

/* ----------------------------------------------------
   ADMINISTRATIVE DASHBOARD
   ---------------------------------------------------- */
.admin-overlay .admin-panel-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 1050px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.admin-overlay.active .admin-panel-card {
    transform: translateY(0) scale(1);
}

.admin-panel-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.admin-header-title h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.admin-header-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-panel-header .admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Stats grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--box-shadow);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.icon-blue { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.stat-icon.icon-yellow { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.stat-icon.icon-green { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.stat-icon.icon-purple { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }

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

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Filter bar */
.admin-filters-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 24px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--border-radius);
    padding: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label, .filter-search-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.filter-group label i, .filter-search-group label i {
    color: var(--gold-primary);
    margin-right: 6px;
}

.filter-search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Admin Table */
.admin-table-container {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    position: relative;
    min-height: 250px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-table th {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

.admin-table td .btn-action {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition: var(--transition);
}

.badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.badge-pendiente { background-color: var(--status-pending-bg); color: var(--status-pending); }
.badge-confirmada { background-color: var(--status-confirmed-bg); color: var(--status-confirmed); }
.badge-completada { background-color: var(--status-completed-bg); color: var(--status-completed); }
.badge-cancelada { background-color: var(--status-canceled-bg); color: var(--status-canceled); }

.text-right { text-align: right; }

.table-actions-container {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
    background-color: var(--bg-input);
    color: var(--text-muted);
}

.btn-action:hover {
    color: var(--text-main);
    border-color: var(--gold-primary);
}

.btn-action.confirm { color: #3B82F6; }
.btn-action.confirm:hover { background-color: rgba(59, 130, 246, 0.15); border-color: #3B82F6; }

.btn-action.complete { color: #10B981; }
.btn-action.complete:hover { background-color: rgba(16, 185, 129, 0.15); border-color: #10B981; }

.btn-action.cancel { color: #EF4444; }
.btn-action.cancel:hover { background-color: rgba(239, 68, 68, 0.15); border-color: #EF4444; }

.btn-action.delete { color: #6B7280; }
.btn-action.delete:hover { background-color: rgba(107, 114, 128, 0.15); border-color: #9CA3AF; color: #EF4444; }

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

.empty-state-table i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gold-border);
}

/* ----------------------------------------------------
   TOAST SYSTEM
   ---------------------------------------------------- */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
}

.toast {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold-primary);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transform: translateX(50px);
    opacity: 0;
    animation: slideIn 0.3s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: var(--transition);
}

.toast.success { border-left-color: #10B981; }
.toast.info { border-left-color: #3B82F6; }
.toast.error { border-left-color: #EF4444; }

.toast-icon {
    font-size: 1.15rem;
    margin-top: 2px;
}

.toast.success .toast-icon { color: #10B981; }
.toast.info .toast-icon { color: #3B82F6; }
.toast.error .toast-icon { color: #EF4444; }

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
}

.toast-close:hover {
    color: var(--text-main);
}

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

@keyframes slideOut {
    to { transform: translateX(100px); opacity: 0; }
}

/* ----------------------------------------------------
   RESPONSIVE STYLES
   ---------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-map-panel {
        height: auto;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Responsive Header & Navigation Drawer */
    .mobile-nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-main);
        backdrop-filter: none;
        padding: 40px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .header-actions {
        margin-right: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .service-card {
        padding: 40px 24px;
    }
    
    .stylist-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
    
    .stylist-visual {
        max-width: 250px;
        margin: 0 auto;
    }

    .stylist-img-container {
        height: 200px;
    }
    
    .stylist-stars {
        justify-content: center;
    }
    
    .stylist-features {
        justify-content: center;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-filters-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-services-options {
        grid-template-columns: 1fr;
    }
    
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modal-card {
        padding: 30px 20px;
    }
    
    .admin-panel-card {
        padding: 24px 16px !important;
    }

    .admin-panel-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .admin-header-title h2 {
        font-size: 1.6rem;
        padding-right: 35px; /* Evitar colisión con el botón cerrar */
        line-height: 1.2;
    }
    
    .admin-panel-header .admin-actions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 8px;
        width: 100%;
        margin-top: 8px;
    }
    
    .admin-panel-header .admin-actions .btn {
        width: 100%;
        padding: 10px 6px;
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }

    /* Tablas responsivas en móvil y tablet */
    .admin-table-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 680px !important; /* Evita que las columnas se aplasten */
    }
    
    .admin-table th, .admin-table td {
        padding: 12px 14px !important;
        white-space: nowrap !important; /* Previene saltos de línea feos */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons button, .hero-buttons a {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ----------------------------------------------------
   ESTILOS DE LOGIN Y CAJA (NUEVAS ADICIONES)
   ---------------------------------------------------- */
.modal-card-small {
    max-width: 420px !important;
}

.login-lock-icon, .checkout-cash-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gold-glow);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.login-lock-icon {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
}

/* Payment Method Selection Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.payment-method-option {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pm-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gold-primary);
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.payment-method-option:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.payment-method-option:has(input[type="radio"]:checked),
.payment-method-option.active {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background-color: rgba(20, 20, 25, 0.3);
}

.payment-method-option input[type="radio"]:checked + .pm-check {
    opacity: 1;
    transform: scale(1);
}

.payment-method-option input[type="radio"]:checked ~ .pm-icon {
    color: #000000;
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
}

.pm-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--gold-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.pm-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.checkout-summary-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--gold-border);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
}

.checkout-total-row span:first-child {
    font-weight: 500;
}

.checkout-total-row span:last-child {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

/* Badges de métodos de pago */
.badge-pago {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-efectivo {
    background-color: rgba(16, 185, 129, 0.1);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-tarjeta {
    background-color: rgba(139, 92, 246, 0.1);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-pendiente-pago {
    background-color: rgba(245, 158, 11, 0.1);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Custom z-index overrides for layered modals */
.checkout-overlay {
    z-index: 2100 !important;
}

.ticket-overlay {
    z-index: 2200 !important;
}

/* Payment Details Sections */
.payment-details-section {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 16px;
    margin-top: 15px;
    animation: fadeInDetails 0.3s ease-out;
}

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

.cash-input-row {
    margin-bottom: 12px;
}

.form-control-with-action {
    display: flex;
    gap: 10px;
}

.form-control-with-action input {
    flex: 1;
}

.denom-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.denominations-grid {
    display: grid;
    gap: 8px;
}

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

.coins-grid {
    grid-template-columns: repeat(4, 1fr);
}

.denom-card {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.bill-card {
    border-radius: 6px;
    border-left: 3px solid #34D399; /* Green touch for bills */
}

.bill-card:hover, .bill-card:focus-within {
    background-color: rgba(52, 211, 153, 0.05);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.15);
}

.coin-card {
    border-radius: 8px;
    border: 1.5px solid var(--gold-border);
}

.coin-card:hover, .coin-card:focus-within {
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}

.denom-card:active {
    transform: scale(0.95) !important;
    opacity: 0.85;
}

.denom-card-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.denom-qty-input {
    width: 100%;
    max-width: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-main);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 2px;
    transition: var(--transition);
}

.denom-qty-input:focus {
    border-color: var(--gold-primary);
    background-color: rgba(0, 0, 0, 0.6);
    outline: none;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Chrome, Safari, Edge, Opera: remove spinner */
.denom-qty-input::-webkit-outer-spin-button,
.denom-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.denom-qty-input[type=number] {
    -moz-appearance: textfield;
}

.change-display-box {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.change-display-box.sufficient {
    border-color: rgba(16, 185, 129, 0.3);
    background-color: rgba(16, 185, 129, 0.05);
}

.change-display-box.sufficient .change-value {
    color: #34D399;
    font-weight: 700;
}

.change-display-box.insufficient {
    border-color: rgba(239, 68, 68, 0.3);
    background-color: rgba(239, 68, 68, 0.05);
}

.change-display-box.insufficient .change-value {
    color: #F87171;
    font-weight: 700;
}

.card-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 6px;
}

.card-type-option {
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.card-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.card-type-option:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.card-type-option:has(input[type="radio"]:checked),
.card-type-option.active {
    border-color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.card-type-option input[type="radio"]:checked ~ .ct-text,
.card-type-option.active .ct-text {
    color: var(--gold-primary);
}

.ticket-overlay,
.corte-overlay {
    z-index: 2300 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-y: auto !important;
    padding: 30px 15px !important;
}

.ticket-overlay {
    z-index: 2200 !important;
}

/* Modal Close hover styling inside ticket-card */
.ticket-card .modal-close {
    transition: color 0.3s, transform 0.2s;
}
.ticket-card .modal-close:hover {
    color: var(--gold-primary) !important;
    transform: scale(1.1);
}

/* Compact design specifically for the Corte de Caja ticket to fit smaller screens (iPad/Tablets) */
#corte-ticket .ticket-header {
    padding: 20px 24px;
}
#corte-ticket .ticket-header .ticket-scissors {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
#corte-ticket .ticket-header h2 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}
#corte-ticket .ticket-body {
    padding: 0 24px 24px;
}
#corte-ticket .ticket-cut-line {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 16px;
    height: 16px;
}
#corte-ticket .ticket-cut-line.border-only {
    margin-top: 16px;
    margin-bottom: 14px;
}
#corte-ticket .ticket-details {
    gap: 10px;
}
#corte-ticket .detail-row {
    font-size: 0.88rem;
}
#corte-ticket .total-row {
    padding-top: 12px;
    margin-top: 4px;
    font-size: 1.05rem;
}
#corte-ticket .total-row .detail-val {
    font-size: 1.3rem;
}
#corte-ticket .ticket-footer {
    margin-top: 8px;
}
#corte-ticket .ticket-notes {
    margin-bottom: 14px;
    font-size: 0.72rem;
}

/* Google Reviews styles */
.map-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 6px 0 16px 0;
}

.map-rating .stars {
    color: #F59E0B;
    display: flex;
    gap: 2px;
}

.map-rating .rating-number {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.map-rating .rating-source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.google-reviews-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.google-reviews-widget:hover {
    border-color: rgba(212, 163, 89, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.reviews-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-header-left i {
    color: #4285F4;
    font-size: 1.25rem;
}

.reviews-header-left strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-main);
}

.reviews-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-header-right .stars {
    color: #F59E0B;
    font-size: 0.85rem;
}

.reviews-header-right strong {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.reviews-list-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item-mini {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.review-item-mini:not(:first-child) {
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.review-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.review-item-author {
    color: var(--text-main);
    font-weight: 600;
}

.review-item-date {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.reviews-footer {
    margin-top: 16px;
    text-align: center;
}

.btn-write-review {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-write-review:hover {
    color: var(--gold-primary);
    transform: translateY(-1px);
}

/* Optimización para impresión térmica y estándar */
@media print {
    body * {
        visibility: hidden !important;
    }
    #ticket-modal.active, #ticket-modal.active * ,
    #corte-modal.active, #corte-modal.active * {
        visibility: visible !important;
    }
    #ticket-modal.active,
    #corte-modal.active {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 99999 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .ticket-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    .ticket-card {
        background: #ffffff !important;
        color: #000000 !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .ticket-actions, .modal-close {
        display: none !important;
    }
    .ticket-header, .ticket-body, .ticket-footer {
        background: #ffffff !important;
        color: #000000 !important;
    }
    .detail-label, .ticket-notes, .ticket-id {
        color: #555555 !important;
    }
    .detail-val, .text-gold {
        color: #000000 !important;
    }
    .barcode-line {
        background-color: #000000 !important;
    }
    .notch {
        display: none !important;
    }
    .ticket-cut-line::before {
        border-top: 1px dashed #000000 !important;
    }
}


