

@media (min-width: 768px) {
    .product-card {
        width: calc(25% - 20px); 
    }
}

.peinado-video,
.shampoo-video,
.aqua-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.custom-button {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300; 
    text-decoration: none;
    color: white;
    background-color: #3E4A34;
    padding: 10px 20px;
    border: 2px solid #3E4A34;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.custom-button:hover {
    background-color: white;
    color: #3E4A34;
}
.menu-logo {
    position: absolute;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.menu-logo img {
    width: 80px; 
    height: auto;
    display: block;
    margin: 0 auto;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #3E4A34;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 3.5s ease-out, visibility 3.5s ease-out;
}
.loader-logo {
    width: 120px; 
    animation: fadeInOut 3.5s infinite ease-in-out;
}
@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1); }
}

