/**
 * Frontend styles for Country Shipping Restriction Notice
 */

.wcsr-shipping-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 1px solid #fecaca;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.08);
}

.wcsr-notice-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fef2f2;
    border-radius: 50%;
    color: #dc2626;
}

.wcsr-notice-icon svg {
    width: 20px;
    height: 20px;
}

.wcsr-notice-content {
    flex: 1;
    min-width: 0;
}

.wcsr-notice-title {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #991b1b;
    letter-spacing: -0.01em;
}

.wcsr-notice-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #7f1d1d;
}

.wcsr-restricted-countries {
    display: inline;
    font-weight: 500;
    color: #dc2626;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .wcsr-shipping-notice {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .wcsr-notice-icon {
        width: 32px;
        height: 32px;
    }
    
    .wcsr-notice-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .wcsr-notice-title {
        font-size: 13px;
    }
    
    .wcsr-notice-text {
        font-size: 12px;
    }
}
