/* Add custom CSS styles below */ 




/* --- Brand Selection Container Styling --- */
.brand-selector-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 800px !important;
    margin: 30px auto !important;
    gap: 20px !important;
    padding: 20px !important;
}

.brand-selector-container img {
    width: 150px !important; /* Adjust size of brand logos */
    height: auto !important;
    cursor: pointer !important;
    border: 3px solid transparent !important;
    transition: all 0.2s ease-in-out !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.brand-selector-container img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
}

/* --- Model Selection Styling (Initially Hidden) --- */
.model-selector-container {
    display: none !important; /* CRITICAL: Hides this container initially */
    justify-content: center !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    max-width: 1200px !important;
    margin: 30px auto !important;
    gap: 15px !important;
    padding: 20px !important;
    text-align: center !important;
}

.model-item {
    width: 180px !important; /* Adjust size of model images */
    padding: 10px !important;
}

.model-item img {
    width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
}

.model-item img:hover {
    transform: translateY(-3px) !important;
}

.model-item p {
    margin-top: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
}