
/* =================================
   FONT IMPORTS OG BASE STYLING
   ================================= */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-thin-straight/css/uicons-thin-straight.css');

/* Base body styling */
body {
    background-color: #091924;
    color: #ffffff;
    font-family: 'Barlow' !important;
    margin: 0;
    padding: 0;
}

body.has-sticky-cart {
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    body.has-sticky-cart {
        padding-bottom: 140px;
    }
}

body.football-booking-cart-page {
    background-color: #091924 !important;
    margin: 0;
    padding: 0;
}

/* =================================
   LAYOUT OG CONTAINERS
   ================================= */

.football-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    font-family: 'Barlow' !important;
    padding-bottom: 140px !important;
}

/* Titles and subtitles */
body .booking-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    font-size: 40px !important;
    margin-top: 50px !important;
    font-family: 'Barlow' !important;
    gap: 10px !important;
}

body .booking-subtitle {
    font-size: 0.9rem !important;
    text-align: center !important;
    color: #ffffff !important;
    margin-bottom: 80px !important;
    font-family: 'Barlow' !important;
}

/* Progress bar */
.progress-bar {
    display: flex;
    height: 65px;
    background: #ffffff;
    border-radius: 4px;
    overflow: visible;
    position: relative;
    border-radius: 5px;
    margin-bottom: 40px;
    z-index: 1;
}

.booking-progress .progress-step {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #333333;
    font-weight: 600 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    z-index: 1;
    font-family: 'Barlow' !important;
}

.booking-progress .progress-step.completed,
.booking-progress .progress-step.active {
    background: #08605F;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.booking-progress .progress-step.active::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #08605F;
}

/* Progress step interactivity */
.progress-step {
    cursor: default;
    transition: all 0.2s ease;
}

.progress-step.completed,
.progress-step.active {
    cursor: pointer;
}

.progress-step.completed:hover,
.progress-step.active:hover {
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.15);
}

/* Click feedback animation */
.progress-step.clicked-feedback {
    transform: scale(0.95);
}

/* Shake feedback for ikke-tilgængelige steps */
.progress-step.shake-feedback {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translateX(-2px);
    }
    20%, 80% {
        transform: translateX(4px);
    }
    30%, 50%, 70% {
        transform: translateX(-6px);
    }
    40%, 60% {
        transform: translateX(6px);
    }
}

/* Booking form steps */
.booking-step {
    display: none;
    width: 100%;
    font-family: 'Barlow' !important;
}

.booking-step.active {
    display: block;
}

/* New layout structure */
.step-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.main-content {
    flex: 1;
    max-width: 72%;
}

/* Step 1 has full width */
.step-1 .main-content {
    max-width: 100%;
}

/* Date change notice */
.date-change-notice {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #FFF3E0;
    border: 1px solid #FFB74D;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.date-change-notice svg {
    color: #F57C00;
    flex-shrink: 0;
    margin-top: 2px;
}

.date-change-notice p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.date-change-notice strong {
    color: #111;
}

/* =================================
   HERO IMPROVEMENTS
   ================================= */

/* General hero container optimizations */
.hero_container {
    min-height: 250px; 
}

.hero_information .teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;
    padding: 10px 0;
}

.hero_information .teams .shortname {
    text-transform: uppercase;
    font-size: clamp(24px, 6vw, 40px); 
    font-weight: 800;
    line-height: 1.1;
    word-break: break-word; 
}

.hero_information .teams .seperator {
    font-size: clamp(24px, 5vw, 35px);
    margin: 0 10px;
}

/* Tablet responsiveness */
@media screen and (max-width: 768px) {
    .hero_container {
        min-height: 200px;
    }
    
    .hero_information .teams .shortname {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .hero_information .teams .seperator {
        font-size: clamp(20px, 4vw, 28px);
        margin: 0 8px;
    }
    
    .hero_information .teams .team.home {
        padding-right: 15px;
        text-align: right;
    }
    
    .hero_information .teams .team.away {
        padding-left: 15px;
        text-align: left;
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 480px) {
    .hero_container {
        min-height: 180px;
    }
    
    .hero_information .teams {
        padding: 15px 10px;
    }
    
    .hero_information .teams .shortname {
        font-size: clamp(16px, 4.5vw, 22px); /* Yderligere reduceret til mobil */
        line-height: 1.2;
    }
    
    .hero_information .teams .seperator {
        font-size: clamp(16px, 4vw, 22px);
        margin: 0 5px;
    }
    
    .hero_information .teams .team.home {
        padding-right: 8px;
    }
    
    .hero_information .teams .team.away {
        padding-left: 8px;
    }
}

/* Meget små skærme */
@media screen and (max-width: 375px) {
    .hero_container {
        min-height: 160px;
    }
    
    .hero_information .teams .shortname {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .hero_information .teams .seperator {
        font-size: clamp(14px, 3.5vw, 18px);
        margin: 0 3px;
    }
}

/* Hvis holdnavnene er meget lange, skift til vertikal layout */
@media screen and (max-width: 320px) {
    .hero_information .teams {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 20px 10px;
    }
    
    .hero_information .teams .team.home,
    .hero_information .teams .team.away {
        padding: 0;
        text-align: center;
    }
    
    .hero_information .teams .shortname {
        font-size: clamp(16px, 5vw, 20px);
        display: block;
    }
    
    .hero_information .teams .seperator {
        order: 2; /* Placer separatoren mellem holdene */
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .hero_information .teams .team.home {
        order: 1;
    }
    
    .hero_information .teams .team.away {
        order: 3;
    }
}

/* Hero information container optimering */
.hero_information {
    position: relative;
    z-index: 5;
    margin-top: -60px; /* Reduceret fra -100px */
}

@media screen and (max-width: 600px) {
    .hero_information {
        margin-top: -40px; /* Yderligere reduceret til mobil */
    }
}

@media screen and (max-width: 480px) {
    .hero_information {
        margin-top: -30px;
    }
}

/* Product details container forbedringer */
.hero_information .product_details {
    min-height: 50px; /* Reduceret fra 66px */
    padding: 10px 0;
}

@media screen and (max-width: 480px) {
    .hero_information .product_details {
        min-height: 40px;
        padding: 8px 0;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero_information .product_details .logo {
        max-width: 50px; /* Reduceret logo størrelse på mobil */
    }
}

/* Disclaimer styling til mobil */
.hero_information .disclaimer {
    text-align: center;
    padding: 15px 10px; /* Reduceret padding */
    font-size: var(--fz_10);
    line-height: 1.4;
}

@media screen and (max-width: 480px) {
    .hero_information .disclaimer {
        padding: 10px 5px;
        font-size: 11px;
    }
    
    .hero_information .disclaimer a {
        display: block;
        margin-top: 5px;
    }
}

/* =================================
   STEP TITLES OG KOMPONENTER
   ================================= */
.
/* Step titles */
.step-title,
.step-title-book-airport,
.step-title-book {
    background-color: #08605F;
    padding: 15px;
    margin-bottom: 10px;
    height: auto;
    min-height: 50px;
    border-radius: 5px;
    font-family: 'Barlow' !important;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

/* Base styles for all text in titles */
.step-title,
.step-title-book {
    text-transform: none;
    font-weight: normal;
    font-size: 1rem;
}

/* Style for the text before the dash */
.step-title::before,
.step-title-book::before {
    content: attr(data-main-title);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 6px;
}

/* Style for the dash and text after it */
.step-title::after,
.step-title-book::after {
    content: attr(data-subtitle);
    font-size: 0.9rem;
    font-weight: normal;
}

.booking-header {
    background-color: #08605F;
    padding: 15px;
    margin-bottom: 15px;
    height: auto;
    min-height: 50px;
    border-radius: 5px !important;
    font-family: 'Barlow' !important;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

/* Content sections for steps after step 1 */
.travel-dates-inner-section {
    background-color: #ffffff;
    margin-top: 10px;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    min-height: 270px;
    color: #091924;
    font-family: 'Barlow' !important;
}

/* Airport selector for step 2 */
.airport-selector-step2 {
    padding: 25px;
    background: linear-gradient(135deg, #f0fdfa 0%, #f9fafb 100%);
    border-radius: 12px;
    margin-top: 10px !important;
    border: 2px solid #e0f2f1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0C202A;
    margin-bottom: 10px;
    font-family: 'Barlow';
}

.airport-options-step2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.airport-option-step2 {
    padding: 20px 15px;
    text-align: center;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.airport-option-step2:hover {
    border-color: #08605F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(8, 96, 95, 0.15);
}

.airport-option-step2.active {
    border-color: #08605F;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(8, 96, 95, 0.2);
}

.airport-option-step2.active::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #08605F;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.airport-option-step2.loading {
    opacity: 0.6;
    pointer-events: none;
}

.airport-option-step2.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #e5e7eb;
    border-top-color: #08605F;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.airport-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.airport-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 15px;
    font-family: 'Barlow';
}

.airport-code {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Flight Sync Indicator */
.flight-sync-indicator {
    margin-top: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #08605F;
    text-align: center;
}

.sync-status {
    display: block;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    margin-bottom: 10px;
}

.sync-progress {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.sync-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #08605F 0%, #0a7573 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Step 5 Selected Airport Info */
.selected-airport-info {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #08605F;
    font-family: 'Barlow';
    box-shadow: 0 2px 8px rgba(8, 96, 95, 0.1);
}

.selected-airport-info strong {
    color: #08605F;
    font-size: 16px;
}

.change-airport-link {
    color: #08605F !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.change-airport-link:hover {
    color: #025b4e !important;
}

/* Disable airport options in step 5 */
.step-5 .airport-option.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Flight Sync Message */
.flight-sync-message {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px dashed #08605F;
    margin: 20px 0;
}

.sync-progress {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.sync-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #08605F 0%, #0a7573 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Form styling */
.form-field {
    display: flex;
    flex-direction: column;
    font-family: 'Barlow' !important;
}

.form-field label {
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Barlow' !important;
}

.form-field input,
.form-field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Barlow' !important;
}

.form-field input.error,
.form-field select.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-field input:focus,
.form-field select:focus {
    border-color: #08605F;
    outline: none;
}

/* Navigation buttons */
.step-navigation {
    text-align: right;
    margin-top: 30px;
    width: 100%;
    clear: both;
}

.next-step {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
}

.prev-step {
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
}

.next-step:hover {
    background-color: #025b4e;
}

.next-step.disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    pointer-events: none;
}

.next-step.disabled:hover {
    background-color: #cccccc !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Loading states */
.loading,
.error {
    text-align: center;
    padding: 20px;
    color: #6c8690;
    font-family: 'Barlow' !important;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    border-radius: 8px;
    margin: 20px 0;
}

/* =================================
   PACKAGE SELECTION STYLING
   ================================= */

.package-selection {
    border-radius: 5px;
    margin-top: 30px;
    width: 100%;
}

/* Package selection grid */
.package-options,
.package-options- {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 10px;
    width: 100%;
}

/* Package boxes */
body .package-option {
    background-color: #ffffff !important;
    color: #091924 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 20px !important;
    margin-top: 10px !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    font-family: 'Barlow' !important;
}

.package-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.package-option.selected {
    border: 5px solid #08605F;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #333333;
    position: relative;
}

.package-option.active {
    background-color: #08605F;
    color: #ffffff;
}

/* Sold out flight package styling */
.package-option.sold-out {
    background-color: #f5f5f5;
    color: #999999;
    opacity: 0.8; /* Reduceret fra 0.6 */
    cursor: default;
    border: 2px dashed #cccccc;
    position: relative;
}

.package-option.sold-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5); /* Reduceret fra 0.7 */
    z-index: 1;
    border-radius: 8px;
}

.package-option.sold-out:hover {
    transform: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.package-option.sold-out h3 {
    color: #999999;
    position: relative;
    z-index: 2;
}

.package-option.sold-out .package-details {
    position: relative;
    z-index: 2;
}

.package-option.sold-out .package-details li {
    color: #999999;
}

.package-option.sold-out .package-price {
    position: relative;
    z-index: 2;
}

.package-option.sold-out .sold-out-text {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-option h3 {
    margin-top: 0;
    font-size: 3.1rem;
    font-weight: bold;
    text-align: center;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
    font-size: 20px !important;
}

.package-details ul {
    margin: 10px 0;
    padding-left: 20px;
    font-family: 'Barlow' !important;
    text-align: left;
    line-height: 1.2;
}

.package-details li {
    font-family: 'Barlow' !important;
}

.package-price {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    font-family: 'Barlow' !important;
}

.select-package {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    height: auto;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
}

.select-package:hover {
    background-color: #025b4e;
}

.select-package.sold-out {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.select-package.sold-out:hover {
    background-color: #cccccc !important;
    transform: none;
}

/* Contact us button styling */
.select-package.contact-us {
    background-color: #08605F !important;
    color: #ffffff !important;
    cursor: pointer !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 150px;
    height: auto;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-family: 'Barlow' !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
}

.select-package.contact-us:hover {
    background-color: #025b4e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.3);
}

.select-package.contact-us:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(8, 96, 95, 0.2);
}

/* Sørg for at knappen er synlig over overlay */
.package-option.sold-out .select-package.contact-us {
    position: relative;
    z-index: 3;
}

/* Loading state for kontakt knap */
.select-package.contact-us.loading {
    opacity: 0.7;
    pointer-events: none;
}

.select-package.contact-us.loading::after {
    content: "...";
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Travelers */
.travelers-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    width: 100%;
    color: #091924;
    font-family: 'Barlow' !important;
}

.travelers-options {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.traveler-option.traveler-plus.active {
    background-color: #08605F;
}

.traveler-option.traveler-plus.active svg {
    stroke: #ffffff;
}

.traveler-option.traveler-plus:hover {
    transform: scale(1.1);
}

.traveler-option {
    background-color: #ffffff;
    color: #08605F;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #08605F;
    cursor: pointer;
    transition: height 0.6s ease;
}

.traveler-option.active {
    background-color: #08605F;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.traveler-option:hover {
    transform: scale(1.1);
}

.traveler-option span {
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Barlow' !important;
}

.single-traveler-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
    font-family: 'Barlow' !important;
}

.single-traveler-warning p {
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Barlow' !important;
}

/* Flight unavailable message styling */
.flight-unavailable-message {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.flight-unavailable-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.flight-unavailable-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.flight-unavailable-content h4 {
    color: #856404;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    font-family: 'Barlow' !important;
}

.flight-unavailable-content p {
    color: #856404;
    margin: 0 0 15px 0;
    font-family: 'Barlow' !important;
    line-height: 1.4;
}

.flight-unavailable-contact {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
}

.flight-unavailable-contact p {
    margin-bottom: 10px;
    font-family: 'Barlow' !important;
    color: #333333;
}

.flight-unavailable-contact .contact-options {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.flight-unavailable-contact .contact-options span {
    margin: 0;
    padding: 8px 15px;
    background-color: #08605F;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Barlow' !important;
    font-size: 0.9rem;
}

/* =================================
   TICKET SELECTION STYLING
   ================================= */

.ticket-options {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    gap: 5px;
    margin-top: 10px;
    width: 100%;
}

.ticket-option {
    background-color: #ffffff;
    padding: 15px;
    color: #091924;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-family: 'Barlow';
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ticket-option:hover {
    border: 2px solid rgba(8, 96, 95, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticket-option.selected {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #08605F;
    transform: translateY(-1px);
}

.ticket-image img {
    width: 272px;
    height: 182px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.ticket-image {
    pointer-events: none;
}

.ticket-details h3 {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 20px !important; /* Øget fra 18px */
    color: #091924 !important;
    font-weight: 900 !important;
    text-align: left !important;
    padding-right: 10px !important;
    line-height: 1.2 !important;
    font-family: 'Barlow' !important;
    padding-left: 20px !important; /* Samme alignment som ticket features */
}

body .ticket-details {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    font-family: 'Barlow' !important;
}

body .ticket-features {
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
    transition: none !important;
    margin-bottom: 10px !important;
    padding-left: 20px !important;
    list-style-type: disc !important;
    font-family: 'Barlow' !important;
    margin-left: 0 !important;
}

.ticket-features li {
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Barlow';  
    display: list-item; 
}

.ticket-option.selected .price-tag,
.ticket-option.selected .included-tag {
    background-color: #08605F;
    color: #ffffff;
    border-radius: 6px;
}

/* UPDATED: New price display section */
.ticket-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    min-width: 140px;
    position: relative;
}

.price-display {
    text-align: center;
    font-family: 'Barlow';
    font-size: 14px;
    font-weight: 600;
    color:rgba(0, 0, 0, 0.7)
}

/* Price tags */
.price-tag {
    color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
}

.included-tag {
    color: #000000 !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ticket-option.selected .included-tag,
.hotel-option.selected .included-tag,
.flight-option.selected .included-tag {
    background-color: #08605F !important;
    color: #ffffff !important;
    border-radius: 6px !important;
}

/* Selection indicator */
.selection-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.ticket-option:hover .selection-indicator {
    opacity: 1;
}

.ticket-option.selected .selection-indicator {
    opacity: 1;
}

.selection-indicator .select-text {
    display: none;
}

.ticket-option.selected .selection-indicator .select-text {
    color: #08605F;
}

.selection-indicator .select-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #08605F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.ticket-option.selected .selection-indicator .select-icon {
    background-color: #08605F;
    color: #ffffff;
}

.selection-indicator .select-icon::after {
    content: "✓";
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ticket-option.selected .selection-indicator .select-icon::after {
    opacity: 1;
}

/* Hide old elements */
.ticket-actions {
    display: none;
}

.ticket-option .select-ticket {
    display: none;
}

.selection-checkbox {
    display: none;
}

/* =================================
   HOTEL SELECTION STYLING
   ================================= */

/* Content containers for hotel options */
.hotel-options {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    gap: 5px;
    margin-top: 10px;
    width: 100%;
}

/* Hotel option containers - matching ticket styling */
.hotel-option {
    background-color: #ffffff !important;
    padding: 15px;
    color: #091924;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-family: 'Barlow' !important;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Hover effects matching tickets */
.hotel-option:hover {
    border: 2px solid rgba(8, 96, 95, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Selected state styling matching tickets */
.hotel-option.selected {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid #08605F !important;
    transform: translateY(-1px);
    background-color: #ffffff !important;
}

/* Ensure background stays white for all states */
.hotel-option,
.hotel-option:hover,
.hotel-option.selected,
.hotel-option.included {
    background-color: #ffffff !important;
}

.hotel-image img {
    width: 272px;
    height: 182px;
    object-fit: cover;
    border-radius: 4px;
}

/* Ensure images don't interfere with clicks */
.hotel-image {
    pointer-events: none;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

/* Hotel image cursor pointer and camera icon */
.hotel-image {
    cursor: pointer;
    position: relative;
    pointer-events: auto;
}

.hotel-image::after {
    content: "📷";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-image:hover::after {
    opacity: 1;
}

/* Hotel details styling */
.hotel-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: 'Barlow' !important;
}

.hotel-details h3 {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 20px !important; /* Øget fra 18px */
    color: #091924 !important;
    font-weight: 900 !important;
    text-align: left !important;
    padding-right: 10px !important;
    padding-left: 20px !important; /* Samme alignment som listen */
    line-height: 1.2 !important;
    font-family: 'Barlow' !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.hotel-rating-stars {
    font-size: 14px;
    color: #ffc107;
    line-height: 1;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.hotel-rating-stars svg {
    width: 13px;
    height: 12px;
    display: inline-block;
}

.hotel-details ul {
    margin: 10px 0;
    padding-left: 20px;
    font-family: 'Barlow' !important;
    text-align: left;
    line-height: 1.4;
}

.hotel-details li {
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Barlow' !important;
}

/* Hotel features styling - removed read more/less functionality */
.hotel-features {
    margin-bottom: 10px;
    padding-left: 20px;
    list-style-type: disc;
    font-family: 'Barlow';
    margin-left: 0; /* Fjern ekstra margin */
}

.hotel-features li {
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Barlow' !important;
}

.read-more-link {
    display: none;
}

/* Remove old hotel actions and buttons */
.hotel-actions {
    display: none;
}

.hotel-option .select-hotel {
    display: none;
}

/* Hotel pricing section matching tickets */
.hotel-option.selected .price-tag,
.hotel-option.selected .included-tag {
    background-color: #08605F;
    color: #ffffff;
}

/* Hotel location info */
.hotel-location {
    background-color: rgba(8, 96, 95, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 13px;
    color: #08605F;
    font-weight: 500;
}

/* Hotel loading states */
.hotel-options .loading {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.hotel-options .error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #721c24;
}

/* =================================
   FLIGHT SELECTION STYLING
   ================================= */

/* Date selectors - Consistent styling */
.date-selectors {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.date-selector {
    flex: 1;
    max-width: 300px;
}

.date-selector label {
    display: block;
    margin-bottom: 8px;
    color: #091924;
    font-family: 'Barlow' !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-selector select,
.departure-date select,
.return-date select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border-radius: 8px;
    border: 2px solid #e8ecef;
    background-color: #ffffff;
    color: #091924;
    appearance: none;
    cursor: pointer;
    font-family: 'Barlow' !important;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23091924' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.date-selector select:hover,
.departure-date select:hover,
.return-date select:hover {
    border-color: #08605F;
}

.date-selector select:focus,
.departure-date select:focus,
.return-date select:focus {
    outline: none;
    border-color: #08605F;
    box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
}

/* Date to selector - Centered divider */
.date-to-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin-top: 28px;
}

.date-to-selector .to-text {
    color: #6b7280;
    font-family: 'Barlow' !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Flight info header - Clean professional design */
.flight-info {
    background: #08605F;
    color: #ffffff;
    padding: 16px 24px;
    font-family: 'Barlow' !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    position: relative;
}

.flight-info::after {
    content: '✈';
    font-size: 18px;
    opacity: 0.3;
}

/* Flight direction container */
.flight-direction {
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    border: 1px solid #e8ecef;
    border-top: none;
}

/* Airport selector - Modern tab design */
.airport-selector {
    margin-bottom: 40px;
    margin-top: 20px;
}

.airport-selector h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
    font-family: 'Barlow' !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.airport-options {
    display: flex;
    gap: 4px;
    background-color: #f8fafb;
    border-radius: 12px;
    padding: 4px;
    border: 1px solid #e8ecef;
}

.airport-options h3 {
    display: none;
}

.airport-option {
    flex: 1;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
    color: #6b7280;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    background-color: transparent;
}

.airport-option:hover {
    color: #091924;
    background-color: rgba(8, 96, 95, 0.05);
}

.airport-option.active {
    color: #ffffff;
    background-color: #08605F;
    box-shadow: 0 2px 8px rgba(8, 96, 95, 0.2);
}

/* Flight option - Fixed height container with consistent grid */
.flight-option {
    display: grid;
    grid-template-columns: 180px 1fr 220px; /* Fixed widths for consistency */
    gap: 24px;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f2f5;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    font-family: 'Barlow' !important;
    min-height: 140px; /* Fixed minimum height */
    height: 140px; /* Fixed height for all flight options */
    padding: 20px; /* Consistent padding */
}

.flight-option:last-child {
    border-bottom: none;
}

.flight-option:hover {
    background-color: #fafbfc;
}

.flight-option.selected {
    background-color: #f0f9f9;
    padding-left: 20px;
}

.flight-option.included {
    background-color: none !important;
}

/* Airline section - Fixed dimensions */
.airline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Reduced gap for consistency */
    width: 180px; /* Fixed width */
    height: 100px; /* Fixed height container */
}

.airline-logo {
    width: 95%; /* Fixed width */
    height: 95%; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 5px;
    overflow: hidden; /* Prevent overflow */
}

.airline-logo img {
    max-width: 95%; 
    max-height: 95%; /* Maximum height */
    width: auto;
    height: auto;
    object-fit: contain; /* Keep aspect ratio */
}

.airline-name {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    height: 20px; /* Fixed height for text */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flight details - Consistent layout */
.flight-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* Use full height of container */
    gap: 8px; /* Consistent gap */
}

/* Flight times - Fixed layout */
.flight-times {
    display: grid;
    grid-template-columns: 120px 1fr 120px; /* Fixed widths */
    align-items: center;
    gap: 20px;
    height: 40px; /* Fixed height for times row */
}

.departure-time,
.arrival-time {
    color: #091924;
    font-family: 'Barlow' !important;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
}

/* Flight duration - Fixed height container */
.flight-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    height: 40px; /* Fixed height */
    min-width: 200px; /* Minimum width */
}

/* Duration line - Consistent positioning */
.duration-line {
    width: 100%;
    height: 1px;
    background: #000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: visible;
}

.duration-line::after {
    content: '✈';
    position: absolute;
    top: 50%;
    right: -8px;
    font-size: 16px;
    color: #000000;
    transform: translateY(-50%);
    line-height: 1;
    margin-right: -10px;
    margin-left: 
}

/* Stopover flights - Fixed height with consistent layout */
.flight-duration.with-stopover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    height: 40px; /* Same fixed height as regular */
}

.flight-duration.with-stopover .stopover-lines-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
}

.flight-duration.with-stopover .duration-line {
    width: 40%;
    height: 1px;
    background: #000000;
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.flight-duration.with-stopover .duration-line:last-child::after {
    content: '✈';
    position: absolute;
    top: 50%;
    right: -8px;
    font-size: 16px;
    color: #000000;
    transform: translateY(-50%);
    line-height: 1;
    margin-left:10px;
}

/* Duration label - Fixed positioning */
.duration-label {
    color: #000000;
    font-family: 'Barlow' !important;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    white-space: nowrap;
}

.direkte {
    color: #000000;
    font-family: 'Barlow' !important;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    letter-spacing: 0.5px;
    position: absolute;
    top: 0;
    white-space: nowrap;
}

/* Via stopover indikator */
.via-stopover {
    color: #000000;
    font-family: 'Barlow' !important;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    letter-spacing: 0.5px;
    position: absolute;
    top: 0;
    white-space: nowrap;
}

/* Airport info - Fixed layout */
.flight-airports {
    display: grid;
    grid-template-columns: 120px 1fr 120px; /* Match flight-times grid */
    align-items: center;
    gap: 20px;
    height: 20px; /* Fixed height */
}

.departure-airport,
.arrival-airport {
    font-family: 'Barlow' !important;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
    text-overflow: ellipsis; /* Add ellipsis for very long names */
}

.departure-airport {
    grid-column: 1;
}

.arrival-airport {
    grid-column: 3;
}

/* Price section - Fixed width and positioning */
.flight-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px; /* Fixed width */
    height: 100px; /* Fixed height to match airline container */
    position: relative;
}

.flight-option.selected .price-tag {
    background-color: #08605F !important;
    color: #ffffff !important;
    border-radius: 6px !important;
}

/* Always show included tag for included flights */
.flight-option.included .included-tag {
    display: block;
}

/* Selection indicator - Clean radio button */
.flight-selection-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #e8ecef;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.flight-option:hover .flight-selection-radio {
    border-color: #08605F;
}

.flight-option.selected .flight-selection-radio {
    border-color: #08605F;
    background-color: #08605F;
    box-shadow: inset 0 0 0 4px #ffffff;
}

/* Remove the old ::after pseudo element */
.flight-option::after {
    display: none;
}

/* Show more button - Consistent positioning */
body .vis-flere-fly {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'Barlow' !important;
    min-height: 40px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold !important;
    margin: 20px auto; /* Consistent margin */
}

.vis-flere-fly:hover {
    background-color: #08605F;
    color: #ffffff;
    transform: translateY(-1px);
}

.vis-flere-fly::after {
    content: '';
    font-size: 10px;
    letter-spacing: -2px;
    transition: transform 0.2s ease;
}

.vis-flere-fly.showing-all::after {
    content: '';
}

/* Loading states - Fixed heights */
.flight-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-family: 'Barlow' !important;
    position: relative;
    min-height: 200px; /* Fixed minimum height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flight-loading::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    border: 3px solid #e8ecef;
    border-top-color: #08605F;
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 1s linear infinite;
}

.flight-loading div {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.flight-loading small {
    font-size: 14px;
    color: #94a3b8;
}

/* Error state - Fixed height */
.flight-error {
    text-align: center;
    padding: 40px 20px;
    color: #dc2626;
    background-color: #fef2f2;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #fecaca;
    font-family: 'Barlow' !important;
    font-weight: 500;
    min-height: 100px; /* Fixed minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress indicators - Consistent styling */
.flight-sync-status,
.destination-progress,
.flight-polling {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5f3 100%);
    color: #08605F;
    padding: 16px 24px;
    text-align: center;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Barlow' !important;
    border: 1px solid rgba(8, 96, 95, 0.2);
    font-size: 14px;
}

/* Loading and error states styling */
.flight-loading, .flight-error {
    text-align: center;
    padding: 40px 20px;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.flight-error {
    color: #dc3545;
    background: #f8d7da;
}

.flight-sync-status {
    background: #cff4fc;
    color: #055160;
    padding: 12px;
    text-align: center;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: 500;
    animation: fadeInUp 0.3s ease-out;
}

.destination-progress {
    background: #e9ecef;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.flight-polling {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    text-align: center;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* =================================
   TRAVELER INFO STYLING
   ================================= */

/* Traveler info container specific styling */
.travelers-info-container {
    background-color: #ffffff;
    margin-top: 10px;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    color: #091924;
    font-family: 'Barlow' !important;
}

#travelers-info-form {
    font-family: 'Barlow' !important;
}

/* White text on mobile */
@media (max-width: 768px) {
    #travelers-info-form {
        color: #ffffff !important;
    }
}

/* Form inputs styling */
select, .form-select {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 1px solid #ddd !important;
    font-family: 'Barlow' !important;
    font-size: 16px !important; /* Prevent zoom on iOS */
}

select option {
    color: #000000 !important;
    background-color: #ffffff !important;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="number"] {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 1px solid #ddd !important;
    font-family: 'Barlow' !important;
    font-size: 16px !important; /* Prevent zoom on iOS */
}

/* Error message styling */
.error-message,
.validation-error,
.form-error {
    color: #ffffff !important;
    background-color: rgba(220, 53, 69, 0.8) !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin-top: 5px !important;
    font-family: 'Barlow' !important;
    font-size: 14px !important;
    border: 1px solid #dc3545 !important;
}

.travelers-info-container .error-message,
.travelers-info-container .validation-error,
.travelers-info-container .form-error {
    color: #ffffff !important;
    background-color: #dc3545 !important;
    border: 1px solid #c82333 !important;
}

/* Mobile dropdown og input styling */
@media (max-width: 768px) {
    select, input[type="text"], input[type="email"], input[type="tel"] {
        font-size: 16px !important; /* Forhindrer auto-zoom på mobil */
        color: #000000 !important;
        background-color: #ffffff !important;
    }
    
    /* Mobile fejl-beskeder */
    .error-message,
    .validation-error,
    .form-error {
        color: #ffffff !important;
        background-color: #dc3545 !important;
        font-size: 14px !important;
        padding: 12px !important;
        margin: 8px 0 !important;
    }
}

/* Info text styling */
.info-text-black {
    font-size: 0.9rem;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}

.info-text-light {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}

.max-travel-info-text {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 10px;
    word-wrap: break-word;
    white-space: normal;
    font-family: 'Barlow' !important;
}

/* Checkbox styling */
.selection-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
}

.selection-checkbox input[type="checkbox"] {
    display: none;
}

.selection-checkbox .checkbox-visual {
    width: 24px;
    height: 24px;
    border: 2px solid #08605F;
    border-radius: 4px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.selection-checkbox .checkbox-visual:hover {
    background-color: rgba(8, 96, 95, 0.1);
    transform: scale(1.1);
}

.selection-checkbox input[type="checkbox"]:checked+.checkbox-visual {
    background-color: #08605F;
    border-color: #08605F;
}

.selection-checkbox .checkmark {
    color: #ffffff;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.selection-checkbox input[type="checkbox"]:checked+.checkbox-visual .checkmark {
    opacity: 1;
}

/* Traveler form styling - Horizontal layout */
.traveler-form-header {
    display: grid;
    grid-template-columns: 232px 1fr 237px;
    gap: 20px;
    margin-bottom: 10px;
    font-family: 'Barlow' !important;
}

.header-label {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Barlow' !important;
}

.traveler-form-row {
    display: grid;
    grid-template-columns: 232px 1fr 237px;
    gap: 20px;
    margin-bottom: 20px;
    font-family: 'Barlow' !important;
}

/* Name field styling */
.traveler-name-input {
    width: 232px;
    height: 50px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #091924;
}

/* Birthday fields container */
.birthday-fields-container {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.birthday-fields-container select {
    width: 135px;
    height: 50px;
    padding: 12px 35px 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    cursor: pointer;
    appearance: auto;
    box-sizing: border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #091924;
}

/* Email field styling */
.traveler-email-input {
    width: 237px;
    height: 50px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #08605F;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #091924;
}

/* Focus states */
.traveler-name-input:focus,
.birthday-fields-container select:focus,
.traveler-email-input:focus {
    outline: none;
    border-color: #08605F;
    box-shadow: 0 0 0 2px rgba(8, 96, 95, 0.2);
}

/* Error states */
.traveler-name-input.error,
.birthday-fields-container select.error,
.traveler-email-input.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

/* Traveler spacing */
.traveler-spacing {
    height: 30px;
}

/* Notice section styling */
.traveler-notice-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 60px; /* Extra space for sticky cart */
    font-family: 'Barlow' !important;
}

.traveler-notice-section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #091924;
    font-family: 'Barlow' !important;
}

.traveler-notice-section strong {
    font-weight: 700;
    color: #091924;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .traveler-form-header,
    .traveler-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .traveler-name-input {
        width: 100%;
    }

    .birthday-fields-container {
        width: 100%;
        justify-content: space-between;
    }

    .birthday-fields-container select {
        width: calc(33.333% - 7px);
    }

    .traveler-email-input {
        width: 100%;
    }

    .header-label {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .travelers-info-container {
        padding: 0px;
    }
}

/* Placeholder styling */
.traveler-name-input::placeholder,
.traveler-email-input::placeholder {
    color: #999;
    opacity: 1;
}

/* =================================
   SEAT, GUARANTEE & PAYMENT SELECTION
   ================================= */

/* Seat Selection Styling */
.seat-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.seat-options {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.seat-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
}

/* Unselected state */
.seat-option {
    border: 1px solid #08605F;
    background: #FFF;
    color: #000;
}

/* Selected state */
.seat-option.selected {
    background: #08605F;
    color: #FFF;
    border: 1px solid #08605F;
}

.seat-option:last-child {
    margin-bottom: 0;
}

/* Checkbox styling */
.seat-checkbox {
    position: relative;
    margin-right: 15px;
}

.seat-checkbox input[type="radio"] {
    display: none;
}

.seat-checkbox .checkbox-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #08605F;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.seat-option.selected .seat-checkbox .checkbox-visual {
    background-color: #ffffff;
    border-color: #ffffff;
}

.seat-checkbox .checkmark {
    color: #08605F;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.seat-option.selected .seat-checkbox .checkmark {
    opacity: 1;
}

/* Label styling */
.seat-label {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    font-family: 'Barlow' !important;
}

.seat-option.selected .seat-label {
    color: #FFF;
}

/* Price styling */
.seat-price {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Barlow' !important;
}

.seat-option.selected .seat-price {
    color: #FFF;
}

/* Guarantee Selection Styling */
.guarantee-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.guarantee-options {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.guarantee-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
    background: #08605F;
    color: #FFF;
    border: 1px solid #08605F;
}

.guarantee-option:last-child {
    margin-bottom: 0;
}

/* Checkbox styling */
.guarantee-checkbox {
    position: relative;
    margin-right: 15px;
}

.guarantee-checkbox input[type="radio"] {
    display: none;
}

.guarantee-checkbox .checkbox-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.guarantee-checkbox .checkmark {
    color: #08605F;
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Label styling */
.guarantee-label {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: default;
    font-family: 'Barlow' !important;
    color: #FFF;
}

/* Price styling */
.guarantee-price {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Barlow' !important;
    color: #FFF;
}

.guarantee-info-button {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Barlow' !important;
    cursor: pointer;
}

.guarantee-info-button strong {
    font-weight: 700;
}

/* Payment Selection Styling - Same as seat selection */
.payment-selection-section {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.payment-options {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
}

/* Unselected state */
.payment-option {
    border: 1px solid #08605F;
    background: #FFF;
    color: #000;
}

/* Selected state */
.payment-option.selected {
    background: #08605F;
    color: #FFF;
    border: 1px solid #08605F;
}

.payment-option:last-child {
    margin-bottom: 0;
}

/* Checkbox styling */
.payment-checkbox {
    position: relative;
    margin-right: 15px;
}

.payment-checkbox input[type="radio"] {
    display: none;
}

.payment-checkbox .checkbox-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #08605F;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.payment-option.selected .payment-checkbox .checkbox-visual {
    background-color: #ffffff;
    border-color: #ffffff;
}

.payment-checkbox .checkmark {
    color: #08605F;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.payment-option.selected .payment-checkbox .checkmark {
    opacity: 1;
}

/* Label styling */
.payment-label {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    font-family: 'Barlow' !important;
}

.payment-option.selected .payment-label {
    color: #FFF;
}

/* Price styling */
.payment-price {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Barlow' !important;
}

.payment-option.selected .payment-price {
    color: #FFF;
}

/* =================================
   DATE SELECTION CONTAINER
   ================================= */

/* Date Selection Container */
.date-selection-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Date Section */
.date-section {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

body .date-section-title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #091924 !important;
    margin-bottom: 25px !important;
    font-family: 'Barlow' !important;
    text-transform: uppercase !important;
}

.date-section-title svg {
    color: #08605F;
}

/* Date Cards Container */
.date-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual Date Card */
.date-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #08605F;
}

.date-card.selected {
    background: #08605F;
    border-color: #08605F;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(8, 96, 95, 0.3);
}

.date-card-inner {
    padding: 20px 15px;
    text-align: center;
    position: relative;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: inherit;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: inherit;
}

.date-weekday {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.8;
    text-transform: capitalize;
}

.date-card.selected .date-day,
.date-card.selected .date-month,
.date-card.selected .date-weekday {
    color: #ffffff;
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #08605F;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-card.selected .date-badge {
    color: #08605F;
}

.date-card.recommended:not(.selected) {
    border-color: #08605F;
}

.date-card.recommended:not(.selected) .date-badge {
    background: #08605F;
}

/* Flow Arrow */
.date-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Selected Period Summary */
.selected-period-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.period-display {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .period-display {
        display: block;
        gap: 0;
    }
}

.period-label {
    font-weight: 600;
    color: #091924;
}

.period-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #08605F;
}

.period-separator {
    color: #666;
    font-weight: 400;
}

.period-duration {
    color: #666;
    font-size: 0.95rem;
}

.price-adjustment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.adjustment-label {
    color: #666;
}

.adjustment-amount {
    font-weight: 700;
    color: #08605F;
    font-size: 1.2rem;
}

.adjustment-amount.negative {
    color: #28a745;
}

/* =================================
   CUSTOM BOOKING FORM
   ================================= */

/* Custom Booking Form Inline Styling */
.custom-booking-form-wrapper {
    margin-top: 20px;
    width: 100%;
}

.custom-booking-form-container {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    font-family: 'Barlow' !important;
}

.custom-booking-form-container .form-header {
    margin-bottom: 25px;
    text-align: center;
}

body .custom-booking-form-container .form-header h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: hsl(204, 60%, 9%) !important;
    margin-bottom: 10px !important;
    font-family: 'Barlow' !important;
}

body .custom-booking-form-container .form-header p {
    font-size: 0.95rem !important;
    color: #000000 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.custom-booking-form-container .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.custom-booking-form-container .form-group {
    display: flex;
    flex-direction: column;
}

.custom-booking-form-container .form-group.full-width {
    grid-column: 1 / -1;
}

.custom-booking-form-container .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Barlow' !important;
}

.custom-booking-form-container .form-group input,
.custom-booking-form-container .form-group select,
.custom-booking-form-container .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Barlow' !important;
    background-color: #ffffff;
    color: #091924;
    transition: all 0.2s ease;
    width: 100%;
}

.custom-booking-form-container .form-group input::placeholder,
.custom-booking-form-container .form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.custom-booking-form-container .form-group input:focus,
.custom-booking-form-container .form-group select:focus,
.custom-booking-form-container .form-group textarea:focus {
    outline: none;
    border-color: #08605F;
    box-shadow: 0 0 0 3px rgba(8, 96, 95, 0.1);
}

.custom-booking-form-container .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.custom-booking-form-container .form-actions {
    text-align: center;
    margin-top: 25px;
}

.custom-booking-form-container .submit-request-btn {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Barlow' !important;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 250px;
}

.custom-booking-form-container .submit-request-btn:hover:not(:disabled) {
    background-color: #025b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.3);
}

.custom-booking-form-container .submit-request-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #cccccc;
}

/* Success message styling */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.form-success-message .success-icon {
    margin-bottom: 20px;
}

.form-success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #08605F;
    margin-bottom: 15px;
    font-family: 'Barlow' !important;
}

.form-success-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: 'Barlow' !important;
}

.form-success-message .success-info {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Animation for form appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-booking-form-wrapper {
    animation: slideDown 0.3s ease-out;
}

/* =================================
   STICKY CART STYLING
   ================================= */

/* HIDE the old side panel and navigation */
.booking-side-panel {
    display: none !important;
}

.booking-step:not(.step-1)>.step-navigation {
    display: none !important;
}

/* GLOBAL FONT RULE FOR STICKY CART - ENSURES ALL ELEMENTS USE BARLOW */
body .booking-summary-card,
body .booking-summary-card *,
body .booking-summary-card .match-title,
body .booking-summary-card .venue-info,
body .booking-summary-card .match-time-info,
body .booking-summary-card .match-time-info span,
body .booking-summary-card .match-time-info strong,
body .booking-summary-card .price-display,
body .booking-summary-card .price-amount,
body .booking-summary-card .price-note {
    font-family: 'Barlow' !important;
}

/* Base sticky cart styles WITH iOS FIXES */
.booking-summary-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #1E2B34;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Barlow' !important;
    z-index: 1000;
    border-radius: 0 !important;
    margin: 0 !important;
    min-height: 100px;
    max-height: 50vh;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    display: none;
    transition: box-shadow 0.3s ease;

    /* iOS Safari fixes for fixed positioning */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* iOS specific fixes for proper fixed positioning */
@supports (-webkit-touch-callout: none) {
    .booking-summary-card {
        position: fixed !important;
        position: -webkit-sticky !important;
        bottom: 0 !important;
        /* Force GPU acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* When visible */
.booking-summary-card.visible {
    display: block !important;
}

.summary-card-content {
    display: flex;
    align-items: center;
    padding: 20px 20px;
    min-height: 80px;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    font-family: 'Barlow' !important;
    box-sizing: border-box;
}

/* Match info row */
.match-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    font-family: 'Barlow' !important;
}

/* Image container */
.match-image {
    width: 164px !important;
    height: 105px !important;
    min-width: 164px !important;
    min-height: 105px !important;
    max-width: 164px !important;
    max-height: 105px !important;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #2a3441;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow' !important;
}

.match-image img {
    width: 164px !important;
    height: 105px !important;
    min-width: 164px !important;
    min-height: 105px !important;
    max-width: 164px !important;
    max-height: 105px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Match details section */
.match-details {
    flex: 1;
    padding-right: 8px;
    color: #ffffff;
    min-width: 0;
    font-family: 'Barlow' !important;
}

.match-details * {
    font-family: 'Barlow' !important;
}

body .booking-summary-card .match-details .match-title {
    font-size: 25px !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
    font-family: 'Barlow' !important;
    margin-bottom: 5px !important;
}

body .booking-summary-card .match-details .venue-info {
    font-size: 20px !important;
    color: #94a3b8 !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
    font-family: 'Barlow' !important;
}

body .booking-summary-card .match-details .match-time-info {
    display: block !important;
    margin-bottom: 0px !important; /* Reduceret fra 2px */
    font-size: 12px !important;
    font-family: 'Barlow' !important;
    line-height: 16px !important; /* Reduceret fra 20px */
    font-weight: bold;
}

/* Hovedcontainere for hver info-linje */
body .booking-summary-card .match-details .match-time-info,
body .booking-summary-card .match-details .match-time-info {
    display: block !important;
    margin-bottom: 2px !important;
    font-size: 12px !important;
    font-family: 'Barlow' !important;
    line-height: 22px !important;
    font-weight: bold;
}

/* Inline spans inden i containerne */
body .booking-summary-card .match-details .match-time-info span.departure-date-display,
body .booking-summary-card .match-details .match-time-info span.to-text,
body .booking-summary-card .match-details .match-time-info span.return-date-display,
body .booking-summary-card .match-details .match-time-info span.package-includes {
    font-weight: 400 !important;
    display: inline !important;
    margin-bottom: 0 !important;
    font-family: 'Barlow' !important;
    color: #ffffff !important;
}

body .booking-summary-card .match-details .match-time-info strong {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-family: 'Barlow' !important;
    display: inline !important;
}

/* Separate lines for travel period and package info on desktop */
body .booking-summary-card .match-details .match-time-info .travel-period-display,
body .booking-summary-card .match-details .match-time-info .package-info-display {
    display: block !important;
    margin-bottom: 1px !important; /* Reduceret fra 2px */
    line-height: 16px !important; /* Tættere linjehøjde */
}

body .booking-summary-card .match-details .match-time-info .package-info-display {
    margin-bottom: 0 !important;
}

/* Pricing and navigation section */
.pricing-nav-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 200px;
    flex-shrink: 0;
    justify-content: center;
    margin-left: auto;
    font-family: 'Barlow' !important;
}

.price-display {
    text-align: right;
    color: #ffffff;
    font-family: 'Barlow' !important;
}

.price-label {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
    font-weight: 400;
    font-family: 'Barlow' !important;
}

.price-amount {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.1;
    font-family: 'Barlow' !important;
}

.price-note {
    font-size: 13px;
    color: #a0a8b8;
    line-height: 1.2;
    font-family: 'Barlow' !important;
}

/* Navigation buttons in sticky card - DESKTOP STYLES */
@media (min-width: 769px) {
    .booking-summary-card .step-navigation {
        display: flex !important;
        gap: 8px;
        margin: 0;
        justify-content: flex-end;
        width: 100%;
        font-family: 'Barlow' !important;
    }

    .booking-summary-card .prev-step {
        background-color: #08605F;
        color: #ffffff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
        font-family: 'Barlow' !important;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .booking-summary-card .next-step {
        background-color: #08605F;
        color: #ffffff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.2s;
        font-family: 'Barlow' !important;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .booking-summary-card .prev-step {
        background-color: transparent;
        color: #ffffff;
        min-width: 70px;
        text-decoration: underline;
        text-underline-offset: 4px;
        position: relative;
        padding-left: 28px;
    }

    .booking-summary-card .prev-step::before {
        content: "←";
        position: absolute;
        left: -0px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #ffffff;
        pointer-events: none;
        margin-right: 8px !important;
        width: 16px !important;
        text-align: center;
        display: inline-block;
        font-family: 'Barlow' !important;
    }

    .booking-summary-card .next-step {
        min-width: 120px;
        background-color: #08605F;
    }

    .booking-summary-card .next-step:hover:not(.disabled) {
        background-color: #025b4e;
    }

    .booking-summary-card .next-step.disabled {
        background-color: #4a5568 !important;
        cursor: not-allowed !important;
        opacity: 0.6 !important;
    }
}

/* Summary rows */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Barlow' !important;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row .label {
    flex: 1;
    text-align: left;
    padding-right: 10px;
    font-weight: normal;
    color: #94a3b8;
    font-family: 'Barlow' !important;
}

.summary-row .value {
    text-align: right;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Barlow' !important;
}

/* Deposit amount styling */
.summary-row.deposit-amount {
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Barlow' !important;
}

/* Focus states for accessibility */
.booking-summary-card .prev-step:focus,
.booking-summary-card .next-step:focus {
    outline: 2px solid #08605F;
    outline-offset: 2px;
}

/* Touch feedback for buttons */
.booking-summary-card .prev-step.touching,
.booking-summary-card .next-step.touching,
.booking-summary-card .prev-step.active-press,
.booking-summary-card .next-step.active-press {
    transform: scale(0.98);
    opacity: 0.8;
    transition: all 0.1s ease;
}

/* Force full width on all screen sizes */
@media all {
    .booking-summary-card {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }
}

/* Submit button styling in sticky cart */
.booking-summary-card .next-step.complete-booking {
    background-color: #08605F !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    min-width: 160px !important;
}

.booking-summary-card .next-step.complete-booking:hover:not(.disabled) {
    background-color: #025b4e !important;
    transform: scale(1.02);
}

/* =================================
   ENHANCED MOBILE STICKY CART
   ================================= */

@media (max-width: 768px) {

    /* Mobile sticky cart container WITH iOS FIXES */
    .booking-summary-card {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        min-height: 140px !important;
        max-height: 140px !important;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: max-height, transform;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);

        /* iOS Safari specific fixes */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-overflow-scrolling: touch;
    }

    /* iOS Safari specific positioning fix */
    @supports (-webkit-touch-callout: none) {
        .booking-summary-card {
            position: fixed !important;
            bottom: 0 !important;
            bottom: constant(safe-area-inset-bottom) !important;
            bottom: env(safe-area-inset-bottom) !important;
            /* Ensure it stays fixed during scroll */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        /* Fix for iOS bounce scroll */
        body.has-sticky-cart {
            position: relative;
            height: 100%;
            overflow-x: hidden;
        }
    }

    /* Expanded state */
    .booking-summary-card.expanded {
        max-height: 75vh !important;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    }

    /* Dragging state */
    .booking-summary-card.dragging {
        transition: none !important;
    }

    .travel-period-display {
        display: none !important;
    }

    /* ENHANCED Swipe handle area - FIXED TO TOP OF CART */
    .mobile-swipe-handle {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 40px;
        cursor: pointer;
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 20px 20px 0 0;
        touch-action: pan-y;
        /* Ensure it moves with the cart */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Swipe indicator */
    .mobile-swipe-indicator {
        width: 90px;
        height: 7px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 4px;
        margin-top: 10px;
        transition: all 0.2s ease;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        /* Keep it attached to handle */
        position: relative;
    }

    .mobile-swipe-handle:hover .mobile-swipe-indicator,
    .mobile-swipe-handle:active .mobile-swipe-indicator {
        background: rgba(255, 255, 255, 0.95);
        transform: scaleX(1.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    /* Animated arrow indicator */
    .mobile-swipe-arrow {
        display: none;
    }

    .mobile-swipe-arrow svg {
        width: 24px;
        height: 24px;
        stroke: #ffffff;
        stroke-width: 2.5;
        transition: transform 0.3s ease;
    }

    /* Enhanced swipe hint */
    .mobile-swipe-hint {
        position: absolute !important;
        bottom: 110px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(8, 96, 95, 0.95);
        color: white;
        padding: 14px 28px;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 600;
        opacity: 0;
        transition: all 0.3s ease;
        white-space: nowrap;
        text-align: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        z-index: 30;
        pointer-events: auto;
        cursor: pointer;
    }

    .mobile-swipe-hint .hint-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-swipe-hint svg {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease;
    }

    /* Show hint with pulse animation */
    .mobile-swipe-hint.pulse-hint {
        opacity: 1;
        animation: pulseHint 2s ease-in-out infinite;
    }

    @keyframes pulseHint {

        0%,
        100% {
            transform: translateX(-50%) translateY(0) scale(1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }

        50% {
            transform: translateX(-50%) translateY(-5px) scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
    }

    /* Hide hint when user has interacted */
    .booking-summary-card.user-has-swiped .mobile-swipe-hint:not(.pulse-hint) {
        opacity: 0;
        pointer-events: none;
    }

    /* Visual drag indicator */
    .mobile-drag-indicator {
        position: fixed !important;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(8, 96, 95, 0.85);
        color: white;
        padding: 10px 20px;
        border-radius: 22px;
        font-size: 26px;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.2s ease;
        pointer-events: none;
        z-index: 40;
    }

    .mobile-drag-indicator.up {
        animation: bounceUp 0.5s ease-out;
    }

    /* Navigation only section - FIXED TO BOTTOM OF CART */
    .mobile-nav-only {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #1E2B34;
        padding: 25px 20px 35px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 5;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        background: linear-gradient(to bottom, #1E2B34 0%, #1a2630 100%);
        /* Ensure it moves with the cart */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Safe area support for gesture navigation */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        .mobile-nav-only {
            padding-bottom: calc(35px + env(safe-area-inset-bottom));
        }

        .booking-summary-card {
            /* Adjust for safe area */
            bottom: 0 !important;
            bottom: env(safe-area-inset-bottom) !important;
        }
    }

    .mobile-nav-only .step-navigation {
        display: flex !important;
        gap: 24px !important;
        margin: 0 !important;
        justify-content: center !important;
        min-height: 52px;
    }

    /* Details section - hidden by default */
    .mobile-details-content {
        padding: 55px 16px 90px 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        overflow-y: auto;
        max-height: calc(75vh - 140px);
        -webkit-overflow-scrolling: touch;
    }

    .booking-summary-card.expanded .mobile-details-content {
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 35px;
    }

    /* STICKY CART CONTAINER */
    .booking-summary-card {
        min-height: 140px !important;
        max-height: 140px !important;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.4) !important;
    }

    .booking-summary-card.expanded {
        max-height: 75vh !important;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5) !important;
    }

    .summary-card-content {
        padding: 14px 16px !important;
        min-height: 85px !important;
        gap: 12px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    /* MATCH INFO ROW */
    .match-info-row {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        margin-bottom: 10px !important;
    }

    /* IMAGE */
    .match-image {
        width: 85px !important;
        height: 65px !important;
        min-width: 85px !important;
        min-height: 65px !important;
        max-width: 85px !important;
        max-height: 65px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
    }

    .match-image img,
    .match-image .image-placeholder {
        width: 85px !important;
        height: 65px !important;
        border-radius: 8px !important;
    }

    /* MATCH DETAILS */
    .match-details {
        flex: 1 !important;
        min-width: 0 !important;
        padding-right: 0 !important;
    }

    body .booking-summary-card .match-details .match-title {
        font-size: 17px !important;
        font-weight: 700 !important;
        margin: 0 0 3px 0 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body .booking-summary-card .match-details .venue-info {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        line-height: 1.15 !important;
        color: #94a3b8 !important;
    }

    body .booking-summary-card .match-details .match-time-info {
        font-size: 10px !important;
        color: #94a3b8 !important;
        line-height: 1.3 !important;
        font-family: 'Barlow' !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    body .booking-summary-card .match-details .match-time-info,
    body .booking-summary-card .match-details .match-time-info .package-info-display {
        display: block !important;
        margin-bottom: 2px !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Rejseperiode formatering */
    body .booking-summary-card .match-details .match-time-info span.departure-date-display,
    body .booking-summary-card .match-details .match-time-info span.to-text,
    body .booking-summary-card .match-details .match-time-info span.return-date-display {
        font-size: 11px !important;
        font-weight: 400 !important;
        color: #ffffff !important;
        display: inline !important;
    }

    body .booking-summary-card .match-details .match-time-info strong {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
    }

    /* PRICING AND NAVIGATION SECTION */
    .pricing-nav-section {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 14px !important;
        min-width: auto !important;
        margin-top: -8px !important;
    }

    /* PRICE DISPLAY */
    .price-display {
        flex: 1 !important;
        text-align: left !important;
        min-width: 0 !important;
        margin-top: -8px;
        align-items: end !important;
    }

    .price-label {
        font-size: 12px !important;
        margin-bottom: 2px !important;
        color: #94a3b8 !important;
    }

    .price-amount {
        font-size: 17px !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        margin-bottom: 2px !important;
        color: #ffffff !important;
    }

    .price-note {
        font-size: 10px !important;
        line-height: 1.15 !important;
        color: #94a3b8 !important;
    }

    /* NAVIGATION BUTTONS */
    .booking-summary-card .step-navigation {
        display: flex !important;
        gap: 20px !important;
        flex-shrink: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .booking-summary-card .prev-step,
    .booking-summary-card .next-step {
        padding: 16px 28px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        min-height: 52px !important;
        border-radius: 26px !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #08605F !important;
        color: #ffffff !important;
        border: 2px solid transparent !important;
        transition: all 0.2s ease !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        flex: 1 !important;
        max-width: 160px !important;
        text-decoration: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    /* Touch feedback overlay */
    .booking-summary-card .prev-step::after,
    .booking-summary-card .next-step::after {
        content: '';
        position: absolute;
        top: -8px;
        right: -8px;
        bottom: -8px;
        left: -8px;
        border-radius: 34px;
    }

    .booking-summary-card .prev-step {
        position: relative !important;
        padding-left: 36px !important;
    }

    .booking-summary-card .prev-step::before {
        content: "←" !important;
        position: absolute !important;
        left: 18px !important;
        font-size: 18px !important;
        font-weight: bold !important;
    }

    .booking-summary-card .next-step {
        position: relative !important;
        padding-right: 36px !important;
    }

    .booking-summary-card .next-step::after {
        position: absolute !important;
        right: 18px !important;
        font-size: 18px !important;
        font-weight: bold !important;
    }

    .booking-summary-card .prev-step:hover:not(.disabled),
    .booking-summary-card .next-step:hover:not(.disabled) {
        background-color: #025b4e !important;
        transform: scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .booking-summary-card .prev-step:active:not(.disabled),
    .booking-summary-card .next-step:active:not(.disabled) {
        transform: scale(0.98) !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .booking-summary-card .next-step.disabled {
        background-color: #4a5568 !important;
        cursor: not-allowed !important;
        opacity: 0.5 !important;
        box-shadow: none !important;
    }

    /* Adjust body padding */
    body.has-sticky-cart {
        padding-bottom: 140px !important;
    }

    body.has-sticky-cart.cart-expanded {
        padding-bottom: 160px !important;
    }

    /* Hide travel period completely on mobile - more specific selector */
    .booking-summary-card .match-details .match-time-info .travel-period-display,
    .booking-summary-card .travel-period-display,
    .travel-period-display {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Ensure only package info is shown on mobile */
    .booking-summary-card .match-details .match-time-info {
        font-size: 11px !important;
    }
    
    .booking-summary-card .match-details .match-time-info .package-info-display {
        display: block !important;
        visibility: visible !important;
    }
}

/* Extra små skærme */
@media (max-width: 480px) {
    .booking-summary-card {
        min-height: 135px !important;
        max-height: 135px !important;
    }

    .booking-summary-card.expanded {
        max-height: 70vh !important;
    }

    .summary-card-content {
        padding: 12px 14px !important;
        min-height: 75px !important;
        gap: 10px !important;
    }

    /* Skjul image på meget små skærme */
    .match-image {
        display: none;
    }

    .match-image img,
    .match-image .image-placeholder {
        display: none;
    }

    /* Tekst størrelser */
    body .booking-summary-card .match-details .match-title {
        font-size: 16px !important;
    }

    body .booking-summary-card .match-details .venue-info {
        font-size: 13px !important;
    }

    body .booking-summary-card .match-details .match-time-info {
        font-size: 10px !important;
    }

    .price-amount {
        font-size: 15px !important;
    }

    .price-note {
        font-size: 9px !important;
    }

    /* Buttons på små skærme */
    .booking-summary-card .prev-step,
    .booking-summary-card .next-step {
        padding: 14px 24px !important;
        font-size: 12px !important;
        font-weight: bold !important;
        min-height: 48px !important;
        max-width: 140px !important;
    }

    .mobile-nav-only {
        padding: 22px 16px 30px 16px;
    }

    .mobile-swipe-indicator {
        width: 70px !important;
        height: 6px !important;
    }

    .mobile-swipe-hint {
        font-size: 13px !important;
        padding: 12px 24px !important;
        bottom: 105px !important;
    }
}

/* iPhone X og nyere enheder med gesture navigation */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media (max-width: 768px) {
        .booking-summary-card {
            /* Position with safe area */
            bottom: 0 !important;
            bottom: env(safe-area-inset-bottom) !important;
            /* Extra padding for gesture area */
            padding-bottom: env(safe-area-inset-bottom);
        }

        /* Adjust body padding */
        body.has-sticky-cart {
            padding-bottom: calc(140px + env(safe-area-inset-bottom)) !important;
        }
    }
}

/* Landscape mode for phones */
@media (max-width: 768px) and (orientation: landscape) {
    .booking-summary-card {
        min-height: 100px !important;
        max-height: 100px !important;
    }

    .booking-summary-card.expanded {
        max-height: 90vh !important;
    }

    .summary-card-content {
        padding: 10px 14px !important;
        min-height: 65px !important;
    }

    body .booking-summary-card .match-details {
        font-size: 14px !important;
    }

    .price-amount {
        font-size: 14px !important;
    }

    .booking-summary-card .prev-step,
    .booking-summary-card .next-step {
        padding: 12px 20px !important;
        font-size: 11px !important;
        min-height: 44px !important;
    }

    .mobile-swipe-handle {
        height: 30px !important;
    }

    .mobile-swipe-indicator {
        width: 60px !important;
        height: 5px !important;
        margin-top: 8px !important;
    }

    .mobile-swipe-hint {
        bottom: 90px !important;
        font-size: 12px !important;
        padding: 10px 20px !important;
    }

    .mobile-nav-only {
        padding: 18px 16px 25px 16px;
    }
}

/* Desktop adjustments */
@media (min-width: 769px) {

    /* Remove swipe functionality on desktop */
    .mobile-swipe-handle,
    .mobile-swipe-indicator,
    .mobile-swipe-arrow,
    .mobile-swipe-hint,
    .mobile-nav-only,
    .mobile-details-content,
    .mobile-drag-indicator {
        display: none !important;
    }

    /* Normal desktop layout */
    .booking-summary-card {
        left: 0;
        right: 0;
        transform: none;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        bottom: 0;
    }

    .summary-card-content {
        padding: 16px 40px;
        max-width: 1200px;
    }

    .match-image {
        width: 164px;
        height: 105px;
    }

    .pricing-nav-section {
        min-width: 240px;
    }

    .booking-summary-card .prev-step,
    .booking-summary-card .next-step {
        padding: 12px 20px;
        font-size: 13px;
    }

    .booking-summary-card .prev-step {
        min-width: 90px;
    }

    .booking-summary-card .next-step {
        min-width: 160px;
    }

    /* Hover effect for cart itself */
    .booking-summary-card:hover {
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .summary-card-content {
        max-width: 1200px;
        padding: 16px 60px;
    }
}

/* =================================
   MOBILE FLIGHT SELECTION APP STYLE
   ================================= */

/* Mobile Flight App - COMPLETE REDESIGN */
@media (max-width: 768px) {
    
    /* Hide desktop layout completely */
    .step-5 .flight-options,
    .step-5 .flight-direction {
        display: none !important;
    }
    
    /* Mobile flight app container */
    .mobile-flight-app {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #091924 0%, #0f2a3a 100%);
        z-index: 999;
        display: none;
        flex-direction: column;
        font-family: 'Barlow' !important;
    }
    
    .mobile-flight-app.active {
        display: flex;
    }
    
    /* App header */
    .mobile-flight-header {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        padding: 12px 15px 8px 15px;
        color: white;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 65px;
        z-index: 99999999;
    }
    
    .mobile-flight-close {
        display: none;
    }
    
    .mobile-flight-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 2px;
        text-align: center;
        opacity: 0.9;
    }
    
    .mobile-flight-subtitle {
        font-size: 11px;
        opacity: 0.6;
        text-align: center;
        margin-bottom: 8px;
    }
    
    /* Flight direction tabs */
    .mobile-flight-tabs {
        display: flex;
        background: rgba(255, 255, 255, 0.05);
        margin: 0 15px;
        border-radius: 20px;
        padding: 3px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .mobile-flight-tab {
        flex: 1;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        padding: 8px 12px;
        border-radius: 16px;
        font-family: 'Barlow';
        font-weight: 600;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .mobile-flight-tab.active {
        background: #08605F;
        color: white;
        box-shadow: 0 1px 6px rgba(8, 96, 95, 0.4);
    }
    
    /* Airport selector */
    .mobile-airport-selector {
        padding: 8px 15px 6px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .mobile-airport-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
    
    .mobile-airport-option {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        padding: 6px 8px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .mobile-airport-option.active {
        background: #08605F;
        border-color: #08605F;
        box-shadow: 0 1px 4px rgba(8, 96, 95, 0.4);
    }
    
    /* Flight content area */
    .mobile-flight-content {
        flex: 1;
        overflow-y: auto;
        position: relative;
        background: white;
        border-radius: 16px 16px 0 0;
        margin-top: 8px;
        padding-bottom: 100px;
    }
    
    .mobile-flight-section {
        display: none;
        padding: 15px 12px;
        min-height: 100%;
    }
    
    .mobile-flight-section.active {
        display: block;
    }
    
    /* Flight cards with proper backgrounds */
    .mobile-flight-card {
        background: linear-gradient(135deg, #e8f5f3 0%, #d4f1ed 100%);
        border-radius: 20px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid #b8e6df;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        color: #091924;
    }
    
    .mobile-flight-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(8, 96, 95, 0.15);
        border-color: #08605F;
    }
    
    /* Selected cards - green background */
    .mobile-flight-card.selected {
        border-color: #025b4e;
        background: linear-gradient(135deg, #025b4e 0%, #044d44 100%);
        box-shadow: 0 8px 30px rgba(2, 91, 78, 0.3);
        color: white;
    }
    
    /* Included cards - same as unselected */
    .mobile-flight-card.included {
        background: linear-gradient(135deg, #e8f5f3 0%, #d4f1ed 100%);
        border-radius: 20px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid #b8e6df;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        color: #091924;
    }
    
    /* Selected included cards - darker green */
    .mobile-flight-card.selected.included {
        background: linear-gradient(135deg, #025b4e 0%, #044d44 100%);
        box-shadow: 0 6px 25px rgba(8, 96, 95, 0.4);
        color: #ffffff;
    }
    
    /* Card header - time & price */
    .mobile-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .mobile-flight-times {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-time {
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }
    
    .mobile-flight-arrow {
        color: #08605F;
        font-size: 20px;
        position: relative;
    }
    
    /* Ensure arrow is visible on both backgrounds */
    .mobile-flight-card.selected .mobile-flight-arrow {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .mobile-card-price {
        text-align: right;
        flex-shrink: 0;
    }
    
    .mobile-price-main {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
    }
    
    .mobile-price-sub {
        font-size: 12px;
        opacity: 0.7;
        margin-top: 2px;
    }
    
    .mobile-included-badge {
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Card body - compact info */
    .mobile-card-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-flight-card.selected .mobile-card-body,
    .mobile-flight-card.included .mobile-card-body {
        border-top-color: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-airline-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-airline-logo {
        width: 35px;
        height: 25px;
        background: #f8f9fa;
        border-radius: 6px;
        padding: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-airline-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .mobile-airline-details {
        flex: 1;
    }
    
    /* Fix airline name visibility */
    .mobile-airline-name {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 2px;
        color: inherit;
    }
    
    /* Fix duration visibility */
    .mobile-flight-duration {
        font-size: 11px;
        opacity: 0.8;
        display: flex;
        align-items: center;
        gap: 4px;
        color: inherit;
    }
    
    .mobile-flight-badges {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    
    .mobile-badge {
        background: #08605F;
        color: white;
        font-size: 9px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 8px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .mobile-badge.direct {
        background: #52c41a;
    }
    
    .mobile-flight-card.selected .mobile-badge {
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Selection indicator */
    .mobile-selection-indicator {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 24px;
        height: 24px;
        border: 2px solid #e0e0e0;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        margin-right: 50px;
        color: #000;
    }
        
    .mobile-flight-card.included .mobile-selection-indicator {
        display:none;
    }

    .mobile-flight-card.selected .mobile-selection-indicator {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-selection-checkmark {
        color: white;
        font-size: 14px;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    
    .mobile-flight-card.selected .mobile-selection-checkmark,
    .mobile-flight-card.included .mobile-selection-checkmark {
        opacity: 1;
    }
    
    /* Complete booking button */
    .mobile-complete-container {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 1000;
        padding: 0;
    }
    
    .mobile-complete-booking-btn {
        width: 100%;
        background: linear-gradient(135deg, #08605F 0%, #066b69 100%);
        color: white;
        border: none;
        padding: 16px 24px;
        border-radius: 25px;
        font-family: 'Barlow';
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(8, 96, 95, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-complete-booking-btn:hover {
        background: linear-gradient(135deg, #025b4e 0%, #044d45 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(8, 96, 95, 0.4);
    }
    
    .mobile-success-notice {
        background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
        color: white;
        padding: 16px 24px;
        border-radius: 25px;
        text-align: center;
        font-family: 'Barlow';
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 20px rgba(82, 196, 26, 0.3);
        animation: slideInUp 0.4s ease-out;
    }
    
    /* Loading state */
    .mobile-loading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        text-align: center;
    }
    
    .mobile-loading-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid #f0f2f5;
        border-top-color: #08605F;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }
    
    .mobile-loading-text {
        font-size: 16px;
        font-weight: 600;
        color: #666;
        margin-bottom: 5px;
    }
    
    .mobile-loading-subtext {
        font-size: 14px;
        color: #999;
    }
    
    /* Error state */
    .mobile-error {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        text-align: center;
    }
    
    .mobile-error-icon {
        font-size: 48px;
        color: #ff6b6b;
        margin-bottom: 15px;
    }
    
    .mobile-error-text {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }
    
    .mobile-error-subtext {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }
    
    .mobile-retry-btn {
        background: #08605F;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 20px;
        font-family: 'Barlow';
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .mobile-retry-btn:hover {
        background: #066b69;
        transform: translateY(-1px);
    }
    
    /* Success toast */
    .mobile-success-toast {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #08605F;
        color: white;
        padding: 15px 25px;
        border-radius: 25px;
        font-family: 'Barlow';
        font-weight: 600;
        font-size: 16px;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
        box-shadow: 0 8px 30px rgba(8, 96, 95, 0.4);
    }
    
    .mobile-success-toast.show {
        opacity: 1;
    }
    
    /* Animation keyframes */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-flight-card {
        animation: slideInUp 0.4s ease-out;
        animation-fill-mode: both;
    }
    
    .mobile-flight-card:nth-child(1) { animation-delay: 0.1s; }
    .mobile-flight-card:nth-child(2) { animation-delay: 0.2s; }
    .mobile-flight-card:nth-child(3) { animation-delay: 0.3s; }
    .mobile-flight-card:nth-child(4) { animation-delay: 0.4s; }
    .mobile-flight-card:nth-child(5) { animation-delay: 0.5s; }
    
    /* Swipe gestures */
    .mobile-flight-card.swiping {
        transform: translateX(0);
        transition: none;
    }
    
    .mobile-flight-card.swipe-accept {
        transform: translateX(100px);
        opacity: 0.7;
        background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
        color: white;
    }
    
    .mobile-flight-card.swipe-reject {
        transform: translateX(-100px);
        opacity: 0.7;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
        color: white;
    }
    
    /* Compact mode toggle */
    .mobile-view-toggle {
        display: flex;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 3px;
        margin: 15px 15px 20px 15px;
    }
    
    .mobile-toggle-btn {
        flex: 1;
        background: none;
        border: none;
        padding: 8px 12px;
        border-radius: 16px;
        font-family: 'Barlow';
        font-weight: 600;
        font-size: 12px;
        color: #666;
        cursor: pointer;
        transition: all 0.2s ease;
        text-transform: uppercase;
    }
    
    .mobile-toggle-btn.active {
        background: white;
        color: #08605F;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    #travelers-info-form {
        color:white;
    }
}

/* Desktop fallback - show nothing new */
@media (min-width: 769px) {
    .mobile-flight-app {
        display: none !important;
    }
}

/* =================================
   GENERAL MOBILE OPTIMIZATIONS
   ================================= */

@media (max-width: 768px) {
    .football-booking-container {
        padding: 12px !important;
        padding-bottom: 160px !important;
    }
    
    .booking-title {
        font-size: 1.4rem !important;
        margin-top: 25px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .booking-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }

    /* Progress bar mobile */
    .progress-bar {
        height: 45px !important;
        margin-bottom: 20px !important;
        border-radius: 6px !important;
    }
    
    .booking-progress .progress-step {
        font-size: 0px !important;
        font-weight: 700 !important;
        padding: 8px 4px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        text-indent: -9999px !important;
        overflow: hidden !important;
    }
    
    /* Mobile step text */
    .booking-progress .progress-step[data-step="1"]::after { 
        content: "PAKKE" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .booking-progress .progress-step[data-step="2"]::after { 
        content: "DATO" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .booking-progress .progress-step[data-step="3"]::after { 
        content: "BILLETTER" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .booking-progress .progress-step[data-step="4"]::after { 
        content: "HOTEL" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .booking-progress .progress-step[data-step="5"]::after { 
        content: "FLY" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .booking-progress .progress-step[data-step="6"]::after { 
        content: "BOOKING" !important; 
        font-size: 10px !important; 
        text-indent: 0 !important; 
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    /* Step titles mobile */
    .step-title,
    .step-title-book {
        padding: 12px !important;
        font-size: 13px !important;
        min-height: 45px !important;
        border-radius: 6px !important;
    }
    
    .step-title::before,
    .step-title-book::before {
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    
    .step-title::after,
    .step-title-book::after {
        font-size: 11px !important;
        font-weight: 400 !important;
    }

    /* Flight selection mobile */
    .airport-options {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 12px !important;
        background-color: #f8fafb !important;
        border-radius: 8px !important;
    }
    
    .airport-option {
        padding: 12px 8px !important;
        font-size: 11px !important;
        text-align: center !important;
        border-radius: 6px !important;
        line-height: 1.2 !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Flight options layout */
    .flight-option {
        display: flex !important;
        flex-direction: column !important;
        padding: 16px !important;
        gap: 12px !important;
        border-bottom: 1px solid #e5e7eb !important;
        margin-bottom: 0 !important;
    }
    
    .flight-option:last-child {
        border-bottom: none !important;
    }
    
    .flight-option:hover {
        background-color: #f9fafb !important;
        transform: none !important;
    }
    
    .flight-option.selected {
        background-color: #f0f9f9 !important;
        border-left: 4px solid #08605F !important;
        border-right: 4px solid #08605F !important;
        transform: none !important;
    }

    /* Airline section */
    .airline-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid #f0f2f5 !important;
    }
    
    .airline-logo {
        width: 50px !important;
        height: 35px !important;
        flex-shrink: 0 !important;
        background-color: #ffffff !important;
        border-radius: 4px !important;
        padding: 4px !important;
    }
    
    .airline-logo img {
        width: 42px !important;
        height: 27px !important;
        object-fit: contain !important;
    }
    
    .airline-name {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #091924 !important;
        line-height: 1.3 !important;
    }

    /* Flight times */
    .flight-times {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }
    
    .departure-time,
    .arrival-time {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #091924 !important;
        text-align: center !important;
    }

    /* Flight duration */
    .flight-duration {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
    }
    
    .duration-line {
        width: 50px !important;
        height: 1px !important;
        background: #6b7280 !important;
        position: relative !important;
        margin: 4px 0 !important;
    }
    
    .duration-line::after {
        content: '✈' !important;
        position: absolute !important;
        right: -6px !important;
        top: -6px !important;
        font-size: 10px !important;
        color: #6b7280 !important;
    }
    
    .duration-label {
        font-size: 9px !important;
        color: #6b7280 !important;
        font-weight: 500 !important;
        text-align: center !important;
    }
    
    .direkte {
        font-size: 8px !important;
        color: #08605F !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        background: rgba(8, 96, 95, 0.1) !important;
        padding: 2px 6px !important;
        border-radius: 3px !important;
        text-align: center !important;
    }

    /* På mobile enheder */
    .via-stopover {
        font-size: 9px;
        margin-top: 1px;
    }

    /* Airport info */
    .flight-airports {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    
    .departure-airport,
    .arrival-airport {
        font-size: 10px !important;
        font-weight: 600 !important;
        color: #6b7280 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Price section */
    .flight-price {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding-top: 10px !important;
        border-top: 1px solid #e5e7eb !important;
    }
    
    .price-tag {
        background-color: transparent !important;
        color: #091924 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
    }
    
    .included-tag {
        background-color: #08605F !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        padding: 4px 12px !important;
        border-radius: 4px !important;
    }
    
    .flight-option.selected .price-tag {
        background-color: #08605F !important;
        color: #ffffff !important;
    }

    /* Radio button */
    .flight-selection-radio {
        width: 16px !important;
        height: 16px !important;
        border: 2px solid #d1d5db !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }
    
    .flight-option:hover .flight-selection-radio {
        border-color: #08605F !important;
    }
    
    .flight-option.selected .flight-selection-radio {
        border-color: #08605F !important;
        background-color: #08605F !important;
        box-shadow: inset 0 0 0 3px #ffffff !important;
    }

    /* Show more button */
    .vis-flere-fly {
        width: calc(100% - 32px) !important;
        margin: 16px !important;
        padding: 12px 20px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
    }

    /* Ticket and hotel options mobile */
    .ticket-option,
    .hotel-option {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .ticket-image,
    .hotel-image {
        align-self: center !important;
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .ticket-image img,
    .hotel-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 280px !important;
    }
    
    .ticket-details h3,
    .hotel-details h3 {
        text-align: center !important;
        font-size: 18px !important;
        margin-bottom: 12px !important;
        padding-left: 0 !important;
    }
    
    .ticket-price-section {
        margin-left: 0 !important;
        margin-top: 10px !important;
        align-self: center !important;
        min-width: auto !important;
    }
    
    .price-tag,
    .included-tag {
        padding: 10px 18px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    
    .selection-indicator {
        margin-top: 12px !important;
    }
    
    .selection-indicator .select-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* Hide elements on mobile */
    .flight-info::after {
        display: none !important;
    }
    
    .flight-direction {
        margin-bottom: 20px !important;
    }
    
    .flight-info {
        margin-bottom: 0 !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    /* Performance optimizations */
    .package-option:hover,
    .ticket-option:hover,
    .hotel-option:hover {
        transform: none !important;
        animation: none !important;
    }
    
    /* Optimize touch targets */
    .airport-option,
    .traveler-option,
    .package-option,
    .ticket-option,
    .hotel-option,
    .flight-option {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Responsive date selection */
    .date-selection-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .date-flow-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .date-cards {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        display: block;
    }
    
    .date-card {
        min-width: 120px;
    }
    
    .selected-period-summary {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile responsive for seats and forms */
    .seat-option,
    .guarantee-option,
    .payment-option {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .seat-label,
    .guarantee-label,
    .payment-label {
        font-size: 13px;
        margin-bottom: 5px;
        width: calc(100% - 35px);
    }

    .seat-price,
    .guarantee-price,
    .payment-price {
        font-size: 12px;
        width: 100%;
        margin-left: 35px;
        margin-top: 5px;
    }

    .guarantee-notice-section {
        padding: 15px;
    }

    .guarantee-info-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Custom booking form mobile */
    .custom-booking-form-container {
        padding: 20px;
    }
    
    .custom-booking-form-container .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .custom-booking-form-container .form-header h3 {
        font-size: 1.1rem;
    }
    
    .custom-booking-form-container .form-header p {
        font-size: 0.9rem;
    }
    
    .custom-booking-form-container .submit-request-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
    }

    @media (max-width: 767px) {
        .progress-step.completed[data-step="2"][data-mobile-text="Datoer"] {
            display: none !important;
        }
    }
    
    @media (max-width: 767px) {
        .progress-step[data-step="2"][data-mobile-text="Datoer"] {
            display: none !important;
        }
    }
}

/* =================================
   ANIMATIONS AND TRANSITIONS
   ================================= */

/* Date selector animations */
.date-selector.selected .date-label {
    animation: labelPulse 0.6s ease-out;
}

@keyframes labelPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Package selection animations */
.package-option {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.package-option:hover {
    animation: packageHover 0.3s ease-out;
}

@keyframes packageHover {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(-3px); }
}

/* Traveler selection animations */
.traveler-option {
    transition: all 0.3s ease;
}

.traveler-option:hover {
    animation: travelerBounce 0.3s ease-out;
}

@keyframes travelerBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}

/* Button animations */
.next-step{
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.next-step:hover:not(.disabled) {
    animation: buttonGlow 0.3s ease-out;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 0 0 rgba(8, 96, 95, 0.4); }
    50% { box-shadow: 0 0 20px rgba(8, 96, 95, 0.6); }
    100% { box-shadow: 0 0 10px rgba(8, 96, 95, 0.4); }
}

/* Loading spinner animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #08605F;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Checkbox animation */
.selection-checkbox .checkbox-visual {
    transition: all 0.2s ease;
}

.selection-checkbox .checkbox-visual.selection-confirmed {
    animation: confirmPulse 0.3s ease-out;
}

@keyframes confirmPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Flight selection animations */
.flight-option {
    transition: all 0.2s ease;
}

.flight-option:hover {
    animation: flightHover 0.3s ease-out;
}

@keyframes flightHover {
    0% { 
        transform: translateY(0);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }
    100% { 
        transform: translateY(-2px);
        border-left: 4px solid #08605F;
        border-right: 4px solid #08605F;
    }
}

/* Sticky cart animations */
.booking-summary-card {
    transition: all 0.3s ease;
    animation: slideUpFromBottom 0.5s ease-out;
}

@keyframes slideUpFromBottom {
    0% { 
        transform: translateY(100%);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Price update animation */
.price-amount {
    transition: all 0.3s ease;
}

.price-amount.updating {
    animation: priceFlash 0.5s ease-out;
}

@keyframes priceFlash {
    0% { color: #ffffff; }
    50% { color: #ffc107; }
    100% { color: #ffffff; }
}

/* Progress bar animation */
.progress-step {
    transition: all 0.3s ease;
}

.progress-step.active {
    animation: progressActive 0.5s ease-out;
}

@keyframes progressActive {
    0% { 
        background: #ffffff;
        color: #333333;
    }
    100% { 
        background: #08605F;
        color: #ffffff;
    }
}

/* Fade in animations */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in animations */
.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    0% { 
        opacity: 0;
        transform: translateX(-20px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for loading states */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Image loading animation */
.match-image img {
    transition: opacity 0.3s ease;
}

.match-image img.loaded {
    animation: imageLoad 0.3s ease-out;
}

@keyframes imageLoad {
    0% { 
        opacity: 0;
        transform: scale(0.95);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Error shake animation */
.error-shake {
    animation: shake 0.5s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success bounce animation */
.success-bounce {
    animation: bounce 0.6s ease-out;
}

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

/* Micro-interactions */
.micro-bounce {
    animation: microBounce 0.2s ease-out;
}

@keyframes microBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Form field focus animation */
.form-field input:focus,
.form-field select:focus {
    animation: inputFocus 0.3s ease-out;
}

@keyframes inputFocus {
    0% { 
        border-color: #ddd;
        box-shadow: 0 0 0 rgba(8, 96, 95, 0);
    }
    100% { 
        border-color: #08605F;
        box-shadow: 0 0 8px rgba(8, 96, 95, 0.3);
    }
}

/* Loading state for date cards */
.date-cards.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Animation for selection */
@keyframes selectPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

.date-card.selecting {
    animation: selectPulse 0.3s ease-out;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .booking-summary-card,
    .package-option,
    .traveler-option,
    .flight-option,
    .ticket-option {
        transition: none !important;
        animation: none !important;
    }
}

/* =================================
   SESSION TIMER STYLING
   ================================= */

/* Session Timer Display in Sticky Cart */
.session-timer-display {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 11px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    transition: all 0.3s ease;
    font-family: 'Barlow' !important;
}

.session-timer-display .timer-icon {
    font-size: 10px;
    opacity: 0.7;
}

.session-timer-display .timer-text {
    font-weight: 500;
    min-width: 25px;
    text-align: center;
}

.session-timer-display.warning {
    background: rgba(231, 76, 60, 0.8);
    animation: pulse 2s infinite;
}

/* Session Timeout Warning Modal */
.session-timeout-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInModal 0.3s ease-out;
    font-family: 'Barlow' !important;
}

.warning-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease-out;
    font-family: 'Barlow' !important;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.warning-content h3 {
    color: #091924;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Barlow' !important;
}

.warning-content p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Barlow' !important;
}

.warning-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.continue-session-btn,
.restart-session-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-family: 'Barlow' !important;
    min-width: 120px;
}

.continue-session-btn {
    background-color: #08605F;
    color: #ffffff;
}

.continue-session-btn:hover {
    background-color: #025b4e;
    transform: translateY(-1px);
}

.restart-session-btn {
    background-color: #f8f9fa;
    color: #333333;
    border: 2px solid #e9ecef;
}

.restart-session-btn:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

/* Pulse warning animation */
.pulse-warning .warning-content {
    animation: pulseWarning 1s infinite;
}

@keyframes pulseWarning {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Session Timeout Message Modal */
.session-timeout-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInModal 0.3s ease-out;
    font-family: 'Barlow' !important;
}

.timeout-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: slideInModal 0.3s ease-out;
    font-family: 'Barlow' !important;
}

.timeout-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.timeout-content h2 {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Barlow' !important;
}

.timeout-content p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Barlow' !important;
}

.restart-booking-btn {
    background-color: #08605F;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    margin-top: 20px;
    font-family: 'Barlow' !important;
}

.restart-booking-btn:hover {
    background-color: #025b4e;
    transform: translateY(-1px);
}

/* Modal Animations */
@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .session-timer-display {
        top: 5px;
        right: 5px;
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .warning-content,
    .timeout-content {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .warning-content h3 {
        font-size: 1.3rem;
    }
    
    .timeout-content h2 {
        font-size: 1.5rem;
    }
    
    .warning-content p,
    .timeout-content p {
        font-size: 0.95rem;
    }
    
    .warning-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .continue-session-btn,
    .restart-session-btn,
    .restart-booking-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .session-timeout-warning,
    .session-timeout-message {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .warning-content,
    .timeout-content {
        border: 2px solid #333333;
    }
    
    .continue-session-btn,
    .restart-booking-btn {
        border: 2px solid #ffffff;
    }
    
    .selection-indicator .select-icon {
        border-width: 3px;
    }

    .ticket-option.selected,
    .hotel-option.selected {
        border-width: 3px;
    }

    .flight-option {
        border: 2px solid #091924;
    }

    .flight-option.selected {
        border-width: 3px;
    }

    .flight-option::after {
        border-width: 3px;
    }

    .booking-summary-card {
        border: 2px solid #ffffff;
    }

    .booking-summary-card .prev-step,
    .booking-summary-card .next-step {
        border: 2px solid #ffffff;
    }

    .mobile-swipe-indicator {
        background: #ffffff;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .booking-summary-card {
        background-color: #111827;
        border-top: 1px solid #374151;
    }

    .match-image .image-placeholder {
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        border-color: #4b5563;
        color: #6b7280;
    }

    .mobile-swipe-handle {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Print styles */
@media print {
    .booking-summary-card,
    .session-timer-display,
    .session-timeout-warning,
    .session-timeout-message,
    .vis-flere-fly,
    .airport-selector {
        display: none !important;
    }

    body.has-sticky-cart {
        padding-bottom: 0 !important;
    }

    .flight-option {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Fallback for browsere der ikke understøtter CSS imports */
@supports not (display: grid) {
    .package-options {
        display: block;
    }
    
    .package-option {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Touch-optimized cursor behavior */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .package-option:hover,
    .ticket-option:hover,
    .hotel-option:hover,
    .flight-option:hover {
        transform: none;
    }
    
    /* Use active states instead */
    .package-option:active,
    .ticket-option:active,
    .hotel-option:active,
    .flight-option:active {
        transform: scale(0.98);
    }
}

/* iOS specific fixes for proper fixed positioning */
@supports (-webkit-touch-callout: none) {
    .mobile-input,
    .mobile-select,
    .mobile-date-input {
        font-size: 16px !important; /* Prevent zoom on focus */
    }
}

/* =================================
   CART AND CHECKOUT INTEGRATION
   ================================= */

/* Hide default WooCommerce elements */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-cart-form:not(.booking-flow-form),
body.woocommerce-cart .cart-collaterals:not(.booking-flow-totals),
body.woocommerce-cart .woocommerce > *:not(#football-booking-container),
body.woocommerce-cart header,
body.woocommerce-cart footer,
body.woocommerce-cart .header,
body.woocommerce-cart .site-header {
    display: none !important;
}

/* Booking summary content */
.booking-summary-section {
    background-color: #ffffff;
    color: #091924;
    padding: 40px;
    min-height: auto;
}

.booking-summary-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section titles */
body .section-title {
    font-size: 16px;
    font-weight: 800 !important;
    color: #08605F;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Barlow';
}

/* Info grid */
.summary-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.info-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: 'Barlow';
}

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

.info-row .label {
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

.info-row .value {
    color: #091924;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

/* Package components */
.package-components {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.component-item:hover {
    background-color: #f0f2f5;
}

.component-icon {
    font-size: 32px;
    flex-shrink: 0;
}

body .component-details {
    flex: 1;
    font-family: 'Barlow' !important;
}

body .component-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #091924;
    font-family: 'Barlow' !important;
}

body .component-details p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    font-family: 'Barlow' !important;
}

body .flight-info strong {
    display: inline-block;
    width: 100px;
}

body .component-price {
    font-size: 14px;
    font-weight: 600;
    color: #091924;
    flex-shrink: 0;
}

table.shop_table tbody > tr, table.shop_table tfoot > tr {
    background: none;
}

body .component-details .flight-info {
    margin-bottom: 5px;
}

.component-price {
    flex-shrink: 0;
}

/* Travelers */
.travelers-summary {
    margin-bottom: 40px;
}

.travelers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.traveler-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Barlow';
}

.traveler-number {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.traveler-name {
    font-size: 16px;
    font-weight: 700;
    color: #091924;
    margin-bottom: 8px;
}

.traveler-birthday {
    font-size: 14px;
    color: #6b7280;
}

/* Price summary */
.price-summary-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.price-summary-section .cart_totals {
    margin: 0;
}

.price-summary-section h2 {
    display: none;
}

.price-summary-section .shop_table {
    border: none;
    margin-bottom: 0;
}

.price-summary-section .shop_table th,
.price-summary-section .shop_table td {
    border: none;
    padding: 12px 0;
    font-family: 'Barlow';
}

.price-summary-section .shop_table th {
    text-align: left;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

.price-summary-section .shop_table td {
    text-align: right;
    color: #091924;
    font-weight: 600;
}

.price-summary-section .order-total th,
.price-summary-section .order-total td {
    font-size: 20px;
    font-weight: 700;
    color: #08605F;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

/* Hide checkout button in totals */
.price-summary-section .wc-proceed-to-checkout {
    display: none;
}

/* Empty cart */
.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

.empty-cart-message a {
    color: #08605F;
    text-decoration: underline;
}

/* Navigation styling for cart page */
.booking-step .step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.step-navigation .prev-step,
.step-navigation .next-step {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-family: 'Barlow';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-navigation .prev-step {
    background-color: #f0f2f5;
    color: #091924;
}

.step-navigation .prev-step:hover {
    background-color: #e5e7eb;
}

.step-navigation .next-step {
    background-color: #08605F;
    color: #ffffff;
    margin-left: auto;
}

.step-navigation .next-step:hover {
    background-color: #065352;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.3);
}

/* Ensure price summary checkout button is visible */
.price-summary-section .wc-proceed-to-checkout {
    display: block !important;
    margin-top: 20px;
}

.price-summary-section .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background-color: #08605F;
    color: #ffffff;
    text-align: center;
    font-family: 'Barlow';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-summary-section .wc-proceed-to-checkout .checkout-button:hover {
    background-color: #065352;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 96, 95, 0.3);
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .booking-step .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-navigation .prev-step,
    .step-navigation .next-step {
        width: 100%;
        justify-content: center;
    }
    
    .step-navigation .next-step {
        margin-left: 0;
    }

    .booking-summary-section {
        padding: 20px;
    }
    
    .summary-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .component-item {
        flex-wrap: wrap;
        text-align: center;
    }
    
    .component-icon {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .component-details {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .component-price {
        width: 100%;
    }
    
    .travelers-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-row .value {
        text-align: left;
        margin-top: 5px;
    }
}

/* Ensure all elements use Barlow font */
#football-booking-container * {
    font-family: 'Barlow' !important;
}

/* Override any conflicting WooCommerce styles */
body.woocommerce-cart .woocommerce {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Notices styling if they appear */
.woocommerce-notices-wrapper {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: #ffffff !important;
    color: #091924 !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
    font-family: 'Barlow' !important;
}
