/* Sticky Add to Cart Bar - Mobile Only */
#sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 15px;
    display: flex;
    /* Flex by default, hidden by transform */
    transform: translateY(100%);
    border-top: 1px solid #eee;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}

#sticky-cart-bar.visible {
    transform: translateY(0);
}

#sticky-cart-bar .product-info {
    display: flex;
    flex-direction: column;
}

#sticky-cart-bar .product-title {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

#sticky-cart-bar .product-price {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

#sticky-cart-bar .sticky-cta-button {
    background-color: #d9534f;
    /* Match site primary color if known, or generic CTA */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

/* Sticky bar enabled on all devices now */