        .home-top-banner {
            padding: 18px 0 0;
        }

        .home-top-banner__link {
            display: block;
            text-decoration: none;
            overflow: hidden;
            border-radius: 18px;
        }

        .home-top-banner__image {
            display: block;
            width: 100%;
            height: auto;
        }


        .home-hero {
            padding: 18px 0 0;
        }

        .home-hero__grid {
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
            gap: 18px;
            align-items: stretch;
        }


        .home-hero__main {
            min-width: 0;
        }

        .home-main-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 22px;
            background: #f3f5f9;
        }

        .home-main-slide {
            display: block;
            width: 100%;
            line-height: 0;
        }

        .home-main-slide__image {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 7;
            object-fit: cover;
        }


        .home-hero__side {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-width: 0;
        }

        .home-side-banner {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 20px;
            background: #f3f5f9;
            line-height: 0;
            flex: 1;
        }

        .home-side-banner__image {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 0;
            object-fit: cover;
        }


        .home-slider-next,
        .home-slider-prev {
            position: absolute;
            top: 50%;
            z-index: 10;
            width: 42px;
            height: 42px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: rgba(255,255,255,.92);
            color: #252b35;
            box-shadow: 0 6px 20px rgba(0,0,0,.10);
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .2s ease;
        }

        .home-slider-next:hover,
        .home-slider-prev:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.05);
        }

        .home-slider-next {
            right: 16px;
        }

        .home-slider-prev {
            left: 16px;
        }

        .home-slider-pagination {
            position: absolute;
            bottom: 14px !important;
            left: 0;
            right: 0;
            z-index: 10;
        }

        .home-slider-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            opacity: .65;
            background: #ffffff;
            transition: .2s ease;
        }

        .home-slider-pagination .swiper-pagination-bullet-active {
            width: 22px;
            border-radius: 10px;
            opacity: 1;
        }


        @media (max-width: 991.98px) {


            .home-hero__side {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }


            .home-side-banner__image {
                height: 100%;
            }
        }


        @media (max-width: 767.98px) {

            .home-top-banner {
                padding-top: 10px;
            }

            .home-top-banner__link {
                border-radius: 12px;
            }

            .home-hero {
                padding-top: 10px;
            }

            .home-hero__grid {
                gap: 10px;
            }

            .home-main-slider {
                border-radius: 14px;
            }

            .home-main-slide__image {
                aspect-ratio: 16 / 8;
            }

            .home-hero__side {
                gap: 10px;
            }

            .home-side-banner {
                border-radius: 12px;
            }

            .home-slider-next,
            .home-slider-prev {
                width: 34px;
                height: 34px;
            }

            .home-slider-next {
                right: 10px;
            }

            .home-slider-prev {
                left: 10px;
            }

            .home-slider-pagination {
                bottom: 8px !important;
            }
        }


        @media (max-width: 480px) {

            .home-hero__side {
                grid-template-columns: 1fr;
            }

            .home-side-banner {
                aspect-ratio: 16 / 7;
            }
        }
/* =========================================
   MAIN HERO SLIDER
========================================= */

.home-main-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #f3f5f9;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.home-main-slide {
    display: block;
    width: 100%;
    line-height: 0;
}

.home-main-slide__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7.6;
    height: auto;
    object-fit: cover;
}


/* =========================================
   NAVIGATION ARROWS
========================================= */

.home-slider-next,
.home-slider-prev {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 48px;
    height: 48px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);
    color: #252b35;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.home-slider-next i,
.home-slider-prev i {
    font-size: 23px;
    line-height: 1;
}

.home-slider-next:hover,
.home-slider-prev:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transform: translateY(-50%) scale(1.08);
}

.home-slider-next {
    right: 20px;
}

.home-slider-prev {
    left: 20px;
}


/* =========================================
   PAGINATION
========================================= */

.home-slider-pagination {
    position: absolute;

    left: 50% !important;
    right: auto !important;
    bottom: 20px !important;

    z-index: 20;

    width: auto !important;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 8px 13px;

    border-radius: 30px;

    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.home-slider-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;

    margin: 0 !important;

    opacity: .9;

    background: rgba(255, 255, 255, .75);

    border-radius: 50%;

    transition:
        width .3s ease,
        transform .3s ease,
        opacity .3s ease,
        background .3s ease;
}

.home-slider-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.15);
}

.home-slider-pagination .swiper-pagination-bullet-active {
    width: 30px;
    height: 11px;

    border-radius: 20px;

    opacity: 1;

    background: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .home-main-slide__image {
        aspect-ratio: 16 / 8;
    }

    .home-slider-next,
    .home-slider-prev {
        width: 44px;
        height: 44px;
    }

    .home-slider-next {
        right: 15px;
    }

    .home-slider-prev {
        left: 15px;
    }

    .home-slider-pagination {
        bottom: 16px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .home-main-slider {
        border-radius: 16px;
    }

    .home-main-slide__image {
        aspect-ratio: 16 / 9;
    }

    .home-slider-next,
    .home-slider-prev {
        width: 36px;
        height: 36px;
    }

    .home-slider-next i,
    .home-slider-prev i {
        font-size: 19px;
    }

    .home-slider-next {
        right: 10px;
    }

    .home-slider-prev {
        left: 10px;
    }

    .home-slider-pagination {
        bottom: 12px !important;

        padding: 7px 10px;

        gap: 6px;
    }

    .home-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .home-slider-pagination .swiper-pagination-bullet-active {
        width: 23px;
        height: 8px;
    }
}
/* =========================================================
   TABLET + MOBILE SIDE BANNERS
========================================================= */

@media (max-width: 991.98px) {

    .home-hero__side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-side-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 7;
        border-radius: 14px;
    }

    .home-side-banner__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-side-banner {
        border-radius: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-side-banner {
        aspect-ratio: 16 / 8;
        border-radius: 10px;
    }
}

/* =========================================================
   SPECIAL OFFERS / TOP DAY
========================================================= */

.home-special-zone {
    position: relative;
    overflow: hidden;

    margin-top: 0;
    padding: 72px 0 58px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(101, 188, 80, .20) 0,
            rgba(101, 188, 80, 0) 26%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(255,255,255,.10) 0,
            rgba(255,255,255,0) 28%
        ),
        linear-gradient(
            135deg,
            #292d76 0%,
            #3e4095 42%,
            #0e15c3 100%
        );

    color: #ffffff;
    margin-top: 20px;
}


/* =========================================================
   DECORATIVE ORBS
========================================================= */

.home-special-zone__orb {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.home-special-zone__orb--one {
    top: -90px;
    right: -40px;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 0 0 30px rgba(255,255,255,.025),
        0 0 0 70px rgba(255,255,255,.015);
}

.home-special-zone__orb--two {
    bottom: -120px;
    left: -60px;

    width: 290px;
    height: 290px;

    background: radial-gradient(
        circle,
        rgba(101,188,80,.15) 0%,
        rgba(101,188,80,0) 68%
    );
}

.home-special-zone__pattern {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            135deg,
            rgba(255,255,255,.14) 1px,
            transparent 1px
        );

    background-size: 28px 28px;

    mask-image: linear-gradient(
        to bottom left,
        black 0%,
        transparent 65%
    );

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.home-special-zone__header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 34px;
}

.home-special-zone__heading {
    max-width: 650px;
}

.home-special-zone__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 13px;
    padding: 7px 12px 7px 10px;

    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;

    color: #ffffff;

    background: rgba(255,255,255,.09);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 700;
}

.home-special-zone__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border-radius: 50%;

    color: #ffffff;
    background: #65bc50;

    box-shadow: 0 0 18px rgba(101,188,80,.45);
}

.home-special-zone__badge-icon i {
    font-size: 13px;
}

.home-special-zone__title {
    margin: 0;

    color: #ffffff;

    font-size: 34px;
    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -.5px;
}

.home-special-zone__description {
    margin: 8px 0 0;

    max-width: 580px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   HEADER ACTION
========================================================= */

.home-special-zone__header-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 8px;
}

.home-special-zone__mini-label {
    color: rgba(255,255,255,.52);

    font-size: 11px;
}

.home-special-zone__more {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 7px 8px 7px 8px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: transform .2s ease;
}

.home-special-zone__more span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;

    background: rgba(255,255,255,.09);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .2s ease,
        border-color .2s ease;
}

.home-special-zone__more i {
    font-size: 18px;
}

.home-special-zone__more:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.home-special-zone__more:hover span {
    border-color: rgba(101,188,80,.55);
    background: #65bc50;
}


/* =========================================================
   SLIDER
========================================================= */

.home-special-slider-wrap {
    position: relative;
    z-index: 2;

    padding: 5px 3px 14px;
}

.home-special-slider {
    overflow: visible;
}

.home-special-slider .swiper-slide {
    height: auto;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.home-special-product {
    position: relative;

    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(20,25,45,.06);
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 13px 35px rgba(7,14,60,.12),
        0 2px 4px rgba(7,14,60,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.home-special-product:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 42px rgba(4,12,65,.20),
        0 4px 8px rgba(4,12,65,.05);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.home-special-product__image-link {
    display: block;

    padding: 15px 15px 0;

    text-decoration: none;
}

.home-special-product__image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 235px;

    overflow: hidden;

    border-radius: 17px;

}

.home-special-product__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.home-special-product:hover
.home-special-product__image img {
    transform: scale(1.055);
}


/* =========================================================
   DISCOUNT
========================================================= */

.home-special-product__discount {
    position: absolute;

    top: 27px;
    right: 27px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 4px;

    min-width: 52px;
    height: 34px;

    padding: 0 9px;

    border-radius: 11px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #f05252,
        #db3030
    );

    box-shadow:
        0 7px 17px rgba(219,48,48,.25);

    font-size: 11px;
    font-weight: 700;
}

.home-special-product__discount strong {
    font-size: 14px;
    font-weight: 900;
}

.home-special-product__discount span {
    font-size: 10px;
}


/* =========================================================
   PRODUCT BODY
========================================================= */

.home-special-product__body {
    padding: 15px 17px 17px;
}

.home-special-product__title {
    display: -webkit-box;

    min-height: 46px;

    overflow: hidden;

    color: #242833;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.8;

    text-decoration: none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.home-special-product__title:hover {
    color: #3e4095;
}


/* =========================================================
   PRICE + ARROW
========================================================= */

.home-special-product__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 10px;

    margin-top: 13px;
}

.home-special-product__price-box {
    min-width: 0;
}

.home-special-product__old-price {
    margin-bottom: 2px;

    color: #a0a4ad;

    font-size: 10px;

    text-decoration: line-through;
}

.home-special-product__price {
    color: #1f2330;

    font-size: 17px;
    font-weight: 900;

    white-space: nowrap;
}

.home-special-product__price small {
    color: #7b808b;

    font-size: 10px;
    font-weight: 600;
}

.home-special-product__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    border: 1px solid #e8eaf0;
    border-radius: 11px;

    color: #3e4095;
    background: #f7f8fc;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.home-special-product:hover .home-special-product__arrow {
    color: #ffffff;
    border-color: #3e4095;
    background: #3e4095;

    transform: translateX(-3px);
}

.home-special-product__arrow i {
    font-size: 17px;
}


/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.home-special-nav {
    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,.13);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 20px rgba(0,0,0,.12);

    transform: translateY(-50%);

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.home-special-nav:hover {
    border-color: #65bc50;
    background: #65bc50;

    transform: translateY(-50%) scale(1.06);
}

.home-special-nav i {
    font-size: 20px;
}

.home-special-nav--prev {
    right: -22px;
}

.home-special-nav--next {
    left: -22px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-special-zone {
        padding: 58px 0 50px;
    }

    .home-special-zone__title {
        font-size: 29px;
    }

    .home-special-zone__header {
        margin-bottom: 28px;
    }

    .home-special-product__image {
        height: 215px;
    }

    .home-special-nav {
        width: 42px;
        height: 42px;
    }

    .home-special-nav--prev {
        right: -10px;
    }

    .home-special-nav--next {
        left: -10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-special-zone {
        padding: 45px 0 42px;
    }

    .home-special-zone__header {
        align-items: flex-start;
        gap: 20px;

        margin-bottom: 22px;
    }

    .home-special-zone__heading {
        max-width: 100%;
    }

    .home-special-zone__badge {
        margin-bottom: 9px;

        padding: 6px 10px 6px 8px;

        font-size: 12px;
    }

    .home-special-zone__badge-icon {
        width: 21px;
        height: 21px;
    }

    .home-special-zone__title {
        font-size: 23px;
    }

    .home-special-zone__description {
        margin-top: 6px;

        font-size: 12px;
        line-height: 1.8;
    }

    .home-special-zone__header-action {
        flex-shrink: 0;
    }

    .home-special-zone__mini-label {
        display: none;
    }

    .home-special-zone__more {
        font-size: 12px;
    }

    .home-special-zone__more span {
        width: 34px;
        height: 34px;
    }

    .home-special-slider-wrap {
        padding-right: 1px;
        padding-left: 1px;
    }

    .home-special-slider {
        overflow: visible;
    }

    .home-special-product {
        border-radius: 18px;
    }

    .home-special-product__image-link {
        padding: 11px 11px 0;
    }

    .home-special-product__image {
        height: 190px;

        border-radius: 14px;
    }

    .home-special-product__discount {
        top: 20px;
        right: 20px;

        min-width: 46px;
        height: 29px;

        padding: 0 7px;

        border-radius: 9px;
    }

    .home-special-product__discount strong {
        font-size: 12px;
    }

    .home-special-product__discount span {
        font-size: 9px;
    }

    .home-special-product__body {
        padding: 12px 13px 14px;
    }

    .home-special-product__title {
        min-height: 43px;

        font-size: 12px;
        line-height: 1.8;
    }

    .home-special-product__bottom {
        margin-top: 10px;
    }

    .home-special-product__old-price {
        font-size: 10px;
    }

    .home-special-product__price {
        font-size: 15px;
    }

    .home-special-product__arrow {
        width: 30px;
        height: 30px;

        border-radius: 9px;
    }

    .home-special-nav {
        display: none;
    }

    .home-special-zone__bottom {
        margin-top: 19px;
        gap: 10px;
    }

    .home-special-zone__bottom span {
        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .home-special-zone__header {
        gap: 10px;
    }

    .home-special-zone__title {
        font-size: 21px;
    }

    .home-special-zone__description {
        font-size: 11px;
    }

    .home-special-zone__more {
        padding-left: 0;
        padding-right: 0;
    }

    .home-special-product__image {
        height: 175px;
    }
}
/* =========================================================
   HERO RESPONSIVE FIX
========================================================= */

/* Desktop */
.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: stretch;
}

.home-hero__main {
    min-width: 0;
}

.home-hero__side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    /* Slider must take full width */
    .home-hero__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 12px;
    }

    .home-hero__main {
        width: 100%;
        min-width: 0;
    }

    /* Side banners below slider */
    .home-hero__side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px;
        width: 100%;
    }

    .home-side-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 7;
        min-width: 0;
    }

    .home-side-banner__image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-hero {
        padding-top: 10px;
    }

    .home-hero__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px;
    }

    .home-hero__main {
        width: 100%;
    }

    .home-hero__side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px;
    }

    .home-side-banner {
        width: 100%;
        aspect-ratio: 16 / 8;
        border-radius: 10px;
    }

    .home-side-banner__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-hero__grid {
        grid-template-columns: 1fr !important;
    }

    .home-hero__side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px;
    }

    .home-side-banner {
        aspect-ratio: 16 / 8;
        border-radius: 9px;
    }
}
/* =========================================================
   HOME MAGAZINE
========================================================= */

.home-magazine-zone {
    position: relative;

    padding: 68px 0 72px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f9fc 100%
        );
}


/* =========================================================
   HEADER
========================================================= */

.home-magazine-zone__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.home-magazine-zone__heading {
    min-width: 0;
}

.home-magazine-zone__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: #3e4095;

    font-size: 12px;
    font-weight: 800;
}

.home-magazine-zone__eyebrow i {
    font-size: 17px;
}

.home-magazine-zone__title {
    margin: 0;

    color: #222631;

    font-size: 29px;
    font-weight: 900;

    line-height: 1.4;
}

.home-magazine-zone__description {
    margin: 7px 0 0;

    color: #7a808e;

    font-size: 13px;
    line-height: 1.8;
}

.home-magazine-zone__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;

    color: #3e4095;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: transform .2s ease;
}

.home-magazine-zone__more span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border: 1px solid #e4e6ef;
    border-radius: 11px;

    background: #ffffff;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.home-magazine-zone__more i {
    font-size: 17px;
}

.home-magazine-zone__more:hover {
    color: #3e4095;
    transform: translateX(-4px);
}

.home-magazine-zone__more:hover span {
    color: #ffffff;
    border-color: #3e4095;
    background: #3e4095;
}


/* =========================================================
   SLIDER
========================================================= */

.home-magazine-slider-wrap {
    position: relative;
}

.home-magazine-slider {
    overflow: hidden;

    padding: 4px 3px 12px;
}

.home-magazine-slider .swiper-wrapper {
    align-items: stretch;
}

.home-magazine-slide {
    height: auto;
}


/* =========================================================
   EXISTING POST CARD
========================================================= */
.home-magazine-slide > * {
    height: 100%;
}


/* =========================================================
   NAVIGATION
========================================================= */

.home-magazine-nav {
    position: absolute;

    top: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #e4e6ed;
    border-radius: 50%;

    color: #353a46;
    background: rgba(255,255,255,.97);

    box-shadow: 0 8px 22px rgba(24,31,56,.10);

    transform: translateY(-50%);

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.home-magazine-nav i {
    font-size: 20px;
}

.home-magazine-nav:hover {
    color: #ffffff;
    border-color: #3e4095;
    background: #3e4095;

    transform: translateY(-50%) scale(1.06);
}

.home-magazine-nav--prev {
    right: -18px;
}

.home-magazine-nav--next {
    left: -18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-magazine-zone {
        padding: 55px 0 60px;
    }

    .home-magazine-zone__title {
        font-size: 26px;
    }

    .home-magazine-nav--prev {
        right: -8px;
    }

    .home-magazine-nav--next {
        left: -8px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-magazine-zone {
        padding: 42px 0 48px;
    }

    .home-magazine-zone__header {
        align-items: flex-start;

        gap: 15px;

        margin-bottom: 22px;
    }

    .home-magazine-zone__eyebrow {
        font-size: 12px;
    }

    .home-magazine-zone__title {
        font-size: 22px;
    }

    .home-magazine-zone__description {
        margin-top: 5px;

        font-size: 12px;
    }

    .home-magazine-zone__more {
        font-size: 12px;
    }

    .home-magazine-zone__more span {
        width: 34px;
        height: 34px;
    }

    .home-magazine-slider {
        padding-right: 1px;
        padding-left: 1px;
    }

    .home-magazine-nav {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-magazine-zone__header {
        align-items: center;
    }

    .home-magazine-zone__title {
        font-size: 20px;
    }

    .home-magazine-zone__description {
        font-size: 11px;
    }

    .home-magazine-zone__more {
        white-space: nowrap;
    }
}

/* =========================================================
   BLOG POST CARD
========================================================= */

.bvl-post-snippet {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border: 1px solid #e7e9ef;
    border-radius: 20px;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(27, 34, 55, 0.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bvl-post-snippet:hover {
    border-color: #dfe2eb;

    transform: translateY(-6px);

    box-shadow: 0 18px 38px rgba(27, 34, 55, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.bvl-post-image-link {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    background: #f4f5f8;

    text-decoration: none;
}

.bvl-post-thumbnail {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.bvl-post-snippet:hover .bvl-post-thumbnail {
    transform: scale(1.045);
}


/* =========================================================
   CONTENT
========================================================= */

.bvl-post-inner {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 17px 18px 18px;
}

.bvl-post-link {
    display: block;

    color: inherit;

    text-decoration: none;
}


/* =========================================================
   TITLE
========================================================= */

.bvl-post-title {
    display: -webkit-box;

    min-height: 50px;
    margin: 0;

    overflow: hidden;

    color: #252833;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.75;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.bvl-post-link:hover .bvl-post-title {
    color: #3e4095;
}


/* =========================================================
   DATE
========================================================= */

.bvl-post-date {
    display: block;

    margin-top: 8px;

    color: #9297a3;

    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   SEPARATOR
========================================================= */

.bvl-post-inner hr {
    width: 100%;

    margin: 14px 0;

    border: 0;
    border-top: 1px solid #edf0f4;

    opacity: 1;
}


/* =========================================================
   EXCERPT
========================================================= */

.bvl-post-excerpt {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color: #707684;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.95;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* =========================================================
   TAGS
========================================================= */

.bvl-post-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: auto;
    padding-top: 15px;
}

.bvl-tag {
    display: inline-flex;
    align-items: center;

    min-height: 27px;

    padding: 4px 9px;

    border: 1px solid #e4e6ee;
    border-radius: 8px;

    color: #666d7b;

    background: #f8f9fb;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.bvl-tag:hover {
    color: #3e4095;

    border-color: rgba(62, 64, 149, .20);

    background: rgba(62, 64, 149, .06);
}


/* =========================================================
   SWIPER FIX
========================================================= */

.home-magazine-slide > .col-sm-4 {
    width: 100% !important;
    max-width: 100% !important;

    flex: 0 0 100% !important;

    margin-bottom: 0 !important;

    padding-right: 0;
    padding-left: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .bvl-post-snippet {
        border-radius: 16px;
    }

    .bvl-post-image-link {
        aspect-ratio: 16 / 10;
    }

    .bvl-post-inner {
        padding: 14px 14px 15px;
    }

    .bvl-post-title {
        min-height: 44px;

        font-size: 13px;
    }

    .bvl-post-date {
        font-size: 11px;
    }

    .bvl-post-excerpt {
        font-size: 12px;
        line-height: 1.85;
    }

    .bvl-tag {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bvl-post-inner {
        padding: 13px;
    }

    .bvl-post-title {
        font-size: 12px;
    }

    .bvl-post-excerpt {
        font-size: 12px;
    }

}

/* =========================================================
   DRPC PRODUCT CARD
========================================================= */

.drpc-card {
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    min-width: 0;

    overflow: hidden;

    border: 1px solid #e7e9f0;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 8px 26px rgba(29, 35, 65, 0.055);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    isolation: isolate;
}

.drpc-card:hover {
    border-color: rgba(62, 64, 149, .18);

    transform: translateY(-7px);

    box-shadow:
        0 20px 42px rgba(29, 35, 65, 0.115);
}


/* =========================================================
   MEDIA
========================================================= */

.drpc-media {
    position: relative;

    padding: 12px 12px 0;
}

.drpc-media-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 255px;

    overflow: hidden;

    border-radius: 17px;

    background:
        radial-gradient(
            circle at 50% 38%,
            #ffffff 0%,
            #fafbfc 52%,
            #f1f3f7 100%
        );

    text-decoration: none;
}

.drpc-media-link::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(62, 64, 149, .025),
            transparent 40%
        );

    pointer-events: none;
}

.drpc-image {
    display: block;

    width: 100%;
    height: 100%;

    padding: 18px;

    object-fit: contain;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1);
}

.drpc-card:hover .drpc-image {
    transform: scale(1.055);
}


/* =========================================================
   BADGES
========================================================= */

.drpc-badge {
    position: absolute;

    top: 23px;
    right: 23px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 0 11px;

    border-radius: 11px;

    box-shadow:
        0 7px 18px rgba(0,0,0,.10);

    font-size: 11px;
    font-weight: 800;

    line-height: 1;
}

.drpc-badge i {
    margin-left: 5px;

    font-size: 14px;
}


/* Featured */

.drpc-badge-featured {
    gap: 2px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #3e4095 0%,
            #5c60c0 100%
        );

    box-shadow:
        0 8px 20px rgba(62, 64, 149, .25);
}


/* Discount */

.drpc-badge-discount {
    min-width: 48px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ef5350 0%,
            #d93232 100%
        );

    box-shadow:
        0 8px 20px rgba(217, 50, 50, .22);
}


/* =========================================================
   STOCK BADGE
========================================================= */

.drpc-stock-badge {
    position: absolute;

    left: 23px;
    bottom: 17px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    min-height: 30px;

    padding: 0 9px;

    border: 1px solid rgba(210, 67, 67, .12);
    border-radius: 9px;

    color: #c63d3d;

    background: rgba(255, 248, 248, .96);

    box-shadow:
        0 5px 14px rgba(160, 50, 50, .08);

    font-size: 10px;
    font-weight: 700;
}

.drpc-stock-badge i {
    font-size: 14px;
}


/* =========================================================
   CONTENT
========================================================= */

.drpc-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    min-width: 0;

    padding: 16px 18px 18px;
}


/* =========================================================
   BRAND
========================================================= */

.drpc-brand {
    display: inline-block;

    width: fit-content;
    max-width: 100%;

    margin-bottom: 7px;

    overflow: hidden;

    color: #7a8090;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: color .2s ease;
}

.drpc-brand:hover {
    color: #3e4095;
}


/* =========================================================
   TITLE
========================================================= */

.drpc-title {
    display: -webkit-box;

    min-height: 48px;

    overflow: hidden;

    color: #252934;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.8;

    text-decoration: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    transition: color .2s ease;
}

.drpc-title:hover {
    color: #3e4095;
}


/* =========================================================
   PRICE
========================================================= */

.drpc-price-box {
    margin-top: 13px;
}

.drpc-old-price {
    margin-bottom: 3px;

    color: #a0a5b0;

    font-size: 10px;
    font-weight: 500;

    text-decoration: line-through;
}

.drpc-old-price span {
    margin-right: 2px;

    font-size: 9px;
}

.drpc-price-row {
    display: flex;
    align-items: baseline;

    gap: 5px;
}

.drpc-price {
    color: #202430;

    font-size: 18px;
    font-weight: 900;

    letter-spacing: -.2px;
}

.drpc-currency {
    color: #777d89;

    font-size: 10px;
    font-weight: 600;
}

.drpc-contact-price {
    color: #3e4095;

    font-size: 12px;
    font-weight: 800;
}

.drpc-price-unavailable {
    display: flex;
    align-items: center;

    min-height: 29px;

    color: #9a9faa;

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.drpc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 15px;

    border-top: 1px solid #eef0f4;
}


/* =========================================================
   STOCK STATUS
========================================================= */

.drpc-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 11px;
    font-weight: 700;
}

.drpc-stock-dot {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.drpc-stock-ok {
    color: #4f8f45;
}

.drpc-stock-ok .drpc-stock-dot {
    background: #65bc50;

    box-shadow:
        0 0 0 4px rgba(101,188,80,.12);
}

.drpc-stock-off {
    color: #c54a4a;
}

.drpc-stock-off .drpc-stock-dot {
    background: #df5353;

    box-shadow:
        0 0 0 4px rgba(223,83,83,.10);
}


/* =========================================================
   MORE BUTTON
========================================================= */

.drpc-more {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #e6e8ef;
    border-radius: 11px;

    color: #3e4095;
    background: #f8f9fc;

    text-decoration: none;

    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.drpc-more i {
    font-size: 18px;
}

.drpc-more:hover {
    color: #ffffff;

    border-color: #3e4095;

    background: #3e4095;

    transform: translateX(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .drpc-media-link {
        height: 225px;
    }

    .drpc-content {
        padding: 14px 15px 16px;
    }

    .drpc-title {
        font-size: 13px;
    }

    .drpc-price {
        font-size: 17px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .drpc-card {
        border-radius: 17px;
    }

    .drpc-media {
        padding: 9px 9px 0;
    }

    .drpc-media-link {
        height: 185px;

        border-radius: 13px;
    }

    .drpc-image {
        padding: 12px;
    }

    .drpc-badge {
        top: 18px;
        right: 18px;

        min-height: 29px;

        padding: 0 8px;

        border-radius: 9px;

        font-size: 10px;
    }

    .drpc-badge i {
        font-size: 12px;
    }

    .drpc-stock-badge {
        left: 18px;
        bottom: 13px;

        min-height: 26px;

        padding: 0 7px;

        font-size: 9px;
    }

    .drpc-stock-badge i {
        font-size: 12px;
    }

    .drpc-content {
        padding: 12px 12px 13px;
    }

    .drpc-brand {
        margin-bottom: 5px;

        font-size: 10px;
    }

    .drpc-title {
        min-height: 43px;

        font-size: 12px;
        line-height: 1.8;
    }

    .drpc-price-box {
        margin-top: 10px;
    }

    .drpc-old-price {
        font-size: 9px;
    }

    .drpc-price {
        font-size: 15px;
    }

    .drpc-currency {
        font-size: 9px;
    }

    .drpc-more {
        width: 31px;
        height: 31px;

        border-radius: 9px;
    }

    .drpc-more i {
        font-size: 16px;
    }

    .drpc-footer {
        padding-top: 12px;
    }

    .drpc-stock {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .drpc-media-link {
        height: 165px;
    }

    .drpc-title {
        font-size: 12px;
    }

    .drpc-price {
        font-size: 14px;
    }

    .drpc-brand {
        font-size: 10px;
    }
}

/* =========================================================
   HOME PRODUCT ROW
========================================================= */

.home-product-row {
    position: relative;

    overflow: hidden;

    padding: 68px 0 62px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(62, 64, 149, .075),
            transparent 28%
        ),
        radial-gradient(
            circle at 4% 88%,
            rgba(101, 188, 80, .065),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fc 100%
        );
}


/* =========================================================
   HEADER
========================================================= */

.home-product-row__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 25px;
}

.home-product-row__heading {
    position: relative;
}

.home-product-row__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: #3e4095;

    font-size: 12px;
    font-weight: 800;
}

.home-product-row__eyebrow i {
    font-size: 17px;
}

.home-product-row__title {
    margin: 0;

    color: #20232d;

    font-size: 29px;
    font-weight: 900;

    line-height: 1.4;
}

.home-product-row__description {
    max-width: 650px;

    margin: 7px 0 0;

    color: #7b8190;

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================================
   TABS WRAPPER
========================================================= */

.home-product-row__tabs-wrap {
    position: relative;

    margin-bottom: 27px;
}

.home-product-row__tabs-wrap::before,
.home-product-row__tabs-wrap::after {
    position: absolute;
    top: 0;
    bottom: 0;

    z-index: 2;

    width: 34px;

    content: "";

    pointer-events: none;
}

.home-product-row__tabs-wrap::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            #f8f9fc,
            rgba(248,249,252,0)
        );
}

.home-product-row__tabs-wrap::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            #f8f9fc,
            rgba(248,249,252,0)
        );
}


/* =========================================================
   TABS
========================================================= */

.home-product-row__tabs {
    display: flex;
    align-items: center;

    gap: 9px;

    overflow-x: auto;

    padding: 5px;

    border: 1px solid #e5e7ee;
    border-radius: 17px;

    background: rgba(255,255,255,.82);

    box-shadow:
        0 8px 25px rgba(28,35,65,.045);

    scrollbar-width: none;
}

.home-product-row__tabs::-webkit-scrollbar {
    display: none;
}

.home-product-row__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    min-height: 44px;

    gap: 8px;

    padding: 0 16px;

    border: 0;
    border-radius: 12px;

    color: #737987;

    background: transparent;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}

.home-product-row__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    color: #7e8491;
    background: #f1f2f7;

    transition:
        color .22s ease,
        background .22s ease;
}

.home-product-row__tab-icon i {
    font-size: 15px;
}

.home-product-row__tab:hover {
    color: #3e4095;

    background: #f4f5fa;
}

.home-product-row__tab:hover .home-product-row__tab-icon {
    color: #3e4095;
    background: rgba(62,64,149,.09);
}

.home-product-row__tab.is-active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #3e4095 0%,
            #575bb2 100%
        );

    box-shadow:
        0 8px 20px rgba(62,64,149,.20);

    transform: translateY(-1px);
}

.home-product-row__tab.is-active .home-product-row__tab-icon {
    color: #ffffff;

    background: rgba(255,255,255,.14);
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.home-product-row__slider-wrap {
    position: relative;

    min-width: 0;

    padding: 4px 3px 12px;
}

.home-product-row__slider {
    width: 100%;

    overflow: hidden;

    padding: 2px 0 8px;
}

.home-product-row__slider .swiper-wrapper {
    align-items: stretch;
}

.home-product-row__slider .swiper-slide {
    display: flex;

    height: auto;

    min-width: 0;
}


/* =========================================================
   PRODUCT CARD CONNECTION
========================================================= */

.home-product-row .drpc-card {
    width: 100%;
}


/* =========================================================
   NAVIGATION
========================================================= */

.home-product-row__nav {
    position: absolute;

    top: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid #e3e5ec;
    border-radius: 50%;

    color: #343943;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 10px 25px rgba(26,32,58,.10);

    transform: translateY(-50%);

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.home-product-row__nav i {
    font-size: 21px;
}

.home-product-row__nav:hover {
    color: #ffffff;

    border-color: #3e4095;

    background: #3e4095;

    box-shadow:
        0 12px 28px rgba(62,64,149,.22);

    transform: translateY(-50%) scale(1.06);
}

.home-product-row__nav.swiper-button-disabled {
    opacity: .45;

    pointer-events: none;
}

.home-product-row__nav--prev {
    right: -18px;
}

.home-product-row__nav--next {
    left: -18px;
}


/* =========================================================
   LOADING
========================================================= */

.home-product-row__loading {
    position: absolute;

    inset: 0;

    z-index: 15;

    display: none;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 20px;

    background: rgba(248,249,252,.88);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    color: #636a78;

    font-size: 13px;
    font-weight: 600;
}

.home-product-row__loader {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: #3e4095;

    background: #ffffff;

    box-shadow: 0 5px 16px rgba(30,35,70,.08);
}

.home-product-row__loader i {
    font-size: 18px;

    animation:
        home-product-row-spin 1s linear infinite;
}

@keyframes home-product-row-spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   EMPTY / ERROR
========================================================= */

.home-product-row__empty,
.home-product-row__error {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    min-height: 280px;

    gap: 9px;

    color: #858b98;

    font-size: 13px;
}

.home-product-row__empty i,
.home-product-row__error i {
    font-size: 31px;
}

.home-product-row__error {
    color: #d34c4c;
}


/* =========================================================
   FOOTER
========================================================= */

.home-product-row__footer {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 13px;

    color: #9a9fac;

    font-size: 11px;
}

.home-product-row__footer i {
    color: #3e4095;

    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .home-product-row__title {
        font-size: 27px;
    }

    .home-product-row__nav--prev {
        right: -8px;
    }

    .home-product-row__nav--next {
        left: -8px;
    }
}


@media (max-width: 991.98px) {

    .home-product-row {
        padding: 56px 0 60px;
    }

    .home-product-row__title {
        font-size: 25px;
    }

    .home-product-row__description {
        max-width: 520px;
    }

    .home-product-row__nav {
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-product-row {
        padding: 44px 0 50px;
    }

    .home-product-row__header {
        margin-bottom: 18px;
    }

    .home-product-row__eyebrow {
        font-size: 12px;
    }

    .home-product-row__title {
        font-size: 22px;
    }

    .home-product-row__description {
        margin-top: 5px;

        font-size: 12px;
    }

    .home-product-row__tabs-wrap {
        margin-bottom: 19px;
    }

    .home-product-row__tabs {
        gap: 6px;

        padding: 4px;

        border-radius: 14px;
    }

    .home-product-row__tab {
        min-height: 39px;

        padding: 0 12px;

        font-size: 12px;
    }

    .home-product-row__tab-icon {
        width: 26px;
        height: 26px;

        border-radius: 8px;
    }

    .home-product-row__tab-icon i {
        font-size: 13px;
    }

    .home-product-row__slider-wrap {
        padding-right: 0;
        padding-left: 0;
    }

    .home-product-row__slider {
        padding-bottom: 7px;
    }

    .home-product-row__nav {
        display: none;
    }

    .home-product-row__footer {
        margin-top: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-product-row__title {
        font-size: 20px;
    }

    .home-product-row__description {
        font-size: 11px;
    }

    .home-product-row__tab {
        padding: 0 10px;
    }

    .home-product-row__tab-text {
        max-width: 120px;

        overflow: hidden;

        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* =========================================================
   HOME BANNERS
========================================================= */

.home-banners {
    position: relative;

    padding: 20px 0;
    background: #ffffff;
}


/* =========================================================
   GRID
========================================================= */

.home-banners__grid {
    display: grid;

    gap: 16px;
}

.home-banners--two .home-banners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-banners--three .home-banners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* =========================================================
   BANNER CARD
========================================================= */

.home-banner-card {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #f4f5f8;

    line-height: 0;

    text-decoration: none;

    box-shadow:
        0 7px 24px rgba(27, 34, 55, .055);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.home-banner-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(27, 34, 55, .10);
}


/* =========================================================
   IMAGE
========================================================= */

.home-banner-card__image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    transition: transform .4s ease;
}

.home-banner-card:hover .home-banner-card__image {
    transform: scale(1.015);
}


/* =========================================================
   BOTTOM FULL BANNER
========================================================= */

.home-banners--bottom {
    padding-bottom: 10px;
}

.home-banners__full {
    width: 100%;
}

.home-banner-card--full {
    border-radius: 20px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-banners {
        padding: 12px 0;
    }

    .home-banners__grid {
        gap: 10px;
    }

    .home-banners--two .home-banners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-banners--three .home-banners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-banner-card {
        border-radius: 12px;

        box-shadow:
            0 5px 18px rgba(27, 34, 55, .05);
    }

    .home-banner-card__image {
        width: 100%;
        height: auto;
    }

    .home-banner-card--full {
        border-radius: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-banners--three .home-banners__grid {
        gap: 8px;
    }

    .home-banner-card {
        border-radius: 10px;
    }
}
.home-product-row__footer {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.home-product-row__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border-radius: 12px;
    background: #fff;
    color: #3E4095;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #E5E7F0;
    box-shadow: 0 5px 18px rgba(35, 42, 75, 0.05);
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.home-product-row__more-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F2FB;
    color: #3E4095;
    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.home-product-row__more-icon i {
    font-size: 17px;
}

.home-product-row__more:hover {
    background: #3E4095;
    border-color: #3E4095;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(62, 64, 149, 0.16);
}

.home-product-row__more:hover .home-product-row__more-icon {
    background: rgba(255,255,255,.14);
    color: #fff;
    transform: translateX(-3px);
}

@media (max-width: 767.98px) {
    .home-product-row__footer {
        margin-top: 16px;
    }

    .home-product-row__more {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 12px;
    }
}
