body{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    background-color: var(--beige);
}

:root{
    --green: #008056;
    --white: #f2f0e7;
    --pink: #F7ACAA;
    --yellow: #F4E8A5;
    --lightgray: #BAB9B9;
    --gray: #9F9B9B; 
    --white: #FFFCFC;  
    --beige: #f5ebd7;
    --pink-light: #e1c7c0;
    --dark-gray: #555;
    --black: #000;
}

.negritas {
    font-weight: 900 !important;
}

.promo_home{
    background-color: var(--green);
    color: var(--white); 
    text-align: center;
    padding: 10px 0;
}

.text{
    margin-right: 20px;
}

.btn_promo{
    border-radius: 0px;
    font-weight: 600;
}

/* ======= ESTILOS PERSONALIZADOS DE NAVBAR ======= */
.custom-navbar {
    background-color: var(--beige); 
    height: 70px;
    box-shadow: none;
    border: none;
}

/* Logo */
.logo-text {
    color: var(--pink); 
    font-weight: 700;
    letter-spacing: 1px;
}

/* Enlaces */
.navbar .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 1.05rem;
}

.navbar .nav-link:hover {
    color: var(--black) !important;
}

/* ===== Buscador ===== */
.search-wrapper {
    position: relative;
}

.search-input {
    width: 180px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--beige);
    padding-left: 10px;
    background-color: var(--white);
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 0.9rem;
    pointer-events: none;
}

/* ===== Iconos de usuario y carrito ===== */
.icon-link {
    color: var(--dark-gray) !important;
    font-size: 1.15rem;
}

.icon-link:hover {
    color: var(--black);
}

/* Quita bordes del botón responsive */
.navbar-toggler {
    border: none;
}

/* ======== ESTILOS PERSONALIZADOS DE CARRUSEL ======== */

/* Indicadores (los tres puntitos abajo) */
.carousel-indicators [data-bs-target] {
    background-color: var(--pink);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--pink-light);
}

/* Imagen del carrusel */
.carousel-item img {
    object-fit: cover;
    height: 600px;
}

/* Botón centrado sobre la imagen */
.btn-carousel {
    background-color: var(--green); /* verde como la franja superior */
    border: none;
    font-weight: bold;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-carousel:hover {
    background-color: var(--green);
    transform: scale(1.05);
}

/* Posición del botón sobre la imagen */
.carousel-caption {
    bottom: 25%;
    }

    .letrabtn {
        color: var(--pink);
    }
/* ======= ESTILOS PERSONALIZADOS DE SECCIONES ======= */
    .btn-carousels {
        background-color: #4a8b5c;
        border: none;
    }
    .btn-carousels:hover {
        background-color: #3d734d;
    }
    .cards {
        border: solid 3px var(--pink);
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    .cards:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }

    /* Slick Slider */
    .center {
        width: 80%;
        margin: 0 auto;
    }

    .center img {
        width: 80%;
        border-radius: 10px;
    }

    .slick-slide {
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    .slick-center {
        opacity: 1;
    }

    .slick-prev:before,
    .slick-next:before {
    color: #333; /* color de las flechas */
    font-size: 30px;
}

    .slick-dots li button:before {
        color: #333;
        font-size: 12px;
    }

    .light{
        font-weight: 400 !important;
    }

    /* ================================
   SECCIÓN: OFERTAS TODO EL AÑO
================================ */
.section-ofertas {
    background: #f7b9b7;
    padding: 80px 0;
}

.section-ofertas h1 {
    color: #0d8a63;
    font-size: 60px;
    font-weight: 700;
}

.section-ofertas h1 span {
    font-weight: 900;
}

.section-ofertas p {
    color: white;
    font-size: 22px;
}

.section-ofertas .btn-descubre {
    background: #0d8a63;
    color: white;
    font-size: 24px;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.3s ease;
}

.section-ofertas .btn-descubre:hover {
    transform: scale(1.05);
}

/* ================================
   SECCIÓN: ICONOS AMARILLOS
================================ */
.section-iconos {
    background: #f6e8a0;
    padding: 50px 0;
}

.section-iconos img {
    width: 120px;
    margin-bottom: 15px;
}

.section-iconos h2 {
    color: #0d8a63;
    font-size: 26px;
    font-weight: 900;
    margin-top: 10px;
}

/* ================================
   FOOTER VERDE
================================ */
.footer-green {
    background: #007b55;
    color: white;
    padding: 80px 0;
}

.footer-green h3 {
    color: #f7b9b7;
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 15px;
}

.footer-green p {
    margin: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-green .divider {
    width: 2px;
    height: 200px;
    background: #f7b9b7;
}

.footer-green i {
    color: #f7b9b7;
    transition: 0.3s ease;
}

.footer-green i:hover {
    transform: scale(1.2);
}

.footer-green .newsletter-btn {
    background: #f6e8a0;
    color: #007b55;
    font-size: 20px;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.3s ease;
}

.footer-green .newsletter-btn:hover {
    background: #ffffff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .section-ofertas h1 {
        font-size: 45px;
    }

    .section-ofertas p {
        font-size: 18px;
    }

    .section-iconos h2 {
        font-size: 22px;
    }

    .footer-green h3 {
        font-size: 22px;
    }

    .footer-green .divider {
        display: none;
    }
}
