.main {
    border-top: 1px solid #e9e9e9;
}

.home .main {
    border-top: 0;
}

.section_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}


.section_title h2 {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
}

.section_title p {
    color: #6d90a3;
    font-size: 18px;
    font-weight: 400;
}

.section_title h2+p {
    margin-top: 10px;
}

.section_title h2 span {
    color: #3A4045;
    font-weight: 400;
}

.section_top_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_top_right .custom-select {
    background-color: rgba(0, 101, 179, 0.05);
    border: 0;
    width: 232px;
    height: 44px;
    border-radius: 6px;
}

.section_top_right .custom-select .current {
    color: #172b85;
    font-size: 16px;
    font-weight: 600;
}

.section_top_right .custom-select .option {
    color: var(--color-black) !important;
    font-size: 16px;
    font-weight: 400 !important;
}

.section_top_right .custom-select.nice-select:after {
    border: 0;
    background: url(../images/arrow_select.svg);
    height: 7px;
    width: 12px;
}

.section_top_right .custom-select.nice-select.open:after {
    margin-top: -4px;
    background: url(../images/arrow_select_open.svg);
}

/* ----------------------------------------------- */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #E6E7E8;
    padding: 20px 20px 12px;
    transition: transform 0.3s ease;
    height: 100%;
}

.product_carousel .product-card {
    display: flex;
    flex-direction: column;
    margin: 0 2px;
}


.card-header {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
}

.badge {
    display: inline-block;
    color: white;
    border-radius: 26px;
    padding: 4px 8px 4px 8px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.badge.best-seller {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.badge.trending,
.badge.popular {
    background: linear-gradient(90deg,
            rgba(51, 132, 194, 1) 0%,
            rgba(108, 191, 255, 1) 100%);
}

.badge.few-left {
    background: linear-gradient(90deg,
            rgba(229, 3, 7, 1) 0%,
            rgba(255, 143, 145, 1) 100%);
}

.wishlist-btn {
    background-color: #ffffff;
    border: 1px solid #ededed;
    border-radius: var(--sm-radius);
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    background: #f2f7fc;
    border: 1px solid #f2f7fc;
}

/* .product-card .wishlist-btn {
    transform: translate(6px, -6px);
} */

.wishlist-btn img {
    width: 17px !important;
}


.wishlist-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}



.product-card .prodct-image {
    width: 100%;
    height: 230px;

}

.product-card .prodct-image>a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.prodct-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-info-bottom {
    padding-top: 10px;
}

.product_carousel .product-info-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
}


.products-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.products-name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge+.products-name {
    margin-top: 5px;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-container {
    display: flex;
    gap: 10px;
}

.current-price {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
}

.current-price i {
    font-size: 13px;
    position: relative;
    bottom: 1px;
}

.current-price label {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    margin-right: 5px;
}




.price-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price {
    font-size: 16px;
    font-weight: 400;
    color: #6B7073;
    text-decoration: line-through;
}

.original-price i {
    font-size: 12px;
}

.discount-badge {
    background: rgba(0, 164, 36, 0.15);
    color: #00A424;
    padding: 5px 6px;
    border-radius: 13px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
}

.add-to-cart-btn {
    background: #ffffff;
    border: 1px solid #E5F0F7;
    border-radius: var(--sm-radius);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background: #f2f7fc;
    border: 1px solid #f2f7fc;
    color: #ffffff;
}

.price-section .mesco-add-to-cart-single,
.price-section .mesco-add-to-cart-variable,
.price-section .view-product-btn,
.price-section .add-to-cart-btn {
    position: absolute;
    right: 11px;
    top: 11px;
    background: #ffffff;
    border: 1px solid #E5F0F7;
    border-radius: var(--sm-radius);
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.price-section .mesco-add-to-cart-single svg,
.price-section .mesco-add-to-cart-variable svg,
.price-section .view-product-btn svg,
.price-section .add-to-cart-btn svg {
    width: 18px;
    height: 18px;
}

.price-section .mesco-add-to-cart-single.loading:after,
.price-section .mesco-add-to-cart-variable.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid #172B85;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.price-section .mesco-add-to-cart-single:hover,
.price-section .mesco-add-to-cart-variable:hover {
    background: #f2f7fc;
    border: 1px solid #f2f7fc;
    color: #ffffff;
}


.arrow_class .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-15px);
    width: 100%;
}

.arrow_class .owl-nav .owl-prev {
    position: absolute;
    right: calc(100% + 25px);
}

.arrow_class .owl-nav .owl-next {
    position: absolute;
    left: calc(100% + 25px);
}

.owl-nav .owl-next.disabled,
.owl-nav .owl-prev.disabled {
    display: none;
}

.carousel_arrow {
    background-color: #FEFEFE;
    border: 1px solid #E6E7E8;
    border-radius: var(--sm-radius);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel_arrow.arrow_left {
    background-image: url(../images/carousel_arrow_left.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.35s all ease;
}

.carousel_arrow.arrow_right {
    background-image: url(../images/carousel_arrow_right.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.35s all ease;
}

.carousel_arrow.arrow_left:hover {
    background-image: url(../images/carousel_arrow_left_hover.svg);
    background-color: #f2f7fc;
    border: 1px solid #3498db;
}

.carousel_arrow.arrow_right:hover {
    background-image: url(../images/carousel_arrow_right_hover.svg);
    background-color: #f2f7fc;
    border: 1px solid #3498db;
}

.bg-light .carousel_arrow {
    background-color: #ffffff;
}

.section_badge span {
    background: #3a4045;
    border-radius: 50px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 33px;
    margin-bottom: 20px;
}

.offer_colums {
    display: flex;
    justify-content: space-between;
    margin: -7.5px;
}

.offer_colums .col_left {
    width: calc(33.33% - 15px);
    margin: 7.5px;
    background: #fef0b4;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 535px;
}

.offer_colums .col_left::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -25%;
    width: 340px;
    height: 340px;
    background: radial-gradient(closest-side,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    z-index: 0;
}

.offer_colums .col_left::before {
    content: '';
    position: absolute;
    top: -4%;
    right: -4%;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50%;
    z-index: 0;
}

.offer_colums .col_right {
    width: calc(66.66% - 15px);
    margin: 7.5px;
    background: radial-gradient(closest-side,
            rgba(255, 236, 249, 1) 0%,
            rgba(255, 225, 242, 1) 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    padding-left: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-height: 535px;
}

.offer_colums .col_right::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 417px;
    height: 417px;
    background: linear-gradient(225deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.3) 100%);

    border-radius: 50%;
    z-index: 0;
}

.offer_colums .col_right::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -15%;
    width: 523px;
    height: 523px;
    background: radial-gradient(closest-side,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    z-index: 0;
}

.col_left .offer_content {
    max-width: 310px;
    position: relative;
    z-index: 2;
}

.col_right .offer_content {
    max-width: 436px;
    position: relative;
    z-index: 1;
}

.offer_colums .deal-tag {
    display: inline-block;
    background: #ffffff;
    color: #ad5a25;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 24px;
    border-radius: 40px;
    margin-bottom: 30px;
}

.offer_colums .deal-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #343C41;
}

.offer_colums .deal-title span {
    font-weight: bold;
    color: #0C0C0C;
}

.offer_colums .deal-description {
    color: #606060;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.offer_colums a {
    display: inline-flex;
    box-shadow: 6px 4px 20px 0px rgba(0, 0, 0, 0.06);
}

.col_left .offer_img {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 1;
}

.col_right .offer_img {
    position: absolute;
    bottom: 67px;
    right: 0;
    z-index: 1;
}

.category_card .card_img_holder {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;

}

.category_card .card_img_holder img {
    height: 100%;
    object-fit: cover;
}

.category_card .card_img_bottom {
    padding: 20px 20px 0;
}

.category_card .card_img_bottom h4 {
    color: var(--color-black);
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.cateogery_carousel .owl-nav {
    top: 125px;
    transform: translateY(-15px);
}

.brand_card {
    border: 1px solid #e6e7e8;
    padding: 10px;
    border-radius: 10px;
    height: 100px;
}

.brand_card img {
    height: 100%;
    object-fit: contain;
}

.about_col {
    display: flex;

}

.about_col .left_col {
    width: 30%;
    position: relative;
    padding: 30px;
}

.about_col .right_col {
    width: 30%;

}

.about_col .discount_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 0;
}

.about_col .discount_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_col .discount_details {
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 30px;
    max-width: 185px;

}

.about_col .discount_details .discount-tag {
    display: inline-block;
    background: #ffffff;
    color: #ad5a25;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 40px;
    margin-bottom: 15px;
}

.about_col .discount_details h2 {
    color: #343c41;
    font-size: 19px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.about_col .discount_details p {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about_col .discount_details a {
    display: inline-block;
}

.middle_col {
    width: 40%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.middle_col:after {
    content: '';
    position: absolute;
    width: 136px;
    height: 135px;
    right: 30px;
    top: 0;
    background-image: url(../images/arow_bg.svg);
}


.middle_col h2 {
    color: var(--color-black);
    font-size: 42px;
    font-weight: 600;
}

.middle_col p {
    color: #6e6e6e;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.middle_col a {
    display: inline-flex;
    font-weight: 600;
}

.middle_col .bottom_count {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
}

.middle_col .bottom_count .years {
    color: #cce0f0;
    font-size: 100px;
    line-height: 72px;
    font-weight: 600;
}

.middle_col .bottom_count .experience-text {
    color: #e5f0f7;
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-top: 15px;
}

.right_col .quality_card {
    padding: 25px 35px;
    background: radial-gradient(closest-side,
            rgba(247, 247, 247, 1) 0%,
            rgba(247, 247, 247, 1) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right_col .quality_card>div {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e7e8;
    margin-bottom: 15px;
}

.right_col .quality_card>div img {
    max-width: 143px;
}

.right_col .quality_card p {
    text-align: center;
    color: #6E6E6E;
    font-size: 18px;
}

.right_col .quality_card a {
    display: inline;
    box-shadow: 6px 4px 20px 0px rgba(0, 0, 0, 0.06);
}

.right_col .location_img {
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    overflow: hidden;
}

.right_col .location_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.footer {
    padding: 65px 0 0;
    background: #F9FBFD;

}

footer .footer_title {
    color: #091016;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer_top {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 55px;
    border-bottom: 1px solid #e6e7e8;
}

.footer_top .address {
    width: 20%;
}

.footer_top .address p {
    color: #6b7073;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.footer_top .news_letter {
    width: 49%;
    padding: 0 60px;
    flex-grow: 1;
}

.footer_top .news_letter form>div {
    display: flex;
    padding-right: 50px;
}

.footer_top .news_letter form input[type="email"] {
    font-size: 14px;
    width: 100%;
    height: 40px;
    padding: 8px 15px;
    border: 1px solid #e6e7e8;
    border-radius: var(--sm-radius);
    margin-right: 10px;
}

.footer_top .news_letter form input[type="email"]::placeholder {
    color: #6B7073;
    opacity: 0.22;
}

.footer_top .news_letter form input[type="email"]::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #6B7073;
    opacity: 0.22;
}

.footer_top .news_letter form .primary_btn {
    border-radius: 6px;
}

.newsletter-msg {
    margin-top: 5px;
    font-size: 14px;
    color: #6b7073;
}

.footer_top .hlp_center {
    width: 31%;
}

.footer_top .hlp_center ul {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_top .hlp_center ul li {
    display: flex;
    align-items: center;
}

.footer_top .hlp_right {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.footer_top .hlp_right a {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
}

.footer_top .hlp_right span {
    color: #6b7073;
    font-size: 14px;
    line-height: 22px;
}

.footer_quick_links {
    display: flex;
    padding-top: 58px;
    padding-bottom: 110px;
}

.footer_quick_links .quick_links {
    width: 85%;
    display: flex;
}

.footer_quick_links .quick_columns {
    width: 25%;
}

.footer_quick_links .quick_columns li a {
    color: #6b7073;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    transition: 0.35s all ease;
}

.footer_quick_links .quick_columns li a:hover {
    color: #3384C2;
}

.footer_quick_links .quick_columns li+li {
    margin-top: 10px;
}

.footer_quick_links .social_links ul {
    display: flex;
}

.footer_quick_links .social_links ul li+li {
    margin-left: 15px;
}

.footer_quick_links .social_links .go_to_top {
    margin-top: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 7px 10px;
    background-color: #ffffff;
    border-radius: var(--sm-radius);
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.go_to_top img {
    transition: 0.4s filter ease;
}

.footer_quick_links .social_links .go_to_top p {
    color: #6b7073;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    transition: 0.4s all ease;
}

.go_to_top:hover img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(87%) saturate(2076%) hue-rotate(189deg) brightness(99%) contrast(101%);
}

.footer_quick_links .social_links .go_to_top:hover p {
    color: #0066B3;
}

.footer_copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    padding: 40px 0 28px;
    border-top: 1px solid #e6e7e8;
}

.payment_support ul {
    display: flex;
}

.payment_support ul li+li {
    margin-left: 15px;
}

.footer_copyright p {
    color: #6b7073;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.footer_copyright p span {
    font-weight: 600;
}

/*----------------- sub banner--------------- */
/* .hm_banner{
    margin-top: -1px;
} */
.sub-banner {
    height: 548px;
    position: relative;
    /* margin-top: -1px; */
}

.sub-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.sub-banner-inside {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.sub-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sub-banner .swiper {
    height: 100%;
}

.sub-banner .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-banner .banner_content h1 {
    color: #ffffff;
    font-size: 55px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.small-banner {
    height: 312px;
}

.sub-banner .banner_content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}
.sub-banner .banner_content p:empty{
    display: none;
}

/* ------------------------about--------------- */
.about .about_content {
    width: 63%;
    padding-right: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about .about_content h2 {
    margin-bottom: 20px;
}

.about .about_content p {
    margin-bottom: 0;
}

.about .about_content p+p {
    margin-top: 25px;
}

.about .about_content strong {
    font-weight: 600;
}

.about .about_img {
    width: 37%;
    display: flex;
    align-items: center;
}

.about .about_img .img_holder {
    border-radius: 10px;
    overflow: hidden;
}

/* ----------------contact-------------- */
.contact-map {
    height: 560px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form {
    width: 68%;
    padding-right: 17%;
}

.contact .section_title+p {
    margin-bottom: 0;
    margin-top: 20px;
    color: #6E6E6E;
}

.contact_box {
    width: 32%;
}

.form-style {
    margin-top: 45px;
    text-align: left;
}

.form-style .column-3 {
    position: relative;
}

.form-style .column-3 .paswrd-toggle {
    right: 25px;
    top: 25px;
}

.paswrd-toggle {
    position: absolute;
    cursor: pointer;
}

.paswrd-toggle img {
    display: block;
}

.paswrd-toggle .eye-hidden {
    display: none;
}

.paswrd-toggle.active .eye-hidden {
    display: block;
}

.paswrd-toggle.active .eye-show {
    display: none;
}

.form-style .column-3+.column-3 {
    margin-top: 10px;
}

.form-style .column-3 .form-field,
.form-style .column-3 .text-area {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    padding: 20px 30px;
    color: #6e6e6e;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    box-shadow: none !important;
}

.form-style .wpcf7-form-control-wrap {
    width: 100%;
}

.form-style .column-3 .text-area {
    height: 175px;
}

.form-style .column-3 .form-field {
    height: 68px;
}

.form-style .column-3 .black_btn {
    width: 330px;
    margin: 35px auto 0;
}

.form-style .column-3 .show-password-input {
    display: none;
}

.form-style .column-3 .switch-link,
.auth-switch-form {
    text-align: start;
    display: block;
    transition: 0.35s all ease;
}

.form-style .auth-switch-form .switch-link {
    display: inline;
}

.form-style .column-3 .switch-link:hover {
    color: #3384C2;
}

.register-now a {
    color: #425466;
    font-weight: 600;
    transition: 0.35s all ease;
}

.register-now a:hover {
    color: #3384C2;
}

.form-style .submit.secondary_btn {
    border-radius: var(--sm-radius) !important;
    margin-top: 20px;
}

.terms_checkbox {
    text-align: start;
}

label.auth-checkbox-label {
    white-space: nowrap;
}

.auth-checkbox-label input[type="checkbox"] {
    opacity: 0;
}

.auth-checkbox-label span {
    position: relative;
    color: #6E6E6E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-left: 9px;
    white-space: initial;
}

.auth-checkbox-label span a {
    color: #425466;
    transition: 0.35s all ease;
}

.auth-checkbox-label span a:hover {
    color: #3384C2;
}

.auth-checkbox-label span:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    top: 5px;
    left: -25px;
    width: 15px;
    height: 15px;
    pointer-events: none;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #d9d9d9;
}

.auth-checkbox-label input[type="checkbox"]:checked+.terms-text::after {
    background: url('../images/tick.svg') #0065B3 no-repeat center;
    color: #ffffff;
}

.contact_box-inner {
    height: calc(100% - 60px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-height: 529px;
}

.contact_box-inner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.contact_box-inner {
    padding: 35px 20px;
}

.contact_box-inner>div {
    position: relative;
    z-index: 1;
}

.contact_box-inner h6 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.contact_box-inner li {
    display: flex;
    align-items: flex-start;
}

.contact_box-inner li p {
    color: #ffffff;
    font-weight: 400;
    display: block;
    margin-bottom: 0;
}

.contact_box-inner li img {
    margin-right: 13px;
}

.contact_box-inner li a {
    color: #ffffff;
}

.contact_box-inner li+li {
    margin-top: 5px;
}


/* ---------------category--------------- */
.three-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.category-card {
    display: block;
    position: relative;
    height: 295px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #E6E7E8;
}

.category-image {
    height: 100%; padding: 10px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 7px;
    width: calc(100% - 14px);
    padding: 7px 5px 7px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(17px);
}

.cate-arrow-btn {
    background: #FEFEFE;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.category-details p {
    color: #091016;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* .category-card:hover .category-image img {
    transform: scale(1.05);
} */

.category-top {
    display: flex;
    justify-content: flex-end;
}

.category-top .nice-select.custom-select {
    width: 250px;

}

.category-top .nice-select.custom-select .current {
    color: #6e6e6e;
}

/* -------------login / registration page---------- */
.autentication-template {
    display: flex;
}

.auth-left {
    width: 50%;
}

.auth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-page .auth-left {
    height: calc(100vh - 122px);
    min-height: 600px;
}

.hisense-register-page .auth-left {
    height: calc(100vh - 122px);
    min-height: 880px;
}

.auth-right-inside {
    width: calc(var(--container-width)/2);
    margin-right: auto;
    padding-right: 15px;
    padding-left: 64px;
    height: 100%;
    display: flex;
    align-items: center;
}

.auth-right-inside .woocommerce,
.auth-right-inside .register-form-container {
    width: 100%;
}

.auth-right {
    width: 50%;
}

.checkout-container {
    max-width: 670px;
}

.checkout-container .auth_title+p {
    margin: 30px 0 0;
    color: #6E6E6E;
}

.auth_title h2 {
    color: #091016;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 0;
}

.switch-link,
.auth-switch-form {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
}

.auth-right .auth-right-inside .register-now {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
    margin-top: 30px;
}

a.switch-link {
    color: #425466;
}

.related-carousel .owl-stage,
.product_carousel .owl-stage {
    display: flex;
}

.related-carousel .owl-item,
.product_carousel .owl-item {
    display: flex;
    height: auto !important;
}

.related-carouse .item,
.product_carousel .owl-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --------brands-------- */

.page-filter-right {
    display: flex;
    justify-content: space-between;
}

.page-filter-right input {
    color: #3c3c3c;
    padding: 10px 20px;
    height: 44px;
    border: 1px solid #e6e7e8;
    border-radius: 6px;
    width: 250px;
    font-size: 16px;
}

.alphabet-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
}

.brand-alphabets {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 5px;
}

.brand-alphabets,
.brand-alphabets a {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    transition: 0.4s all ease;
}

.brand-alphabets a {
    color: #091016;
}

.brand-alphabets a:hover {
    color: #0066b3;
}

.listed-brands {
    margin-top: 50px;
}

.listed-brands-item h5 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.listed-brands-item .brand-card {
    padding: 30px 28px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e6e7e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 170px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
    transition: 0.4s box-shadow ease;
}

.brands-grid li:hover .brand-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.listed-brands-item+.listed-brands-item {
    margin-top: 35px;
}

.brand-card img {
    max-height: 98%;
    max-width: 100%;
    width: auto;
    height: auto;

}

.listed-brands-item h6 {
    color: #000000;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
}

.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-listing .load-more {
    margin-top: 70px;
}

.brand-product-top-desc .brand-img-logo {
    max-width: 143px;
    width: auto;
    height: auto;
    border: 1px solid #EDEDED;
}

.top-desc-para {
    padding-top: 20px;
}

.top-desc-para p {
    color: #6E6E6E;
}

.brand-product_list_four {
    margin-top: 40px;
}

.brand-product_list_four .woocommerce-result-count {
    display: none;
}

.brand-product_list_four .woocommerce-ordering {
    justify-content: flex-end;
}

.brand-product_list_four .mesco-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.brand-product_list_four .product-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.brand-product_list_four .wishlist-btn,
.brand-product_list_four .add_to_cart_button,
.brand-product_list_four .mesco-add-to-cart-single,
.brand-product_list_four .mesco-add-to-cart-variable {
    width: 50px;
    height: 50px;
}

.brand-product_list_four .wishlist-btn .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before {
    font-size: 27px !important;
}

.brand-product_list_four .add_to_cart_button svg,
.brand-product_list_four .mesco-add-to-cart-single svg,
.brand-product_list_four .mesco-add-to-cart-variable svg {
    width: unset;
    height: unset;
}

.brand-product_list_four .bapf_no_products>p {
    display: flex;
    justify-content: start;
    color: #6E6E6E;
}

.brand-product_list_four .woocommerce nav.woocommerce-pagination ul.page-numbers {
    margin: 54px 0 0;
}

/*-------- faq------------- */
.faq {
    max-width: 938px;
    margin: auto;
}

.faq-item {
    border: 1px solid #ebedfb;
    border-radius: 16px;
    margin-bottom: 16px;
    padding-bottom: 18px;
    overflow: hidden;
    box-shadow: 0px 1px 8px 0px rgba(25, 33, 61, 0.06)
}

.faq-question {
    background: #ffffff;
    padding: 28px 30px 10px;
    color: #091016;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    display: none;
    padding: 0 30px 10px 30px;
    background: #fff;
}

.faq-item .faq-answer p {
    color: #6e6e6e;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #e6e7e8;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon:hover {
    background: #0065B3;
}

.faq-icon img {
    transition: filter 0.3s ease;
}

.faq-icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(9%) hue-rotate(151deg) brightness(102%) contrast(104%);
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

/* --------careers---------- */
.carrers .section_title+p {
    margin-top: 20px;
    color: #6e6e6e;
    max-width: 675px;
    margin-bottom: 0;
}

.carrers-filter {
    margin-top: 30px;
}

.carrers-filter form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.career-search {
    width: calc(54% - 7px);
    position: relative;
}

.career-search:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 100%;
    top: 0;
    right: 27px;
    background: url(../../assets/images/career-search-icon.svg) no-repeat center;
    background-size: contain;
}

.career-search input {
    font-size: 16px;
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    padding: 14px 60px 14px 32px;
    height: 59px;
    color: #6e6e6e;
}

.careers-select-wrap {
    width: calc(46% - 7px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.careers-select-wrap .careers-select {
    font-size: 16px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid #d0d0d0;
    height: 59px;
    line-height: 59px;
    color: #6e6e6e;
}

.nice-select .option {
    text-align: left !important;
}

.careers-select-wrap .nice-select.careers-select:after {
    background: url(../../assets/images/career-select-arrow.svg) no-repeat center;
    right: 20px;
}

.careers-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.careers-card {
    display: flex;
    height: 100%;
}

.career-icon-holder {
    width: 33%;
    padding: 20px;
    background: #F2F7FC;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.carrer-info {
    flex: 1;
    padding: 28px 60px 45px 37px;
    border: 1px solid rgba(82, 89, 97, 0.2);
    border-left: 0;
}

.carrer-info h5 {
    color: #091016;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 14px;
}

.carrer-info span {
    background: #0065b3;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    padding: 6px 19px;
}

.carrer-info p {
    color: #6e6e6e;

}

/* -----------------career deatails----------- */
.career-details-left {
    width: 61%;
    position: relative;
}

.career-details-left-inside {
    max-width: 590px;
}

.career-details-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.15);
}

.career-details-right {
    width: 39%;
    display: flex;
    justify-content: flex-end;
    padding-left: 40px;
}

.career-details-left .posted {
    color: #091016;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.career-post-title {
    color: #091016;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

.title-under-txt {
    display: flex;
}

.title-under-txt p {
    color: #091016;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding: 0 25px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.title-under-txt p:first-child {
    padding-left: 0;
}

.title-under-txt p:last-child {
    padding-right: 0;
}

.title-under-txt p+p {
    border-left: 2px solid #000000;
}

.career-content h4 {
    color: #091016;
    line-height: 1.2;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
}

.career-content li {
    color: #6e6e6e;
    line-height: 1.6;
    padding-left: 38px;
    position: relative;
}

.career-content li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 18px;
    height: 17px;
    background: url(../../assets/images/career-list-icon.svg) no-repeat center;
    background-size: contain;
}

.career-content li+li {
    margin-top: 25px;
    color: #6e6e6e;
}

.career-content ul+h4 {
    margin-top: 70px;
}

.career-form-sec {
    background: #f2f7fc;
}

.career-form-sec h2 {
    color: #091016;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 50px;
}

.career-form {
    max-width: 1052px;
    margin: 0 auto 0;
}

.career-form-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 25px 20px;
}

.career-form-list>li {
    width: calc(50% - 10px);
    flex-grow: 1;
}

.career-form-list .full-width {
    width: 100%;
}

.career-form-list>li input {
    font-size: 16px;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 14px 30px;
    color: #6E6E6E;
    height: 60px;
    border-radius: 6px;
    background: transparent;
    transition: 0.4s all ease;
}

.career-form-list>li input:hover {
    border: 1px solid #B9A877;
}

.career-form-list>li input::placeholder {
    color: #6E6E6E;
    transition: 0.4s all ease;
}

/* .career-form-list>li input:hover::placeholder {
    color: #CBCED2;
} */

.upload-zone {
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 24px;
    text-align: center;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.upload-zone.is-dragover {
    border-color: #60a5fa;
    background-color: #ecf5ff;
}

.upload-instructions {
    color: #6e6e6e;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 25px;
}

.browse-btn {
    border: 0;
    display: inline-block;
    background: rgba(0, 101, 179, 0.13);
    color: #091016;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 6px;
    height: 44px;
    cursor: pointer;
    transition: transform .06s ease, background-color .15s ease;
}

.browse-btn:hover {
    background: #cfe3fb;
}

.file-input {
    display: none;
}

.files-list {
    margin-top: 16px;
    display: none;
}

.files-list ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.files-list li {
    padding: 6px 10px;
    background: #fff;
    border-radius: 6px;
    margin-top: 8px;
    text-align: left;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.file-remove {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    width: 24px;
    height: 24px;
    font-size: 20px;
    line-height: 19px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.file-remove:hover {
    background: #cfe3fb;
    color: #374151;
}

.career-submit {
    margin-top: 25px;
}

.career-submit .black_btn {
    min-width: 130px;
}

/* -------------blog----------- */
.blog-title-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.blog-select-wrap {
    min-width: 270px;
}

.blog-select-wrap .blog-select {
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid #d0d0d0;
    height: 64px;
    line-height: 64px;
    color: #6e6e6e;
    padding: 0 30px;
}

.blog-select-wrap .nice-select.blog-select:after {
    background: url(../../assets/images/career-select-arrow.svg) no-repeat center;
    right: 40px;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
    margin-top: 37px;
}

.blog-card {
    height: 100%;
    width: 100%;
}

.blog-img-holder {
    height: 463px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s transform ease;
}

.blog-card-info {
    padding-top: 15px;
}

.blog-img-holder:hover img {
    transform: scale(1.05);
}

.blog-card-info span {
    color: #6e6e6e;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

.blog-card-info h6 {
    color: #091016;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0;
}

.blogs .blog-page-pagination nav.woocommerce-pagination ul.page-numbers {
    margin-top: 85px;
}

/* -------------blog details----------- */

.blog-title {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog-title h2 {
    color: #091016;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

.blog-share-social {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 270px;
}

.blog-share-social span {
    color: #6e6e6e;
}

.blog-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-contents p {
    color: #6e6e6e;
}

.blog-contents p+p {
    margin-top: 30px;
}

.blog-contents img {
    width: 100%;
    height: auto;
}

.blog-contents img+p {
    margin-top: 60px;
}

.blog-contents p+img {
    margin-top: 60px;
}

.blog-posted-info {
    display: flex;
    align-items: center;
    color: #6e6e6e;
    margin-top: 60px;

}

.blog-posted-info>div {
    padding: 0 28px;
}

.blog-posted-info>div:first-child {
    padding-left: 0;
}

.blog-posted-info>div:last-child {
    padding-right: 0;
}

.blog-views,
.blog-likes {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.blog-views:after,
.blog-likes:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0065b3;
    transform: translate(-50%, -50%);
}

.default-template .wp-block-heading,
.default-template h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.default-template h4,
.default-template h4 strong {
    font-size: 24px;
    font-weight: 700;
}

.default-template p+h4 {
    margin-top: 40px;
}

.default-template .p3 strong {
    font-size: 18px;
    font-weight: 700;
}

.default-template .p3 {
    margin-bottom: 10px;
}

.default-template .p3+p {
    margin-bottom: 25px;
}

.default-template p b strong {
    font-weight: 700;
}



/* -----------------404 page -------------- */
/* .error404 .header,
.search-results .header,
.search-no-results .header {
  background: #E1E0E0;
} */

.error-404,
.search-page-inner,
.search-noresult-inner {
  text-align: left;
}

.error-404 h1,
.search-page h1,
.search-noresult h1 {
  font-size: 30px;
}

.error-404 h1 {
  margin-bottom: 15px;
}

.error-404 h3 {
  margin: 40px 0 25px 0;
}

.error-404 h4 {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 15px;
}

.error-404 ul {
  padding-left: 30px;
  list-style: disc;
}

.error-404 ul li {
  font-size: 15px;
  margin-bottom: 0;
}

.error-404 ul li+li {
  margin-top: 10px;
}

.error-404 .site-button {
  margin-top: 30px;
}
.back-button a{
    display: inline-flex;
}