body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5DC; /* Crema de Origen */
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}
/* Colores de la marca Maruja - Cosecha Energética */
.bg-maruja-green { background-color: #B95A24; } /* Verde Olivo */
.text-maruja-green { color: #B95A24; }
.border-maruja-green { border-color: #B95A24; }

.bg-maruja-cream { background-color: #F5F5DC; } /* Crema de Origen */
.text-maruja-cream { color: #F5F5DC; }

.text-maruja-charcoal { color: #36454F; } /* Carbón Natural */

.bg-maruja-yellow { background-color: #FFC107; } /* Sol Dorado */
.text-maruja-yellow { color: #FFC107; }

.cart-icon-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #C42D2D; /* Fruto Rojo */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#cart-sidebar {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}
#cart-sidebar.open {
    transform: translateX(0);
}
#checkout-modal {
    transition: opacity 0.3s ease-in-out;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (min-width: 1024px) {
    .container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
.instagram-link {
    display: flex;
    align-items: center;
}
.instagram-link svg {
    margin-right: 0.5rem;
}
.product-presentation {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: #36454F;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}
#hero-carousel .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

#hero-carousel .carousel-image.active {
    opacity: 1;
    z-index: 2;
}

select option:hover {
    background-color: #B95A24;
    color: #ffffff;
}
