.sticky-add-to-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 100%;
    background-color: #EAE3F7;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.4s ease-out;
    padding: 16px;
    border: 3px solid #e0dbfa;
}

.sticky-add-to-cart.visible {
    display: block;
    transform: translateX(-50%) translateY(0);
}

.sticky-add-to-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sticky-product-image {
    flex-shrink: 0;
    margin-right: 10px;
}
.sticky-add-to-cart-content .sticky-product-image img {
    width: 39px; 
    height: 39px;
    border-radius: 12px;
    background-color: #ffffff;
    object-fit: contain;
    border: 2px solid #fff;
    margin: 0;
}

.sticky-add-to-cart-content .single_add_to_cart_button::before {
    /*display:none !important;*/
}

.sticky-product-price {
    flex-grow: 1;
    text-align: center;
    margin-right: 10px;
}
.sticky-add-to-cart-content .sticky-product-price p.price {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-wrap: nowrap;
    white-space: nowrap;
}

.sticky-add-to-cart-content .sticky-product-price .woocommerce-Price-amount.amount {
     color: #3A1B6E;
     font-weight: 700;
     font-size: 16px;
}
/* Style for the slashed (sale) price */
.sticky-add-to-cart-content .sticky-product-price del .woocommerce-Price-amount.amount {
    font-size: 12px;
    opacity: 0.7;
    color: #666;
    margin-right: 5px;
}

.sticky-add-to-cart-content .sticky-product-price ins {
    text-decoration: none;
}

.sticky-add-to-cart-content form.cart {
    flex-shrink: 0;
    margin: 0; /* Remove default form margins */
}
.sticky-add-to-cart-content form.cart .single_add_to_cart_button {
    background-color: #3A1B6E;
    color: #ffffff;
    border: none;
    border-radius: 21px;
    padding:9px 25px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    line-height: 1;
    text-transform:none;
}

@media (min-width: 992px) {
  .sticky-add-to-cart {
    display: none !important;
  }
}