/**
 * Featured Products Slider/Grid Styles
 * 
 * Desktop: Slider con flechas
 * Móvil: Grid 2 columnas
 */

/* ===========================================
   SECCIÓN GENERAL
   =========================================== */
.featured-products-section {
    padding: 40px 0;
}

.featured-products-section__title {
    font-family: Lato, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
}

/* ===========================================
   SLIDER DESKTOP
   =========================================== */
.featured-products-slider {
    position: relative;
    padding: 0 50px; /* Espacio para flechas */
}

.featured-products-slider__item {
    padding: 0 10px;
}

.featured-products-slider__card {
    text-align: center;
}

.featured-products-slider__figure {
    margin: 0 0 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.featured-products-slider__figure img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.featured-products-slider__content {
    padding: 0 10px;
}

.featured-products-slider__name {
    font-family: "Century Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-products-slider__name a {
    color: inherit;
    text-decoration: none;
}

.featured-products-slider__name a:hover {
    color: #2f4c8d;
}

.featured-products-slider__category {
    font-family: "Century Gothic", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
}

.featured-products-slider__price {
    font-family: "Century Gothic", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

.featured-products-slider__btn {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    font-family: "Century Gothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
}

.featured-products-slider__btn:hover {
    text-decoration: none;
}

/* Flechas del slider */
.featured-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.featured-slider-arrow--prev {
    left: 0;
}

.featured-slider-arrow--next {
    right: 0;
}

.featured-slider-arrow:hover svg path {
    fill: #FFB500;
}

.featured-slider-arrow.slick-disabled {
    opacity: 0.3;
    cursor: default;
}

.featured-slider-arrow.slick-disabled:hover svg path {
    fill: #B1B3BE;
}

/* ===========================================
   GRID MÓVIL
   =========================================== */
.featured-products-grid__card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-products-grid__figure {
    margin: 0 0 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.featured-products-grid__figure img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.featured-products-grid__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-products-grid__name {
    font-family: "Century Gothic", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-products-grid__name a {
    color: inherit;
    text-decoration: none;
}

.featured-products-grid__category {
    font-family: "Century Gothic", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-bottom: 6px;
}

.featured-products-grid__price {
    font-family: "Century Gothic", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.featured-products-grid__btn {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    font-family: "Century Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    margin-top: auto;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 767.98px) {
    .featured-products-section {
        padding: 30px 0;
    }

    .featured-products-grid__name {

        font-size: 16px;

    }

    .featured-products-section__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}
