/* استایل پایه (دسکتاپ) */
.wqd-discount-message {
    background: linear-gradient(145deg, #f9fafb 0%, #f0f4f8 100%);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.05), 0 4px 10px -4px rgba(34, 197, 94, 0.1);
    margin: 25px 0 15px 0 !important;
    font-size: 16px;
    line-height: 2;
    color: #1e293b;
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
    clear: both;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.wqd-discount-message::before {
    content: "🎁";
    font-size: 20px;
    margin-left: 8px;
    float: right;
    opacity: 0.8;
}

#wqd-live-price {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    margin: 15px 0 20px 0 !important;
    font-size: 1.2em;
    color: #0b3b2c;
    font-weight: 500;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-right: 5px solid #10b981;
    clear: both;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

#wqd-live-price strong {
    color: #065f46;
    font-weight: 700;
}

#wqd-live-price strong img.emoji {
    display: inline !important;
    margin: 0 2px 0 0 !important;
}

/* ========== استایل مخصوص موبایل ========== */
@media (max-width: 768px) {
    .wqd-discount-message,
    #wqd-live-price {
        display: none !important;
    }

    /* تضمین اینکه .add-to-cart-holder و فرزندانش flex نباشند که چیدمان را به هم بریزند */
    .add-to-cart-holder,
    .bakala-button-price {
        display: block !important;
        width: 100% !important;
    }

    .wqd-mobile-price {
        display: block !important;
        width: 100% !important;
        font-size: 14px;
        font-weight: 500;
        color: #1e293b;
        line-height: 1.5;
        text-align: right;
        white-space: nowrap;
        border-top: 1px solid #e9ecef;
        clear: both !important;
        box-sizing: border-box;
    }

    .wqd-mobile-price strong {
        color: #dc2626;
        font-weight: 700;
        margin: 0 4px;
    }

    .wqd-mobile-price .wqd-unit-price {
        color: #dc2626;
        font-weight: 600;
        margin: 0 4px;
    }

    .wqd-mobile-price .wqd-total-price {
        color: #dc2626;
        font-weight: 700;
        margin: 0 2px;
    }

    .wqd-mobile-price img.emoji {
        display: none !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0.6; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}