/* Colors */
:root {
  --black-color: #1A1a1a;
  --white-color: #fff;
  --yellow-orange-color: #FDB913;
  --gray-color: #9CA3AF;
  --red-color: #DC2626;
}
a:focus,
a:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
a:active, 
button:active, 
button:active, 
button:active {
    outline: 0 !important;
    box-shadow: none !important;
}
a:visited{
    color: var(--black-color);
}
button:visited{
    background-color: var(--yellow-orange-color);
}
body{
    background-color: #F9FAFB;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style-type: none;
}
.container{
    max-width: 1250px;
    margin: auto;
}
.custom-category-grid{
    flex-wrap: wrap;
    gap: 25px;
}
.category-card{
    display: block;
    max-width: 23.5%;
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.category-card:after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    z-index: 2;
}
.category-image img{
    display: block;
    min-height: 256px;
    object-fit: cover;
}
.category-content{
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
}
.category-content h3{
    font-size: 24px;
    line-height: 32px;
    color: var( --white-color );
}
.category-content span{
    font-size: 14px;
    line-height: 20px;
    color: var( --white-color );
}
.custom-product-grid{
    flex-wrap: wrap;
    gap: 25px;
    align-items: start;
}
.product-card{
    background-color: var( --white-color );
    border-radius: 15px;
    overflow: hidden;
    max-width: 23%;
    width: 100%;
    position: relative;
}
.product-image{
    display: block;
    padding: 10px;
}
.product-image img{
    height: 200px !important;
    object-fit: contain;
    margin-bottom: 0 !important;
}
.product-content{
    padding: 15px;
    position: relative;
    background-color: var(--white-color);
}
h3.product-title a{
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var( --black-color );
    display: block;
    height: 56px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    margin-bottom: 15px;
}
.product-card:hover h3.product-title a{
    max-height: 200px;
}
.product-description{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    max-height: 40px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    display: none;
}
.product-card .star-rating{
    color: var(--yellow-orange-color);
    padding-bottom: 10px;
}
.savings-text {
    display: block;
    background: #16A34A;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    direction: rtl;
}
.cardBtngrop .variation-row{
    gap: 10px;
}
.cardBtngrop .quick-add-btn {
    display: inline-block;
    text-align: center;
    background: var(--yellow-orange-color);
    color: var(--black-color);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 700 !important;
    position: relative;
    width: 100%;
}
.cardBtngrop .quick-add-btn.active{
    color: var(--yellow-orange-color);
    background: var(--black-color);
}
.cardBtngrop .quick-add-btn.full-width {
    display: block;
    width: 100%;
    font-size: 15px;
}
.cardBtngrop{
    position: absolute;
    bottom: 67%;
    left: 15px;
    right: 15px;
    z-index: -1;
    transition: all ease-in-out 0.5s;
}
.product-card:hover .cardBtngrop{
    bottom: 100%;
    z-index: 5;
}
.product-bottom .cart-btn{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var( --yellow-orange-color );
    border-radius: 10px;
    position: relative;
}
.product-bottom .cart-btn:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 16px;
    background: url(../images/cart1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.price-area{
    gap: 10px;
}
.price-area .sale-price{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var( --black-color );
    color: var(--yellow-orange-color);
}
.price-area .regular-price{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var( --gray-color );
    text-decoration: line-through;
}
.sale-badge{
    background-color: var( --red-color );
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: var( --white-color );
    border-radius: 25px;
    position: absolute;
    top: 15px;
    left: 15px;
}
.hoverTextView{
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    cursor: pointer;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cardBtngrop .quick-add-btn:hover .hoverTextView{
    opacity: 1;
    z-index: 2;
}
.cardBtngrop .quick-add-btn:hover .regularTextView{
    opacity: 0;
}
.mbtnplus{
    display: none;
}

@media(max-width: 767px){
    .hoverTextView{
        top: 0;
        bottom: 0;
        margin: auto;
        height: 40px;
        line-height: 40px;
    }
    .product-card .cardBtngrop{
        overflow: hidden;
    }
    .cardBtngrop .variation-row{
        flex-wrap: wrap;
        max-height: 40px;
        transition: all ease-in-out 0.5s;
    }
    .mbtnplus{
        position: absolute;
        top: 15px;
        left: 15px;
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: var(--yellow-orange-color);
        color: var(--black-color);
        font-size: 16px;
        cursor: pointer;
    }    
    .cardBtngrop .variation-row.btnac{
        max-height: 200px;
    }
    .product-card h3.product-title a {
        max-height: unset;
        height: 40px;
        overflow: hidden;
    }
    .product-description{
        display: none;
    }
}

/* WooCommerce */
.shop-top .woocommerce-breadcrumb{
    margin-bottom: 0;
    padding: 15px 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var( --black-color );
}
.shop-top .woocommerce-breadcrumb a{
    text-decoration: none;
    color: var( --gray-color );
}
.shop-top .woocommerce-breadcrumb a:hover{
    color: var( --yellow-orange-color );
}
.shop-banner{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.banner-overlay{
    padding: 65px 20px;
    background: linear-gradient(270deg, #1118274D 0%, #1F29374D 100%);
    min-height: 265px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner-overlay h1{
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: var(--white-color);
    padding-bottom: 15px;
}
.banner-overlay p{
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    color: var(--white-color);
    padding-bottom: 25px;
}
.banner-overlay ul{
    gap: 25px;
    justify-content: center;
}
.banner-overlay li{
    list-style-type: none;
    color: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.banner-overlay li img{
    height: 14px;
    object-fit: contain;
}
.shop-wrapper{
    padding: 50px 0;
    gap: 30px;
    align-items: start;
    flex-direction: column;
}
.shop-sidebar{
    max-width: 30%;
    max-width: 100%;
    width: 100%;
    background: var(--white-color);
    border-radius: 15px;
    padding: 25px;
}
.shop-products{
    max-width: 70%;
    max-width: 100%;
    width: 100%;
}
.shop-sidebar h3{
    font-size: 18px;
    line-height: 28px;
    color: var(--black-color);
    font-weight: 700 !important;
    padding-bottom: 25px;
    padding-bottom: 0;
}
.shop-sidebar h4{
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 700 !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 15px;
}
.productFilterForm{
    display: flex;
    justify-content: start;
    align-content: start;
    gap: 20px;
    gap: 10px;
    flex-wrap: wrap;
}
.filterSection{
    width: 23%;
    width: 15%;
}
.filterSection.block6{
    width: 18%;
}
.labelArea{
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 20px;
    max-height: 165px;
    background: #F9FAFB80;
    padding: 10px 10px 10px 5px;
    border-radius: 10px;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #B8B8B8 transparent;
}
/* ================================
   CHROME / EDGE / SAFARI
   ================================ */
.labelArea::-webkit-scrollbar {
    width: 6px !important;
    height: 0 !important;
}
.labelArea::-webkit-scrollbar-track {
    background: transparent !important;
    border: none !important;
}
.labelArea::-webkit-scrollbar-thumb {
    background: #B8B8B8 !important;
    border-radius: 10px !important;
    border: none !important;
}
.labelArea::-webkit-scrollbar-thumb:hover {
    background: #8F8F8F !important;
}
/* REMOVE TOP/BOTTOM ARROWS COMPLETELY */
.labelArea *::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
.labelArea *::-webkit-scrollbar-button:single-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
/* REMOVE SCROLLBAR CORNER */
.labelArea::-webkit-scrollbar-corner {
    display: none !important;
    background: transparent !important;
}
label.filterLabel{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 0;
    padding: 6px 0;
}
label.filterLabel input{
    margin-left: 10px;
}
label.filterLabel .label-text{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    direction: ltr;
}
.filter-top-area{
    width: 100%;
    justify-content: space-between;
    align-items: start;
}
.filter-top-area .filterSection{
    width: 25%;
}
.priceareaslide h4{
    text-align: center;
    border: 0;
    margin: 0;
}
.priceSlider {
    position: relative;
    padding: 0 0 40px;
    padding: 0;
    direction: ltr;
    width: 100%;
}
.priceSlider__track {
    position: relative;
    height: 8px;
    background: #F3F4F6;
    border-radius: 2px;
}
.priceSlider__range {
    position: absolute;
    height: 100%;
    background: var(--yellow-orange-color);
    border-radius: 2px;
}
.priceSlider input[type="range"] {
    position: absolute;
    right: 0;
    top: 0px;
    width: 100%;
    height: 4px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid transparent;
}
/* Chrome / Safari / Edge (Blink/WebKit) */
.priceSlider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--yellow-orange-color);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 5;
    border: 3px solid #fff;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}
.priceSlider input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
}
/* Firefox */
.priceSlider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--yellow-orange-color);
    cursor: pointer;
    pointer-events: auto;
    border: 3px solid #fff;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}
.priceSlider input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
}
#minSlider {
    z-index: 2;
}
#maxSlider {
    z-index: 3;
}
.priceLabel-min span,
.priceLabel-max span {
    display: block;
    background-color: #F9FAFBCC;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.price__area__slide{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    direction: ltr;
}
/* .clearbtn{
    width: 100%;
} */
.shop-sidebar button{
    margin-top: 25px;
    border: 0;
    background: var(--yellow-orange-color);
    width: 100%;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    border-radius: 10px;
    color: var(--black-color);
    font-weight: 700;
    cursor: pointer;
    margin-top: 0;
    font-size: 14px !important;
    line-height: 18px !important;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: transparent !important;
    color: var(--yellow-orange-color) !important;
    flex-direction: row-reverse;
}
.shop-sidebar button img{
    width: 10px;
}
.result-count p{
    font-size: 16px;
    line-height: 24px;
    margin: 0 !important;
    color: var(--black-color);
}
.shop-products ul.products{
    margin-top: 25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap: 15px;
}
.sorting {
    position: relative;
}
.sorting select{
    width: 100%;
    height: 50px;
    padding: 0 20px 0 60px; /* space for left arrow */
    border: 1px solid #ddd;
    border-radius: 0px;
    background: #fff;
    font-size: 16px;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: all .3s ease;
}
.sorting select:hover,
.sorting select:focus {
    border-color: var(--black-color);
    outline: none;
}

/* Hide default arrow */
.sorting select::-ms-expand {
    display: none;
}

/* Custom arrow on LEFT */
.sorting:empty::after {
    display: none !important;
}
.sorting:not(:empty)::after {
    content: "\25BC";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black-color);
    font-size: 14px;
    pointer-events: none;
}
.woocommerce-ordering{
    margin: 0 !important;
}
ul.products .product-card{
    margin: 0 !important;
    width: 100% !important;
    max-width:100%;
}
ul.products:before,
ul.products:after{
    display: none !important;
}
/* View Toggle Buttons */
.view-toggle {
    display: flex;
    gap: 6px;
    align-items: center;
}
.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
}
.view-btn:hover {
    border-color: #333;
    color: #333;
}
.view-btn.active {
    background: #333;
    border-color: #333;
    color: #fff;
}
.shop-products.list-view ul.products {
    grid-template-columns: 1fr;
}
.shop-products.list-view ul.products li.list-view {
    display: block !important;
}
.shop-products.list-view ul.products li.product a img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 0;
    display: block;
}
.shop-products.list-view .product-card.grid-view,
.product-card.list-view{
    display: none !important;
}
.shop-products.list-view .list-product-wrap{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 25px;
    padding: 25px;
}
.list-view .product-title a{
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 5px;
    display: block;
    text-decoration: none;
}
.list-view .stock-badge{
    background-color: #DCFCE7;
    padding: 5px 12px;
    border-radius: 25px;
    color: #15803D;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}
.list-view .sku{
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    padding-bottom: 15px;
}
.list-view .rating-wrap{
    display: flex;
    justify-content: start;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
}
.product-image-wrap{
    position: relative;
}
.product-image-wrap a{
    display: block;
}
.list-view .star-rating {
  font-size: 16px !important;
  margin: 0 !important;
}
.list-view .review-count{
    font-size: 14px;
    line-height: 20px;
}
.list-view .product-description{
    font-size: 16px;
    line-height: 24px;
    max-height: 100px;
}
.list-view .product-features{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0px 10px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}
.list-view .product-features span{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0px 10px;
    font-size: 14px;
    line-height: 20px;
}
.list-view .product-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.list-view .product-price{
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 10px;
    flex-direction: row-reverse;
}
.list-view .product-price ins,
.list-view .woocommerce-Price-amount,
.list-view .sale-price{
    font-size: 30px;
    line-height: 36px;
    background: transparent;
    color: var(--black-color);
    font-weight: 700;
}
.list-view .product-price del,
.list-view .product-price .regular-price{
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color);
}
.list-view .product-info{
    width: calc(100% - 210px);
}
.list-view .product-buttons{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}
.list-view .view-details-btn{
    border: 1px solid #D1D5DB;
     border-radius: 10px;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    line-height: 24px ;
    color: var(--black-color);
    position: relative;
    background-color: var(--white-color);
    text-decoration: none;
}
.list-view .view-details-btn:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 18px;
    height: 24px;
    background-image: url(../images/eyevv.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.list-view .view-details-btn:hover{
    opacity: 0.7;
}
.list-view .product-bottom .cart-btn{
    border: 1px solid var(--yellow-orange-color);
    border-radius: 10px;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    line-height: 24px ;
    color: var(--black-color);
    position: relative;
    background-color: var(--yellow-orange-color);
    width: auto;
    height: auto;
    font-weight: 700;
    text-decoration: none;
}
.list-view .product-bottom .cart-btn::after{
    left: unset;
    right: 15px;
    width: 18px;
    height: 24px;
}
.list-view .product-bottom .cart-btn:hover{
    opacity: 0.7;
}
/* Mobile */
@media (max-width: 768px) {
    .shop-products.list-view ul.products {
        grid-template-columns: 1fr;
    }
    .shop-products.list-view ul.products li.product {
        flex-direction: row;
        gap: 16px;
    }
    .shop-products.list-view ul.products li.product a img {
        width: 120px;
        height: 120px;
    }
}

/* Product Page */
.meta1 .product_meta .posted_in{
    display: none !important;
}
.woocommerce-product-rating{
    gap: 15px;
}
.woocommerce-product-rating:before{
    display: none !important;
}
.proTabBlock .e-n-tab-title{
    cursor: pointer;
}
.proTabBlock .e-n-tabs-heading{
    border-bottom: 1px solid #E5E7EB;
}
.custom-product-description{
    max-width: 600px;
    overflow: hidden;
}
.custom-product-description h4{
    font-size: 24px;
    line-height: 32px;
    color: var(--black-color);
    font-weight: 700 !important;
    padding-bottom: 25px;
}
.custom-product-description p{
    font-size: 16px;
    line-height: 26px;
    color: var(--black-color);
    padding-bottom: 25px;
}
.custom-product-description h5{
    font-size: 18px;
    line-height: 28px;
    color: var(--black-color);
    font-weight: 700 !important;
    padding-bottom: 10px;
}
.custom-product-description ul li{
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}
.custom-product-description ul li br{
    display: none;
}
.custom-product-description ul li:after{
    content: "";
    width: 14px;
    height: 16px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../images/tick11.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.custom-product-description ul li:last-child{
    padding-bottom: 0;
}

/* Product reviews */
.custom-review-wrapper{
    display:flex;
    gap:30px;
    justify-content: space-between;
    align-items: start;
}
.review-summary{
    max-width:400px;
    width: 100%;
    background:#F9FAFB;
    padding:25px;
    border-radius:12px;
    text-align:center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.rating-number{
    font-size:36px;
    line-height: 40px;
    font-weight:700;
    color: var(--black-color);
}
.stars .star-rating{
    font-size: 18px;
    color: var(--yellow-orange-color);
}
.review-summary p{
    font-size: 16px;
    line-height: 24px;
    color: #4B5563;
}
.review-list{
    gap: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.review-card{
    background:var(--white-color);
    border:1px solid #eee;
    border-radius:12px;
    padding:25px;
    width: 100%;
}
.review-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}
.review-card .star-rating{
    color: var(--yellow-orange-color);
}
.review-user-image img{
    border-radius:50%;
}
.review-user-info h4{
    font-size: 16px;
    line-height: 25px;
    font-weight: 600 !important;
    color: var(--black-color);
}
.review-text{
    font-size: 16px;
    line-height: 25px;
    color: #374151;
}

/* Product Cart */
.productCart form.cart::before,
.productCart form.cart::after{
    display: none !important;
}
.productCart .cart{
    display: flex !important;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
    flex-wrap: wrap !important;
}
.productCart .buy-now-button.single_add_to_cart_button,
.productCart #buy_now_button{
    width: 100%;
    border-radius: 10px !important;
    padding: 15px !important;
    background: var(--black-color) !important;
    text-align: center;
    color: var(--white-color) !important;
    font-size: 18px !important;
    line-height: 30px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    order: 3;
}
.productCart .single_add_to_cart_button{
    width: 100%;
    border-radius: 10px !important;
    padding: 15px !important;
    background: var(--yellow-orange-color) !important;
    text-align: center;
    color: var(--black-color) !important;
    font-size: 18px !important;
    line-height: 30px !important;
    font-weight: 700 !important;
    margin: 15px 0 0 !important;
}
.yith-wcwl-add-to-wishlist-button__label{
    display: none;
}
.productCart .yith-add-to-wishlist-button-block{
    width: 70px;
    height: 60px;
    border: 2px solid var(--yellow-orange-color);
    margin: 0;
    align-items: center;
    border-radius: 10px;
    order: 2;
}
.productCart .e-atc-qty-button-holder{
    order: 1;
    max-width: 510px;
    width: 100%;
}

@media(max-width: 767px){
    .productCart .e-atc-qty-button-holder{
        max-width: 100%;
    }
}
.productCart .quantity{
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    max-width: 110px;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.productCart .quantity span{
    width: 33%;
    line-height: 40px;
    text-align: center;
    display: block;
    cursor: pointer;
}
.productCart .quantity span:hover{
    background-color: var(--yellow-orange-color);
    color: var(--black-color);
}
.productCart .quantity .input-text{
    width: 33%;
    background-color: transparent;
    border: 0;
}

/* Post Archive */
.postListItems{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}
.custom-blog-card{
    display:flex;
    justify-content: space-between;
    align-items:center;
    background: #F9FAFB;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    flex-direction: row-reverse;
    overflow: hidden;
}
.custom-blog-content{
    width:50%;
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.custom-blog-image{
    width:50%;
    position:relative;
}
.custom-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.custom-blog-meta{
    margin-bottom:15px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}
.custom-blog-meta .date{
    font-size:14px;
    line-height: 24px;
    color: #6B7280;
}
.custom-blog-meta .category{
    color: var(--yellow-orange-color);
    font-weight:600;
    font-size: 16px;
    line-height: 24px;
}
.custom-blog-title a{
    font-size:36px;
    line-height:40px;
    margin-bottom:25px;
    display: block;
    font-weight:700 !important;
}
.custom-blog-title a{
    color:#111;
    text-decoration:none;
}
.custom-blog-excerpt{
    font-size:18px;
    line-height:28px;
    color:#4B5563;
    margin-bottom:30px;
}
.custom-blog-footer{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row-reverse;
    gap: 25px;
}
.read-more-btn{
    background:var(--yellow-orange-color);
    color: var(--black-color);
    padding: 12px 30px;
    border-radius:10px;
    text-decoration:none;
    font-size: 16px;
    line-height: 24px;
    font-weight:700 !important;
    transition:0.3s;
    width: 120px;
}
.read-more-btn:hover{
    background: var(--black-color);
    color:#fff;
}
.views{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280;
}
.author-badge{
    position:absolute;
    top:20px;
    right:20px;
    background: var(--yellow-orange-color);
    color:var(--black-color);
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
    font-size:16px;
    line-height: 24px;
}
@media(max-width:991px){
    .custom-blog-card{
        flex-direction:column-reverse;
    }
    .custom-blog-content,
    .custom-blog-image{
        width:100%;
    }
    .custom-blog-content{
        padding:30px;
    }
    .custom-blog-title{
        font-size:32px;
    }
    .custom-blog-excerpt{
        font-size:16px;
    }
}

/* Post Grid List */
.custom-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.blog-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}
.blog-card:hover{
    transform:translateY(-5px);
}
.blog-image{
    position:relative;
}
.blog-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.blog-category{
    position:absolute;
    top:15px;
    right:15px;
    background:#4f46e5;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}
.blog-content{
    padding:25px;
}
.blog-title a{
    color:var(--black-color);
    font-size:20px;
    line-height:28px;
    padding-bottom:15px;
    text-decoration:none;
    font-weight: 700;
    display: block;
}
.blog-excerpt{
    color:#4B5563;
    line-height:24px;
    font-size:16px;
    padding-bottom:15px;
}
.blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    color:#6B7280;
}
.footer-right{
    display:flex;
    align-items:center;
    gap:12px;
}
.blog-date{
    display:flex;
    align-items:center;
    gap:5px;
}
.blog-views{
    display:flex;
    align-items:center;
    gap:5px;
}
.reading-time{
    color: var(--yellow-orange-color);
    font-weight:600;
}
.load-more-wrap{
    text-align:center;
    margin-top:40px;
}
.load-more-btn{
    display:inline-block;
    background:#d4a700;
    color:#000;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}
@media(max-width:991px){
    .custom-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:767px){
    .custom-blog-grid{
        grid-template-columns:1fr;
    }
    .section-top{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* About Page Timeline */
.mainItem{
    position: relative;
}
.mainItem:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(100% - 13px);
    margin: auto;
    width: 26px;
    height: 26px;
    background-color: var(--yellow-orange-color);
    border: 4px solid var(--white-color);
    border-radius: 50%;
}
.leftBlock .mainItem:after{
    left: calc(100% - 13px);
    right: unset;
}
.mainItem::before {
    content: "" !important;
    right: calc(100% - 2px);
    width: 4px !important;
    height: calc(100% + 60px) !important;
    background: var(--yellow-orange-color);
}
.leftBlock .mainItem::before{
    left: calc(100% - 2px);
    right: unset;
}
.mainItem.lastItem::before{
    height: 100% !important;
}
.blogContent h2{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700 !important;
    color: var(--black-color);
    padding-bottom: 20px;
}
.blogContent p{
    color: var(--black-color);
    padding-bottom: 20px;
}
.blogContent h3{
    font-size: 20px;
    line-height: 26px;
    font-weight: 700 !important;
    color: var(--black-color);
    padding-bottom: 15px;
}
.blogContent ul{
    color: var(--black-color);
    padding-bottom: 20px;
    padding-right: 20px;
}


/* Design Improvements */

.price del{
    color: #9CA3AF;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.custom-review-title h3{
    color: var(--black-color);
    font-size: 30px;
    line-height: 36px;
    font-weight: 600 !important;
    padding-bottom: 50px;
}
.productReviewShoretcode{
    padding: 65px 20px;
}
.productReviewShoretcode.no-reviews{
    padding: 0;
}
@media(max-width: 1024px){
    .category-card{
        max-width: 48%;
    }
    .product-card{
        max-width: 31%;
    }
    .custom-product-grid{
        align-items: start;
        justify-content: start;
    }
    .shop-top .woocommerce-breadcrumb{
        padding: 15px 20px;
    }
    .shop-wrapper{
        padding: 50px 20px;
        gap: 10px;
    }
    .shop-products ul.products{
        grid-template-columns: repeat(3,1fr);
    }
}
@media(max-width: 767px){
    .product-card{
        max-width: 48%;
    }
    .custom-category-grid{
        gap: 10px;
    }
    .custom-product-grid{
        gap: 10px;
    }
    .price-area {
        gap: 2px;
    }
    .price-area .sale-price {
        font-size: 18px;
        line-height: 28px;
    }
    .price-area .regular-price {
        font-size: 12px;
        line-height: 16px;
    }
    .product-content {
        padding: 10px;
    }
    .category-content h3 {
        font-size: 16px;
        line-height: 20px;
    }
    h3.product-title a {
        font-size: 16px;
        line-height: 20px;
    }
    .product-bottom{
        gap: 10px;
    }
    .mainItem::before{
        left: calc(100% - 2px) !important;
        right: unset;
    }
    .mainItem::after{
        left: calc(100% - 13px) !important;
        right: unset;
    }
    .banner-overlay h1{
        font-size: 24px;
        line-height: 32px;
    }
    .banner-overlay p{
        font-size: 16px;
        line-height: 20px;
    }
    .banner-overlay ul,
    .result-count{
        display: none;
    }
    .shop-wrapper{
        padding: 35px 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    .shop-sidebar,
    .shop-products{
        max-width: 100%;
    }
    .shop-products ul.products {
        grid-template-columns: repeat(2,1fr);
    }
    .shop-sidebar{
        max-height: 57px;
        overflow: hidden;
        padding: 15px;
        position: relative;
        transition: all ease-in-out 0.5s;
    }
    .shop-sidebar.active{
        max-height: 1000px;
    }
    .shop-sidebar::after {
        content: "\25BE"; /* ▼ */
        position: absolute;
        left: 10px;
        top: 10px;
        font-size: 26px;
        color: #000;
        pointer-events: none;
        transition: all ease-in-out 0.5s;
    }
    .shop-sidebar.active::after{
        transform: rotate(180deg);
    }
    .author-badge{
        font-size: 14px;
        line-height: 20px;
    }
    .custom-blog-content {
        padding: 20px;
    }
    .custom-blog-title a {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .custom-blog-excerpt{
        line-height: 20px;
        margin-bottom: 15px;
    }
    .read-more-btn{
        font-size: 14px;
        line-height: 20px;
    }
    .blogContent h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .buy-now-button,
    #buy_now_button{
        max-width: 75%;
    }
    .review-summary{
        display: none;
    }
    .price del{
        font-size: 16px;
        line-height: 20px;
    }

    .custom-review-title h3{
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        padding-bottom: 25px;
    }
    .productReviewShoretcode{
        padding: 35px 20px;
    }
    .savings-text{
        display: none;
    }
}

/* Cart Btn Loader */
.cart-btn.loading{
    pointer-events:none;
    opacity:.7;
}
.cart-btn.loading{
    background: #d4a700;
}
.cart-btn.loading svg path{
    fill: #d4a700;
}
.cart-btn.loading::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: 0;
    border: 2px solid #ddd;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    background: none;
    bottom: 0;
    right: 0;
    margin: auto;
}
@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}
.added_to_cart.wc-forward{
    display: none !important;
}
/* .cart-btn.added{
    /* pointer-events: none; */
    background-color: #16A34A;
    color: var(--white-color);
}
.cart-btn.added svg path{
    fill: var(--white-color);
} */

/* Mobile Menu */
body.overflowH{
    height: 100vh;
    overflow: hidden;
}
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: relative;
    z-index: 9999;
    padding: 15px;
}
.mobile-header-left,
.mobile-header-center,
.mobile-header-right {
    display: flex;
    align-items: center;
}
.mobile-header-center {
    flex: 1;
    justify-content: center;
}
.mobile-header-center img {
    max-height: 50px;
    width: auto;
}
.mobile-header-right {
    gap: 15px;
    margin-top: 8px;
}
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
}
.mobile-menu-wrapper {
    background: #f5f7fa;
    border-top: 1px solid #eee;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 99;
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .4s ease-in-out;
    visibility: hidden;
}
.mobile-menu-wrapper.active {
    height: 100vh;
    opacity: 1;
    visibility: visible;
}
.menuArrow{
    position: absolute;
    bottom: 0;
    right: 14px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; /* Arrow points up */
    opacity: 0;
    transition: opacity .4s ease-in-out;
    z-index: 99999999;
}
.menuArrow.active{
    opacity: 1;
}
.mobile-menu-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 75vh;
    overflow: hidden;
    overflow-y: auto;
}
.mobile-menu-wrapper li {
    border-bottom: 1px solid #eee;
}
.mobile-menu-wrapper a {
    display: block;
    padding: 15px;
    background-color: #fff;
    color: var(--black-color);
}
.custom-logo-link{
    display: block;
}

/* Not Found */
.no-products-found{
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.no-products-found h3{
    font-size: 32px;
    line-height: 40px;
    font-weight: 700 !important;
    color: var(--black-color);
    text-align: center;
}
.no-products-found p{
    font-size: 20px;
    line-height: 28px;
    color: var(--black-color);
    text-align: center;
}
@media (max-width: 767px){
    .no-products-found{
        padding: 35px 0;
    }
    .no-products-found h3{
        font-size: 24px;
        line-height: 32px;
    }
    .no-products-found p{
        font-size: 16px;
        line-height: 20px;
    }
    .shop-products.list-view .list-product-wrap{
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    .shop-products.list-view .list-product-wrap .product-info{
        width: 100%;
    }
    .list-view .product-price ins, .list-view .woocommerce-Price-amount {
        font-size: 18px;
        line-height: 24px;
    }
    .list-view .view-details-btn{
        font-size: 14px;
        line-height: 20px;
    }
    .list-view .product-bottom .cart-btn{
        font-size: 14px;
        line-height: 20px;
    }
    .list-view .product-buttons,
    .list-view .product-bottom{
        gap: 10px;
    }
    .list-view .product-bottom{
        flex-wrap: wrap;
    }
    #wpgs-gallery .wcgs-thumb.spswiper-slide img {
        border: 1px solid #dddddd !important;
    }
    .productCart .quantity span{
        line-height: 30px;
    }
}
header{
    background: var(--black-color);
    z-index: 9999;
    position: relative;
}
.elementor-button{
    cursor: pointer;
}

/* Vin Search Area */
.vinSearch .elementor-message-success{
    display: none !important;
}
.vin-error{
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
}
.vin-error-btn{
    border: 0;
    background: var(--yellow-orange-color);
    width: 200px;
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    border-radius: 10px;
    color: var(--black-color) !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: block;
    margin: 25px auto 0;
}
.vin-error-btn:hover{
    background: var(--black-color) !important;
    color: var(--yellow-orange-color) !important;
}
.vehicle-result-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    margin-bottom:30px;
    gap:30px;
}
.vehicle-logo{
    width:180px;
    text-align:center;
}
.vehicle-logo img{
    max-width:120px;
}
.vehicle-info{
    flex:1;
}
.vehicle-info h2{
    font-size:34px;
    margin:0 0 15px;
    font-weight:700 !important;
    color:var(--black-color);
}
.vehicle-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:18px;
}
.vehicle-meta span{
    padding:7px 16px;
    background:#f5f5f5;
    border-radius:30px;
    font-size:14px;
}
.vehicle-vin,
.vehicle-number{
    margin-top:10px;
    font-size:16px;
    color:#555;
}
.vehicle-image{
    width:300px;
    text-align:center;
}
.vehicle-image img{
    display: block;
}
.vehicle-status{
    width:220px;
    text-align:center;
    border-left:1px solid #eee;
    padding-left:25px;
}
.vehicle-status .check{
    width:70px;
    height:70px;
    background:#2bbf62;
    color:#fff;
    font-size:34px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 15px;
}
.vehicle-status h3{
    margin:0;
    font-size:24px;
    color:#2bbf62;
}
.vehicle-status p{
    margin-top:10px;
    color:#4B5563;
    line-height:1.6;
}
.vehicle-specs{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}
.spec-box{
    background:#fff;
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}
.spec-box:hover{
    transform:translateY(-5px);
}
.spec-box .icon{
    font-size:34px;
    display:block;
    margin-bottom:15px;
}
.spec-box h4{
    margin:0;
    font-size:17px;
    color:var(--black-color);
    font-weight: 700 !important;
}
.spec-box p{
    margin-top:10px;
    color:#4B5563;
    font-size:15px;
}
@media(max-width: 800px){
    .vehicle-result-card{
        flex-wrap: wrap;
        padding: 15px;
    }
    .vehicle-status{
        width: 100%;
        border: 0;
        padding: 0;
    }
    .vehicle-info h2{
        font-size: 25px;
        text-align: center;
    }
    .vehicle-status .check{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .vehicle-specs {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .category-image img{
        min-height: 145px;
    }

    .product-card .cardBtngrop {
        bottom: 100%;
        z-index: 5;
    }
}
.columnCount ul.elementor-icon-list-items{
    column-count: 2;
}
.searchBarBlock input{
    background-color: transparent;
}
.e-apply-coupon{
    background-color: #E5E7EB !important;
    color: var(--black-color) !important;
    border-color: #E5E7EB !important;
}
/* Car Setup */
.car-setup{
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,.15);
    transition: all .45s cubic-bezier(.68,-0.55,.265,1.55);
    overflow-y: auto;
    display: none;
}
.car-setup.active{
    display: block;
}
.car-top{
    background-image: url(https://autoparts.ussl.co.il/wp-content/uploads/2026/07/asdsf.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.car-top h3{
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    font-weight: 700 !important;
}
.car-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--red-color);
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}
.car-close:hover{
    background-color: var(--yellow-orange-color);
}
.car-footer{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
}
.car-footer span{
    text-align: center;
    width: 100%;
    border: 1px solid var(--black-color);
    padding: 15px;
    font-size: 18px;
    line-height: 25px;
    border-radius: 10px;
    color: var(--black-color);
    display: block !important;
    font-weight: 700 !important;
    cursor: pointer;
}
.car-footer span:hover{
    background-color: var(--yellow-orange-color);
    color: var(--black-color);
}
.car-body{
    padding: 20px;
    text-align: right;
    height: 70vh;
    overflow: hidden;
    overflow-y: scroll;
}
.car-body .step-title{
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 15px;
    font-weight: 700 !important;
}
.car-item-row{
    font-size: 18px;
    line-height: 30px;
    cursor: pointer;
    padding: 5px 10px;
}
.car-item-row:hover{
    background-color: var(--gray-color);
}
.car-back{
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500 !important;
}
.car-back:hover{
    color: var(--red-color);
}
.selected-car-display{
    padding: 20px;
    text-align: right;
}
.selected-car-display h4{
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 15px;
    font-weight: 700 !important;
}
.selected-car-display .sBrand{
    font-size: 20px;
    line-height: 30px;
    font-weight: 700 !important;
}
.selected-car-display .sDetails{
    font-size: 16px;
    line-height: 30px;
}
.mega-menu-content {
    box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Header Search  */
.searchBlockH{
    width: 100%;
    max-width: 385px !important;
}
.custom-header-search-wrapper {
    position: relative;
    width: 100%;
    direction: rtl;
    font-family: inherit;
}
.custom-header-search-wrapper .search-input-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    width: 100%;
    overflow: hidden;
}
.custom-header-search-wrapper .custom-search-input {
    width: 100%;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 8px;
    font-size: 14px;
    color: #333;
    direction: rtl;
}
.custom-header-search-wrapper .search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
    background-color: var(--yellow-orange-color);
    width: 80px;
    border-radius: 0;
    padding: 9px 24px;
    height: 44px;
}
.custom-header-search-wrapper .search-icon-btn:hover,
.custom-header-search-wrapper .search-icon-btn:focus,
.custom-header-search-wrapper .search-icon-btn:active{
    color: var(--black-color);
    background-color: var(--yellow-orange-color);
}
/* Floating Card Popup */
.custom-header-search-wrapper .custom-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    padding: 16px;
    text-align: right;
    display: none;
    box-sizing: border-box;
}
.custom-search-results .custom-search-header {
    font-size: 13px;
    color: #a0a0a0;
    font-weight: 500;
    margin-bottom: 12px;
}
.custom-search-results .custom-search-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 380px;
    overflow-y: auto;
}
/* Single Product Item */
.custom-search-results .custom-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #222222;
    padding: 6px 4px;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-direction: row-reverse;
    gap: 10px;
}
.custom-search-results .custom-search-item:hover {
    background: #f7f7f7;
}
.custom-search-results .custom-search-info {
    flex: 1;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}
.custom-search-results .custom-search-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #111;
}
.custom-search-results .custom-search-price {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}
.custom-search-results .custom-search-base {
    font-size: 11px;
    color: #2b78e4;
    margin-top: 2px;
    font-weight: 500;
}
.custom-search-results .custom-search-item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}
/* Bottom Button */
.custom-search-results .custom-search-footer {
    margin-top: 16px;
    text-align: center;
}
.custom-search-results .custom-search-view-all {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: #f2f2f2;
    color: #333333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}
.custom-search-results .custom-search-view-all:hover {
    background: #e5e5e5;
    color: #000000;
}

/* Filter Search */
.filterSearch{
    width: 100%;
    padding-bottom: 20px;
}
.filterSearch .custom-header-search-wrapper .search-input-box{
    background: #F3F4F6;
    border-radius: 12px;
    background: #F9FAFBCC;
    border: 1px solid #F3F4F6;
}
.filterSearch .custom-search-input{
    border-radius: 12px;
    padding-right: 60px;
    font-size: 14px;
    height: 54px;
}
.filterSearch .custom-header-search-wrapper .search-icon-btn{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    padding: 0;
    width: auto;
}
.filterSearch .custom-header-search-wrapper .search-icon-btn svg{
    width: 16px;
}
.priceFilterarea{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.priceFilterarea .filterSection{
    width: 60%;
}
.filter-search-box {
    margin-bottom: 8px;
}
.filter-options-search {
    width: 100%;
    padding: 6px 10px !important;
    font-size: 13px;
}
.filter-options-search:focus {
    border-color: #0073aa;
}
@media(max-width: 767px){
    .mobile-menu-wrapper ul.sub-menu{
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        display: block !important;
    }
    .menu-item-has-children.active > .sub-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    .menu-item-has-children{
        position: relative;
        cursor: pointer;
    }
    .menu-item-has-children::after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 23px;
        left: 15px;
        background-image: url(../images/down-arrow.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s ease-in-out;
    }
    .menu-item-has-children.active > a{
        background-color: #eef2f7;
    }
    .menu-item-has-children.active::after{
        transform: rotate(180deg);
    }
    .mobile-menu-wrapper ul.sub-menu a:hover{
        color: #0073e6;
    }
    .shop-sidebar .clearbtn{
        display: none;
        padding-left: 20px;
    }
    .shop-sidebar.active .clearbtn{
        display: block;
    }
    .shop-sidebar .clearbtn .clear-filters-btn{
        padding: 5px;
    }
    .filterSearch{
        padding-top: 10px;
    }
    .filterSection,
    .filterSection.block6{
        width: 48%;
    }
    .priceFilterarea .filterSection{
        width: 90%;
    }
    .custom-header-search-wrapper .search-icon-btn{
        height: 43px;
    }

    .custom-header-search-wrapper .custom-search-results{
        position: unset;
        margin-top: 15px;
    }
}
.headeriCond li{
    cursor: pointer;
}
/* New Car Search Form */
.custom-part-search-container{
    width: 100%;
    display: flex;
    justify-content: end;
}
.custom-part-search-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 90%;
    flex-direction: row-reverse;
}
.custom-part-search-form button{
    background-color: var(--black-color) !important;
    color: var(--white-color) !important;
    padding: 27px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}
.carInputF{
    width: 100%;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    background: #FFD700;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}
.carInputF input{
    padding: 6px 32px;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 0;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 5px;
    font-weight: 800;
    color: var(--black-color);
}
.carInputF input::placeholder {
    color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}
.carInputF img{
    max-height: 78px;
}
.catShow{
    padding-top: 30px;
    width: 100%;
}
.catShow ul{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
}
.catShow ul li a{
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    padding: 8px 20px;
    border: 1px solid #1C202633;
    border-radius: 25px;
    background: #1C20261A;
    display: block;
    font-weight: 700;
}
@media (max-width: 1024px){
    .custom-part-search-form{
        width: 100%;
    }
}
@media (max-width: 767px){
    .custom-part-search-form{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .carInputF input{
        font-size: 36px;
        line-height: 42px;
        padding: 8px 15px;
        letter-spacing: 0;
    }
    .carInputF{
        flex-direction: row-reverse;
    }
    .custom-part-search-form button{
        padding: 16px !important;
        width: 100%;
    }
    .carInputF img{
        max-height: 64px;
        width: auto;
    }
    .catShow ul{
        justify-content: start;
        overflow: hidden;
        overflow-x: auto;
        /* Hide scrollbar for Firefox */
        scrollbar-width: none; 
        
        /* Hide scrollbar for IE and Edge (legacy) */
        -ms-overflow-style: none;
    }
    /* Hide scrollbar for Chrome, Safari, and newer Edge */
    .catShow ul::-webkit-scrollbar {
        display: none;
    }
    .catShow{
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .newsletterform{
        background-color: transparent !important;
    }
    .newsletterform .elementor-field,
    .newsletterform .elementor-button{
        border-radius: 12px !important;
    }
}

/* API Data CSS */
.vehicle-parts-layout{
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}
.vehicle-parts-tree{
    max-width: 320px;
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background-color: #FFFFFF;
    padding: 10px;
}
.vehicle-parts-tree h3{
    color: #1C2026;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800 !important;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 16px;
}
.tree-container{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}
.tree-category-box{
    width: 100%;
}
.tree-category-box .fetch-units-btn{
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 20px;
    color: #4B5563;
    width: 100%;
    text-align: right;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.tree-category-box .fetch-units-btn.active-category{
    background-color: var(--yellow-orange-color);
    color: var(--white-color);
}
#units-display-area{
    width: calc(100% - 360px);
}
.units-display-area h3{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700 !important;
    color: #1C2026;
    padding-bottom: 40px;
}
.units-grid{
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
}
.unit-card{
    width: 23%;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background-color: #FFFFFF;
    cursor: pointer;
}
.unit-card:hover{
    border: 1px solid var(--black-color);
}
.unit-img-wrap{
    position: relative;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px;
}
.unit-img-wrap img{
    width: 160px;
    height: 160px !important;
    object-fit: fill;
    margin: auto;
    display: block;
}
.unit-details{
    padding: 24px;
}
h4.unit-title{
    font-size: 15px;
    line-height: 19px;
    font-weight: 800 !important;
    color: #1C2026;
    text-align: center;
    height: 40px;
    overflow: hidden;
}
.unit-code{
    background-color: #1C2026;
    color: var(--white-color);
    font-size: 10px;
    line-height: 15px;
    font-weight: 700 !important;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    display: block
}
.unit-modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.unit-modal-box{
    width: 100%;
    max-width: 70%;
    position: relative;
    background-color: var(--white-color);
}
.unit-modal-box #close-modal{
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 16px;
    padding: 10px;
    display: block;
    line-height: 16px;
    cursor: pointer;
    border: 0;
}
.partsModel{
    display: flex;
    justify-content: center;
    align-items: start;
    background-color: var(--white-color);
}
.partsIamge{
    width: 50%;
    padding: 40px;
    height: 550px;
    overflow: hidden;
}
.partsIamge img{
    height: 100% !important;
    width: 100%;
    object-fit: fill;
}
.partstable{
    width: 50%;
    max-height: 500px;
    overflow: hidden;
    margin: 25px;
    overflow-y: auto;
    border: 1px solid #E5E7EB;
}
.partstable table th,
.partstable table td{
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    color: #9CA3AF;
    border-bottom: 1px solid #E5E7EB;
}
.partstable table tr:nth-child(odd) td,
.partstable table tr:nth-child(odd) th{
    background-color: #f8f8f8;
}
.partstable table tr:nth-child(even) td,
.partstable table tr:nth-child(even) th{
    background-color: #fff;
}
.partstable table tr:last-child td{
    border-bottom: 0;
}
.partstable .numb{
    font-size: 14px;
    line-height: 20px;
    color: #9CA3AF;
    font-weight: 700 !important;
    display: block;
    text-align: center;
}
.partstable .panumb{
    font-size: 14px;
    line-height: 20px;
    color: #1C2026;
    display: block;
}
.partstable .panam{
    font-size: 14px;
    line-height: 20px;
    color: #1C2026;
    display: block;
}
.partstable .painfo{
    display: block;
    width: 31px;
    line-height: 31px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #1C2026;
    margin: auto;
}
@media(max-width: 1100px){
    .vehicle-parts-layout{
        gap: 20px;
        padding-top: 35px;
    }
    .unit-card {
        width: 31%;
    }
    .units-grid{
        gap: 15px;
    }
    .partsIamge{
        padding: 30px;
    }
    .unit-modal-box{
        max-width: 85%;
    }
}
@media(max-width: 900px){
    .unit-modal-box{
        max-height: 80vh;
        overflow: hidden;
        overflow-y: scroll;
    }
    .partsModel{
        flex-direction: column;
    }
    .partsIamge {
        width: 100%;
    }
    .partstable {
        width: 100%;
        margin: 0;
        padding: 15px;
    }
    .unit-modal-box #close-modal{
        top: 0;
        right: 0;
        z-index: 9;
        border-radius: 0;
    }
}
@media (max-width: 800px){
    .vehicle-parts-tree {
        max-width: 285px;
    }
    #units-display-area {
        width: calc(100% - 300px);
    }
    .unit-card {
        width: 47%;
    }
    .units-display-area h3 {
        font-size: 25px;
        padding-bottom: 15px;
    }
}
@media (max-width: 600px){
    .vehicle-parts-layout{
        flex-direction: column;
    }
    .vehicle-parts-tree{
        max-width: 100%;
    }
    #units-display-area {
        width: 100%;
    }
    .vehicle-meta{
        justify-content: center;
    }
    .vehicle-vin, .vehicle-number{
        text-align: center;
    }
    .vehicle-image{
        margin: auto;
    }
    .tree-container{
        max-height: 0;
        overflow: hidden;
        transition: all ease-in-out 0.5s;
    }
    .tree-container.itemopen{
        max-height: 400px;
        overflow-y: auto;
    }
    .vehicle-parts-tree h3 {
        position: relative;
        cursor: pointer;
    }
    .vehicle-parts-tree h3:after {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-65%) rotate(45deg);
        transition: transform 0.2s ease;
        pointer-events: none;
    }
    .vehicle-parts-tree h3.opentag:after{
        transform: rotate(225deg);
    }
    .tree-category-box .fetch-units-btn{
        font-size: 14px;
    }
    .partsIamge{
        height: 300px;
    }
    .partstable table{
        margin: 0;
        width: 100%;
    }
    .unit-modal-box {
        max-width: 90%;
    }
}
.custom-whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 75px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.custom-whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.custom-whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow:
        0 6px 20px rgba(0,0,0,0.30);
}
@media (max-width: 767px) {
    .custom-whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
    }
    .custom-whatsapp-button svg {
        width: 29px;
        height: 29px;
    }
}

.shipfloat{
    position: fixed;
    top: 40vh;
    right: 0;
    background-color: var(--black-color);
    padding: 16px 12px;
    border-radius: 8px 0 0 8px;
    box-shadow: -8px 0px 28px -6px rgba(255, 255, 255, 0.65);
    cursor: pointer;
    z-index: 999;
}
.shipfloat .iconbtn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.shipdetails{
    position: absolute;
    top: 0;
    right: 100%;
    width: 250px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 0.5s;
}
.shipdetails.active{
    opacity: 1;
}
.shipdetails h4{
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    padding-bottom: 15px;
}
.shipdetails ul{
    padding-right: 10px;
}
.shipdetails ul li{
    font-size: 13px;
    line-height: 18px;
    list-style-type: square;
    padding: 5px;
}

.site-top-notice{
    background-color: #F9FAFB;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    max-height: 45px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.site-top-notice.active{
    max-height: 0;
    padding: 0;
}
.site-top-notice__text {
    font-size: 16px;
    font-weight: 700 !important;
    color: var(--black-color);
    /* Subtle attention glow */
    /* text-shadow:
        0 0 3px rgba(0, 150, 180, 0.25),
        0 0 7px rgba(0, 150, 180, 0.15);
    animation: noticeGlow 2.5s ease-in-out infinite; */
}
@keyframes noticeGlow {
    0%,
    100% {
        text-shadow:
            0 0 3px rgba(0, 150, 180, 0.20),
            0 0 7px rgba(0, 150, 180, 0.10);
    }
    50% {
        text-shadow:
            0 0 4px rgba(0, 150, 180, 0.45),
            0 0 10px rgba(0, 150, 180, 0.25);
    }
}
.site-top-notice__close{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    font-size: 20px;
    line-height: 20px;
    color: var(--black-color);
    text-align: center;
    margin: auto;
    cursor: pointer;
}
.site-top-notice__close:hover{
    color: var(--yellow-orange-color);
}
@media (max-width: 1100px){
    .site-top-notice__text {
        font-size: 14px;
    }
}
@media (max-width: 900px){
    .site-top-notice__text {
        text-align: center;
    }
    .site-top-notice{
        padding: 10px 25px;
    }
    .site-top-notice__close{
        left: 10px;
    } 
}
@media (max-width: 600px) {
  .site-top-notice__text {
    font-size: 12px;
  }
}
@media(max-width: 450px){
    .site-top-notice{
        max-height: 105px;
    }
}
#pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle{
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

@media (max-width: 900px) {
    .mobilemainhe .elementor-sticky__spacer {
        display: none !important;
    }
}
.psku {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 25px;
}
.psku strong{
    font-weight: 700;
}
@media (max-width: 767px){
    .psku {
        padding-bottom: 10px;
    }
}

/* =========================================================
   SEARCH BUTTON LOADING
   ========================================================= */
.search-icon-btn.search-is-loading {
    cursor: wait;
    pointer-events: none;
    opacity: 0.7;
}
/* Spinner inside search button */
.search-button-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: custom-search-spin 0.7s linear infinite;
    vertical-align: middle;
}
@keyframes custom-search-spin {
    to {
        transform: rotate(360deg);
    }
}
/* Input loading state */
.custom-search-input.search-is-loading {
    cursor: wait;
    opacity: 0.8;
}
/* Dropdown loading */
.custom-search-loading {
    padding: 15px;
    text-align: center;
    font-size: 13px;
}

/* =========================================
   CONTINUOUS ANNOUNCEMENT STRIP
========================================= */
.custom-announcement-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.custom-announcement-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}
.announcement-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.announcement-main {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700 !important;
}
.announcement-separator {
    margin-left: 20px;
}
/* Mobile */
@media (max-width: 767px) {
    .announcement-separator {
        margin-left: 12px;
    }
}

/* Floating Social */
.floating-social{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    transition: all ease-in-out 0.5s;
}
.floating-social ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-direction: column;
}
.floating-social ul li{
    display: block;
}
.floating-social ul li a{
    display: block;
    max-width: 35px;
    height: 35px;
    background-color: var(--white-color);
    border-radius: 10px;
}
.floating-social img{
    max-width: 100%;
    display: block;
}
.floating-social .float-close{
    max-width: 13px;
    display: block;
    margin: auto;
    padding-bottom: 10px;
    cursor: pointer;
}

/* Cookies */
.cky-consent-bar div:nth-child(3),
.cky-footer-wrapper div:nth-child(3){
    display: none !important;
}
.cky-notice-btn-wrapper button{
    margin-right: 0;
    margin-left: 15px;
}