:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #3498db, #2c3e50);
    --gradient-success: linear-gradient(135deg, #2ecc71, #27ae60);
    --gradient-warning: linear-gradient(135deg, #f1c40f, #f39c12);
    --gradient-danger: linear-gradient(135deg, #e74c3c, #c0392b);
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    padding-top: 80px;
}

.verification-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.verification-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.verification-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.verification-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.verification-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.verification-status {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
}

.status-confirmada {
    background: var(--gradient-success);
    color: white;
}

.status-pendiente {
    background: var(--gradient-warning);
    color: white;
}

.status-cancelada {
    background: var(--gradient-danger);
    color: white;
}

.reservation-details {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.reservation-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.detail-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    background: var(--light-bg);
    padding: 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.detail-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.qr-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code {
    display: inline-block;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.qr-code img {
    max-width: 200px;
    height: auto;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-print {
    background: var(--primary-color);
    color: white;
}

.btn-print:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
}

.alert {
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

.alert-danger {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Formulario de búsqueda */
.search-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-group-text {
    background: var(--light-bg);
    border: 2px solid #e2e8f0;
    border-right: none;
    color: var(--primary-color);
}

.form-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .verification-header h1 {
        font-size: 2rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos para impresión */
@media print {
    body {
        background: white;
    }
    
    .verification-container {
        margin: 0;
        padding: 0;
    }
    
    .verification-header,
    .reservation-details,
    .qr-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .action-buttons,
    .alert {
        display: none;
    }
}

/* Estilos generales */
body {
    font-family: 'Times New Roman', Times, serif;
    color: #333;
}

/* Hero Section con Slider */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
}

/* Controles del Slider */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

/* Formulario de búsqueda */
.search-form-container {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: none;
}

.search-card .card-body {
    padding: 2rem;
}

.search-card .form-label {
    font-weight: 500;
    color: #333;
}

.search-card .form-control,
.search-card .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.search-card .btn-primary {
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1,
.slide-content p {
    animation: fadeIn 1s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    .search-form-container {
        position: relative;
        bottom: 0;
        padding: 20px;
    }
    
    .slide-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
}

/* Tarjetas de viajes */
.card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos para la página de detalles */
.seat {
    width: 40px;
    height: 40px;
    margin: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    color: #fff;
    text-shadow: 0px 0px 2px rgba(0,0,0,0.7);
    position: relative;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.seat-row {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.seat-available {
    cursor: pointer;
}

.seat-available:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.seat-selected {
    background-color: #52c41a !important;
    color: white !important;
    border: 1px solid #52c41a !important;
    box-shadow: 0 0 8px rgba(82, 196, 26, 0.5) !important;
    transform: scale(1.05);
    z-index: 1;
}

.seat-occupied {
    background-color: #adb5bd !important;
    color: #fff !important;
    border: 1px solid #adb5bd !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seat-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}

.legend-premium { background-color: #ffd700; }
.legend-standard { background-color: #3498db; }
.legend-vip { background-color: #9b59b6; }
.legend-occupied { background-color: #e74c3c; }
.legend-selected { background-color: #2ecc71; }

/* Mapa de asientos mejorado */
.seat-map-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    overflow-x: auto;
}

.seat-map-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    max-width: 100%;
}

/* Nuevo estilo tipo grid para asientos */
.seats-grid {
    display: grid;
    grid-template-columns: repeat(32, 40px);
    gap: 4px;
    justify-content: center;
    margin-top: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px;
}

.seat-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    font-size: 12px;
}

.seat-disponible {
    background-color: #28a745;
}

.seat-ocupado {
    background-color: #dc3545;
    cursor: not-allowed;
}

.seat-vip {
    background-color: #FFC107;
    color: #000;
    text-shadow: none;
}

.seat-economico {
    background-color: #007BFF;
}

.seat-selected {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    border: 2px solid #fff;
    z-index: 10;
}

.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);
}

.legend-disponible {
    background-color: #28a745;
}

.legend-ocupado {
    background-color: #dc3545;
}

.legend-vip {
    background-color: #FFC107;
}

.legend-economico {
    background-color: #007BFF;
}

/* Estilos para categorías */
.category-badge {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
}

/* Pasos del proceso de reserva */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.booking-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.booking-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background-color: #e8e8e8;
    z-index: -1;
}

.booking-step.active:not(:last-child)::after,
.booking-step.completed:not(:last-child)::after {
    background-color: #1890ff;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.booking-step.active .step-number {
    background-color: #1890ff;
    color: white;
}

.booking-step.completed .step-number {
    background-color: #52c41a;
    color: white;
}

.step-title {
    font-weight: 500;
    color: #999;
}

.booking-step.active .step-title {
    color: #1890ff;
}

.booking-step.completed .step-title {
    color: #52c41a;
}

/* Estilos para la página de confirmación */
.confirmation-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.confirmation-icon {
    font-size: 5rem;
    color: #52c41a;
    margin-bottom: 1.5rem;
}

.reservation-pending-icon {
    font-size: 5rem;
    color: #faad14;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.confirmation-code {
    background-color: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Estilos para el formulario de pago */
.payment-method-details {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Estilos para el mapa de asientos */
.seating-chart {
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.seating-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Estilos para las categorías de asientos */
.categoria-primera {
    background-color: #ffd700;
    color: #000;
}

.categoria-ejecutiva {
    background-color: #0d6efd;
    color: white;
}

.categoria-economica {
    background-color: #198754;
    color: white;
}

.seat-mini {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);
}

.seat-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.seat:hover .seat-info {
    opacity: 1;
}

.pasillo {
    width: 20px;
    margin: 0 10px;
}

/* Estilos para el panel de selección */
.selection-panel {
    position: sticky;
    top: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.selection-summary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.selected-seats-list {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.selected-seat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dashed #dee2e6;
}

/* Media queries */
@media (max-width: 768px) {
    .seat {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin: 2px;
    }
    
    .seat-row-label {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
    
    .seat-column-label {
        width: 35px;
        margin: 0 2px;
    }
    
    .seats-grid {
        grid-template-columns: repeat(16, 38px);
        gap: 2px;
        padding: 5px;
    }
    
    .seat-btn {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
}

@media print {
    .navbar, .footer, .booking-steps, button, .btn, form {
        display: none !important;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
    
    .confirmation-card {
        box-shadow: none;
        border: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .card {
        break-inside: avoid;
    }
}

/* Nuevo estilo para asientos como lista */
.asientos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.asiento-numero {
    display: inline-block;
    min-width: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 2px;
    border-radius: 3px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

.asiento-disponible:hover {
    text-decoration: none;
    font-weight: bold;
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.asiento-seleccionado {
    background-color: var(--accent-color) !important;
    color: white !important;
    border-color: var(--accent-color) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
}

@media (max-width: 768px) {
    .asientos-lista {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Estilos para la sección de información del barco */
.boat-info {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.boat-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.boat-details h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.badge-number {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

.badge-number i {
    font-size: 0.8rem;
}

/* Estilos para los horarios y detalles del viaje */
.schedule-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.schedule-port {
    font-size: 0.9rem;
    color: #6c757d;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.number-highlight {
    background-color: #eef;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.number-highlight .icon {
    font-size: 0.8rem;
    margin-right: 2px;
}

/* Estilos para la leyenda y categorías de asientos */
.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seat-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}

.legend-premium { background-color: #ffd700; }
.legend-standard { background-color: #3498db; }
.legend-vip { background-color: #9b59b6; }
.legend-occupied { background-color: #e74c3c; }
.legend-selected { background-color: #2ecc71; }

/* Estilos para las categorías */
.category-item {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.category-badge {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.price-display {
    font-weight: 600;
    color: var(--primary-color);
}

.resumen-card .price-display {
    color: white;
}

/* Estilos para el resumen de reserva */
.resumen-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.resumen-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1rem;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.resumen-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.resumen-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
}

#btn-continue {
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

#btn-continue:not(.disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#btn-continue.disabled {
    background-color: rgba(255,255,255,0.7);
    cursor: not-allowed;
}

/* === General Page & Card Enhancements === */
.card {
    border: none !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.card-body {
    padding: 1.5rem !important;
}

.card-title {
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    color: var(--primary-color) !important;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

/* === Seat Map Area Polish === */
.seat-map-container {
    background-color: #f0f2f5;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

.seat-map-grid {
    padding: 1rem;
    background-color: rgba(255,255,255,0.7);
    border-radius: var(--border-radius);
}

/* === Button Polish === */
#btn-continue {
    background: var(--gradient-success);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

#btn-continue:not(.disabled):hover {
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

#btn-continue i {
    transition: transform 0.3s ease;
}

#btn-continue:not(.disabled):hover i {
    transform: translateX(5px);
} 