
#menu {
    background-color: black;
    background-image: linear-gradient(to bottom, #000000, #000000); 
}

.product-thumb .button-group button {
    background-color: #FFD700;
    color: black;
}

.product-thumb .button-group button:hover {
    color: #444;
    background-color: #e5e5e5;
    text-decoration: none;
    cursor: pointer;
}

.navbar-nav {
    font-family: 'IBM Plex sans';
}

.image-container {
    display: flex;
    flex-direction: column;
    max-width: 200px; 
    margin: 0 auto;
     
}

.stacked-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-container > div {
    position: relative; /* Necesario para el separador */
    padding-bottom: 15px; /* Espacio para el separador */
}

/* Separador entre imágenes */
.image-container > div:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: black;
}


@media (min-width: 1000px) {
    #menu .navbar-collapse {
        display: flex !important;
        justify-content: center;
    }
    
    #product .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


@media (min-width: 1000px) {
    .container {
        width: auto!important;
    }
    
    
    
    #button-cart {
        width:300px;
        background-color: #FFD700;
        color: black;
        background-image: linear-gradient(to bottom, #d1be23b0, #FFD700);
        border-color: #FFD700;
        font-weight: bold;
    }
}

@media (max-width: 767px) {
    .image-container {
        display: none;
    }
}

@media (max-width: 500px) {
    #button-cart {
        min-width: 300px;
        font-weight: bold;
        max-width: 500px;
        color: black;
        width:100%;
        background-color: #FFD700;
        background-image: linear-gradient(to bottom, #d1be23b0, #FFD700);
        border-color: #FFD700;
    }
}