/* Exemplo simples de CSS para a página de produto e carrossel */

.space {
    height: 150px; /* Ajuste conforme necessário para corresponder à altura do header */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 20px;
    background-color: #FEFAE0;
}
.image-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}
.icon-container img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}
.icon-container img:hover,
.icon-container img.selected {
    border: 2px solid #000;
}
.large-image {
    max-width: 80%;
    max-height: 80vh;
}


.product-name-detalhes {
    font-size: 1.8rem; 
    font-weight: bold;
}


@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
    }
    .icon-container {
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: 10px;
    }
    .icon-container img {
        margin-right: 10px;
    }
    .space {
        height: 100px; 
    }

    .product-name-detalhes {
        font-size: 1.8rem; /* Tamanho menor para dispositivos móveis */
        font-weight: bold;
    }

}