/* import-styles */
@import url(global.css);
@import url(../layout/header.css);
@import url(../layout/footer.css);

/*hero-banner-start*/
.hero-banner {
    border-radius: 10px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 20px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 20px;
}

@media (max-width: 576px) {
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 15px;
    }

    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 15px;
    }

}

.swiper-button-next:after, .swiper-button-prev:after {
    content: '' !important;
}

.swiper-pagination-bullet-active {
    background-color: white;
}

@media (max-width: 768px) {
    .first-banner .row {
        gap: 30px;
    }
}

.left-banner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}
.first-banner {
    z-index: 1;
}
.left-banner-box img {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .left-banner-box {
        flex-direction: row;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .left-banner-box img {
        border-radius: 20px;
    }
}

/*hero-banner-end*/

/*category-box-start*/

.wave {
    position: relative;
    display: flex;
    justify-content: center;
}

.wave svg {
    position: absolute;
    bottom: -116px;
}

.pagination-box {
    position: absolute;
    z-index: 5;
    top: 5px;
    margin-right: 5px;
}

.category-parent {
    margin: 10px 60px 0;
}

@media (max-width: 500px) {
    .category-parent {
        margin: 10px 40px 0;
    }
}

.category-parent .category-box {
    z-index: 10;
}

.category {
    position: relative;
    bottom: 70px;
    z-index: 1;
}

.category-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.category-content.active {
    opacity: 1;
    max-height: 100%;
}

.category-card.active {
    background-color: var(--primary-color);
    box-shadow: 0 10px 50px #e0000024;
}

.category-card.active h2 {
    color: white;
}

.category-card.active p {
    color: white;
}

.category-card {
    border-radius: 30px;
    display: flex;
    background-color: var(--color-three);
    padding: 35px 20px;
    margin: 0 10px 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .category-card {
        margin: 0 10px 50px;
    }
}

@media (max-width: 992px) {
    .category-card {
        padding: 15px 20px;
    }
}

.category-card h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
}

.category-card p {
    color: #7B7D7E;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;

}

.float-button-box {
    position: relative;
    display: flex;
    justify-content: center;
    transition: 0.2s;
}

.float-button {
    position: absolute;
    top: 10px;
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 25px;
    transition: 0.2s;
}

.category-card:hover {
    transition: 0.2s;
    background-color: var(--primary-color);
    box-shadow: 0 10px 50px #e0000024;
}

.category-card:hover svg path,
.category-card.active svg path {
    fill: white;
}

.category-card:hover h2, .category-card:hover p {
    color: #fff;
}

.category-card:hover .float-button,
.category-card.active .float-button {
    background-color: white;
}

.category-card .float-button svg {
    transition: 0.2s;
}

.category-card:hover .float-button svg,
.category-card.active .float-button svg {
    transition: 0.5s;
    rotate: 180deg;
}

.category-card:hover .float-button svg path,
.category-card.active .float-button svg path {
    stroke: var(--primary-color);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .category {
        margin: 0;
        bottom: 0;
        z-index: 1;
    }

    .category-card h2 {
        font-size: 1rem;
    }

    .space-box {
        display: none;
    }
}

@media (max-width: 992px) {
    .wave svg {
        display: none;
    }

    .category-parent {
        position: unset;
    }

    .category {
        bottom: 0;
        gap: 20px;
    }

    .category-icon svg {
        height: 100%;
        width: 100%;
    }

    .category-card h2 {
        font-size: 0.8rem !important;
    }

    .category-card p {
        font-size: 0.4rem !important;
    }

    .float-button {
        top: 0;
    }
}

/*category-box-end*/

/*product-sections-start*/
.products-box {
    background-color: #4b4b4b;
    padding: 160px 0 30px 0;
    margin-top: -110px;
    position: relative;
    margin-bottom: 80px;
}

@media(max-width: 992px) {
    .products-box {
        padding: 120px 0 30px 0;
        margin-top: -135px;
    }
}

.product-card {
    border-radius: 30px;
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 14px;
}

.product-card img {
    border-radius: 22px;
    height: 250px;
}

.product-card .primary-button {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: none;
}

.content-product {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-product h3 {
    font-weight: 800;
    font-size: 1.4rem;
    color: #686868;
}

.content-product p {
    font-weight: 600;
    font-size: 0.8rem;
    color: #AAA8A8;
}

.products-box .action-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.products-box .action-product .product-btn {
    background-color: #4b4b4b;
    color: #fff;
    font-size: .6rem;
    font-weight: 600;
    padding: 5px;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-box .action-product .product-btn svg {
    width: 50%;
}

@media (min-width: 768px) and (max-width: 992px) {
    .products-box .action-product .product-btn svg {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .products-box .action-product {
        gap: 2px;
    }
}

@media (max-width: 450px) {
    .products-box .action-product .product-btn svg {
        width: 30%;
    }
}

.more-product {
    display: flex;
    justify-content: center;
    width: 100%;
}

.more-product-button {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 40px;
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 20px #e0000024;
}

.more-product-button:hover {
    transform: translatey(-6px);
    color: white;
    box-shadow: 0 5px 20px #e0000024;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .primary-button {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .product-card {
        border-radius: 15px;
        padding: 10px;
        gap: 5px;
    }

    .content-product h3 {
        font-size: 0.8rem;
    }

    .content-product p {
        font-size: 0.6rem;
    }
}

.products-box .swiperProducts {
    margin: 0 70px;
}

.products-box .swiper-button-next, .swiper-rtl .swiper-button-prev,
.products-box .swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: fit-content;
    height: fit-content;
    transform: scale(1);
}

.products-box .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
}

.products-box .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
}

@media (max-width: 500px) {
    .products-box .swiperProducts {
        margin: 0 40px;
    }

    .products-box .swiper-button-next, .swiper-rtl .swiper-button-prev svg,
    .products-box .swiper-button-prev, .swiper-rtl .swiper-button-next svg {
        width: 50px;
    }
}

/*product-sections-end*/

/*main-banner-sections-start*/
.main-banner img {
    border-radius: 30px;
    height: 400px;
}

@media (max-width: 768px) {
    .main-banner img {
        height: 200px;
    }
}

/*main-banner-sections-end*/

/*articles-sections-start*/
.articles .archive-btn {
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px #e0000024;
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    transition: 0.3s all ease-in-out;
}

.articles .archive-btn:hover {
    transform: translateY(-3px);
}

.articles .article-card .internal-card {
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 5px 25px #0000003b;
    border-radius: 20px;
    color: #6C6C6C;
    font-size: 10px;
    position: absolute;
    bottom: 10%;
    width: 75%;
}

@media(max-width: 1200px) {
    .articles .article-card .internal-card {
        bottom: 15%;
    }
}

.articles .article-card .internal-card h4 ,.articles .article-card .internal-card h2{
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
}

.articles .article-card .internal-card .details a {
    font-size: 10px;
}

.articles .article-card .internal-card .read-more {
    color: #e00000;
    font-size: 10px;
    font-weight: bold;
}

.articles .article-card img {
    height: 400px;
    border-radius: 30px;
}

@media (max-width: 1200px) {
    .articles .article-card .internal-card, .internal-card a {
        font-size: 11px;
    }

    .articles .article-card .internal-card h4 {
        font-size: 13px;
    }

    .articles .article-card .internal-card a {
        font-size: 13px;
    }

    .articles .article-card img {
        height: 350px;
    }

    .articles .article-card .internal-card svg {
        width: 15px;
    }
}

@media (max-width: 992px) {
    .articles .article-card img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .articles .article-card .internal-card {
        width: 90%;
    }

    .articles .card-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}

@media (min-width: 576px) and (max-width: 830px) {
    .articles .article-card .internal-card, .internal-card a {
        font-size: 9px;
    }

    .articles .article-card .internal-card h4 {
        font-size: 11px;
    }

    .articles .article-card .internal-card a {
        font-size: 11px;
    }
}
/*articles-sections-end*/

/*brands-sections-start*/
.brands .swiper-wrapper {
    height: 180px;
}

.brands .brand-card {
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 2px 90px -30px #e0000024;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s;
    width: 200px;
    height: 200px;
}

.brands .brand-card img {
    width: 100px;
}

.brands .swiper-pagination {
    position: relative;
    bottom: 0;
}

/*brands-sections-end*/

/*faq-sections-start*/
.frequently-questions {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.frequently-questions .card-header {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 50px;
}

.frequently-questions .accordion-item {
    border-radius: 30px !important;
    background: #F1E9FF !important;
    box-shadow: none;
}

.frequently-questions .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    width: 100%;
}


@media (max-width: 576px) {
    .frequently-questions .accordion-item .accordion-button {
        padding: 8px 10px;
    }

    .frequently-questions .accordion-item .accordion-button svg:first-child {
        width: 30px;
    }

    .frequently-questions .accordion-item .accordion-button svg:last-child {
        width: 25px;
    }
}

.frequently-questions .accordion-item .accordion-button:not(.collapsed) svg:last-child {
    transform: rotate(180deg);
}

.frequently-questions .accordion-item .accordion-button h2 {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
    .frequently-questions .accordion-item .accordion-button h2 {
        font-size: 16px;
    }
}

.frequently-questions .accordion-item .accordion-button::after {
    content: none;
}

.frequently-questions .accordion-collapse {
    position: relative;
    background-color: transparent;
    color: #0E0D0D;
    border-radius: 0 0 50px 50px !important;
}

.frequently-questions .accordion-item.open {
    background-color: var(--primary-color) !important;
}

.frequently-questions .accordion-item.open svg path {
    stroke: #fff;
}

.frequently-questions .accordion-item.open .accordion-button h2 {
    color: #fff;
}

@media (max-width: 576px) {
    .frequently-questions .accordion-collapse {
        position: relative;
        right: 0;
    }

    .frequently-questions .accordion-item .accordion-button h2 {
        font-size: 14px;
        font-weight: 600;
    }
}

.frequently-questions .accordion-body {
    text-align: justify;
    padding: 25px 35px;
    background: #F1E9FF;
    font-weight: 600;
    line-height: 27px;
    font-size: 13px;
}

.frequently-questions .accordion-body .title-box {
    gap: 5px;
    font-weight: 600;
    color: white;
}

.frequently-questions .accordion-body .title-box h3 {
    font-size: 1.25rem;
    font-weight: bold;
}
.frequently-questions h4{
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0 !important;
}
@media (max-width: 576px) {
    .frequently-questions .accordion-body {
        font-size: 12px;
    }

    .frequently-questions .accordion-body svg {
        width: 30px;
    }

    .frequently-questions .accordion-body .title-box h3,.frequently-questions h4 {
    
        font-size: 0.9rem;
    }
    .frequently-questions .accordion-button{
        padding: 0 !important;
    }

}

.accordion-header svg {
    transform: rotate(180deg) !important;

}

.collapsed svg {
    transform: rotate(0) !important;
}

/*faq-sections-end*/
.products-box .action-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.products-box {
    background-color: #cccccc !important;
}
.product-card img {
    border-radius: 22px;
    height: auto !important;
}
.green-btn {
    background-color: #4b4b4b !important;
    display: table;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 50px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1.2px;
    padding: 8px 14px;
}