/* CSS para la vista simplificada de reservas */

/* Reset y base */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* Animación de carga */
.cargando {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #86AD3F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pelotas {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    margin: 5px;
    animation: bounce 1.4s ease-in-out infinite both;
}

.pelotas:nth-child(1) { animation-delay: -0.32s; }
.pelotas:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}

.texto-cargando {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 500;
}

/* Contenedor principal */
.main-container {
    background: linear-gradient(135deg, #86AD3F 0%, #7BA037 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tarjeta de configuración */
.config-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    animation: slideUp 0.8s ease-out;
}

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

/* Sección del header */
.header-section {
    background: linear-gradient(135deg, #86AD3F 0%, #7BA037 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #86AD3F;
}

.header-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Navegación de modelos */
.model-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.model-nav-item {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.model-nav-item.active {
    background: white;
    color: #86AD3F;
    font-weight: 700;
    border-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.model-nav-item:hover:not(.active) {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sección de contenido */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 50px 40px;
    align-items: start;
}

/* Vista previa del vehículo */
.vehicle-preview {
    text-align: center;
    position: sticky;
    top: 20px;
}

.vehicle-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, opacity 0.4s ease-in-out;
    margin-bottom: 25px;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vehicle-image.changing {
    opacity: 0.3;
    transform: scale(0.98);
}

.vehicle-image:hover {
    transform: scale(1.02);
}

.model-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #86AD3F;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.model-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Lista de características */
.features-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid #e0e0e0;
}

.features-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
    padding: 8px 0;
}

.feature-icon {
    color: #86AD3F;
    margin-right: 12px;
    font-weight: 900;
    font-size: 1.1rem;
}

/* Títulos de sección */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #86AD3F;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
}

/* Sección de colores */
.color-section {
    padding: 0 10px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    justify-items: center;
}

.color-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    cursor: pointer;
    transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Animación inicial solo cuando se carga */
.color-grid .color-option {
    animation: popIn 0.4s ease-out backwards;
}

.color-grid .color-option:nth-child(1) { animation-delay: 0.05s; }
.color-grid .color-option:nth-child(2) { animation-delay: 0.1s; }
.color-grid .color-option:nth-child(3) { animation-delay: 0.15s; }
.color-grid .color-option:nth-child(4) { animation-delay: 0.2s; }
.color-grid .color-option:nth-child(5) { animation-delay: 0.25s; }
.color-grid .color-option:nth-child(6) { animation-delay: 0.3s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.color-option:hover {
    transform: scale(1.15);
    border-color: #86AD3F;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.color-option.selected {
    border-color: #86AD3F;
    border-width: 4px;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(134, 173, 63, 0.3);
}

/* Animación solo cuando se selecciona por primera vez */
.color-option.selecting {
    animation: selectPulse 0.4s ease-out;
}

@keyframes selectPulse {
    0% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1.15);
    }
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.selected-color-name {
    text-align: center;
    font-weight: 700;
    color: #86AD3F;
    margin-top: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #86AD3F;
}

/* Sección de accesorios */
.accessories-section {
    padding: 0 10px;
}

.accessory-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.accessory-card {
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px 20px;
    cursor: pointer;
    transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Animación inicial solo cuando se cargan */
.accessory-options .accessory-card {
    animation: slideInRight 0.5s ease-out backwards;
}

.accessory-options .accessory-card:nth-child(1) { animation-delay: 0.1s; }
.accessory-options .accessory-card:nth-child(2) { animation-delay: 0.2s; }
.accessory-options .accessory-card:nth-child(3) { animation-delay: 0.3s; }

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

.accessory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(134, 173, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.accessory-card:hover::before {
    left: 100%;
}

.accessory-card:hover {
    border-color: #86AD3F;
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.accessory-card.selected {
    border-color: #86AD3F;
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5d8 100%);
    box-shadow: 0 8px 25px rgba(134, 173, 63, 0.2);
    transform: translateY(-3px);
}

.accessory-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #86AD3F;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Animación solo cuando se selecciona */
.accessory-card.selecting {
    animation: selectBounce 0.5s ease-out;
}

.accessory-card.selecting::after {
    animation: checkmarkPop 0.3s ease-out;
}

@keyframes selectBounce {
    0% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    100% { transform: translateY(-3px); }
}

@keyframes checkmarkPop {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.accessory-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.accessory-price {
    color: #86AD3F;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Display de precio */
.price-display {
    background: linear-gradient(135deg, #86AD3F 0%, #7BA037 100%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(134, 173, 63, 0.3);
}

.price-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.price-amount.updating {
    animation: priceUpdate 0.4s ease-out;
}

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

/* Botón de acción */
.action-button {
    background: linear-gradient(135deg, #86AD3F 0%, #7BA037 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(134, 173, 63, 0.3);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    background: linear-gradient(135deg, #7BA037 0%, #6d9532 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(134, 173, 63, 0.4);
}

.action-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-section {
        gap: 30px;
        padding: 40px 30px;
    }
    
    .model-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .vehicle-preview {
        position: static;
        order: 1;
    }
    
    .color-section {
        order: 2;
    }
    
    .accessories-section {
        order: 3;
    }
    
    .color-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .model-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 10px;
    }
    
    .config-card {
        border-radius: 20px;
    }
    
    .header-section {
        padding: 25px 15px;
    }
    
    .header-section h1 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 25px 15px;
        gap: 30px;
    }
    
    .model-nav {
        gap: 10px;
    }
    
    .model-nav-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .color-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .color-option {
        width: 50px;
        height: 50px;
    }
    
    .model-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .action-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-section h1 {
        font-size: 1.4rem;
    }
    
    .model-nav-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .color-option {
        width: 45px;
        height: 45px;
    }
    
    .model-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .accessory-card {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.color-option, .accessory-card {
    animation: fadeInUp 0.6s ease-out;
}


/* Estados de focus para accesibilidad */
.color-option:focus,
.accessory-card:focus,
.action-button:focus,
.model-nav-item:focus {
    outline: 3px solid #86AD3F;
    outline-offset: 2px;
}

/* Mejoras de contraste */
.accessory-card.selected .accessory-title {
    color: #2d5016;
}

.accessory-card.selected .accessory-price {
    color: #2d5016;
}

/* Estilos para accesorios de solo lectura (categoría 6) */
.readonly-accessories .accessory-card {
    cursor: default;
    opacity: 0.9;
}

.readonly-accessories .accessory-card:hover {
    border-color: #86AD3F;
    background-color: #f0f8e8;
    transform: none;
    box-shadow: 0 8px 25px rgba(134, 173, 63, 0.2);
}

.readonly-accessories .accessory-card:hover::before {
    left: -100%;
}
/* Estilos de la navegación original preservados */
.static-active-item {
    background-color: white;
    border-radius: 8px 8px 0 0;
    padding: 8px;
    margin: -5px;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: bolder;
    max-width: max-content;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
}

.static-active-item a {
    color: #86AD3F !important;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.static-active-item .borders-bottom {
    background-color: #86AD3F;
}

.static-active-item .miniatura {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.static-active-item .div-miniatura {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ocultar completamente el efecto de imagen borrosa en toda la página */
.img-preview {
    display: none !important;
}

/* Desactivar el efecto hover que muestra la imagen preview */
.links-modelos:hover .img-preview {
    display: none !important;
}

/* Mantener los estilos para elementos no activos */
.links-modelos:not(.active-item) a {
    color: white !important;
}

/* Estilos completos para la navegación */
#navbar-ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.links-modelos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 80px;
    text-align: center;
}

.links-modelos:hover {
    background-color: rgba(255,255,255,0.1);
}

.links-modelos .miniatura {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    margin-bottom: 8px;
}

.links-modelos .div-miniatura {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.links-modelos a {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.borders-bottom {
    display: block;
    width: 100%;
    height: 2px;
    background-color: transparent;
    margin-top: 5px;
}

/* Mejorar espaciado general */
.links-modelos {
    min-width: 90px;
    padding: 8px 6px;
}

.static-active-item {
    min-width: 90px;
    padding: 8px 6px;
}

/* Responsive para navegación */
@media (max-width: 768px) {
    #navbar-ul {
        gap: 8px;
    }
    
    .links-modelos .miniatura,
    .static-active-item .miniatura {
        width: 55px !important;
        height: 55px !important;
    }
    
    .links-modelos a,
    .static-active-item a {
        font-size: 11px;
    }
    
    .links-modelos {
        min-width: 80px;
        padding: 10px 6px;
    }
    
    .static-active-item {
        min-width: 80px;
        padding: 10px 6px;
    }
    
    #seleccione-modelo {
        font-size: 20px !important;
    }
}

/* Estilos específicos para la nueva vista simplificada */
.main-container {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
}

.config-card {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    max-width: none;
    margin: 0;
    min-height: 100vh;
}

.header-section {
    background: #86AD3F;
    color: white;
    padding: 0;
    text-align: center;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.vehicle-preview {
    text-align: center;
}
/* --- Sticky preview solo en mobile --- */
@media (max-width: 576px) {
    .vehicle-preview {
        position: sticky;
        top: 0;
        z-index: 20;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}

.vehicle-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.model-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #86AD3F;
    margin: 20px 0 10px 0;
}

.model-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
}

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

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #86AD3F;
}

.color-option.selected {
    border-color: #86AD3F;
    border-width: 4px;
    transform: scale(1.1);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.selected-color-name {
    text-align: center;
    font-weight: bold;
    color: #86AD3F;
    margin-top: 10px;
    font-size: 1.1rem;
}

.accessory-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accessory-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.accessory-card:hover {
    border-color: #86AD3F;
    background-color: #f8f9fa;
}

.accessory-card.selected {
    border-color: #86AD3F;
    background-color: #f0f8e8;
}

.accessory-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.accessory-price {
    color: #86AD3F;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-display {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.price-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #86AD3F;
}

.action-button {
    background: #86AD3F;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.action-button:hover {
    background: #7BA037;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.features-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 15px;
}

.features-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
    font-size: 0.95rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    color: #666;
    font-size: 0.9rem;
}

.feature-icon {
    color: #86AD3F;
    margin-right: 10px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .color-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .model-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .color-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .color-option {
        width: 40px;
        height: 40px;
    }
}