@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #B40404;
    font-size: 10px;
    --e-global-color-text: #B40404 !important;

}


body {
    font-size: 1.6rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Reddit Sans", sans-serif;
}



.cart-icon {
    border: 1px solid #B40404;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 50%;
    padding-top: 2px;
    color: #B40404;
}

.btn-login {
    border: 1px solid #000;
    border-radius: 2rem;
    padding: 6px 12px;
    transition: .3s;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-link {
    color: #000;
    text-transform: capitalize;
}

.search-icon {
    font-size: 1.6rem;
}

/*  */
.safe-slider {
    background: url(../img/white-banner.png) no-repeat center center/cover;
    min-height: calc(100dvh - 70px);
    place-content: center;
}

.safe-slider .owl-nav {
    display: flex;
    justify-content: space-between;
    top: 50%;
    position: absolute;
    width: 100%;
    transform: translate(0px, -50%);
    padding: 0 1rem;
}

.safe-section {
    padding: 4rem 0;
}

.safe-content h2 {
    font-size: clamp(24px, 5vw, 6rem);
    font-weight: 700;
    color: var(--primary-color);
}

.safe-content h3 {
    font-size: clamp(20px, 4.5vw, 6rem);
    font-weight: normal;
    margin: 15px 0;
    color: #000000;
}


.safe-content p {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #555;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.client-info img {
    width: auto !important;
    height: 40px;
}

.home-img-card {
    position: relative;
}

.home-img-card::before {
    content: "";
    width: 400px;
    height: 400px;
    background-color: #D9D9D9;
    position: absolute;
    aspect-ratio: 1 / 1;
    left: 100px;
    right: 0;
    border-radius: 50%;
    z-index: -1;
    top: 40px;
}

.shop-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 1.4rem;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.shop-btn:hover {
    background-color: #900;
}

.safe-image img {
    max-width: 100%;
    height: auto;
}

.about-section {
    background-color: #fff;
    padding: 2rem 0;
}

.section-subtitle {
    display: block;
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2.8rem, 2.5vw, 3.5rem);
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.about-text {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    color: #444;
    line-height: 1.7;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1.6rem;
    color: #222;
    margin: 0;

}

.stat-text span {
    display: block;
    font-weight: 500;
    color: #555;
}

.image-wrapper {
    border-radius: 4rem;
    overflow: hidden;
}

.design-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    place-content: center;
    height: 100%;
    padding-left: max(var(--bs-gutter-x, 1rem), calc((100vw - min(var(--bs-container-xl, 1330px), 100vw)) / 2));
}

.design-flex div {
    flex: 1;
    padding: 1rem;
}

.design-flex div:nth-child(2) {
    border: 1px solid white;
    border-top: none;
    border-bottom: none;
}

.design-flex h3 {
    font-size: 3rem;
    color: #FF3B43;
}

.design-section img {
    width: 100%;
}

.title-wrapper h3 {
    font-size: 4.5rem;
    color: var(--primary-color);
    position: relative;
}

.hot-product-sec {
    padding: 3rem 0;
}

.tabs-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-image img {
    height: 220px;
    width: 220px;
    object-fit: contain;

}

.product-image {
    border: 1px solid #a59393cc;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-card {
    border: none !important;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.product-image::before,
.add-cart-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.product-card:hover .product-image::before,
.product-card:hover .add-cart-btn {
    opacity: 1;
    visibility: visible;
}


.product-image::before {
    content: "";
    background: #000000cf;
    inset: 0;
    position: absolute;
    z-index: 11;
}

.add-cart-btn {
    background: var(--primary-color);
    color: white;
    width: max-content;
    margin: 0 auto;
    padding: 6px 11px;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 12;
}


.card-title {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
}

.nav-tabs {
    border: none !important;
}

.nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: inherit;
    padding: 3px 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:focus {
    box-shadow: none !important;
}

#productTab {
    border: none;
    gap: 40px;
}

.nav-tabs .nav-link:hover {
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
}

#productTab .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--primary-color) !important;
    background: transparent;
    color: var(--primary-color);
}

.btns-dark {
    background: #000;
    color: white;
    padding: 7px 12px;
    border-radius: 2.6rem;
    transition: .3s;
}

.btns-dark:hover {
    background: var(--primary-color);
}

.testimonial-section {
    background: #000;
    color: #fff;
    padding: 2rem 0;
}


.review-summary-card,
.review-card {
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 240px;
}

.review-summary-card .rating {
    font-size: 2.5rem;
    font-weight: bold;
}

.review-summary-card .see-all {
    display: inline-block;
    margin-top: 10px;
    color: #f44336;
    text-decoration: none;
    font-weight: 500;
}

.review-summary-card .see-all:hover {
    text-decoration: underline;
}

.review-card p {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.review-card .author {
    font-weight: bold;
    margin: 0;
}

.review-card .author span {
    font-weight: normal;
    font-size: 1.2rem;
    color: #555;
}

.testimonial-section .owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #f44336 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.assured-section {
    position: relative;
}

.assured-img {
    position: relative;
}

.assured-section .assured-img::before {
    content: "";
    background: var(--primary-color);
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    z-index: -1;
}

.assured-section h4 {
    font-size: 3.5rem;
    margin: 1rem 0;
}

.assured-section ul {
    margin-top: 2rem;
}

.assured-section ul li {
    margin: 1rem 0;
}

/* Responsive tweaks */

/* footer  */
.site-footer {
    background: #000;
    color: #fff;
    font-size: 1.4rem;
    padding: 3rem 0;
}

.site-footer li {
    margin: 1rem 0;
}

.footer-logo {
    max-width: 200px;
}

.site-footer h6 {
    margin-bottom: 15px;
    font-size: 2rem;
    text-transform: uppercase;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}

.site-footer a:hover {
    text-decoration: underline;
}

.support-box {
    border: 1px solid #444;
    border-radius: 12px;
    max-width: 400px;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    place-content: center;
}

.support-link {
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

.lang-select {
    background: #000;
    color: #fff;
    border: 1px solid #444;
    font-size: 1.2rem;
    padding-right: 0;
    min-width: 60px;
    padding: 6px;
}

.lang-select:focus {
    box-shadow: none;
    border-color: #666;
}

.footer-social i {
    font-size: 1.6rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-social i:hover {
    color: var(--primary-color, #f44336);
}

.social-head {
    display: flex;
    justify-content: space-between;
    max-width: 630px;
    margin-bottom: 2rem;
}

/* footer end */

/* Woocomerce  card css start */

.ti-name {
    color: white !important;
}

span.nowrap strong {
    color: white !important;
}

.products.columns-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    text-align: center;
}

.woocommerce ul.products::before {
    display: none !important;
}

.woocommerce ul.products[class*=columns-] li.product,
.woocommerce-page ul.products[class*=columns-] li.product {
    margin: 0;
}

.products.columns-4 li.product {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1rem !important;
}

a.dropdown-item {
    font-size: 1.6rem;
}

ul.products li.product .button {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 27px;
    transition: .3s;
}

ul.products li.product .button:hover {
    background: #000;
}

header .btn-check:checked+.btn,
header .btn.active,
header .btn.show,
header .btn:first-child:active,
header :not(.btn-check)+.btn:active {
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

h5#searchModalLabel {
    font-size: 2.5rem;
}

.form-control {
    font-size: 1.6rem;
    padding: 14px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary.px-4.py-2 {
    font-size: 1.6rem;
    border-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
}

form.woocommerce-ordering select {
    padding: 9px;
    border-radius: 8px;
}

h2.woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding: 0 !important;
}

span.woocommerce-Price-amount.amount {
    font-size: 1.4rem;
    margin: 12px 0px !important;
    display: inline-block;
}

span.page-numbers.current {
    background: #b00013 !important;
    color: white !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

h1.display-4 {
    font-weight: 500;
}

.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1320px !important;
    width: 100%;
}







/* ---------- Menu Base ---------- */
#menu-header-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

header i {
    font-size: 12px;
}

header li {
    position: relative;
}

#menu-header-menu>li>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: color 0.2s ease;
    cursor: pointer;
}

#menu-header-menu>li.current-menu-item>a {
    color: var(--primary-color);
}

/* ========== SUBMENU BASE ========== */
#menu-header-menu .sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    text-align: left;
}

/* Submenu links */
#menu-header-menu .sub-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

#menu-header-menu .sub-menu li a:hover {
    background-color: #f8f9fa;
}

/* Open submenu (desktop + JS) */
#menu-header-menu li.open>.sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ========== CHEVRON ICON (DESKTOP) ========== */
#menu-header-menu .menu-item-has-children>a .submenu-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#menu-header-menu .menu-item-has-children.open>a .submenu-toggle-btn {
    transform: rotate(180deg);
}

/* ---------- Icons: Search / Cart ---------- */
.search-icon,
.cart-icon i {
    cursor: pointer;
    color: #212529;
    transition: color .2s;
}

.search-icon:hover,
.cart-icon i:hover {
    color: var(--bs-primary);
}


.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.woocommerce ul.products li.product .button {
    margin-bottom: 1em;
}


.elementor-widget-heading {
    background: var(--primary-color) !important;
}

.elementor-widget-heading .elementor-heading-title {
    color: white !important;
}

.elementor-17837 .elementor-element.elementor-element-006e58a .elementor-icon-list-icon svg {
    fill: var(--primary-color) !important;
}

.wpb-get-a-quote-button-btn.wpb-get-a-quote-button-btn-large {
    background: var(--primary-color);
    text-transform: capitalize;
}

a.woocommerce-privacy-policy-link {
    text-decoration: underline;
    color: var(--primary-color);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    height: 500px;
    min-height: 500px;
}

.wpcf7-not-valid-tip {
    margin: 1rem 0;
}

h4.fw-bold.mb-4.text-white {
    padding-top: 26px;
    margin-left: 11px;
}

ul.list-unstyled.text-white-50 {
    margin-left: 20px;
}

.social-links.mt-4.d-flex.gap-3 {
    margin-left: 20px;
}

.icon-box i {
    font-size: 20px !important;
}

.footer-social a {
    margin-left: 10px;
}

.social-links .social-icon i {
    font-size: 18px;
}

button.swal2-close {
    position: absolute;
    top: 15px;
    right: 29px;
}

.swal2-container.swal2-center>.swal2-popup {
    padding-top: 60px !important;
}

a.btn.btn-primary {
    font-size: 1.6rem;
}

a.added_to_cart.wc-forward {
    /* color: white; */
    margin: 0 auto !important;
    margin-left: 10px;
    background: #b00013;
    padding: 6px 14px;
    display: block;
    width: max-content;
    color: white;
    border-radius: 16px;
}

.wpb-gqf-form-style-true input[type="text"] {
    color: #000 !important;
}

ul.woocommerce-error a {
    text-decoration: underline;
    color: #af0012;
}

.page-id-9 h2 {
    text-transform: capitalize;
}

.h6,
h6 {
    font-size: 1.6rem;
}

header .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: 0;
    width: 220px !important;
}

/* ========== DESKTOP HOVER BEHAVIOR ========== */
@media (min-width: 992px) {
    #menu-header-menu .menu-item-has-children:hover>.sub-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}



@media(max-width:1200px) {
    .safe-slider {
        min-height: calc(50dvh - 70px);
    }

    .home-img-card::before {
        left: 0;
        right: 0;
        top: 0;
    }

    header .gap-lg-4 {
        gap: 0 !important;
    }
}



/* ========== MOBILE / TABLET BEHAVIOR ========== */
@media (max-width: 991.98px) {
    #menu-header-menu .menu-item-has-children {
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    #menu-header-menu .menu-item-has-children>a {
        flex: 1;
        align-items: center;
        justify-content: space-between;
    }

    /* Chevron stays to the right */
    .submenu-toggle-btn {
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        font-size: 0.9rem;
        cursor: pointer;
    }

    /* Submenu collapse animation */
    #menu-header-menu .sub-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    #menu-header-menu li.open>.sub-menu {
        opacity: 1;
        max-height: 1000px;
    }

    .design-flex {
        align-items: flex-start;
        flex-direction: column;
        padding: 3rem 0;
        justify-content: center;
        text-align: center;
    }

    .design-flex div:nth-child(2) {
        border: none;
        border-top: none;
    }

    .home-img-card::before {
        content: "";
        width: 100%;
        height: auto;
    }

    .support-box {
        max-width: 100%;
    }

    .design-flex div {
        width: 100%;
    }

    .tabs-sec {
        margin: 2rem 0;
    }

    .product-image img {
        height: 220px;
        width: 100%;
    }

    .title-wrapper h3 {
        font-size: 3.5rem;
        margin: 2rem 0;
    }

    .assured-section {
        padding-bottom: 2rem;
    }

    header li {
        margin: 1rem 0;
        padding: 0;
    }

    .search-icon {
        display: none;
    }

    .products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-head {
        margin: 3rem 0;
    }

}

@media (max-width:767px) {
    .products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .tabs-sec {
        flex-direction: column;
        gap: 30px;
    }

    p.stat-text br {
        display: none;
    }

    .assured-section h4 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 2.6rem;
    }

    .safe-slider .owl-nav {
        display: none;
    }

    .product-card {
        padding: 10px 10px;
    }

    section {
        overflow-x: hidden;
    }
}

@media (max-width:480px) {
    .products.columns-4 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}