.kps-section {
    width: 100%;
    padding: 40px 0;
    font-family: inherit;
}

.kps-section-head {
    text-align: center;
    margin-bottom: 35px;
}

.kps-section-head h2,
.kps-section-head p,
.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6 {
    font-family: inherit;
}

/* .kps-section-head h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.8px;
    color: #111;
} */


/* KSHOP CHANGE START: Product title max 2 lines */
.kps-product-title,
.kps-product-info h1,
.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6 {
display: -webkit-box !important; -webkit-line-clamp: 2 !important; line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; text-overflow: ellipsis !important;
min-height: 43px !important; max-height: 43px !important; }
/* KSHOP CHANGE END */


/* KSHOP CHANGE START: Product title exact 2-line ellipsis fix */
.kps-product-info h1,
.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6,
.kps-product-title { min-height: 43px !important; max-height: 43px !important; overflow: hidden !important; }

.kps-product-info h1 a,
.kps-product-info h2 a,
.kps-product-info h3 a,
.kps-product-info h4 a,
.kps-product-info h5 a,
.kps-product-info h6 a,
.kps-product-title a {
display: -webkit-box !important;
-webkit-line-clamp: 2 !important; line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: normal !important; }
/* KSHOP CHANGE END */







































.kps-section-head h2,
.kps-bst-heading h2 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.8px;
    color: #111;
}




.kps-section-head p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

.kps-product-grid {
    display: grid;
    gap: 28px;
}

.kps-columns-1 .kps-product-grid { grid-template-columns: repeat(1, 1fr); }
.kps-columns-2 .kps-product-grid { grid-template-columns: repeat(2, 1fr); }
.kps-columns-3 .kps-product-grid { grid-template-columns: repeat(3, 1fr); }
.kps-columns-4 .kps-product-grid { grid-template-columns: repeat(4, 1fr); }
.kps-columns-5 .kps-product-grid { grid-template-columns: repeat(5, 1fr); }
.kps-columns-6 .kps-product-grid { grid-template-columns: repeat(6, 1fr); }

.kps-product-card {
    position: relative;
    font-family: inherit;
}

.kps-product-image-wrap {
    position: relative;
    background: #f5f6f6;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    min-height: 420px;
}

.kps-product-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.kps-product-card:hover img {
    transform: scale(1.04);
}

.kps-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.kps-badge {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.kps-sale-badge {
    background: #e64646;
}

.kps-new-badge {
    background: #28a428;
}

.kps-trend-badge {
    background: #f4a53b;
}

.kps-action-icons {
    position: absolute;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kps-action-right {
    top: 12px;
    right: 12px;
}

.kps-action-left {
    top: 12px;
    left: 12px;
}

.kps-action-top {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
}

.kps-action-bottom {
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
}

.kps-actions-hover .kps-action-icons {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.kps-actions-hover .kps-product-card:hover .kps-action-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kps-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kps-icon-btn:hover,
.kps-icon-btn.kps-active {
    background: #111;
    color: #fff;
}

.kps-tooltip {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 7px 11px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}

.kps-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-left: 5px solid #111;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.kps-icon-btn:hover .kps-tooltip {
    opacity: 1;
    visibility: visible;
}

.kps-icon-active {
    display: none;
}

.kps-icon-btn.kps-active .kps-icon-default {
    display: none;
}

.kps-icon-btn.kps-active .kps-icon-active {
    display: inline;
}
























/* KSHOP FIX: move Add to Cart button to card bottom */
/* .kps-product-card {
display: flex !important;
flex-direction: column !important;
}

.kps-product-card .kps-product-image-wrap .kps-quick-add-btn {
position: relative !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
width: 100% !important;
height: 52px !important;
margin-top: 18px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
opacity: 1 !important;
visibility: visible !important;
transform: none !important;
background: #ff202f !important;
color: #fff !important;
border-radius: 7px !important;
z-index: 20 !important;
}

.kps-product-card .kps-product-image-wrap {
overflow: visible !important;
margin-bottom: 78px !important;
}

.kps-product-card:nth-child(even) .kps-quick-add-btn {
background: #17222c !important;
} */



.kps-rating-count {
    margin-left: 8px;
    color: #777;
    font-size: 14px;
    font-weight: 500;
}





















/* .kps-quick-add-btn {
position: absolute;
left: 16px;
right: 16px;
bottom: 16px;
z-index: 7;
height: 43px;
border: none;
background: #fff; color: #111; border-radius: 30px; 
font-size: 15px;
font-weight: 700;
cursor: pointer;
display:block;
transition: all 0.25s ease;
} */

/* .kps-quick-add-btn:hover {
    background: #111;
    color: #fff;
} */
/* .kps-quick-add-btn {
    left: 16px;
    right: 16px;
    bottom: 15px;
    height: 43px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
} */

.kps-quick-add-icon {
    left: auto;
    right: 16px;
    width: 48px;
    padding: 0;
    border-radius: 50%;
}

.kps-product-info {
    padding-top: 14px;
}

.kps-product-category {
    font-size: 13px;
    margin-bottom: 5px;
    color: #777;
}

.kps-product-category a {
    color: #777;
    text-decoration: none;
}

.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

.kps-product-info a {
    color: #111;
    text-decoration: none;
}

.kps-rating {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.kps-price {
    font-size: 15px;
    font-weight: 700;
    color: #e64646;
    position: relative;
}

.kps-price del {
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}

.kps-swatches,
.kps-size-swatches {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.kps-color-swatch {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 2px solid #fff;
    outline: 1px solid #aaa;
    background: #ddd;
}

.kps-size-swatch {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #111;
}

/* @media (max-width: 1024px) {
    .kps-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
} */

@media (max-width: 575px) {
    .kps-product-grid {
        grid-template-columns: 1fr !important;
    }

    .kps-section-head h2 {
        font-size: 28px;
    }
}







.kps-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999999;
    display: none;
    padding: 20px;
}

.kps-modal-box {
    width: 100%;
    max-width: 470px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    margin: 70px auto;
    font-family: inherit;
}

.kps-modal-close {
    position: absolute;
    right: 22px;
    top: 18px;
    border: none;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.kps-modal-box h2 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 600;
}

.kps-modal-product {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.kps-modal-image {
    width: 80px;
    height: 108px;
    object-fit: cover;
    border-radius: 8px;
    background: #f4f4f4;
}

.kps-modal-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}

.kps-modal-price {
    color: #e64646;
    font-weight: 700;
}

.kps-modal-price del {
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}

.kps-modal-field {
    margin-bottom: 20px;
}

.kps-modal-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.kps-modal-colors,
.kps-modal-sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.kps-modal-color {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    border: 2px solid #eee;
    cursor: pointer;
}

.kps-modal-color.active {
    border-color: #111;
}

.kps-modal-size {
    min-width: 44px;
    height: 44px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
}

.kps-modal-size.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.kps-modal-bottom {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kps-qty-box {
    width: 140px;
    height: 52px;
    border: 1px solid #eee;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.kps-qty-box button {
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.kps-modal-cart-btn {
    flex: 1;
    height: 52px;
    border: none;
    border-radius: 28px;
    background: #111;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.kps-modal-buy-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 28px;
    background: #e64646;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}


/* CHANGE START: KShop exact product card design */










/* =====================================================
   FINAL KSHOP BUTTON DESIGN
===================================================== */

.kps-product-card .kps-quick-add-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:10px;
    /* background:#ffffff;
    color:#111111; */

    font-size:15px;
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    cursor:pointer;
    transition:all .35s ease;
    margin-top:18px;

    box-shadow:
    0 0 0 1px rgba(0,0,0,.05),
    0 8px 20px rgba(0,0,0,.04);

    background: linear-gradient(90deg,#1f2a44,#111827); 
    color:#FFF !important;
    
}

/*
.kps-product-card .kps-quick-add-btn::before{
    content:"🛒";
    font-size:18px;
    line-height:1;
}
*/








.kps-product-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
}

.kps-product-info{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
}

.kps-quick-add-btn{
    margin-top:auto !important;
}










.kps-product-card:hover .kps-quick-add-btn{
    background:#cf3033 !important;
}



/* DEFAULT */
/* .kps-product-card .kps-quick-add-btn{ */
    /* background:#fff; */
    /* background: linear-gradient(90deg,#1f2a44,#111827);  */
    /* color:#111; */
/* } */

/* .kps-product-card .kps-quick-add-btn{
    background:#cf3033;
    color:#111;
} */


/* HOVER RED */
/*
.kps-product-card:hover .kps-quick-add-btn{
    background:linear-gradient(90deg,#ff3131,#ff5b3f);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(255,80,80,.25);
}
*/

/* EVEN CARD DARK */
/*
.kps-product-card:nth-child(even):hover .kps-quick-add-btn{ background:linear-gradient(90deg,#1e293b,#111827); }
*/

/* ICON */
/*
.kps-product-card:hover .kps-quick-add-btn::before{color:#fff;}
*/














/* FINAL BUTTON COLORS */

/* .kps-product-card .kps-quick-add-btn{
    background:#ffffff !important;
    color:#111111 !important;
    border:1px solid #ececec !important;
} */

/* icon normal */
/* .kps-product-card .kps-quick-add-btn::before{
    color:#111111 !important;
} */

/* hover */
/*
.kps-product-card:hover .kps-quick-add-btn{background:#ff3b30 !important;color:#ffffff !important;}
*/

/* icon hover */
/* .kps-product-card:hover .kps-quick-add-btn::before{
    color:#ffffff !important;
} */

/* even card dark hover */
/* .kps-product-card:nth-child(even):hover .kps-quick-add-btn{
    background:#111827 !important;
    color:#ffffff !important;
} */



































.kps-section {
    padding: 50px 0;
}

.kps-section-head {
    text-align: left;
    margin-bottom: 30px;
}


.kps-section-head p {
    display: none;
}

.kps-product-grid {
    gap: 30px;
}

.kps-product-card {
    background: transparent;
}

.kps-product-image-wrap {
    background: #f7f7f7;
    border-radius: 10px;
    min-height: 330px;
    height: 330px;
    padding: 35px;
    overflow: hidden;
}

.kps-product-image-wrap img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center;
    transition: transform .35s ease;
}

.kps-product-card:hover .kps-product-image-wrap img {
    transform: scale(1.03);
}

.kps-badge-wrap {
    top: 12px;
    left: 12px;
}

.kps-badge {
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.kps-trend-badge {
    display: none;
}

.kps-action-icons {
    top: 14px;
    right: 12px;
    gap: 10px;
}

.kps-icon-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #111;
    font-size: 19px;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.kps-icon-btn:hover,
.kps-icon-btn.kps-active {
    background: #111;
    color: #fff;
}

.kps-actions-hover .kps-action-icons {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.kps-actions-hover .kps-product-card:hover .kps-action-icons {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.kps-tooltip {
    right: 44px;
    background: #000;
    color: #fff;
    border-radius: 7px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
}

.kps-tooltip::after {
    border-left-color: #000;
}

.kps-actions-hover .kps-quick-add-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}

.kps-actions-hover .kps-product-card:hover .kps-quick-add-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kps-product-info {
    padding: 10px 10px !important;
}


.kps-product-category {
    display: none;
}

.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6 {
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.kps-product-info a {
    color: #111;
    text-decoration: none;
}

.kps-rating {
    color: #e9a83a;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 7px;
}


.kps-swatches,
.kps-size-swatches {
    display: none;
}

@media (max-width: 1024px) {
    .kps-product-image-wrap {
        height: 310px;
        min-height: 310px;
        padding: 28px;
    }

    .kps-product-image-wrap img {
        height: 245px;
    }
}

@media (max-width: 575px) {
    .kps-section-head h2 {
        font-size: 30px;
    }

    /* .kps-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
    } */

    .kps-product-grid {
        gap: 14px;
    }

    .kps-product-image-wrap {
        height: 230px;
        min-height: 230px;
        padding: 20px;
    }

    .kps-product-image-wrap img {
        height: 175px;
    }

    .kps-product-info h2,
    .kps-product-info h3,
    .kps-product-info h4,
    .kps-product-info h5,
    .kps-product-info h6 {
        font-size: 14px;
    }
}

/* CHANGE END */








.pop-notice-sale {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all .3s ease;
}

.pop-notice-sale.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}










/* CHANGE START: cart added toast popup */
.kps-cart-toast {
    position: fixed;
    top: 90px;
    right: 28px;
    width: 340px;
    min-height: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,.13);
    z-index: 999999;
    display: flex;
    gap: 12px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all .28s ease;
}

.kps-cart-toast.kps-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kps-cart-toast-close {
    position: absolute;
    right: 12px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.kps-cart-toast-img {
    width: 78px;
    height: 84px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 78px;
}

.kps-cart-toast-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kps-cart-toast-content {
    padding-right: 18px;
}

.kps-cart-toast-msg {
    margin: 0 0 5px;
    font-size: 14px;
    color: #777;
}

.kps-cart-toast-content h4 {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #111;
}

.kps-cart-toast-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: #777;
}

.kps-cart-toast-bottom a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media (max-width: 575px) {
    .kps-cart-toast {
        top: 20px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}
/* CHANGE END */







/* Best Seller Products Section */
/* .kps-best-seller-section {
    padding: 0 0 55px;
    width: 100%;
} */

.kps-bst-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}


.kps-bst-tabs {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
}

.kps-bst-tab-btn {
    border: 0;
    padding: 0 0 7px;
    background: transparent;
    color: #696e73;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.kps-bst-tab-btn.active {
    color: #111;
    border-bottom-color: #111;
}

.kps-bst-separator {
    color: #c8c8c8;
    font-size: 16px;
}

.kps-bst-view-all {
    margin-top: 55px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #111;
    padding-bottom: 7px;
    white-space: nowrap;
}

.kps-bst-pane {
    display: none;
}

.kps-bst-pane.active {
    display: block;
}

.kps-bst-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.kps-best-seller-section .kps-product-image-wrap {
    height: 330px;
    min-height: 330px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 35px;
}

.kps-best-seller-section .kps-product-image-wrap img {
    height: 260px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .kps-bst-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kps-bst-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .kps-bst-heading {
        display: block;
    }

    .kps-bst-view-all {
        display: inline-block;
        margin-top: 20px;
    }

    .kps-bst-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}




.kps-bst-cols-2 .kps-bst-grid { grid-template-columns: repeat(2, 1fr); }
.kps-bst-cols-3 .kps-bst-grid { grid-template-columns: repeat(3, 1fr); }
.kps-bst-cols-4 .kps-bst-grid { grid-template-columns: repeat(4, 1fr); }
.kps-bst-cols-5 .kps-bst-grid { grid-template-columns: repeat(5, 1fr); }
.kps-bst-cols-6 .kps-bst-grid { grid-template-columns: repeat(6, 1fr); }









/* CHANGE START: Best Seller Elementor Responsive Grid */
/* .kps-bst-grid { display: grid; gap: 30px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) {
.kps-bst-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
.kps-bst-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
} */
/* CHANGE END */




/* CHANGE START: Elementor responsive control support */
.kps-bst-grid {display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
@media (max-width: 1024px) {
.kps-bst-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
.kps-bst-grid {grid-template-columns: repeat(1, minmax(0, 1fr));}
.kps-bst-heading {flex-direction: column;gap: 16px;}
.kps-bst-heading h2 {font-size: 30px;}
}
/* CHANGE END */





/* CHANGE START: Shop archive uses Elementor responsive grid */

.ks-shop-products.kps-product-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:30px; }
@media(max-width:1024px){
.ks-shop-products.kps-product-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
}
@media(max-width:767px){
.ks-shop-products.kps-product-grid{grid-template-columns:repeat(1,minmax(0,1fr));gap:14px;}
}

/* CHANGE END */



/* CHANGE START: hide shop filter from Elementor switch */
.ks-shop-wrap.ks-filter-hidden .ks-shop-sidebar{ display:none !important; }
.ks-shop-wrap.ks-filter-hidden{ display:block; }
.ks-shop-wrap.ks-filter-hidden .ks-shop-main{ width:100%; }
/* CHANGE END */




/* CHANGE START: real WooCommerce rating */
.kps-rating .star-rating { float: none; display: inline-block; margin: 0; color: inherit; }
.kps-rating .star-rating span::before { color: inherit; }
/* CHANGE END */




/* CHANGE START: KPS visual rating stars */
.kps-rating {display: flex; gap: 2px; line-height: 1; margin: 0 0 7px; }
.kps-rating .kps-star { font-size: 14px; }
.kps-rating .kps-star.filled { color: #e9a83a; }
.kps-rating .kps-star.empty { color: #d6d6d6;}
/* CHANGE END */


/* CHANGE START: Elementor hide rating for shop archive */
.ks-shop-wrap.ks-hide-rating .kps-rating { display: none !important; }
/* CHANGE END */

/* CHANGE START: Elementor hide price for shop archive */
.ks-shop-wrap.ks-hide-price .kps-price { display: none !important; }
/* CHANGE END */


/* CHANGE START: Elementor editor + frontend hide price */
.ks-shop-wrap.ks-hide-price .kps-price,
.elementor-editor-active .ks-shop-wrap.ks-hide-price .kps-price,
.elementor-editor-active .elementor-widget-container .ks-shop-wrap.ks-hide-price .kps-price { display: none !important; }
/* CHANGE END */

















































/* KSHOP CHANGE START: Premium Product Card Design */

.kps-product-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transition: all .25s ease;
}

.kps-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0,0,0,.12);
}

.kps-product-image-wrap {
    height: 260px !important;
    min-height: 260px !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #fff6f1 0%, #f4f7ff 100%) !important;
}

.kps-product-image-wrap img {
    height: 225px !important;
    object-fit: contain !important;
}

.kps-badge-wrap {
    top: 12px !important;
    left: 12px !important;
}

.kps-badge {
    border-radius: 7px !important;
    padding: 7px 11px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.kps-new-badge {
    background: #04a321 !important;
}

.kps-sale-badge {
    background: #f02635 !important;
}

.kps-action-icons {
    top: 12px !important;
    right: 12px !important;
    gap: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.kps-icon-btn {
    width: 42px !important;
    height: 42px !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.10) !important;
}


.kps-product-info h1,
.kps-product-info h2,
.kps-product-info h3,
.kps-product-info h4,
.kps-product-info h5,
.kps-product-info h6 {
    margin: 0 0 10px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.kps-rating {
    margin-bottom: 10px !important;
    color: #ff9800 !important;
    font-size: 15px !important;
}

.kps-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f02635 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.kps-price del {
    order: -1;
    margin-left: 0 !important;
    color: #999 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.kps-stock-badge {
/* display: inline-flex; align-items: center; justify-content: center; float: right; margin-top: 0px; background: #dff4df;color: #0b7c25; font-size: 12px; font-weight: 700; padding: 0px 10px; border-radius: 5px; */
    align-items: center;
    justify-content: center;
    float: right;
    margin-top: 0px;
    background: #dff4df;
    color: #0b7c25;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 10px;
    border-radius: 5px;
    display: flex;
    position: absolute;
    width: auto;
    bottom: 0px;
    right: 10px;

}


/* 
.kps-quick-add-btn {
    position: relative;
    width: 100%;
    height: 52px;
    border: 0;
    outline: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all .35s ease;
    margin-top: 18px;

    box-shadow:
    0 0 0 1px rgba(0,0,0,.05),
    0 4px 12px rgba(0,0,0,.04);
}
*/





.kps-quick-add-btn::before {
    content: "🛒";
   /* content: "\f07a"; */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    transition: all .35s ease;
}




/*
.kps-product-card:hover .kps-quick-add-btn{
    background: linear-gradient(90deg,#ff3c3c,#f15a3c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(241,90,60,.25);
}
*/


/* second dark style optional */
/*
.kps-product-card:nth-child(even):hover .kps-quick-add-btn{background: linear-gradient(90deg,#1f2a44,#111827);}*/

/* icon hover */
/*
.kps-product-card:hover .kps-quick-add-btn::before{color: #fff;}
*/

/* mobile */
@media(max-width:767px){

    .kps-quick-add-btn{
        height: 46px;
        font-size: 16px;
        border-radius: 10px;
    }

}











/*
.kps-product-card:nth-child(even) .kps-quick-add-btn {
    background: linear-gradient(135deg, #111b24 0%, #26323d 100%) !important;
}
*/

/* disable old hover hiding */
.kps-actions-hover .kps-quick-add-btn,
.kps-actions-hover .kps-product-card:hover .kps-quick-add-btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

@media (max-width: 575px) {
    .kps-product-card {
        padding: 8px;
    }

    .kps-product-image-wrap {
        height: 220px !important;
        min-height: 220px !important;
    }

    .kps-product-image-wrap img {
        height: 185px !important;
    }

    .kps-quick-add-btn {
        height: 48px !important;
        font-size: 14px !important;
    }
}

/* KSHOP CHANGE END */


























/* KSHOP FIX: premium card add to cart visible */
/* .kps-product-card .kps-quick-add-btn {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 52px !important;
    margin: 22px 0 0 !important;
    border-radius: 7px !important;
    background: #151727  !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.kps-product-card:nth-child(even) .kps-quick-add-btn {
    background: #17222c !important;
} */





/* =====================================================
   KSHOP BUTTON ALWAYS BOTTOM
===================================================== */

.kps-product-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
}

.kps-product-info{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    
}

/*
.kps-quick-add-btn{ margin-top:auto !important; }
*/

.kps-price-row{
    margin-bottom:18px !important;
}














/* KSHOP TOP CATEGORIES START */

.kps-top-categories-section {
    width: 100%;
    font-family: inherit;
}

.kps-top-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.kps-top-category-heading {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.kps-top-category-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.kps-top-category-view-all svg {
    transition: transform .25s ease;
}

.kps-top-category-view-all:hover svg {
    transform: translateX(3px);
}

.kps-top-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.kps-top-category-card {
    display: block;
    overflow: hidden;
    background: #f4f1ed;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.kps-top-category-card:hover {
    color: inherit;
}

.kps-top-category-card.kps-tc-hover-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.kps-top-category-image {
    width: 100%;
    overflow: hidden;
}

.kps-top-category-image img {
    width: 100%;
    height: 118px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.kps-top-category-card:hover .kps-top-category-image img {
    transform: scale(1.04);
}

.kps-top-category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px 10px;
}

.kps-top-category-text {
    min-width: 0;
}

.kps-top-category-title {
    margin: 0 0 2px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
}

.kps-top-category-count {
    display: block;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 500;
    color: #555;
}

.kps-top-category-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 13px rgba(0, 0, 0, .10);
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.kps-top-category-card:hover .kps-top-category-arrow {
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .kps-top-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .kps-top-category-header {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .kps-top-category-heading {
        font-size: 20px;
    }

    .kps-top-category-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .kps-top-category-image img {
        height: 150px;
    }
}

/* KSHOP TOP CATEGORIES END */











































/* KSHOP TOP CATEGORIES REAL SLIDER START */

.kps-top-category-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.kps-top-category-viewport {
    width: 100%;
    overflow: hidden;
}

.kps-top-category-track {
    display: flex !important;
    gap: var(--kps-tc-gap, 14px);
    transition: transform .45s ease;
    will-change: transform;
}

.kps-top-category-track .kps-top-category-card {
    flex: 0 0 calc((100% - (var(--kps-tc-gap, 14px) * (var(--kps-tc-view, 5) - 1))) / var(--kps-tc-view, 5));
    min-width: calc((100% - (var(--kps-tc-gap, 14px) * (var(--kps-tc-view, 5) - 1))) / var(--kps-tc-view, 5));
}

.kps-top-category-slider:not(.kps-tc-slider-enabled) .kps-top-category-track {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kps-tc-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
}

.kps-tc-prev {
    left: 8px;
}

.kps-tc-next {
    right: 8px;
}

@media (max-width: 1024px) {
    .kps-top-category-slider {
        --kps-tc-view: 3;
    }
}

@media (max-width: 767px) {
    .kps-top-category-slider {
        --kps-tc-view: 1;
    }
}

/* KSHOP TOP CATEGORIES REAL SLIDER END */












































