/* ====================================
   Custom Elegance - Quote Configurator Styles
   ==================================== */

/* ═══════════════════════════════════════
   PAGE LAYOUT
   ═══════════════════════════════════════ */

.quote-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.quote-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.quote-logo img {
    height: 45px;
    width: auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.back-link:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════ */

.progress-container {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.progress-step.active .step-number {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.progress-step.completed .step-number {
    border-color: var(--gold);
    background: transparent;
    color: var(--gold);
}

.progress-step span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
}

.progress-step.active span {
    color: var(--gold);
}

/* ═══════════════════════════════════════
   MAIN CONTENT AREA
   ═══════════════════════════════════════ */

.quote-main {
    flex: 1;
    padding-top: 220px;
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
}

.quote-container {
    width: 100%;
    max-width: 1300px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(400px, 1.3fr) minmax(350px, 1fr);
    gap: 50px;
    align-items: start;
}

/* ═══════════════════════════════════════
   CAR PREVIEW
   ═══════════════════════════════════════ */

.car-preview-container {
    position: sticky;
    top: 200px;
}

.car-preview {
    background: 
        radial-gradient(ellipse at center 70%, rgba(30, 30, 35, 0.5) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 15, 18, 1) 0%, rgba(8, 8, 10, 1) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 40px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.car-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
}

/* Subtle floor reflection line */
.car-preview::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

/* Car Image */
.car-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.car-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Larger car preview on bigger screens */
@media (min-width: 1200px) {
    .car-image-wrapper {
        max-width: 620px;
    }
}

@media (min-width: 1400px) {
    .car-image-wrapper {
        max-width: 700px;
    }
}

/* Tint mask overlay */
.car-tint-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Tint levels - opacity controls darkness */
.car-tint-mask.tint-50 { opacity: 0.25; }  /* Light tint */
.car-tint-mask.tint-35 { opacity: 0.45; }  /* Medium tint */
.car-tint-mask.tint-20 { opacity: 0.65; }  /* Dark tint */
.car-tint-mask.tint-5  { opacity: 0.85; }  /* Limo tint */

/* Tint indicator */
.car-tint-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.car-tint-indicator.active {
    opacity: 1;
}

.preview-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.preview-spec-badge {
    padding: 6px 12px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-label {
    font-size: 0.9rem;
    color: var(--white-muted);
    text-align: center;
}

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */

.steps-container {
    min-height: 400px;
}

.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

.step-header {
    margin-bottom: 32px;
}

.step-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.step-header p {
    font-size: 0.95rem;
    color: var(--white-muted);
}

.step-content {
    margin-bottom: 40px;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

/* ═══════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════ */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 8px;
}

.form-select,
.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-select option {
    background: var(--black);
    color: var(--white);
}

/* Vehicle Info Badges */
.vehicle-info {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.info-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-badge {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.size-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════
   SERVICE SELECTION (Step 2)
   ═══════════════════════════════════════ */

.services-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card-select {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.service-card-select:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(30, 30, 30, 0.8);
}

.service-card-select.selected {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.service-card-select .check-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.service-card-select.selected .check-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card-select .check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card-select.selected .check-icon svg {
    opacity: 1;
}

.service-card-select h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.service-card-select p {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-bottom: 16px;
}

.service-card-select .price-from {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   OPTIONS CUSTOMIZATION (Step 3)
   ═══════════════════════════════════════ */

.options-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.option-section {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.option-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    cursor: pointer;
}

.option-section-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-section-header .price {
    font-size: 1rem;
    color: var(--white);
}

/* Recommended add-on styling */
.option-section-addon {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), transparent);
}

.option-section-addon .option-section-header {
    background: rgba(201, 162, 39, 0.08);
}

.addon-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* "No Thanks" option styling */
.option-btn[data-value="none"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-muted);
}

.option-btn[data-value="none"]:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.option-btn[data-value="none"].selected {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white-muted);
    color: var(--white);
}


.option-section-content {
    padding: 24px;
}

.option-group {
    margin-bottom: 24px;
}

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

.option-group-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 12px;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-btn:hover {
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.1);
}

.option-btn.selected {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
}

.option-btn .price {
    display: block;
    font-size: 0.75rem;
    color: var(--white-muted);
    margin-top: 4px;
}

.option-btn.selected .price {
    color: var(--gold);
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 12px;
    padding-bottom: 20px;
}

.color-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    margin-bottom: 8px;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--gold);
}

.color-swatch::after {
    content: attr(data-name);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--white-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 10;
    background: var(--black);
    padding: 2px 6px;
    border-radius: 3px;
}

.color-swatch:hover::after,
.color-swatch.selected::after {
    opacity: 1;
}

/* ═══════════════════════════════════════
   CONTACT GATE (Step 4)
   ═══════════════════════════════════════ */

.contact-gate {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.gate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(201, 162, 39, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
}

.gate-text {
    font-size: 1rem;
    color: var(--white-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.gate-form {
    text-align: left;
}

.gate-form .form-group {
    margin-bottom: 20px;
}

.gate-form .btn {
    margin-top: 8px;
}

/* Form Validation Styles */
.error-message {
    display: none;
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 6px;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.form-group.success input {
    border-color: #44bb44;
}

.form-group input::placeholder {
    color: var(--white-muted);
    opacity: 0.5;
}

/* ═══════════════════════════════════════
   QUOTE SUMMARY (Step 4 - After Contact)
   ═══════════════════════════════════════ */

.quote-summary {
    max-width: 500px;
    margin: 0 auto;
}

.summary-vehicle {
    text-align: center;
    padding: 24px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
}

.summary-vehicle h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.summary-vehicle p {
    font-size: 0.9rem;
    color: var(--white-muted);
}

.summary-services {
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-item-name {
    font-size: 1rem;
    color: var(--white);
}

.summary-item-name .addon-tag {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--white-muted);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

.summary-item-addon {
    background: transparent;
}

.summary-item-details {
    font-size: 0.85rem;
    color: var(--white-muted);
    margin-top: 4px;
}

.summary-item-price {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    text-align: right;
}

.summary-total {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.summary-total-label {
    font-size: 0.85rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.summary-total-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
}

/* CTA Section */
.summary-cta {
    text-align: center;
}

.cta-incentive {
    background: rgba(201, 162, 39, 0.15);
    border: 1px dashed var(--gold);
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.incentive-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
}

.cta-incentive p {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 4px;
}

.btn-call {
    font-size: 1.1rem;
    padding: 20px 40px;
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-divider span {
    font-size: 0.85rem;
    color: var(--white-muted);
}

.btn-callback {
    width: 100%;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--white-subtle);
    margin-top: 24px;
    line-height: 1.6;
}

.btn-new-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    margin-top: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-new-quote:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-new-quote svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════
   RUNNING TOTAL SIDEBAR
   ═══════════════════════════════════════ */

.running-total {
    display: none; /* Hidden on desktop by default, shown on mobile */
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-next,
.btn-back {
    min-width: 180px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-back svg {
    margin-right: 8px;
}

.btn-next svg {
    margin-left: 8px;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

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

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

/* ═══════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .car-preview-container {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .car-preview {
        padding: 20px;
    }
    
    .car-image-wrapper {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
    .quote-header {
        padding: 12px 20px;
    }
    
    .quote-logo img {
        height: 36px;
    }
    
    .back-link span {
        display: none;
    }
    
    .progress-container {
        top: 57px;
        padding: 12px 16px;
    }
    
    .progress-step span {
        display: none;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .quote-main {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .quote-container {
        padding: 0 20px;
    }
    
    .quote-main {
        padding-top: 160px;
    }
    
    .car-preview {
        padding: 16px;
    }
    
    .car-image-wrapper {
        margin-bottom: 12px;
    }
    
    .preview-label {
        font-size: 0.85rem;
    }
    
    .preview-specs {
        gap: 8px;
    }
    
    .preview-spec-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .step-header {
        margin-bottom: 24px;
    }
    
    .step-header h2 {
        font-size: 1.6rem;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    .services-selection {
        grid-template-columns: 1fr;
    }
    
    .service-card-select {
        padding: 20px;
    }
    
    .service-card-select h3 {
        font-size: 1.25rem;
    }
    
    .option-buttons {
        gap: 8px;
    }
    
    .option-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .color-swatches {
        gap: 10px;
    }
    
    .color-swatch {
        width: 38px;
        height: 38px;
    }
    
    .step-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .btn-next,
    .btn-back {
        width: 100%;
        min-width: auto;
    }
    
    .summary-total-amount {
        font-size: 2rem;
    }
    
    .btn-call {
        font-size: 1rem;
        padding: 16px 32px;
    }
    
    /* Mobile Running Total Bar */
    .running-total {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(201, 162, 39, 0.3);
        z-index: 100;
    }
    
    .total-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
    }
    
    .total-header span {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--white-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .total-toggle {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--gold);
        transition: transform var(--transition-fast);
    }
    
    .total-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .total-toggle.expanded svg {
        transform: rotate(180deg);
    }
    
    .total-content {
        display: none;
        padding: 0 20px 20px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .total-content.expanded {
        display: block;
    }
    
    .total-vehicle {
        font-size: 0.9rem;
        color: var(--white-muted);
        margin-bottom: 12px;
    }
    
    .total-items {
        margin-bottom: 12px;
    }
    
    .total-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 0.85rem;
        color: var(--white);
    }
    
    .total-item .price {
        color: var(--gold);
    }
    
    .total-item-addon {
        background: rgba(201, 162, 39, 0.1);
        margin: 4px -12px;
        padding: 8px 12px;
        border-radius: 4px;
    }
    
    .total-line {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 12px 0;
    }
    
    .total-amount {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .total-amount span:first-child {
        font-size: 0.9rem;
        color: var(--white-muted);
    }
    
    .total-amount .amount {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gold);
    }
}

@media (max-width: 480px) {
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .gate-icon {
        width: 64px;
        height: 64px;
    }
    
    .gate-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .summary-vehicle h3 {
        font-size: 1.4rem;
    }
    
    .summary-total-amount {
        font-size: 1.75rem;
    }
}

