/* Country Rules - Frontend styles */
/* Hide unavailable products in listings (new products, best sellers, etc.) */
.js-product.country-rule-unavailable {
    display: none !important;
}

.country-rule-unavailable {
    opacity: 0.6;
}

.country-rule-unavailable .card-add-btn,
.country-rule-unavailable .btn-add-to-cart {
    display: none !important;
}

.country-rule-message {
    color: #c9302c;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
}

.country-rule-price-override {
    font-weight: bold;
}

/* Cart notice styling */
.countryrules-cart-notice {
    position: relative;
    padding: 15px 40px 15px 15px;
    margin: 10px 0;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
}

.countryrules-cart-notice .close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #856404;
}

.countryrules-cart-notice .material-icons {
    font-size: 20px;
}
