/* CSS custom properties - intentionally global */
:root {
    --primary: #6366f1;
    --success: #10b981;
    --bg: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --card-bg: white;
    --radius: 20px;
    --transition: all 0.3s ease;
}

/* Builder page body - scope anchor */
.vehicle-builder-page {
    font-family: 'Segoe UI', sans-serif;
    background-color: rgba(0, 0, 0, 0.65);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('https://web.waldoch.com/2023/11/cropped-waldochfavicon.png');
    background-repeat: repeat;
    background-size: 150px 150px;
    min-height: 100vh;
}

/* All component styles scoped to builder pages */

.vehicle-builder-page .form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 760px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.vehicle-builder-page .form-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 40px 20px;
    gap: 30px;
    flex-wrap: wrap;
}

.vehicle-builder-page .header-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.vehicle-builder-page .header-title {
    text-align: left;
    flex: 1;
}

.vehicle-builder-page .header-title h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #1a1a1a;
}

.vehicle-builder-page .header-title .subtitle {
    margin: 8px 0 0;
    color: #666;
    font-size: 1.1rem;
}

.vehicle-builder-page h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 800;
}

.vehicle-builder-page .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Progress Bar */
.vehicle-builder-page .progress-container {
    margin-bottom: 30px;
}

.vehicle-builder-page .progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.vehicle-builder-page .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.vehicle-builder-page .steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.vehicle-builder-page .step {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.vehicle-builder-page .step.active {
    background: var(--primary);
    color: white;
    transform: scale(1.2);
}

.vehicle-builder-page .step.completed {
    background: var(--success);
    color: white;
}

/* Form Steps */
.vehicle-builder-page .form-step {
    display: none;
    animation: fadeIn 0.5s;
}

.vehicle-builder-page .form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-builder-page input,
.vehicle-builder-page select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.3s;
}

.vehicle-builder-page input:focus,
.vehicle-builder-page select:focus {
    outline: none;
    border-color: var(--primary);
}

.vehicle-builder-page .btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.vehicle-builder-page .form-container button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.vehicle-builder-page .btn-prev {
    background: #e0e0e0;
}

.vehicle-builder-page .btn-next {
    background: var(--primary);
    color: white;
}

.vehicle-builder-page .btn-submit {
    background: var(--success);
    color: white;
}

.vehicle-builder-page button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-builder-page button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* User Info Grid */
.vehicle-builder-page .user-info-grid {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.vehicle-builder-page .info-block {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vehicle-builder-page .info-block h4 {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    color: #6366f1;
    border-bottom: 2px solid #6366f1;
    padding-bottom: 8px;
    font-weight: 600;
}

.vehicle-builder-page .info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.vehicle-builder-page .info-table td {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.vehicle-builder-page .info-table td:first-child {
    width: 40%;
    color: #4b5563;
    font-weight: 600;
}

.vehicle-builder-page .info-table tr:last-child td {
    border-bottom: none;
}

/* Comments */
.vehicle-builder-page .comments-section {
    margin: 40px 0 20px 0;
}

.vehicle-builder-page .comments-text {
    background: #f0f9ff;
    padding: 20px;
    border-left: 5px solid #6366f1;
    border-radius: 8px;
    font-style: italic;
    color: #374151;
    font-size: 1rem;
}

/* Vehicle Build Title */
.vehicle-builder-page .vehicle-build-title {
    margin: auto;
    font-size: 1.6rem;
    color: #6366f1;
    border-bottom: 3px solid #6366f1;
    padding-bottom: 10px;
    font-weight: 700;
}

.vehicle-builder-page .achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0;
    padding: 0 12px;
}

.vehicle-builder-page .achievement-btn {
    position: relative;
    padding: 16px 80px 16px 20px;
    justify-content: flex-start;
    text-align: left;
}

.vehicle-builder-page .download-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: white;
    border: 2px solid #6366f1;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #6366f1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
}

.vehicle-builder-page .download-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.vehicle-builder-page .download-icon:hover {
    width: 160px;
    padding-left: 20px;
    border-radius: 50px;
    background: #6366f1;
    color: white;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.vehicle-builder-page .download-icon:hover .download-text {
    opacity: 1;
    width: auto;
    margin-right: 8px;
}

.vehicle-builder-page .achievement-btn .ach-icon {
    font-size: 1.4rem;
}

.vehicle-builder-page .achievement-btn:hover {
    background: var(--gray-200);
    transform: translateY(-3px);
}

.vehicle-builder-page .achievement-btn.unlocked {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
    font-weight: 700;
}

.vehicle-builder-page .achievement-btn.unlocked:hover {
    background: #c3e6cb;
    transform: translateY(-4px);
}

/* Modal (chassis info overlay) */
.vehicle-builder-page .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-builder-page .modal-overlay.active {
    display: flex;
}

.vehicle-builder-page .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vehicle-builder-page .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: white;
}

.vehicle-builder-page .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.vehicle-builder-page .modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
}

.vehicle-builder-page .modal-close:hover {
    opacity: 1;
}

.vehicle-builder-page .modal-body {
    padding: 24px;
    max-height: 65vh;
    overflow-y: auto;
}

.vehicle-builder-page .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.vehicle-builder-page .btn-secondary {
    background: #e0e0e0;
    color: var(--gray-800);
}

.vehicle-builder-page .btn-secondary:hover {
    background: #d0d0d0;
    transform: translateY(-3px);
}

.vehicle-builder-page .modal-close-btn {
    padding: 12px 32px;
    font-size: 1.1rem;
}

.vehicle-builder-page .modal-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vehicle-builder-page #modalDownloadBtn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    display: none;
}

.vehicle-builder-page #modalDownloadBtn:hover {
    background: #2f32dd;
    color: white;
}

.vehicle-builder-page.submitted #modalDownloadBtn {
    display: block;
}

/* Modal (achievement / confirm dialog) */
.vehicle-builder-page .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.vehicle-builder-page .modal.active {
    opacity: 1;
    visibility: visible;
}

.vehicle-builder-page .modal > .modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalPop 0.6s;
}

@keyframes modalPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.vehicle-builder-page .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #aaa;
}

.vehicle-builder-page .close:hover {
    color: #000;
}

.vehicle-builder-page .trophy {
    font-size: 80px;
    margin: 20px 0;
}

.vehicle-builder-page .btn-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.vehicle-builder-page .btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
}

/* Preloader */
.vehicle-builder-page #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.vehicle-builder-page #preloader.active {
    opacity: 1;
    visibility: visible;
}

.vehicle-builder-page .loader {
    text-align: center;
    color: white;
}

.vehicle-builder-page .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.vehicle-builder-page .loader p {
    font-size: 1.2rem;
    margin: 0;
    animation: pulse 2s infinite;
}

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

    50% {
        opacity: 1;
    }
}

/* Package Info & Table */
.vehicle-builder-page .package-info h4 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.4rem;
}

.vehicle-builder-page .package-info h5 {
    color: var(--gray-800);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    margin: 24px 0 12px;
}

.vehicle-builder-page .package-info ul {
    margin: 12px 0;
    padding-left: 20px;
}

.vehicle-builder-page .package-info li {
    margin: 8px 0;
    line-height: 1.5;
}

.vehicle-builder-page .chassis-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.vehicle-builder-page .chassis-tile {
    display: block;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    text-align: center;
}

.vehicle-builder-page .chassis-tile:hover {
    border-color: #9ca3af;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vehicle-builder-page .tile-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-builder-page .tile-radio:checked + .chassis-tile {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.vehicle-builder-page .tile-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.vehicle-builder-page .tile-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.vehicle-builder-page .tile-specs {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.vehicle-builder-page .tile-specs span {
    display: block;
}

.vehicle-builder-page .chassis-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    color: #1d4ed8;
    font-weight: 500;
    text-align: center;
}

/* Accessibility */
.vehicle-builder-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.vehicle-builder-page .chassis-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.95rem;
}

.vehicle-builder-page .chassis-table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
}

.vehicle-builder-page .chassis-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-builder-page .chassis-table tr:nth-child(even) {
    background: var(--gray-50);
}

.vehicle-builder-page .chassis-table .category-header {
    background: var(--gray-200);
    font-weight: bold;
    color: var(--gray-800);
}

.vehicle-builder-page .vehicle-source-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.vehicle-builder-page .source-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.vehicle-builder-page .source-card:hover {
    border-color: #6366f1;
    background: #f0f4ff;
}

.vehicle-builder-page .source-card input[type="radio"] {
    margin-bottom: 12px;
    transform: scale(1.3);
}

.vehicle-builder-page .source-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 12px 0 8px;
    color: #1e293b;
}

.vehicle-builder-page .source-desc {
    font-size: 0.95rem;
    color: #64748b;
}

.vehicle-builder-page #new-chassis-section {
    margin-top: 30px;
    transition: opacity 0.4s ease;
}

.vehicle-builder-page .info-note {
    background: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
}

/* Paint Selection */
.vehicle-builder-page .paint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.vehicle-builder-page .paint-card {
    position: relative;
    border: 3px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.vehicle-builder-page .paint-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .paint-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.vehicle-builder-page .paint-image-wrapper {
    height: 120px;
    background: var(--gray-100);
    overflow: hidden;
}

.vehicle-builder-page .paint-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-builder-page .paint-card:hover .paint-image-wrapper img {
    transform: scale(1.08);
}

.vehicle-builder-page .paint-title {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-100);
    line-height: 1.4;
}

.vehicle-builder-page .paint-card:has(input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .paint-card input[type="radio"]:checked + .paint-image-wrapper::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.vehicle-builder-page .placeholder-text {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-600);
    font-style: italic;
    padding: 40px 20px;
    font-size: 1.1rem;
}

/* Vehicle Selection (make buttons - 2 columns) */
.vehicle-builder-page .vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.vehicle-builder-page .vehicle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vehicle-builder-page .vehicle-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .vehicle-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.vehicle-builder-page .vehicle-image-wrapper {
    height: 100px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-builder-page .vehicle-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vehicle-builder-page .vehicle-card:hover .vehicle-image-wrapper img {
    transform: scale(1.08);
}

.vehicle-builder-page .vehicle-title {
    padding: 18px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gray-800);
    background: var(--gray-100);
}

.vehicle-builder-page .vehicle-card:has(input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .vehicle-card input[type="radio"]:checked + .vehicle-image-wrapper::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

/* Galaxy packages layout */
.vehicle-builder-page .options-grid[data-category="galaxy_packages"] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    padding: 12px;
}

.vehicle-builder-page .options-grid[data-category="galaxy_packages"] .galaxy-package-card {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
}

.vehicle-builder-page .package-header .package-price {
    padding: 12px;
}

.vehicle-builder-page .options-grid[data-category="galaxy_packages"] .options-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.vehicle-builder-page .package-includes ul {
    column-count: 2;
    column-gap: 32px;
    margin: 12px 0;
    padding-left: 20px;
    list-style-position: inside;
}

.vehicle-builder-page .package-includes li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.vehicle-builder-page .package-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #6366f1;
}

.vehicle-builder-page .info-text {
    background: #e0e7ff;
    padding: 15px;
    border-radius: 8px;
    color: #3730a3;
    font-weight: 500;
    margin-bottom: 20px;
}

.vehicle-builder-page .options-card.locked {
    opacity: 0.7;
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.vehicle-builder-page .options-card.locked input[type="checkbox"] {
    cursor: not-allowed;
}

.vehicle-builder-page .included-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.vehicle-builder-page .discount-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.vehicle-builder-page .discount-info strong {
    color: #92400e;
}

.vehicle-builder-page .none-toggle-container {
    margin-top: 20px;
    text-align: center;
}

.vehicle-builder-page .none-toggle-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1.5px solid #ddd;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-builder-page .none-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.vehicle-builder-page .seating-title,
.vehicle-builder-page .color-title {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.vehicle-builder-page .color-swatch {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vehicle-builder-page .celebration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Options Grid */
.vehicle-builder-page .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
    gap: 20px;
    justify-content: center;
    margin: 20px auto 0;
    padding: 0 20px;
    max-width: 1400px;
}

.vehicle-builder-page .options-card {
    position: relative;
    border: 3px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.vehicle-builder-page .options-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .options-card:has(input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-builder-page .options-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.vehicle-builder-page .options-image-wrapper {
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-builder-page .options-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-builder-page .options-card:hover .options-image-wrapper img {
    transform: scale(1.08);
}

.vehicle-builder-page .options-image-placeholder {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

.vehicle-builder-page .options-title {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-100);
    line-height: 1.4;
}

.vehicle-builder-page .options-card input[type="radio"]:checked + .options-image-wrapper::after,
.vehicle-builder-page .options-card input[type="radio"]:checked + .options-image-placeholder::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.vehicle-builder-page .hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Multi-select options */
.vehicle-builder-page .options-card.multi-select {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #ddd;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-builder-page .options-card.multi-select:hover:not(:has(> input[type="checkbox"]:checked)) {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vehicle-builder-page .options-card.multi-select:has(> input[type="checkbox"]:checked) {
    border-color: var(--primary) !important;
    background: #eef6ff !important;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.vehicle-builder-page .options-card.multi-select .checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.vehicle-builder-page .options-card.multi-select:has(> input[type="checkbox"]:checked) .checkmark {
    opacity: 1;
    transform: scale(1);
}

.vehicle-builder-page .options-card.multi-select input.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.vehicle-builder-page .required-indicator {
    color: #ef4444;
    font-size: 1.2em;
    margin-left: 0.3em;
}

.vehicle-builder-page .options-grid[data-category="wheels"] {
    position: relative;
}

.vehicle-builder-page .options-grid[data-category="wheels"]::after {
    content: "Required";
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: #ef4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.vehicle-builder-page .choice-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-builder-page .options-card.package-choice {
    border: 2px solid #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    animation: pulse-border 2s ease-in-out infinite;
}

.vehicle-builder-page .options-card.package-choice:hover {
    border-color: #8b5cf6;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.vehicle-builder-page .options-card.package-choice input[type="radio"]:checked + .options-image-wrapper {
    border: 3px solid #6366f1;
    animation: none;
}

@keyframes pulse-border {
    0%,
    100% {
        border-color: #6366f1;
    }

    50% {
        border-color: #8b5cf6;
    }
}

/* Build Summary */
.vehicle-builder-page .build-summary-table {
    margin: 20px 0;
    overflow-x: auto;
}

.vehicle-builder-page #finalBuildTable,
.vehicle-builder-page .build-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.vehicle-builder-page #finalBuildTable th,
.vehicle-builder-page .build-table th {
    background: var(--primary);
    color: white;
    padding: 12px;
    text-align: left;
}

.vehicle-builder-page #finalBuildTable td,
.vehicle-builder-page .build-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-builder-page #finalBuildTable tr:nth-child(even),
.vehicle-builder-page .build-table tr:nth-child(even) {
    background: var(--gray-50);
}

.vehicle-builder-page .btn-next.skip-upgrade {
    background: #e0e0e0;
    color: #666;
}

.vehicle-builder-page .btn-next.skip-upgrade:hover {
    background: #d0d0d0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.vehicle-builder-page .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-top: 28px;
}

.vehicle-builder-page .contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.vehicle-builder-page .form-group {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.vehicle-builder-page .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.4;
}

.vehicle-builder-page .required {
    color: #e74c3c;
    font-weight: normal;
}

.vehicle-builder-page .form-group input,
.vehicle-builder-page .form-group select,
.vehicle-builder-page .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s;
}

.vehicle-builder-page .form-group input:focus,
.vehicle-builder-page .form-group select:focus,
.vehicle-builder-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.vehicle-builder-page .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.vehicle-builder-page .checkbox-group label,
.vehicle-builder-page .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
    font-size: 1rem;
}

.vehicle-builder-page .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.1);
}

.vehicle-builder-page .checkbox-group.invalid {
    border: 1px solid #ef4444;
    border-radius: 4px;
    padding: 8px;
    background-color: #fee2e2;
}

.vehicle-builder-page .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.vehicle-builder-page .opt-in-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vehicle-builder-page .opt-in-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-builder-page .opt-in-checkbox .custom-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    margin-top: 2px;
    position: relative;
}

.vehicle-builder-page .opt-in-checkbox input:checked + .custom-checkbox {
    background-color: var(--primary);
    border-color: var(--primary);
}

.vehicle-builder-page .opt-in-checkbox input:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.vehicle-builder-page .opt-in-checkbox:hover .custom-checkbox {
    border-color: var(--primary);
}

.vehicle-builder-page .opt-in-checkbox input:focus-visible + .custom-checkbox {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.vehicle-builder-page .privacy-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.vehicle-builder-page .privacy-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Success Section */
.vehicle-builder-page .success-section {
    margin-top: 40px;
    text-align: center;
}

.vehicle-builder-page .success-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.vehicle-builder-page .success-subtitle {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 40px;
}

.vehicle-builder-page .build-summary-final {
    margin: 50px 0;
    text-align: left;
}

.vehicle-builder-page .build-summary-final h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gray-800);
}

.vehicle-builder-page .success-footer {
    margin-top: 60px;
    text-align: center;
}

.vehicle-builder-page .success-footer p {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin: 20px 0;
}

.vehicle-builder-page #newBuildBtn {
    padding: 16px 40px;
    font-size: 1.3rem;
}

/* Seating Configuration */
.vehicle-builder-page #seating-config-step {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1rem 0.5rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
}

.vehicle-builder-page #seating-config-step legend {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 0.5rem;
    color: #333;
}

.vehicle-builder-page #seating-config-step .options-card {
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-builder-page #seating-config-step .options-card:hover:not(:has(> input[type="radio"]:checked)) {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vehicle-builder-page #seating-config-step input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.vehicle-builder-page #seating-config-step .options-image-wrapper {
    flex: 1;
    min-height: 180px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-builder-page #seating-config-step .options-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.vehicle-builder-page #seating-config-step .options-title {
    padding: 0.75rem 0.75rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    flex-shrink: 0;
}

.vehicle-builder-page #seating-config-step .options-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
    margin-top: 1rem;
}

.vehicle-builder-page #seating-config-step label.options-card:has(> input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    background: #eef6ff !important;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   LARGE SCREENS (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .vehicle-builder-page .form-container {
        max-width: 1140px;
    }
}

/* ============================================
   LARGE TABLETS & SMALL DESKTOPS (1100px)
   ============================================ */
@media (max-width: 1100px) {
    .vehicle-builder-page .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    }
}

/* ============================================
   TABLETS & BELOW (900px)
   ============================================ */
@media (max-width: 900px) {
    .vehicle-builder-page .user-info-grid {
        flex-direction: column;
        gap: 24px;
    }

    .vehicle-builder-page .info-block {
        min-width: auto;
    }

    .vehicle-builder-page .paint-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-builder-page .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   SMALL TABLETS
   ============================================ */
@media (min-width: 768px) {
    .vehicle-builder-page .form-header {
        justify-content: center;
    }

    .vehicle-builder-page .header-title {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .vehicle-builder-page .paint-image-wrapper {
        height: 140px;
    }

    .vehicle-builder-page .vehicle-image-wrapper {
        height: 120px;
    }

    .vehicle-builder-page .seating-image-wrapper {
        height: 200px;
    }

    .vehicle-builder-page .color-image-wrapper {
        height: 320px;
    }

    .vehicle-builder-page .package-includes ul {
        column-count: 1;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .vehicle-builder-page .form-container {
        max-width: 100%;
        padding: 24px;
        margin: 20px auto;
    }

    .vehicle-builder-page .paint-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-builder-page .paint-image-wrapper {
        height: 130px;
    }

    .vehicle-builder-page .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-builder-page h1 {
        font-size: 1.8rem;
    }

    .vehicle-builder-page .header-title h1 {
        font-size: 2rem;
    }

    .vehicle-builder-page #seating-config-step .options-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   MOBILE DEVICES (640px)
   ============================================ */
@media (max-width: 640px) {
    .vehicle-builder-page {
        background-size: 100px 100px;
    }

    .vehicle-builder-page .form-container {
        padding: 20px;
        margin: 15px auto;
        border-radius: 15px;
    }

    .vehicle-builder-page .form-header {
        padding: 20px 20px 15px;
        gap: 20px;
        flex-direction: column;
    }

    .vehicle-builder-page .header-logo img {
        height: 100px;
    }

    .vehicle-builder-page .header-title h1 {
        font-size: 1.6rem;
    }

    .vehicle-builder-page .header-title .subtitle {
        font-size: 0.95rem;
    }

    .vehicle-builder-page h1 {
        font-size: 1.5rem;
    }

    .vehicle-builder-page .subtitle {
        font-size: 0.9rem;
    }

    .vehicle-builder-page .step-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .vehicle-builder-page .achievements {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
        margin: 20px 0;
    }

    .vehicle-builder-page .achievement-btn {
        font-size: 0.95rem;
        padding: 14px 70px 14px 16px;
    }

    .vehicle-builder-page .download-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        right: 12px;
    }

    .vehicle-builder-page .download-icon:hover {
        width: 140px;
        padding-left: 16px;
    }

    .vehicle-builder-page .options-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
        gap: 16px;
    }

    .vehicle-builder-page .options-image-wrapper,
    .vehicle-builder-page .options-image-placeholder {
        height: 180px;
    }

    .vehicle-builder-page .options-title {
        font-size: 1rem;
        padding: 16px 10px;
    }

    .vehicle-builder-page .paint-grid {
        gap: 14px;
    }

    .vehicle-builder-page .contact-form-grid {
        margin-top: 20px;
        gap: 18px;
    }

    .vehicle-builder-page .form-group label {
        font-size: 0.95rem;
    }

    .vehicle-builder-page .form-group input,
    .vehicle-builder-page .form-group select,
    .vehicle-builder-page .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .vehicle-builder-page .btn-group {
        gap: 8px;
        margin-top: 16px;
    }

    .vehicle-builder-page .form-container button {
        padding: 12px;
        font-size: 0.95rem;
    }

    .vehicle-builder-page .modal-content {
        border-radius: 15px;
        max-height: 85vh;
    }

    .vehicle-builder-page .modal-header h3 {
        font-size: 1.2rem;
    }

    .vehicle-builder-page .modal-body {
        padding: 16px;
        font-size: 0.9rem;
    }

    .vehicle-builder-page .modal-footer {
        padding: 12px 16px;
        gap: 10px;
    }

    .vehicle-builder-page .build-table,
    .vehicle-builder-page .chassis-table,
    .vehicle-builder-page .info-table {
        font-size: 0.85rem;
    }

    .vehicle-builder-page .build-table th,
    .vehicle-builder-page .chassis-table th {
        padding: 8px;
        font-size: 0.85rem;
    }

    .vehicle-builder-page .build-table td,
    .vehicle-builder-page .chassis-table td {
        padding: 8px 6px;
    }

    .vehicle-builder-page .success-section h2 {
        font-size: 2rem;
    }

    .vehicle-builder-page .success-subtitle {
        font-size: 1.1rem;
    }

    .vehicle-builder-page .success-footer p {
        font-size: 1rem;
    }
}

/* ============================================
   SMALL MOBILE DEVICES (540px)
   ============================================ */
@media (max-width: 540px) {
    .vehicle-builder-page .paint-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vehicle-builder-page .paint-image-wrapper {
        height: 140px;
    }

    .vehicle-builder-page .paint-title {
        font-size: 1.05rem;
        padding: 18px 12px;
    }

    .vehicle-builder-page .vehicle-card {
        min-height: auto;
    }

    .vehicle-builder-page .vehicle-image-wrapper {
        height: 100px;
    }

    .vehicle-builder-page .vehicle-title {
        font-size: 1.1rem;
        padding: 14px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (375px)
   ============================================ */
@media (max-width: 375px) {
    .vehicle-builder-page .form-container {
        padding: 16px;
    }

    .vehicle-builder-page .header-logo img {
        height: 80px;
    }

    .vehicle-builder-page .header-title h1 {
        font-size: 1.4rem;
    }

    .vehicle-builder-page .options-image-wrapper,
    .vehicle-builder-page .options-image-placeholder {
        height: 160px;
    }

    .vehicle-builder-page .btn-group {
        flex-direction: column;
    }

    .vehicle-builder-page .form-container button {
        width: 100%;
    }
}

/* ============================================
   TALL SCREENS (Height-based)
   ============================================ */
@media (min-height: 900px) {
    .vehicle-builder-page .form-container {
        margin: 60px auto;
    }
}

@media (max-height: 700px) {
    .vehicle-builder-page .form-container {
        margin: 20px auto;
    }

    .vehicle-builder-page .modal-body {
        max-height: 50vh;
    }
}

/* ============================================
   LANDSCAPE MOBILE ORIENTATION
   ============================================ */
@media (max-width: 900px) and (orientation: landscape) {
    .vehicle-builder-page .form-container {
        margin: 20px auto;
        padding: 20px;
    }

    .vehicle-builder-page .options-image-wrapper,
    .vehicle-builder-page .options-image-placeholder {
        height: 140px;
    }

    .vehicle-builder-page .modal-body {
        max-height: 50vh;
    }
}

@media (max-width: 600px) {
    .vehicle-builder-page .package-includes ul {
        column-count: 1;
        column-gap: 0;
    }
}
