﻿:root {
    --primary-color: #14b858;
    --background-light: #f6f8f7;
    --text-dark: #0e1b13;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0.5rem;
}

    .btn-primary:hover {
        background-color: #119e4b;
        border-color: #119e4b;
    }

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e7f3ec;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('/images/ImgDencantoH03-1.webp');
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.product-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.2s;
    background: white;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-img {
    border-radius: 1rem 1rem 0 0;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

.footer {
    background-color: #ffffff;
    border-top: 1px solid #e7f3ec;
    padding: 3rem 0;
    margin-top: 4rem;
}
/* Mobile handling for "Carousel-like" appearance on small screens */
@media (max-width: 767.98px) {
    .desktop-grid {
        display: none;
    }

    .mobile-slider {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-slider {
        display: none;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
    background-size: 50%;
}

.pagination .page-link {
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
