/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #343a40;
    /* Dark background */
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default, shown by JS */
}

.cookie-consent-bar a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-bar a:hover {
    color: #ccc;
}

/* Optional: styling for disabled state if not using standard disabled attribute */
.btn-add-to-cart-disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}