.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--stickyCartColor, #fff);
    color: var(--stickyCartTextColor, #3a3a3a);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1000;
    max-height: 65px;
    display: none;
}

.sticky-cart.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .cart-content {
        padding: 10px;
    }
}

.sticky-cart .product-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding-bottom: 5px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    flex-grow: 1;
}

.sticky-cart .product-name {
    font-size: 1em;
    margin: 0;
    cursor: pointer;
}

.price-container {
    display: flex;
    align-items: center;
}

.product-price {
    color: var(--stickyCartPriceColor, #0066ff);
    margin: 0 10px 0 0;
}

.product-compare-price {
    margin: 0;
}

.cart-actions {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .cart-actions {
        margin-bottom: 6px;
    }
}


.selectors {
    display: flex;
    flex-wrap: nowrap;
    margin-right: 10px;
    margin-bottom: 10px
}
.selectors select {
    margin-right: 5px;
    width: 150px;
    box-sizing: border-box;
}

.add-to-cart {
    background-color: var(--stickyCartButtonColor, #3a3a3a);
    color: var(--stickyCartButtonTextColor, #fff);
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 300px;
}

.buy-now {
    background-color: #00000000;
    color: var(--stickyCartTextColor, #3a3a3a);
    border: 1px solid var(--stickyCartTextColor, #3a3a3a);
    padding: 10px;
    cursor: pointer;
    width: 300px;
}

@media (max-width: 600px) {
    .sticky-cart .product-image,
    .sticky-cart .product-name,
    .sticky-cart .selectors {
        display: none;
    }

    .add-to-cart {
        width: 200px;
    }

    .buy-now {
        width: 200px;
    }

    .sticky-cart {
        padding: 10px;
    }
}
