/* =========================================================
   RANGE PRODUCTS SECTION
========================================================= */

.range-products-section {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.range-heading h2 {
    margin-bottom: 16px;

    color: #4a210d;

    font-family: 'Poppins', sans-serif;

    font-size: 42px;

    font-weight: 600;

    line-height: 1.2;
}
.range-heading p{
  

    max-width: 620px;
    margin: auto;
    color: rgb(128, 105, 90);
    font-size: 14px;
    line-height: 1.8;

}

/* =========================================================
   SLIDER
========================================================= */

.range-slider {
    position: relative;

    width: 100%;

    margin-top: 45px;

    padding: 0 55px;
}


/* =========================================================
   VIEWPORT
========================================================= */

.range-viewport {
    width: 100%;

    overflow: hidden;

    padding: 25px 5px 35px;
}


/* =========================================================
   TRACK
========================================================= */

.range-track {
    display: flex;

    align-items: stretch;

    gap: 20px;

    width: max-content;

    margin: 0;

    padding: 0;

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* =========================================================
   CARD
========================================================= */

.range-item {

    position: relative;

    flex: 0 0 250px;

    width: 250px;

    overflow: hidden;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(78, 39, 10, 0.08);

    opacity: 0.28;

    filter: blur(2.5px);

    transform: scale(0.90);

    transition:
        opacity 0.7s ease,
        filter 0.7s ease,
        transform 0.7s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.7s ease;

    pointer-events: none;
}


/* =========================================================
   CENTER CARD
========================================================= */

.range-item.is-center {

    opacity: 1;

    filter: blur(0);

    transform: scale(1.08);

    z-index: 10;

    box-shadow:
        0 22px 55px rgba(78, 39, 10, 0.18);

    pointer-events: auto;
}


/* =========================================================
   IMAGE
========================================================= */

.range-image {

    position: relative;

    width: 100%;

    height: 185px;

    overflow: hidden;

    background: #f4eadb;
}


.range-image img {

    display: block;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;

    object-position: center !important;

    transition:
        transform 0.8s ease;
}


/* Center image */

.range-item.is-center
.range-image img {

    transform: scale(1.03);
}


/* =========================================================
   BADGE
========================================================= */

.range-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 5;

    padding: 6px 10px;

    border-radius: 50px;

    background: #8c2030;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;
}


.range-badge.signature {

    background: #d29a35;

    color: #3d210e;
}


/* =========================================================
   CONTENT
========================================================= */

.range-content {

    padding: 18px 18px 20px;
}


/* =========================================================
   TITLE
========================================================= */

.range-content h3 {

    margin: 0 0 3px;

    color: #4a210d;

    font-family: "Poppins", sans-serif;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================================
   SUBTITLE
========================================================= */

.range-content > span {

    display: block;

    margin-bottom: 8px;

    color: #8c2030;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.04em;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.range-content p {

    margin: 0 0 15px;

    color: #765a45;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   BUTTON
========================================================= */

.range-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 10px;

    border: 1px solid #8c2030;

    border-radius: 50px;

    color: #8c2030;

    background: transparent;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 400;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.range-btn:hover {

    background: #8c2030;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   ARROWS
========================================================= */

.range-arrow {

    position: absolute;

    top: 50%;

    z-index: 30;

    width: 36px !important;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid rgba(140, 32, 48, 0.18);

    border-radius: 50%;

    background: #ffffff;

    color: #8c2030;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(78, 39, 10, 0.10);

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.range-arrow:hover {

    background: #8c2030;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.1);
}


.range-arrow i {
    font-size: 12px;
}


.range-prev {
    left: 0;
}


.range-next {
    right: 0;
}


/* =========================================================
   ALL PRODUCTS BUTTON
========================================================= */

.range-all-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 18px;
}


.range-all-btn .btn-primary {

    position: relative;

    width: 260px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px 15px;

    border: none;

    border-radius: 999px;

    background: #842318;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 400;

    text-decoration: none;

    box-shadow: none;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Golden circle arrow */

.range-all-btn .btn-primary i {

    position: absolute;

    right: 10px;

    top: 50%;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #c88918;

    color: #ffffff;

    font-size: 16px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* Hover */

.range-all-btn .btn-primary:hover {

    background: #742016;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(132, 35, 24, 0.18);
}


.range-all-btn .btn-primary:hover i {

    background: #d69a25;

    transform:
        translateY(-50%)
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .range-slider {

        padding: 0 45px;
    }


    .range-item {

        flex-basis: 230px;

        width: 230px;
    }


    .range-image {

        height: 170px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .range-heading h2 {

        font-size: 34px;

        line-height: 1.2;
    }


    .range-slider {

        padding: 0 38px;
    }


    .range-viewport {

        padding:
            20px 10px 30px;
    }


    .range-track {

        gap: 15px;
    }


    .range-item {

        flex-basis: 250px;

        width: 250px;
    }


    .range-item.is-center {

        transform: scale(1.03);
    }


    .range-image {

        height: 190px;
    }


    .range-arrow {

        width: 36px !important;

        height: 36px;
    }


    .range-content h3 {

        font-size: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .range-heading h2 {

        font-size: 30px;
    }


    .range-slider {

        padding: 0 32px;
    }


    .range-item {

        flex-basis: 235px;

        width: 235px;
    }


    .range-image {

        height: 175px;
    }

}