.jkc-sticky-add-to-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f6f7;
    border-top: 1px solid #e9edef;
/*    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);*/
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.jkc-sticky-add-to-cart-bar.visible {
    transform: translateY(0);
}

.jkc-sticky-add-to-cart-bar .jkc-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px;
}

.jkc-product-thumb img {
    width: 80px;
    border: 1px solid #e9edef;
    height: auto;
    border-radius: 4px;
    margin-right: 15px;
}

.jkc-product-info {
    flex: 1;
    margin-left: 10px;
}

.jkc-product-title {
    display: block;
    font-size: 22px;
    font-weight: 600;
    font-family: "Montserrat", Sans-serif;
    color: #130141;
    margin-bottom: 4px;
    text-decoration: none;
}

.jkc-product-price {
    font-size: 18px;
    color: #1f2b5b;
}

.jkc-product-price del {
	text-decoration: line-through;
    opacity: 20%;
    font-weight: 200 !important;
}

.jkc-add-to-cart,
.jkc-add-to-wishlist {
    margin-left: 15px;
}

.jkc-add-to-cart a i {
    margin-right: 10px;
    transition: 0.3s all;
}

.jkc-add-to-cart a:hover i {
    transform: rotate(-10deg);
    transition: 0.3s all;
}

.jkc-add-to-cart > p.product.woocommerce.add_to_cart_inline {
    margin-bottom: 0 !important;
}

.jkc-add-to-cart .woocommerce-Price-amount {
    display: none;
}

.jkc-add-to-cart a {
    background: #e5f789 !important;
    color: #130141 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    font-family: "Montserrat", Sans-serif !important;
}

/* Hide wishlist text, show only the heart icon */
.jkc-add-to-wishlist .yith-wcwl-add-button .button {
    padding: 0;
    width: 36px;
    height: 36px;
    text-indent: -9999px;
    overflow: hidden;
}

.jkc-add-to-wishlist .yith-wcwl-icon-svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Optional: change heart color on hover */
.jkc-add-to-wishlist .yith-wcwl-icon-svg:hover {
    fill: #e53e3e;
}

@media only screen and (max-width: 1024px) {
    .jkc-sticky-inner > .jkc-product-thumb {
        display: none;
    }

    .jkc-sticky-inner > .jkc-product-info {
        display: none;
    }

    .jkc-sticky-inner .product.woocommerce.add_to_cart_inline {
        grid-template-columns: 100%;
    }
}