/* Main notice at top of checkout */
.anfa-store-notice {
    margin: 0 0 30px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.anfa-store-notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.anfa-store-notice-emoji {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.anfa-store-notice-text {
    flex: 1;
    line-height: 1.6;
}

/* Notice below checkout button */
.anfa-checkout-notice {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fff5f7;
    border: 1px solid #feb2b2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.anfa-checkout-notice-emoji {
    font-size: 18px;
    flex-shrink: 0;
}

/* Disabled button styling */
.anfa-disabled-button {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    filter: grayscale(30%) !important;
}

/* RTL Support */
body.rtl .anfa-store-notice-content {
    text-align: right;
}

/* Force display for notices */
.woocommerce-checkout .anfa-store-notice {
    display: block !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .anfa-store-notice {
        margin: 0 0 20px;
        padding: 15px;
    }
    
    .anfa-store-notice-content {
        gap: 10px;
    }
    
    .anfa-store-notice-emoji {
        font-size: 20px;
    }
} 