/* ===== reservas.css ===== */
/* Estilos completos para la página de reservas - Versión optimizada */

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== HERO SECTION ===== */
.reservas-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.reservas-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/kayaks/DSC00628.JPG');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -2;
}

.reservas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 90%);
    z-index: -1;
}

.reservas-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-title span {
    color: #ff00ea;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    transition: var(--transition-smooth);
}

.scroll-link:hover {
    background: #ff00ea;
    border-color: #ff00ea;
    transform: translateY(5px);
    box-shadow: 0 10px 30px rgba(255, 0, 234, 0.5);
}

/* ===== INDICADOR DE PASOS ===== */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #a0aec0;
    transition: var(--transition-smooth);
}

.step.active .step-number {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 234, 0.3);
}

.step.completed .step-number {
    background: #10b981;
    border-color: transparent;
    color: white;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #718096;
}

.step.active .step-text {
    color: #8d0b91;
    font-weight: 600;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 15px;
}

/* ===== CONTENEDOR DE PASOS ===== */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-wrapper {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 2rem;
    color: #0a1a2f;
    margin-bottom: 10px;
}

.step-header h2 span {
    color: #ff00ea;
    font-weight: 400;
    font-size: 1.2rem;
}

.step-header p {
    color: #718096;
    font-size: 1.1rem;
}

/* ===== CALENDARIO ===== */
.calendar-wrapper {
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.calendar-nav {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calendar-nav:hover {
    background: #ff00ea;
    border-color: #ff00ea;
    color: white;
}

.calendar-month {
    font-size: 1.3rem;
    color: #0a1a2f;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #8d0b91;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
}

.calendar-day.available {
    background: #dcfce7;
    color: #166534;
    border: 2px solid #86efac;
    font-weight: 600;
}

.calendar-day.available:hover {
    background: #86efac;
    border-color: #16a34a;
    transform: scale(1.02);
}

.calendar-day.past {
    background: #e5e7eb;
    color: #6b7280;
    border: 2px solid #d1d5db;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.unavailable {
    background: #f3f4f6;
    color: #9ca3af;
    border: 2px solid #e5e7eb;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #f3e8ff;
    color: #8d0b91;
    border: 2px solid #8d0b91;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(141, 11, 145, 0.2);
    transform: scale(1.02);
}

.calendar-day.today {
    position: relative;
    font-weight: 700;
}

.today-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.6rem;
    background: #ff00ea;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 3;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
    border: none;
}

.calendar-info {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.dot.available { background: #86efac; border: 2px solid #16a34a; }
.dot.past { background: #e5e7eb; border: 2px solid #9ca3af; }
.dot.unavailable { background: #f3f4f6; border: 2px solid #d1d5db; }
.dot.selected { background: #f3e8ff; border: 2px solid #8d0b91; }
.dot.today { background: #ff00ea; border: 2px solid #ff00ea; }

/* ===== HORARIOS ===== */
.horarios-wrapper {
    margin-top: 30px;
}

.horarios-title {
    font-size: 1.2rem;
    color: #0a1a2f;
    margin-bottom: 25px;
    text-align: center;
}

.horarios-title span {
    color: #ff00ea;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.horario-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.horario-card.available:hover {
    border-color: #86efac;
    background: #f0fdf4;
    transform: translateY(-3px);
}

.horario-card.available.selected {
    border-color: #8d0b91;
    background: #f3e8ff;
}

.horario-card.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

.horario-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 20px;
}

.horario-icon {
    font-size: 2rem;
}

.horario-info h4 {
    font-size: 1.1rem;
    color: #0a1a2f;
    margin-bottom: 3px;
}

.horario-info p {
    font-size: 0.75rem;
    color: #718096;
}

.horario-check {
    font-size: 1.2rem;
    color: #8d0b91;
    margin-top: 5px;
}

/* ===== PARTICIPANTES ===== */
.participantes-wrapper {
    margin-bottom: 30px;
}

.participantes-selector {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.participantes-selector h3 {
    font-size: 1.2rem;
    color: #0a1a2f;
    margin-bottom: 20px;
}

.age-note {
    font-size: 0.8rem;
    font-weight: normal;
    color: #8d0b91;
}

.child-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.selector-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8d0b91;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quantity-btn:hover {
    background: #8d0b91;
    border-color: #8d0b91;
    color: white;
}

.selector-control input {
    width: 70px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    background: transparent;
}

.price-per-person {
    color: #718096;
}

.price-per-person span {
    color: #8d0b91;
    font-weight: 700;
}

.nombre-reserva {
    margin-bottom: 30px;
}

.nombre-reserva h3 {
    font-size: 1.2rem;
    color: #0a1a2f;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #e2e8f0;
    padding: 5px 0;
}

.input-group i {
    color: #8d0b91;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 10px 0;
    font-size: 1rem;
    background: transparent;
}

.input-group input:focus {
    outline: none;
}

.input-help {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 5px;
}

.partial-cost {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #4a5568;
}

.cost-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e2e8f0;
    font-weight: 600;
    color: #0a1a2f;
}

/* ===== EXTRAS ===== */
.extras-section-title {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.extras-section-title h3 {
    font-size: 1.3rem;
    color: #0a1a2f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.extras-section-title h3 i {
    color: #ff00ea;
}

.extras-section-title p {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 5px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.extra-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.extra-card:hover {
    border-color: #8d0b91;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(141, 11, 145, 0.15);
}

.extra-card.selected {
    border-color: #8d0b91;
    background: #f3e8ff;
}

.extra-card.coming-soon {
    cursor: default;
    opacity: 0.8;
    background: #f8f9fa;
}

.extra-card.coming-soon:hover {
    transform: none;
}

.extra-check {
    font-size: 1.3rem;
    color: #8d0b91;
}

.extra-info {
    flex: 1;
}

.extra-info h3 {
    font-size: 1.1rem;
    color: #0a1a2f;
    margin-bottom: 5px;
}

.extra-info p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.extra-price {
    font-weight: 700;
    color: #8d0b91;
    font-size: 1rem;
}

.extra-badge {
    display: inline-block;
    background: #ff00ea;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-top: 5px;
}

.extras-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.extras-summary h4 {
    font-size: 1rem;
    color: #0a1a2f;
    margin-bottom: 15px;
}

.selected-extra {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.selected-extra.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #8d0b91;
    font-weight: bold;
}

.no-extras {
    color: #a0aec0;
    text-align: center;
    padding: 10px;
}

/* ===== RESUMEN FINAL ===== */
.resumen-final {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 30px;
}

.resumen-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.resumen-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.resumen-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.resumen-divider {
    height: 2px;
    background: linear-gradient(90deg, #8d0b91, #ff00ea);
    margin: 20px 0;
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
}

.resumen-total span:last-child {
    color: #8d0b91;
}

.metodos-pago {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-self: start;
}

.metodos-pago h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pago-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2.5rem;
    color: #718096;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-confirmar {
    background: linear-gradient(45deg, #8d0b91, #ff00ea);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(255, 0, 234, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 0, 234, 0.5);
}

.pago-seguro {
    margin-top: 15px;
    color: #10b981;
    font-size: 0.9rem;
}

/* ===== BOTONES DE ACCIÓN ===== */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.btn-prev, .btn-next {
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    min-width: 140px;
    justify-content: center;
}

.btn-prev {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-prev:hover:not(:disabled) {
    background: #e2e8f0;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(45deg, #8d0b91, #ff00ea);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 234, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(255, 0, 234, 0.5);
}

.btn-next:disabled, .btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== MODAL ===== */
.modal-confirmacion {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-confirmacion.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    max-width: 400px;
    animation: modalPop 0.5s ease;
    margin: 0 20px;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #0a1a2f;
    margin-bottom: 10px;
}

.modal-resumen {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.modal-resumen p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-resumen p:last-child {
    border-bottom: none;
}

.modal-resumen span {
    color: #8d0b91;
    font-weight: 600;
}

.btn-modal {
    background: linear-gradient(45deg, #8d0b91, #ff00ea);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 234, 0.4);
}

/* ===== ACTIVIDADES NOTE ===== */
.actividades-note {
    font-size: 0.85rem;
    color: #8d0b91;
    background: #f3e8ff;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .horarios-grid, .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-indicator {
        flex-direction: column;
        gap: 15px;
    }
    .step-line {
        width: 2px;
        height: 30px;
        margin: 5px 0;
    }
    .step-wrapper {
        padding: 25px;
    }
    .horarios-grid, .extras-grid {
        grid-template-columns: 1fr;
    }
    .step-actions {
        flex-direction: column;
        gap: 15px;
    }
    .btn-prev, .btn-next {
        width: 100%;
    }
    .resumen-final {
        grid-template-columns: 1fr;
    }
    .calendar-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .step-wrapper {
        padding: 20px;
    }
    .step-header h2 {
        font-size: 1.6rem;
    }
    .extra-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SECCIÓN DE COMIDA CON PLATILLOS INDIVIDUALES ===== */
.comida-tipo-indicador {
    margin-bottom: 25px;
}

.alert-info {
    background: #e8f4fd;
    border-left: 4px solid #8d0b91;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0a1a2f;
}

.alert-info i {
    font-size: 1.2rem;
    color: #8d0b91;
}

.alert-info.desayuno {
    background: #fff9e6;
    border-left-color: #FFBF00;
}

.alert-info.desayuno i {
    color: #FFBF00;
}

.alert-info.comida {
    background: #e8f4fd;
    border-left-color: #8d0b91;
}

.alert-info.cena {
    background: #e6f7ff;
    border-left-color: #1890ff;
}

.comida-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.platillos-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platillo-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.platillo-item:hover {
    border-color: #8d0b91;
    box-shadow: 0 2px 8px rgba(141, 11, 145, 0.1);
}

.platillo-label {
    font-weight: 600;
    min-width: 100px;
    color: #2d3748;
}

.platillo-label i {
    color: #8d0b91;
    margin-right: 8px;
}

.platillo-select {
    flex: 1;
    min-width: 280px;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platillo-select:focus {
    outline: none;
    border-color: #8d0b91;
    box-shadow: 0 0 0 3px rgba(141, 11, 145, 0.1);
}

/* Menú Infantil Toggle */
.menu-infantil-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-modern input {
    display: none;
}

.checkbox-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #8d0b91;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-modern input:checked + .checkbox-circle {
    background: #8d0b91;
}

.checkbox-modern input:checked + .checkbox-circle::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-text {
    color: #2d3748;
    font-weight: 500;
}

.precio-infantil {
    background: #f0e6ff;
    padding: 5px 12px;
    border-radius: 20px;
    color: #8d0b91;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Resumen de platillos */
.platillo-resumen {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px;
    margin-top: 10px;
}

.platillo-resumen-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.platillo-resumen-item:last-child {
    border-bottom: none;
}

.platillo-resumen-item .persona {
    font-weight: 600;
    color: #8d0b91;
}

.platillo-resumen-item .platillo {
    color: #2d3748;
    text-align: right;
    max-width: 60%;
}

.selected-comida-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.selected-comida-item .comida-label {
    font-weight: 600;
    color: #2d3748;
}

.selected-comida-item .comida-value {
    color: #8d0b91;
    font-weight: 500;
}

@media (max-width: 768px) {
    .platillo-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .platillo-select {
        width: 100%;
        min-width: auto;
    }
    
    .menu-infantil-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .platillo-resumen-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .platillo-resumen-item .platillo {
        text-align: left;
        max-width: 100%;
    }
}

/* ===== CONTADOR DE SELECCIONES ===== */
.contador-selecciones {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 60px;
    border: 1px solid #e2e8f0;
}

.contador-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.1rem;
}

.contador-label {
    font-weight: 600;
    color: #2d3748;
}

.contador-valor {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8d0b91;
    min-width: 40px;
    text-align: center;
}

.contador-total {
    color: #a0aec0;
    font-weight: 500;
}

/* ===== PLATILLOS GRID (SISTEMA DE TARJETAS CON CONTADOR) ===== */
.platillos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.platillo-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.platillo-card:hover {
    border-color: #8d0b91;
    box-shadow: 0 4px 12px rgba(141, 11, 145, 0.1);
}

.platillo-card.disabled {
    opacity: 0.5;
    background: #f8f9fa;
    cursor: not-allowed;
}

.platillo-card.disabled:hover {
    border-color: #e2e8f0;
    transform: none;
}

.platillo-info {
    flex: 1;
}

.platillo-nombre {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.platillo-precio {
    font-size: 0.8rem;
    color: #8d0b91;
    font-weight: 500;
}

.platillo-controles {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platillo-contador {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d3748;
}

.btn-cantidad {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #8d0b91;
    transition: all 0.2s ease;
}

.btn-cantidad:hover:not(:disabled) {
    background: #8d0b91;
    border-color: #8d0b91;
    color: white;
}

.btn-cantidad:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== TABS PARA NIÑOS ===== */
.tabs-ninos {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.tab-btn:hover {
    color: #8d0b91;
    background: #f3e8ff;
}

.tab-btn.active {
    color: #8d0b91;
    background: #f3e8ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ===== RESUMEN MEJORADO ===== */
.resumen-platillos {
    margin-top: 15px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
}

.resumen-platillo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.resumen-platillo-item:last-child {
    border-bottom: none;
}

.resumen-platillo-nombre {
    font-weight: 500;
    color: #2d3748;
}

.resumen-platillo-cantidad {
    background: #8d0b91;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.resumen-platillo-tipo {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .contador-selecciones {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-radius: 20px;
    }
    
    .platillos-grid {
        grid-template-columns: 1fr;
    }
    
    .platillo-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tabs-ninos {
        justify-content: center;
    }
}

