/* Section Intro */
.product-card-section-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.product-card-section-intro__left {}

.product-card-section-intro__right {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.product-card-section-intro__right .btn {
    margin-bottom: 0;
}

/* Product Card */
.product-card {
    width: 260px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: none;
    text-decoration: none;
}

.product-card__image {
    height: 258px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 73, 144, 0.15);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 10px 0;
}

.product-card__title {
    margin-bottom: 20px;
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    color: #000f08;
}

.product-card__cta {
    margin-top: auto;
    font-size: 14px;
}

/* @NOTE: Need to review */
@media (min-width: 579px) { 
    .product-card-section-intro__right {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (min-width: 768px) {
    /* Section Intro */
    .product-card-section-intro {
        padding-bottom: 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-card-section-intro > * {
        flex: 0 0 auto;
        width: calc(50% - 5px);
    }

    .product-card-section-intro__right {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 20px;
    }

    /* Product Card */
    .product-card__details {
        padding-top: 32px;
    }
    
    .product-card__title {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    /* Section Intro */
    .product-card-section-intro {
        padding-bottom: 40px;
        align-items: center;
    }

    /* Product Card */
    .product-card {
        width: 100%;
    }

    .product-card:hover {
        background: none;
    }

    .product-card__image {
        height: 292px;
        transition: box-shadow 0.3s;
    }

    .product-card:hover .product-card__image {
        box-shadow: 0 3px 6px rgba(0, 73, 144, 0.4);
    }

    .product-card__title {
        transition: color 0.3s;
    }

    .product-card:hover .product-card__title {
        color: #004990;
    }

    .product-card__cta {
        transition-property: background, color, box-shadow;
        transition-duration: 0.3s;
    }

    .product-card:hover .product-card__cta {
        background: #004990;
        color: #ffffff;
        box-shadow: 0 3px 6px rgba(0, 73, 144, 0.4);
    }

    .product-card .product-card__cta:after {
        transition: transform 0.3s;
    }

    .product-card:hover .product-card__cta:after {
        transform: translateX(4px);
    }
}

/* Base */
.product-card-slider {
    position: relative;
}

.product-card-slider .fx-slides {
    margin: -10px -22px -10px -10px;
}

.product-card-slider .fx-slide {
    padding: 10px;
}

/* Uninitialized */
.product-card-slider .fx-slides:not(.slick-initialized) {
    display: flex;
}

.product-card-slider .fx-slides:not(.slick-initialized) .fx-slide {
    flex: 0 0 auto;
}

/* Initialized */
.product-card-slider .fx-slides.slick-initialized .slick-track {
    display: flex;
    margin-left: 0;
}

.product-card-slider .fx-slides.slick-initialized .slick-slide {
    height: auto;
}

.product-card-slider .fx-slides.slick-initialized .slick-slide > div,
.product-card-slider .fx-slides.slick-initialized .fx-slide {
    height: 100%;
}

/* Slider Nav */
.product-card-slider-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.product-card-slider-nav .slick-arrow {
    position: static;
}

@media (min-width: 768px) {
    /* Base */
    .product-card-slider .fx-slides {
        margin: -16px -18.37% -16px -16px;
    }

    .product-card-slider .fx-slide {
        padding: 16px;
    }

    /* Uninitialized */
    .product-card-slider .fx-slides:not(.slick-initialized) .fx-slide:nth-child(-n+4) {
        display: block;
    }

    /* Initialized */

    /* Slider Nav */
}

@media (min-width: 1200px) {
    /* Base */
    .product-card-slider .fx-slides {
        margin-right: -16px;
    }

    /* Uninitialized */
    .product-card-slider .fx-slides:not(.slick-initialized) .fx-slide {
        display: none;
    }

    .product-card-slider .fx-slides:not(.slick-initialized) .fx-slide:nth-child(-n+5) {
        display: block;
    }

    .product-card-slider .fx-slides:not(.slick-initialized) .fx-slide {
        width: 20%;
    }

    /* Initialized */
    .product-card-slider .fx-slides.slick-initialized .product-card {
        width: 100%;
    }

    /* Slider Nav */
    .product-card-slider-nav[data-type="desktop"] {
        display: none;
    }
}

@media (min-width: 1500px) {
    /* Initialized */
    .product-card-slider .fx-slides.slick-initialized {
        z-index: 1;
    }

    /* Slider Nav */
    .product-card-slider-nav[data-type="desktop"] {
        display: flex;
        justify-content: space-between;
        width: calc(100% + 180px);
        position: absolute;
        top: 130px;
        left: 50%;
        transform: translateX(-50%);
    }

    .product-card-slider-nav[data-type="desktop"] .slick-arrow {
        z-index: 1;
    }

    .product-card-slider-nav[data-type="mobile"] {
        display: none;
    }
}