/* ===================================
   RESPONSIVE - EXTRA SMALL
   =================================== */

@media (max-width: 360px) {
    .cart-header h2 {
        font-size: 1.1rem;
    }
    
    .cart-item-full {
        grid-template-columns: 60px 1fr;
    }
    
    .cart-item-image-full {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details-full h3 {
        font-size: 0.95rem;
    }
    
    .checkout-modal-header h2 {
        font-size: 1.1rem;
    }
    
    .progress-step-simple span {
        display: none;
    }
    
    .checkout-progress-simple {
        gap: 2rem;
    }
    
    .form-section-compact {
        padding: 0.6rem;
    }
    
    .section-header h3 {
        font-size: 0.9rem;
    }
}

/* ===================================
   CART PAGE - RESPONSIVE COMPLETO
   =================================== */

:root {
    --primary-color: #AE0404;
    --primary-dark: #8B0000;
    --primary-light: #B33C3C;
    --secondary-color: #FCF3DE;
    --accent-color: #D4AF37;
    --text-dark: #2c3e50;
    --bg-cream: #FCF3DE;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===================================
   BASE STYLES
   =================================== */

.cart-page-section {
    padding: 3rem 0 5rem;
    background: var(--bg-cream);
    min-height: 60vh;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2.5rem;
}

/* ===================================
   CART ITEMS
   =================================== */

.cart-items-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-cream);
}

.cart-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 1;
}

.btn-clear-cart {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear-cart:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.cart-item-full {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.cart-item-full:hover {
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateY(-3px);
}

.cart-item-image-full {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.cart-item-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details-full h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cart-item-size {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cart-item-description {
    color: #252424;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cart-item-price-full {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
}

.cart-item-actions-full {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-quantity-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.qty-btn-full {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-full:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.btn-remove-full {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-remove-full:hover {
    background: #c82333;
    transform: scale(1.05);
}

.empty-cart-message {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-message i {
    font-size: 5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

/* ===================================
   ORDER SUMMARY
   =================================== */

.order-summary-container {
    position: sticky;
    top: 100px;
}

.order-summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 1.5rem;
}

.order-summary-card h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 1;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-divider {
    height: 2px;
    background: var(--primary-color);
    margin: 1rem 0;
}

.total-row {
    border-bottom: none;
    padding-top: 1rem;
}

.total-row span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-checkout-full {
    width: 100%;
    padding: 1.3rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.payment-methods {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.payment-methods p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
}

.payment-icons i {
    color: var(--primary-color);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-icons i:hover {
    opacity: 1;
    transform: scale(1.1);
}

.security-badges {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===================================
   CHECKOUT MODAL
   =================================== */

.checkout-modal-new {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.checkout-modal-new.active {
    display: flex;
}

.checkout-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.checkout-modal-content-new {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
    z-index: 1;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.checkout-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkout-modal-header h2 {
    color: white;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkout-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.checkout-modal-close:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* ===================================
   PROGRESS STEPS
   =================================== */

.checkout-progress-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: var(--bg-cream);
}

.progress-step-simple {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-number-simple {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
}

.progress-step-simple.active .step-number-simple {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(174, 4, 4, 0.4);
    transform: scale(1.1);
}

.progress-step-simple span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
}

.progress-step-simple.active span {
    color: var(--primary-color);
}

/* ===================================
   FORM SECTIONS
   =================================== */

.checkout-modal-body {
    padding: 2rem;
    min-height: 400px;
}

.form-section-compact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e0e0e0;
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.section-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* ===================================
   SERVICE TOGGLE
   =================================== */

.service-toggle {
    display: flex;
    gap: 1rem;
}

.service-option {
    flex: 1;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.service-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-option.selected {
    border-color: var(--primary-color);
    background: rgba(174, 4, 4, 0.1); /* un poco más visible */
    box-shadow: 0 10px 25px rgba(174, 4, 4, 0.25);
    transform: scale(1.03);
    transition: all 0.25s ease;
}

.service-option.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-option h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.service-option p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* ===================================
   FORM INPUTS
   =================================== */

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-compact {
    margin-bottom: 1rem;
}

.form-group-compact label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group-compact input,
.form-group-compact select,
.form-group-compact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group-compact input:focus,
.form-group-compact select:focus,
.form-group-compact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(174, 4, 4, 0.1);
}

/* ===================================
   SEDES
   =================================== */

.sedes-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sede-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.sede-option:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.sede-option.selected {
    border-color: var(--primary-color);
    background: rgba(174, 4, 4, 0.12); /* más visible */
    box-shadow: 0 8px 20px rgba(174, 4, 4, 0.3);
    transform: scale(1.02);
    position: relative;
    transition: all 0.3s ease;
}

.sede-option.selected::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}


.sede-option i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sede-option h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.sede-option p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* ===================================
   PAYMENT METHODS
   =================================== */

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-method-card {
    position: relative;
    display: flex;
    cursor: pointer;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-content {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.payment-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.payment-method-card:has(input:checked) .payment-content {
    border-color: var(--primary-color);
    background: rgba(174, 4, 4, 0.12);
    box-shadow: 0 10px 25px rgba(174, 4, 4, 0.3);
    transform: scale(1.03);
    transition: all 0.3s ease;
}
.checkout-modal-body .selected-section {
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 235, 235, 0.2);
    transition: all 0.3s ease;
}

.payment-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-content span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   CONFIRMATION
   =================================== */

.order-confirmation {
    text-align: center;
    padding: 0;
}

.confirmation-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.order-confirmation h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.confirmation-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.confirmation-section:last-child {
    margin-bottom: 0;
}

.confirmation-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-cream);
}

.confirmation-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.confirmation-section p:last-child {
    margin-bottom: 0;
}

.confirmation-section strong {
    color: var(--text-dark);
}

/* ===================================
   MODAL FOOTER
   =================================== */

.checkout-modal-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: sticky;
    bottom: 0;
    border-radius: 0 0 20px 20px;
    border-top: 2px solid #e0e0e0;
}

.footer-right-buttons {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.checkout-modal-footer .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-danger {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}
.btn-primarymenu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 12px;

    background: linear-gradient(135deg, #AE0404, #C62828);
    color: #fff;

    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(174, 4, 4, 0.25);
    transition: all 0.25s ease;
}

/* Hover elegante */
.btn-primarymenu:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(174, 4, 4, 0.35);
    filter: brightness(1.05);
}

/* Click */
.btn-primarymenu:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(174, 4, 4, 0.3);
}

/* Ícono */
.btn-primarymenu i {
    font-size: 2rem;    /* 👈 AJUSTA SOLO ESTO */
    line-height: 1;        /* evita que baje/suba */
    color: #FFD166;        /* color pizza */
}


/* 📱 Mobile: aún más compacto */
@media (max-width: 480px) {
    .btn-primarymenu {
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}


.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-success {
    background: #25d366;
    color: white;
}

.btn-success:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* ===================================
   AUTOSAVE INDICATOR
   =================================== */

.autosave-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    z-index: 10002;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.autosave-indicator.show {
    display: flex;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===================================
   RESPONSIVE - TABLETS
   =================================== */

@media (max-width: 1024px) {
    .cart-page-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        position: static;
    }
    
    .checkout-modal-content-new {
        max-width: 95%;
    }
}

/* ===================================
   RESPONSIVE - MOBILE LARGE
   =================================== */

@media (max-width: 768px) {
    .cart-page-section {
        padding: 2rem 0 3rem;
    }
    
    .cart-items-container {
        padding: 1.5rem;
    }
    
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-header h2 {
        font-size: 2.5rem;
    }
    
    .btn-clear-cart {
        width: 100%;
        justify-content: center;
    }
    
    .cart-item-full {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-image-full {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details-full h3 {
        font-size: 1.1rem;
    }
    
    .cart-item-actions-full {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    .checkout-modal-content-new {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .checkout-modal-header {
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    .checkout-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .checkout-modal-body {
        padding: 1.5rem;
    }
    
    .checkout-progress-simple {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .step-number-simple {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .progress-step-simple span {
        font-size: 0.9rem;
    }
    
    .form-section-compact {
        padding: 1rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
    }
    
    .service-toggle {
        flex-direction: column;
    }
    
    .sedes-compact {
        grid-template-columns: 1fr;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-modal-footer {
        padding: 1rem;
        flex-direction: column;
    }
    
    .footer-right-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .checkout-modal-footer .btn {
        width: 100%;
        padding: 0.9rem;
    }
    
    .btn-outline-danger {
        order: 3;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */

@media (max-width: 480px) {
    .cart-page-section {
        padding: 1.5rem 0 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cart-items-container {
        padding: 1rem;
    }
    
    .cart-header h2 {
        font-size: 2.3rem;
    }
    
    .cart-item-full {
        grid-template-columns: 70px 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .cart-item-image-full {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-details-full h3 {
        font-size: 1rem;
    }
    
    .cart-item-size {
        font-size: 0.85rem;
    }
    
    .qty-btn-full {
        width: 30px;
        height: 30px;
    }
    
    .btn-remove-full {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .order-summary-card {
        padding: 1rem;
    }
    
    .summary-row {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    .total-row span {
        font-size: 1.5rem;
    }
    
    .checkout-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .checkout-modal-body {
        padding: 1rem;
    }
    
    .checkout-progress-simple {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .step-number-simple {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .progress-step-simple span {
        font-size: 0.8rem;
    }
    
    .form-section-compact {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header h3 {
        font-size: 0.95rem;
    }
    
    .service-option {
        padding: 1rem;
    }
    
    .service-option i {
        font-size: 2rem;
    }
    
    .service-option h4 {
        font-size: 1rem;
    }
    
    .sede-option {
        padding: 0.8rem;
    }
    
    .sede-option i {
        font-size: 1.5rem;
    }
    
    .form-group-compact input,
    .form-group-compact select,
    .form-group-compact textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .payment-content {
        padding: 1rem;
    }
    
    .payment-content i {
        font-size: 2rem;
    }
    
    .confirmation-section {
        padding: 1rem;
    }
    
    .confirmation-section h4 {
        font-size: 1rem;
    }
    
    .confirmation-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .checkout-modal-footer {
        padding: 0.8rem;
    }
    
    .checkout-modal-footer .btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

