/* بطاقة كود الخصم AB5G */
.ab5g-coupon-card {
    direction: rtl;
    width: 100%;
    margin: 16px 0;
    padding: 18px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-sizing: border-box;
    text-align: right;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ab5g-coupon-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ab5g-coupon-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.ab5g-coupon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab5g-coupon-code {
    flex: 1;
    padding: 11px 14px;
    background: #f7f7f7;
    border: 1px dashed #cfcfcf;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    direction: ltr;
}

.ab5g-copy-button {
    border: 0;
    border-radius: 9px;
    padding: 11px 18px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.ab5g-copy-button:hover {
    opacity: 0.85;
}

.ab5g-copy-button.copied {
    background: #168a45;
}

@media (max-width: 600px) {
    .ab5g-coupon-card {
        padding: 15px;
    }

    .ab5g-coupon-box {
        flex-direction: column;
    }

    .ab5g-coupon-code,
    .ab5g-copy-button {
        width: 100%;
        box-sizing: border-box;
    }
}