/*==================================================
PRODUCT SECTION
==================================================*/

.products-section {
    padding: 100px 0;
    background: #fff;
}

.products-section .container {
    max-width: 1700px;
}

/*==================================================
HEADING
==================================================*/

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #222;
}

.section-heading p {
    margin: 10px 0 0;
    color: #777;
}

.view-all-btn {
    padding: 12px 30px;
    border: 1px solid #c9a96e;
    border-radius: 40px;
    color: #111;
    text-decoration: none;
    transition: .35s;
}

.view-all-btn:hover {
    background: #c9a96e;
    color: #fff;
}

/*==================================================
CARD
==================================================*/

.product-card {

    position: relative;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .4s;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);

}

/*==================================================
IMAGE
==================================================*/

.product-image {

    position: relative;

    width: 100%;

    padding-top: 100%;

    overflow: hidden;

    background: #f5f5f5;

}

.product-image img {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.main-image {

    opacity: 1;

    z-index: 1;

}

.hover-image {

    opacity: 0;

    z-index: 2;

}

.product-card:hover .main-image {

    opacity: 0;

    transform: scale(1.08);

}

.product-card:hover .hover-image {

    opacity: 1;

    transform: scale(1.08);

}

/*==================================================
BADGE
==================================================*/

.product-badge {

    position: absolute;

    left: 15px;

    top: 15px;

    z-index: 10;

    padding: 8px 14px;

    border-radius: 30px;

    background: #111;

    color: #fff;

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.product-badge.sale {

    background: #b22222;

}

/*==================================================
ACTIONS
==================================================*/

.product-actions {

    position: absolute;

    right: 15px;

    top: 15px;

    z-index: 20;

    display: flex;

    flex-direction: column;

    gap: 10px;

    opacity: 0;

    transform: translateX(20px);

    transition: .35s;

}

.product-card:hover .product-actions {

    opacity: 1;

    transform: none;

}

.action-btn {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #111;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .15);

}

.action-btn:hover {

    background: #c9a96e;

    color: #fff;

}

/*==================================================
INFO
==================================================*/

.product-info {

    padding: 22px;

    text-align: left;

}

.product-info h3 {

    margin: 0 0 10px;

    font-size: 18px;

    font-weight: 600;

    min-height: 50px;

}

.product-info h3 a {

    color: #111;

    text-decoration: none;

}

.product-rating {

    color: #d4af37;

    font-size: 14px;

    margin-bottom: 12px;

}

.product-price {

    margin-bottom: 18px;

}

.product-price del {

    margin-right: 10px;

    color: #999;

}

.product-price span {

    font-size: 22px;

    font-weight: 700;

    color: #111;

}

.product-btn {

    display: block;

    text-align: center;

    padding: 13px;

    background: #111;

    color: #fff;

    border-radius: 35px;

    text-decoration: none;

    transition: .35s;

}

.product-btn:hover {

    background: #c9a96e;

}

/*==================================================
SWIPER
==================================================*/

.featuredProductsSwiper {

    overflow: hidden;

}

.featuredProductsSwiper .swiper-slide {

    height: auto;

}

.products-pagination {

    margin-top: 40px;

    text-align: center;

}

.products-pagination .swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    background: #bbb;

    opacity: 1;

}

.products-pagination .swiper-pagination-bullet-active {

    width: 34px;

    border-radius: 20px;

    background: #c9a96e;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .section-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .section-heading h2 {

        font-size: 32px;

    }

}

@media(max-width:767px) {

    .products-section {

        padding: 70px 0;

    }

    .section-heading h2 {

        font-size: 26px;

    }

    .product-info {

        padding: 18px;

    }

    .product-info h3 {

        font-size: 16px;

        min-height: 40px;

    }

    .product-price span {

        font-size: 18px;

    }

}
.featuredProductsSwiper {
    position: relative;
    padding-bottom: 70px;
    /* Space for pagination */
}

.products-pagination {
    position: absolute !important;
    bottom: 15px !important;
    left: 0;
    width: 100%;
    text-align: center;
}
/*==========================
SWIPER
==========================*/

.featuredProductsSwiper {

    position: relative;

    overflow: hidden;

    padding-bottom: 70px;

}

/*==========================
LEFT RIGHT
==========================*/

.products-prev,
.products-next {

    position: absolute;

    top: 42%;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 50;

    cursor: pointer;

    transition: .35s;

    color: #111;

}

.products-prev {

    left: 10px;

}

.products-next {

    right: 10px;

}

.products-prev:hover,
.products-next:hover {

    background: #C9A96E;

    color: #fff;

    transform: scale(1.05);

}

/*==========================
PAGINATION
==========================*/

.products-pagination {

    position: absolute !important;

    bottom: 5px !important;

    left: 0;

    width: 100%;

    text-align: center;

}

.products-pagination .swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    background: #cfcfcf;

    opacity: 1;

    transition: .3s;

}

.products-pagination .swiper-pagination-bullet-active {

    width: 36px;

    border-radius: 30px;

    background: #C9A96E;

}

/*==========================
DISABLED
==========================*/

.swiper-button-disabled {

    opacity: .25;

    cursor: not-allowed;

}