/* Alapvető változók és beállítások */
:root {

    --secondary-color: #071a36;
    --dark-color: #050d1a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* ================================================
   HERO SZEKCIÓ - MODERN RACING DESIGN
   ================================================ */

.car-hero-section {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    overflow: hidden;
    margin-bottom: 0;
}

/* Racing Stripes Animáció */
.racing-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.stripe {
    position: absolute;
    height: 2px;
    width: 200%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 186, 8, 0.3) 25%, 
        rgba(255, 186, 8, 0.6) 50%, 
        rgba(255, 186, 8, 0.3) 75%, 
        transparent 100%);
    animation: racing-stripe 3s linear infinite;
    transform: translateX(-100%);
}

.stripe-1 {
    top: 25%;
    animation-delay: 0s;
}

.stripe-2 {
    top: 50%;
    animation-delay: 1s;
}

.stripe-3 {
    top: 75%;
    animation-delay: 2s;
}

@keyframes racing-stripe {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Speed Lines Animation */
.speed-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.speed-line {
    position: absolute;
    right: -100px;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: speed-line 2s ease-in-out infinite;
}

@keyframes speed-line {
    0% {
        transform: translateX(0) scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-800px) scaleX(2);
        opacity: 0;
    }
}

/* Dark Gradient Overlay */
.car-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
}

.car-hero-section .overlay[data-category="extreme"] {
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.3) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(220, 20, 60, 0.3) 100%);
}

.car-hero-section .overlay[data-category="high"] {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(255, 140, 0, 0.25) 100%);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
}

/* Hero Content Grid - Két oszlop */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

/* BAL OLDAL - Szövegek */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Kategória Badge */
.car-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 186, 8, 0.4);
    width: fit-content;
    animation: pulse-badge 2s ease-in-out infinite;
}

.car-category-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.car-category-badge.extreme {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.6);
}

.car-category-badge.high {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.6);
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 186, 8, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 186, 8, 0.7);
        transform: scale(1.02);
    }
}

/* Autó Cím */
.car-hero-section .car-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.car-title .car-make {
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
}

.car-title .car-model {
    font-size: 1em;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    background: linear-gradient(90deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline */
.car-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.car-tagline i {
    color: var(--primary-color);
    font-size: 1.4rem;
    animation: wave-flag 1.5s ease-in-out infinite;
}

@keyframes wave-flag {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

/* Ár Badge */
.car-price-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px 30px;
    width: fit-content;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* JOBB OLDAL - Spec Boxes */
.hero-right {
    display: flex;
    justify-content: flex-end;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 500px;
}

/* Hero Spec Box - Modern Racing Style */
.hero-spec-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 186, 8, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-spec-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 186, 8, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.hero-spec-box:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 186, 8, 0.4),
                inset 0 0 20px rgba(255, 186, 8, 0.1);
}

.hero-spec-box:hover::before {
    left: 100%;
}

.hero-spec-box .spec-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 186, 8, 0.6));
    position: relative;
    z-index: 1;
}

.hero-spec-box .spec-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.hero-spec-box .spec-unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.hero-spec-box .spec-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(255, 186, 8, 0.6));
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ================================================
   RESPONSIVE - MOBIL ÉS TABLET
   ================================================ */

@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .car-hero-section .car-title {
        font-size: 3rem;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .hero-specs-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .car-hero-section {
        min-height: 100vh;
    }
    
    .car-hero-section .car-title {
        font-size: 2.5rem;
    }
    
    .car-tagline {
        font-size: 1.1rem;
    }
    
    .hero-specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .hero-spec-box {
        padding: 20px 15px;
    }
    
    .hero-spec-box .spec-value {
        font-size: 2.2rem;
    }
    
    .hero-spec-box .spec-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .car-hero-section .car-title {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .hero-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Tartalom szekció */
.car-content-section {
    position: relative;
    background-color: var(--light-color);
    margin-top: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Bal oldali oszlop - Autó részletek (1/3) */
.car-details {
    padding-right: 2rem;
    flex: 0 0 33.333%;
}

.car-description {
    margin-bottom: 2.5rem;
    color: #666;
    font-size: 1.05rem;
}

/* Specifikációk fejléc */
.specs-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.specs-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
}

.specs-header hr {
    flex: 1;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

/* Specifikációk kategóriák */
.specs-category {
    margin-bottom: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.specs-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

.specs-category h4 i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.spec-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Műszaki specifikációk kártyái */
.specs-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

/* Kiemelt specifikációs kártyák (lóerő, végsebesség, gyorsulás) */
.highlight-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.spec-card {
    flex: 1;
    min-width: 130px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.spec-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(227, 57, 70, 0.1);
}

.spec-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

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

/* Jobb oldali oszlop - Foglalási opciók (2/3) */
.booking-options-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 0 0 66.667%;
}

.booking-card {
    padding: 2rem;
}

.booking-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.booking-card .lead {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Foglalási lépések */
.booking-section {
    margin-bottom: 2.5rem;
    position: relative;
}

.booking-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.booking-section h4 .step-number {
    background-color: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Pálya választás */
.track-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.track-option {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.track-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.track-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 162, 0, 0.08);
}

.track-option.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.track-radio {
    position: absolute;
    top: 15px;
    right: 15px;
    margin: 0 !important;
}

.track-option-header {
    margin-bottom: 1rem;
}

.track-option-header .form-check {
    padding-left: 0;
}

.track-option-header label {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    padding-right: 25px; /* Hogy ne lógjon a checkbox alá */
}

.track-option:hover .track-option-header label,
.track-option.selected .track-option-header label {
    color: var(--primary-color);
}

.track-price {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

.track-option .original-price {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-top: 5px;
    font-weight: 400;
}

/* Körcsomagok kiválasztója */
.lap-packages-container {
    margin-top: 1rem;
}

.lap-package {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.lap-package:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.lap-package.active {
    border-color: var(--primary-color);
    background-color: rgba(255, 162, 0, 0.08);
}

.lap-package.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.lap-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.lap-package:hover .lap-count,
.lap-package.active .lap-count {
    color: var(--primary-color);
}

.lap-price {
    display: block;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* Extra szolgáltatások kártyás megjelenítése */
.extras-category {
    margin-bottom: 2rem;
}

.extras-category h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 162, 0, 0.2);
}

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

.extra-option {
    position: relative;
    padding: 0;
    margin: 0;
}

.extra-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.extra-card:hover {
    border-color: rgba(255, 162, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.extra-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(255, 162, 0, 0.08);
}

.extra-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.extra-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.extra-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.extra-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
    padding-right: 30px; /* Hogy ne lógjon a checkbox alá */
}

.extra-price {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 8px;
}

.extra-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

/* Extra körök szekció */
.extra-laps-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.laps-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.laps-input-group {
    display: flex;
    align-items: center;
}

.btn-laps-decrement,
.btn-laps-increment {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-laps-decrement:hover,
.btn-laps-increment:hover {
    background-color: #c2303a;
}

.btn-laps-decrement:disabled,
.btn-laps-increment:disabled {
    background-color: #e1e1e1;
    cursor: not-allowed;
}

.extra-laps-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    background: transparent;
}

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

/* Extra szolgáltatások */
.extras-options {
    margin-bottom: 1.5rem;
}

.extras-category {
    margin-bottom: 1.5rem;
}

.extras-category h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #555;
}

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

.extra-option {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.extra-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(227, 57, 70, 0.05);
}

.extra-checkbox {
    margin-right: 10px;
}

.extra-info {
    flex: 1;
}

.extra-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.extra-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Összesítő */
.booking-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-summary h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.8rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.item-name {
    color: #666;
}

.item-price {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.total-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Foglalás gomb */
.booking-actions {
    margin-top: 2rem;
}

.add-to-cart-btn {
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.add-to-cart-btn:hover {
    background-color: #c2303a;
}

.add-to-cart-btn:disabled {
    background-color: #e1e1e1;
    cursor: not-allowed;
}

.add-to-cart-btn i {
    margin-right: 0.5rem;
}

/* Üzenetek */
.booking-error,
.booking-success {
    margin-top: 1rem;
}

/* Reszponzív beállítások */
@media (max-width: 991.98px) {
    .car-hero-section {
        height: 60vh;
    }
    
    .car-hero-section .car-title {
        font-size: 2.5rem;
    }
    
    .car-details {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .car-hero-section {
        height: 50vh;
    }
    
    .car-hero-section .car-title {
        font-size: 2rem;
    }
    
    .car-hero-section .car-price {
        font-size: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .track-options {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .car-hero-section {
        height: 40vh;
    }
    
    .car-hero-section .car-title {
        font-size: 1.8rem;
    }
    
    .specs-grid,
    .extras-group {
        grid-template-columns: 1fr;
    }
} 

.car-image-gallery { 
    flex: 1; 
    min-width: 60%; 
    position: relative; 
    padding: 20px; 
} 

.car-main-image { 
    width: 100%; 
    height: 300px; 
    position: relative; 
    overflow: hidden; 
} 

.main-car-img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto; 
} 

.car-thumbnails { 
    display: flex; 
    gap: 10px; 
    margin-top: 15px; 
    justify-content: center; 
} 

.thumb-item { 
    width: 80px; 
    height: 60px; 
    border: 2px solid rgba(255,255,255,0.3); 
    cursor: pointer; 
    transition: all 0.3s ease; 
    overflow: hidden; 
} 

.thumb-item.active { 
    border-color: #fff; 
} 

.thumb-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
} 

/* Autó részletek */ 
.car-details-block { 
    flex: 1; 
    min-width: 40%; 
    padding: 20px; 
    background-color: #0a1628; 
} 



.car-price-box { 
    background-color: rgba(255,255,255,0.1); 
    padding: 10px 15px; 
    border-radius: 5px; 
    display: inline-block; 
    margin-bottom: 20px; 
} 

.car-price-box .price { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #fff; 
} 

.experience-title { 
    font-size: 1.8rem; 
    margin-bottom: 25px; 
    color: #fff; 
    font-weight: 600; 
} 

/* Pálya választás szakasz */ 
.track-selection-section h3, .ready-section h3, .booking-options-section h3, .extras-section h3 { 
    font-size: 1.3rem; 
    color: #fff; 
    margin-bottom: 15px; 
    font-weight: 500; 
} 

.track-options { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 30px; 
} 

.track-option { 
    width: calc(33.333% - 10px); 
    aspect-ratio: 1; 
    border: 2px solid rgba(255,255,255,0.2); 
    border-radius: 5px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    padding: 10px; 
} 

.track-option:hover, .track-option.active { 
    border-color: #e8413d; 
    background-color: rgba(232,65,61,0.1); 
} 

.track-icon { 
    width: 60px; 
    height: 60px; 
    margin-bottom: 10px; 
} 

.track-icon img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
} 

.track-name { 
    text-align: center; 
    font-size: 0.8rem; 
    color: #fff; 
} 

/* Készen állsz? */ 
.specifications-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin-bottom: 30px; 
} 

.spec-item { 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 5px; 
    padding: 15px; 
    text-align: center; 
    transition: all 0.3s ease; 
} 

.spec-item i { 
    font-size: 1.5rem; 
    color: #e8413d; 
    margin-bottom: 10px; 
} 

.spec-label { 
    font-size: 0.8rem; 
    color: #999; 
    margin-bottom: 5px; 
} 

.spec-value { 
    font-size: 1rem; 
    font-weight: 600; 
    color: #fff; 
} 

/* Foglalási opciók */ 
.booking-options { 
    margin-bottom: 30px; 
} 

.option-row { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 10px; 
} 

.booking-option { 
    flex: 1; 
    padding: 12px; 
    border: 1px solid rgba(255,255,255,0.2); 
    background: transparent; 
    color: #fff; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-size: 0.9rem; 
} 

.booking-option:hover, .booking-option.active { 
    background-color: #e8413d; 
    border-color: #e8413d; 
} 

/* Extra és kosár */ 
.extras-and-cart-section { 
    flex: 1; 
    min-width: 35%; 
    background-color: #0c1c33; /* Kicsit világosabb mint a fő háttér */ 
    padding: 20px; 
} 

.extras-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin-bottom: 30px; 
} 

.extra-item { 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 5px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    cursor: pointer; 
    position: relative; 
} 

.extra-item:hover { 
    border-color: #e8413d; 
} 

.extra-image { 
    height: 80px; 
    overflow: hidden; 
} 

.extra-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
} 

.extra-name { 
    padding: 8px; 
    font-size: 0.8rem; 
    text-align: center; 
    color: #fff; 
} 

.extra-price { 
    padding: 0 8px 8px; 
    font-size: 0.9rem; 
    text-align: center; 
    color: #e8413d; 
    font-weight: 600; 
} 

.extra-select { 
    position: absolute; 
    top: 5px; 
    right: 5px; 
    background-color: rgba(10,22,40,0.7); 
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 

.extra-select i { 
    color: #fff; 
    font-size: 0.9rem; 
} 

.extra-item.selected .extra-select { 
    background-color: #e8413d; 
} 

/* Kosár összefoglaló */ 
.cart-summary { 
    background-color: #0a1628; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 5px; 
    padding: 20px; 
} 

.cart-summary h3 { 
    font-size: 1.3rem; 
    color: #fff; 
    margin-bottom: 15px; 
    font-weight: 500; 
    border-bottom: 1px solid rgba(255,255,255,0.2); 
    padding-bottom: 10px; 
} 

.cart-table { 
    width: 100%; 
    color: #fff; 
    margin-bottom: 20px; 
} 

.cart-table td { 
    padding: 8px 0; 
} 

.cart-table .price { 
    text-align: right; 
    font-weight: 600; 
} 

.cart-table .subtotal, .cart-table .total { 
    border-top: 1px solid rgba(255,255,255,0.2); 
    font-weight: 600; 
} 

.cart-table .total { 
    color: #e8413d; 
} 

.btn-cart-submit { 
    width: 100%; 
    padding: 12px; 
    background-color: #e8413d; 
    color: #fff; 
    border: none; 
    border-radius: 5px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
} 

.btn-cart-submit:hover { 
    background-color: #d03530; 
} 

/* Mobilnézet */ 
@media (max-width: 992px) { 
    .car-main-section, .extras-and-cart-section { 
        min-width: 100%; 
    } 
    
    .car-image-gallery, .car-details-block { 
        min-width: 100%; 
    } 
    
    .track-option { 
        width: calc(50% - 10px); 
    } 
    
    .specifications-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
    
    .extras-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
} 

@media (max-width: 576px) { 
    .specifications-grid, .extras-grid { 
        grid-template-columns: 1fr; 
    } 
    
    .option-row { 
        flex-direction: column; 
    } 
}
