/* ====================================================================
   NUEVO DISEÑO MODAL DE PROPUESTAS - ULTRA PREMIUM (DARK GLASS)
   ==================================================================== */

/* Modal Base - ULTRA PREMIUM */
.proposal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    /* Fondo oscuro general */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

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

.modal-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Nuevo Container Principal - LIQUID GLASS DARK */
.modal-container-new {
    background: rgba(20, 20, 20, 0.85);
    /* Dark Glass Background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 1400px;
    border-radius: 24px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        /* Sombra más profunda */
        0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Borde sutil */
    position: relative;
    height: 85vh;
    /* Fixed height for robust scrolling */
    overflow: hidden;
    animation: modalSlideInPremium 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    color: #f0f0f0;
    /* Texto base claro */
}

@keyframes modalSlideInPremium {
    from {
        transform: translateY(-60px) scale(0.92);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Botón Cerrar - ULTRA PREMIUM */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--minimal-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
    border-color: transparent;
}

/* ============ NUEVO HEADER ============ */
.modal-header-new {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 2.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.modal-header-content {
    flex: 1;
    min-width: 300px;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.modal-price-tag {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.modal-capacity,
.modal-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-capacity i,
.modal-duration i {
    color: #ffd700;
}

.modal-header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.cta-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.cta-email {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-email:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============ NUEVO BODY CON LAYOUT ============ */
/* ============ NUEVO BODY CON LAYOUT ============ */
.modal-body-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

/* Sidebar removed */
.modal-sidebar {
    display: none;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 0;
}

.sidebar-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.8rem;
}

.sidebar-card h3 i {
    color: #ffd700;
}

.sidebar-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.summary-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.summary-value {
    color: #fff;
    font-weight: 600;
}

.sidebar-cta {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta i {
    margin-right: 0.5rem;
}

/* ============ CONTENIDO PRINCIPAL CON TABS ============ */
.modal-main-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent;
    flex: 1;
    min-height: 0;
}

/* Tabs de navegación (Dark Style) */
.modal-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    scrollbar-width: thin;
    flex-shrink: 0;
}

.modal-tab {
    padding: 1.2rem 2rem;
    background: none;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.modal-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.modal-tab.active {
    color: #ffd700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.05);
}

.modal-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.3);
}

.modal-tab i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Paneles de contenido */
.modal-tab-content {
    padding: 2.5rem;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1;
    min-height: 0 !important;
    -webkit-overflow-scrolling: touch;
}

.modal-tab-panel {
    display: none;
    animation: fadeInPanel 0.4s ease;
}

.modal-tab-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos de contenido (Dark Mode) */
.modal-tab-panel h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-tab-panel h2 i {
    color: #ffd700;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2rem 0;
}

/* Grids de Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem;
}

/* Listas de Servicios */
.service-category {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-category h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.premium-list li i {
    color: #ffd700;
    margin-top: 0.2rem;
}

/* Cards de Extras */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.extra-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.extra-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.extra-card .price {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Calculadora (Dark Mode) */
.calculator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.calc-inputs {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.calc-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.calc-results {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.final-total-display {
    color: #ffd700;
}

.calc-note {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Scrollbar Personalizado */
.proposal-modal ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.proposal-modal ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.proposal-modal ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.proposal-modal ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .modal-body-new {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }

    .modal-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        top: 0;
    }

    .sidebar-card {
        position: relative;
    }

    .modal-container-new {
        max-height: none;
        height: auto;
        min-height: 100vh;
        border-radius: 0;
    }

    .proposal-modal {
        padding: 0;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    /* ========== MODAL CONTAINER ========== */
    .modal-container-new {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .modal-main-content {
        flex-direction: column;
    }

    /* ========== HIDE SIDEBAR ON MOBILE ========== */
    .modal-sidebar {
        display: none;
    }

    .modal-content-area {
        width: 100%;
        max-width: 100%;
    }

    /* ========== HEADER ========== */
    .modal-header-new {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .modal-title {
        padding: 0.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        scrollbar-width: none;
        /* Firefox */
    }

    .modal-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .modal-tab {
        min-width: auto;
        flex: 0 0 auto;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .modal-tab span {
        display: inline-block;
        margin-left: 0;
    }

    .modal-tab i {
        font-size: 1rem;
        margin-right: 0;
    }

    .modal-content-panels {
        padding: 1.5rem 1rem;
    }

    .modal-sidebar {
        padding: 1.5rem 1rem;
        max-height: none;
        /* Remove fixed height */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 1rem;
        border-radius: 10px;
    }
}

.calc-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calc-input-group label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.calc-input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: #eee;
    font-size: 0.95rem;
}

.calc-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
}

.calc-summary {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #ccc;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* --- Expanded Gastronomy Styles --- */
.gastronomy-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-category h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

/* Cost Calculator Styles */
.calculator-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid var(--minimal-gold);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calculator-card h3 {
    color: var(--minimal-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.calc-intro {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.calc-inputs {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.calc-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: var(--minimal-gold);
    background: rgba(255, 255, 255, 0.1);
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 1rem;
}

.result-row:last-child {
    margin-bottom: 0;
}

.total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.final-total-display {
    color: var(--minimal-gold);
}

.calc-note {
    text-align: center;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* ============ CATEGORY THEMES (MATCHING CARDS) ============ */

/* Juveniles - Deep Indigo/Violet */
.modal-container-new.juveniles {
    background: linear-gradient(145deg, rgba(10, 5, 20, 0.95) 0%, rgba(75, 0, 130, 0.15) 100%);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 50px rgba(75, 0, 130, 0.15);
}

.modal-container-new.juveniles .modal-price-tag {
    background: linear-gradient(135deg, #4b0082 0%, #8a2be2 100%);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

/* Quince & Bodas - Elegant Burgundy/Rose Gold */
.modal-container-new.quince_bodas {
    background: linear-gradient(145deg, rgba(20, 5, 10, 0.95) 0%, rgba(157, 23, 77, 0.15) 100%);
    border: 1px solid rgba(190, 24, 93, 0.2);
    box-shadow: 0 0 50px rgba(157, 23, 77, 0.15);
}

.modal-container-new.quince_bodas .modal-price-tag {
    background: linear-gradient(135deg, #9d174d 0%, #be185d 100%);
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3);
}

/* Adultos - Deep Amber/Bronze */
.modal-container-new.adultos {
    background: linear-gradient(145deg, rgba(20, 10, 5, 0.95) 0%, rgba(180, 83, 9, 0.15) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    box-shadow: 0 0 50px rgba(180, 83, 9, 0.15);
}

.modal-container-new.adultos .modal-price-tag {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

/* Infantiles - Deep Azure/Teal */
.modal-container-new.infantiles {
    background: linear-gradient(145deg, rgba(5, 15, 20, 0.95) 0%, rgba(3, 105, 161, 0.15) 100%);
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 0 50px rgba(3, 105, 161, 0.15);
}

.modal-container-new.infantiles .modal-price-tag {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

/* Destacados - Emerald/Forest */
.modal-container-new.destacados {
    background: linear-gradient(145deg, rgba(5, 20, 10, 0.95) 0%, rgba(4, 120, 87, 0.15) 100%);
    border: 1px solid rgba(5, 150, 105, 0.2);
    box-shadow: 0 0 50px rgba(4, 120, 87, 0.15);
}

.modal-container-new.destacados .modal-price-tag {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

/* Todas - Slate/Blue */
.modal-container-new.todas {
    background: linear-gradient(145deg, rgba(10, 15, 20, 0.95) 0%, rgba(71, 85, 105, 0.15) 100%);
    border: 1px solid rgba(100, 116, 139, 0.2);
    box-shadow: 0 0 50px rgba(71, 85, 105, 0.15);
}

/* =========================================
   NEW MODAL REDESIGN STYLES
   ========================================= */

/* --- Calculator Tab --- */

.calculator-container-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.calc-controls-panel {
    padding-right: 1rem;
}

.calc-input-group-premium {
    margin-bottom: 1.5rem;
}

.calc-input-group-premium label {
    display: block;
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-input-group-premium label i {
    color: var(--color-accent-gold);
}

.calc-stepper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.3rem;
}

.calc-stepper button {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.calc-stepper button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-gold);
}

.calc-stepper input {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    width: 60px;
    -moz-appearance: textfield;
}

.calc-stepper input::-webkit-outer-spin-button,
.calc-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-select-wrapper {
    position: relative;
}

.calc-select-wrapper select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    appearance: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.calc-select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.calc-helper {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

/* Age Label in Calculator */
.calc-label-age {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 0.3rem;
}

/* Warning Toast for Guest Limit */
.calc-warning {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(204, 0, 0, 0.15) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: warningPulse 0.5s ease-out;
}

.calc-warning i {
    font-size: 1.2rem;
    color: #ff4444;
}

@keyframes warningPulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.calc-extras-summary {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 2rem;
}

.calc-extras-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin: 0.5rem 0;
}

/* Receipt Styles */
.calc-receipt-panel {
    position: sticky;
    top: 1rem;
}

.receipt-card {
    background: #fff;
    color: #333;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.receipt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #d4af37, #f2d06b, #d4af37);
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 1.5rem;
}

.rh-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #000;
}

.rh-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

.rh-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

.receipt-body {
    margin-bottom: 2rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.rr-item {
    color: #555;
}

.rr-price {
    font-weight: 600;
    color: #000;
}

.base-row {
    font-weight: 600;
    color: #000;
}

.receipt-divider {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.total-divider {
    border-top: 2px dashed #000;
    background: none;
    height: 2px;
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-top: 1rem;
}

.btn-whatsapp-receipt {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-whatsapp-receipt:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.receipt-disclaimer {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive Calculator */
@media (max-width: 900px) {
    .calculator-container-premium {
        grid-template-columns: 1fr;
    }

    .calc-receipt-panel {
        position: static;
        margin-top: 2rem;
    }
}

/* --- Adicionales Tab --- */

.info-block-minimal {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-block-minimal i {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
}

.info-block-minimal p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.extras-category-group {
    margin-bottom: 2.5rem;
}

.ecg-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.ecg-header i {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
}

.ecg-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

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

.extra-card-minimal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.extra-card-minimal:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.ecm-content {
    flex: 1;
}

.ecm-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.ecm-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.ecm-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.ecm-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-gold);
}

.btn-add-minimal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-add-minimal:hover {
    background: var(--color-accent-gold);
    color: #000;
}

.btn-add-minimal.selected {
    background: #4CAF50;
    color: #fff;
}

.btn-add-minimal.selected i::before {
    content: "\f00c";
    /* FontAwesome check icon */
}

.extra-card-minimal.info-only .ecm-actions {
    justify-content: center;
}

.adicionales-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-whatsapp-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-minimal:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.service-card-premium.highlight {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.15);
}

.scp-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scp-header i {
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    background: rgba(255, 215, 0, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.scp-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.scp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.scp-list li i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-card-premium.highlight .scp-list li i {
    color: var(--color-accent-gold);
}

.info-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.glass-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.glass-metric-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.2);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent-gold);
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 2px 0;
}

.metric-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.premium-alert {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.alert-minimal {
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--color-accent-gold);
}

.alert-minimal i {
    color: var(--color-accent-gold);
    margin-top: 3px;
}

.alert-warning-min {
    background: rgba(255, 68, 68, 0.05);
    border-left: 3px solid #ff4444;
}

.alert-warning-min i {
    color: #ff4444;
    margin-top: 3px;
}

.alert-content strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.alert-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.section-header-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.section-header-minimal h3 {
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-line {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    width: 100%;
}

.features-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item-min {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.feature-item-min:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

.feature-item-min i {
    color: var(--color-accent-gold);
    font-size: 0.8rem;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-card-min {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
}

.pc-header {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.pc-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 0.3rem;
}

.pc-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.drinks-accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.drink-category-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drink-category-card.highlight {
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.1);
}

.drink-category-card h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drink-list-min {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drink-list-min li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.drink-list-min li strong {
    color: var(--color-accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-hero-grid {
        grid-template-columns: 1fr;
    }

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

.calculator-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.input-group-calc {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.input-header label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-header label i {
    color: var(--color-accent-gold);
}

.input-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.number-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.calc-btn-minus,
.calc-btn-plus {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #8b5a3c, #5a3a25);
    color: #ffddaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.calc-btn-minus:hover,
.calc-btn-plus:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 60, 0.4);
}

.calc-btn-minus:active,
.calc-btn-plus:active {
    transform: translateY(0);
}

.number-input-wrapper .calc-input {
    flex: 1;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.8rem;
}

.price-per-unit {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    font-weight: 500;
}

.calc-select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-select:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.calc-select option {
    background: #1a1a1a;
    color: #fff;
}

.calc-results h3 {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-accent-gold), transparent);
    margin: 1.5rem 0;
}

.capacity-warning {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    margin-top: 1.5rem;
    color: #ff6666;
    font-weight: 500;
    animation: warningPulse 2s ease infinite;
}

@keyframes warningPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.capacity-warning i {
    font-size: 1.2rem;
}

.btn-whatsapp-calc {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

.btn-whatsapp-calc:hover {
    background: linear-gradient(135deg, #20ba5a, #0e7a6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

.btn-whatsapp-calc i {
    font-size: 1.4rem;
}

.calc-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.calc-note i {
    color: #ffc107;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .number-input-wrapper {
        gap: 0.5rem;
    }

    .calc-btn-minus,
    .calc-btn-plus {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .number-input-wrapper .calc-input {
        font-size: 1.1rem;
    }

    .btn-whatsapp-calc {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .input-group-calc {
        padding: 1rem;
    }
}

/* ====================================================================
   ACCORDION STYLES FOR ADDITIONAL SERVICES
   ==================================================================== */

/* Accordion Headers */
.ecg-header.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.ecg-header.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ecg-header.accordion-header.active {
    background: rgba(255, 255, 255, 0.08);
}

.ecg-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.accordion-icon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

/* Accordion Content - Collapsed by default */
.extras-grid-minimal.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

/* When expanded */
.extras-grid-minimal.accordion-content.expanded {
    max-height: 5000px;
    /* Large enough for any content */
    opacity: 1;
}

/* Editable Inputs - Premium Dark Style */
.qty-controls input[type="number"] {
    cursor: text;
    -moz-appearance: textfield;
    appearance: textfield;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 50px;
    /* Ensure consistent width */
}

.qty-controls input[type="number"]::-webkit-inner-spin-button,
.qty-controls input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.qty-controls input[type="number"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.qty-controls input[type="number"]:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}