body {
    font-family: 'Montserrat', sans-serif;
}

.image-container {
    max-width: 100%;
}
#product-image {
    transition: opacity 0.5s ease-in-out;
}
/*logo*/
.logo-img {
    height: 40px; 
    width: auto;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.color-options, .material-options {
    display: flex;
    gap: 15px;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.color {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s, border 0.3s;
}

.color:hover {
    transform: scale(1.1);
    border: 2px solid #000;
}

.color-item p {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.color.selected {
    border: 2px solid black;
}


.material {
    padding: 8px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.material:hover {
    background: #333;
    color: white;
}
#contact {
    background-color: #f8f9fa; /* fondo claro */
}

#contact .btn-success {
    font-size: 1.25rem; /* boton + grande */
    padding: 15px 30px; /* mas espacio dentro del boton */
}

#contact iframe {
    width: 100%;
    height: 350px; /* ajusta el tamaño del mapa */
    border: none; /* elimina bordes del iframe */
    border-radius: 10px; 
}
.color.selected {
    border: 3px solid #000;
    transform: scale(1.1);
}

.material.active {
    background: #000;
    color: white;
}
.nota {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}
.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(37, 211, 102, 0.3);
}