/**
 * MMGW Checkout Notices — Block Checkout
 * Modern, minimalistic inline notices for payment restrictions.
 * @version 2.5.3
 */

.mmgw-cn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    margin: 8px 0 16px;
    animation: mmgw-cn-fadein 0.3s ease;
}

@keyframes mmgw-cn-fadein {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Block shipping variant */
.mmgw-cn--block_shipping {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #7f1d1d;
}

.mmgw-cn--block_shipping .mmgw-cn__icon {
    color: #dc2626;
}

/* Threshold variant */
.mmgw-cn--threshold {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
}

.mmgw-cn--threshold .mmgw-cn__icon {
    color: #d97706;
}

/* Icon */
.mmgw-cn__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.mmgw-cn__icon svg {
    display: block;
}

/* Body */
.mmgw-cn__body {
    flex: 1;
    min-width: 0;
}

.mmgw-cn__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mmgw-cn__msg {
    font-size: 13.5px;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* Actions */
.mmgw-cn__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mmgw-cn__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    line-height: 1;
}

.mmgw-cn__btn:active {
    transform: scale(0.97);
}

/* Block shipping button */
.mmgw-cn--block_shipping .mmgw-cn__btn {
    background: #dc2626;
    color: #fff;
}

.mmgw-cn--block_shipping .mmgw-cn__btn:hover {
    background: #b91c1c;
}

/* Threshold button */
.mmgw-cn--threshold .mmgw-cn__btn {
    background: #d97706;
    color: #fff;
}

.mmgw-cn--threshold .mmgw-cn__btn:hover {
    background: #b45309;
}
