/* import-styles */
@import url(global.css);
@import url(../layout/header.css);
@import url(../layout/footer.css);

/*hero-banner-section-start*/
.hero-banner-section .hero-banner img {
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.hero-banner-section .hero-banner {
    border-radius: 35px 0 35px 0;
    height: 450px;
}

@media (max-width: 992px) {
    .hero-banner-section .hero-banner {
        border-radius: 20px 0 20px 0;
        height: 350px;
    }

    .hero-banner-section .hero-banner .swiper-button-prev svg circle,
    .hero-banner-section .hero-banner .swiper-button-next svg circle {
        fill: #E3E3E3 !important;
    }

    .hero-banner-section .hero-banner .swiper-button-prev svg path,
    .hero-banner-section .hero-banner .swiper-button-next svg path {
        fill: #2E405E;
    }
}

@media (max-width: 576px) {
    .hero-banner-section .hero-banner {
        height: 180px;
    }
}

.hero-banner-section .swiper-button-next,
.hero-banner-section .swiper-rtl .swiper-button-prev {
    right: 30px;
}

.hero-banner-section .swiper-button-prev,
.hero-banner-section .swiper-rtl .swiper-button-next {
    left: 30px;
}

/*hero-banner-section-end*/

/*products-section-start*/
.discount-section .section-header {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 16px;
    gap: 10px;
}

.discount-section .section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.discount-section .products-slider-container {
    position: relative;
    padding: 0 60px;
}

.discount-section .discountProductsSwiper,
.discount-section .discountProductsSwiper2,
.discount-section .discountProductsSwiper3,
.discount-section .discountProductsSwiper4,
.discount-section .discountProductsSwiper5 {
    width: 100%;
    height: 100%;
    padding: 10px 0 35px;
}

.discount-section .discountProductsSwiper .swiper-slide,
.discount-section .discountProductsSwiper2 .swiper-slide,
.discount-section .discountProductsSwiper3 .swiper-slide,
.discount-section .discountProductsSwiper4 .swiper-slide,
.discount-section .discountProductsSwiper5 .swiper-slide {
    height: auto;
}

.discount-section .product-card {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #dddddd 100%);
    padding-top: 10px;
}

.discount-section .product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.discount-section .product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.discount-section .product-image img {
    width: calc(100% - 50px);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.discount-section .product-info {
    padding: 5px 16px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.discount-section .product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-section .product-actions {
    display: flex;
    gap: 30px;
    margin-top: auto;
    position: absolute;
    bottom: -23px;
}

.discount-section .btn-action {
    flex: 1;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.discount-section .btn-view {
    background-color: #E8E8E8;
}

.discount-section .btn-view:hover {
    transform: translateY(-2px);
}

.discount-section .btn-view svg {
    width: 24px;
    height: 24px;
    color: #999999;
}

.discount-section .btn-cart {
    background-color: #53c09f;
}

.discount-section .btn-cart:hover {
    transform: translateY(-2px);
}

.discount-section .btn-cart svg {
    width: 36px;
    height: 36px;
    color: #FFFFFF;
}

/* Custom Navigation Buttons - Unique Classes */
.discount-section .discount-swiper-btn-next,
.discount-section .discount-swiper-btn-prev {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.discount-section .discount-swiper-btn-prev {
    right: auto;
    left: 0;
}

.discount-section .discount-swiper-btn-next {
    left: auto;
    right: 0;
}

.discount-section .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .discount-section .products-slider-container {
        padding: 0 55px;
    }
}

@media (max-width: 768px) {
    .discount-section .products-slider-container {
        padding: 0 50px;
    }

    .discount-section .section-header h2 {
        font-size: 18px;
    }

    .discount-section .discount-swiper-btn-next,
    .discount-section .discount-swiper-btn-prev {
        width: 38px;
        height: 38px;
    }

    .discount-section .product-title {
        font-size: 14px;
        min-height: 42px;
    }
}

@media (max-width: 576px) {
    .discount-section .products-slider-container {
        padding: 0 45px;
    }

    .discount-section .discount-swiper-btn-next,
    .discount-section .discount-swiper-btn-prev {
        width: 36px;
        height: 36px;
    }

    .discount-section .btn-view svg,
    .discount-section .btn-cart svg {
        width: 28px;
        height: 28px;
    }
}

/* Section 2 Navigation Buttons */
.discount-section-2 .discount-swiper-btn-prev-2,
.discount-section-2 .discount-swiper-btn-next-2,
.discount-section-3 .discount-swiper-btn-prev-3,
.discount-section-3 .discount-swiper-btn-next-3,
.discount-section-4 .discount-swiper-btn-prev-4,
.discount-section-4 .discount-swiper-btn-next-4,
.discount-section-5 .discount-swiper-btn-prev-5,
.discount-section-5 .discount-swiper-btn-next-5 {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.discount-section-2 .discount-swiper-btn-prev-2,
.discount-section-3 .discount-swiper-btn-prev-3,
.discount-section-4 .discount-swiper-btn-prev-4,
.discount-section-5 .discount-swiper-btn-prev-5 {
    right: auto;
    left: 0;
}

.discount-section-2 .discount-swiper-btn-next-2,
.discount-section-3 .discount-swiper-btn-next-3,
.discount-section-4 .discount-swiper-btn-next-4,
.discount-section-5 .discount-swiper-btn-next-5 {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    .discount-section-2 .discount-swiper-btn-prev-2,
    .discount-section-3 .discount-swiper-btn-prev-3,
    .discount-section-4 .discount-swiper-btn-prev-4,
    .discount-section-5 .discount-swiper-btn-prev-5,
    .discount-section-2 .discount-swiper-btn-next-2,
    .discount-section-3 .discount-swiper-btn-next-3,
    .discount-section-4 .discount-swiper-btn-next-4,
    .discount-section-5 .discount-swiper-btn-next-5 {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 576px) {
    .discount-section-2 .discount-swiper-btn-prev-2,
    .discount-section-3 .discount-swiper-btn-prev-3,
    .discount-section-4 .discount-swiper-btn-prev-4,
    .discount-section-5 .discount-swiper-btn-prev-5,
    .discount-section-2 .discount-swiper-btn-next-2,
    .discount-section-3 .discount-swiper-btn-next-3,
    .discount-section-4 .discount-swiper-btn-next-4,
    .discount-section-5 .discount-swiper-btn-next-5 {
        width: 36px;
        height: 36px;
    }
}

.discount-section-2 {
    box-shadow: inset 0 40px 30px -20px rgba(0, 0, 0, 0.09), inset 0 -40px 30px -20px rgba(0, 0, 0, 0.09);
}

.discount-section-2 .btn-view {
    background-color: var(--primary-color);
}

.discount-section-2 .btn-view svg path {
    stroke: var(--color-dark);
}

.discount-section-5 {
    background-color: var(--primary-color);
}

.discount-section-5 .btn-view {
    background-color: #53c09f;
}

.discount-section-5 .btn-view svg path {
    stroke: #fff;
}

/*products-section-end*/


/*products-list-section-start*/
.products-list-section {
    background-color: var(--primary-color);
    padding-block: 75px 100px;
    box-shadow: 0 -30px 30px rgba(0, 0, 0, 0.09),
    0 50px 40px rgba(0, 0, 0, 0.09);
}

.products-list-section .row {
    row-gap: 50px;
}

.products-list-section .row .product-card {
    padding-inline: 30px;
}

.products-list-section .row .product-image {
    padding: 20px;
    background: radial-gradient(circle, #F0F0F0 0%, #D0D0D0 100%);
    border: 2px solid #fff;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
}

.products-list-section .row .product-image img {
    aspect-ratio: unset;
    max-width: 100%;
    max-height: 100%;
}

.products-list-section .product-title {
    font-weight: 700;
    color: var(--color-dark);
}

.products-list-section .more-btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.products-list-section .more-btn-box a {
    position: absolute;
    bottom: -22px;
}

/*products-list-section-end*/


/*quick-access-section-start*/
.quick-access-section .quick-access-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    background: #FFFFFF;
    box-shadow: 0 0 4px #fdb913;
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 100px;
    min-width: 300px;
    max-width: 100%;
}

.quick-access-section .quick-access-box:hover {
    transform: translateY(-5px);
}

.quick-access-section .quick-access-box__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.quick-access-section .quick-access-box__title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    text-align: right;
    flex: 0 0 auto;
}

.quick-access-section .quick-access-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-access-section .quick-access-box__icon img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
    border-radius: 0;
}

@media (max-width: 992px) {
    .quick-access-section .quick-access-box__title {
        font-size: 22px;
    }

    .quick-access-section .quick-access-box__icon img {
        width: 70px;
        height: 70px;
    }

    .quick-access-section .quick-access-box {
        min-height: 140px;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .quick-access-section .quick-access-box {
        min-height: 120px;
        padding: 20px 15px;
    }

    .quick-access-section .quick-access-box__title {
        font-size: 20px;
    }

    .quick-access-section .quick-access-box__icon img {
        width: 60px;
        height: 60px;
    }

    .quick-access-section .quick-access-box__content {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .quick-access-section .quick-access-box {
        min-height: 100px;
        padding: 18px 15px;
    }

    .quick-access-section .quick-access-box__title {
        font-size: 18px;
    }

    .quick-access-section .quick-access-box__icon img {
        width: 50px;
        height: 50px;
    }
}

/*quick-access-section-end*/