/* ===== پیغام هدیه (جعبه اطلاع‌رسانی) ===== */
.wcgm-notice-block {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-right: 6px solid #4caf50;
    border-radius: 16px;
    padding: 16px 24px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    font-size: 15px;
}
.wcgm-notice-block:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.wcgm-notice-block span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 500;
}
/* حذف یا کامنت کردن این بخش */
/*
.wcgm-notice-block span::before {
    content: "🎁";
    font-size: 24px;
    display: inline-block;
}
*/
.wcgm-notice-block .button {
    background: #4caf50;
    border: none;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(76,175,80,0.3);
    white-space: nowrap;
}
.wcgm-notice-block .button:hover {
    background: #388e3c;
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(76,175,80,0.4);
}

/* ===== بلوک هدیه در سبد خرید و تسویه ===== */
.wcgm-gift-block {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 18px;
    padding: 20px 24px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: 0.2s;
}
.wcgm-gift-block:hover {
    border-color: #4caf50;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.wcgm-gift-block .gift-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.wcgm-gift-block .gift-info img {
    border-radius: 12px;
    border: 2px solid #eef2f6;
    max-width: 60px;
    height: auto;
}
.wcgm-gift-block .gift-info .gift-details {
    display: flex;
    flex-direction: column;
}
.wcgm-gift-block .gift-info .gift-details strong {
    color: #0f172a;
    font-size: 16px;
}
.wcgm-gift-block .gift-info .gift-details a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
}
.wcgm-gift-block .gift-info .gift-details a:hover {
    color: #4caf50;
}
.wcgm-gift-block .gift-info .gift-details small {
    color: #64748b;
    font-size: 13px;
}
.wcgm-gift-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.wcgm-change-btn {
    background: #4caf50;
    border: none;
    border-radius: 40px;
    color: #fff !important;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(76,175,80,0.25);
}
.wcgm-change-btn:hover {
    background: #388e3c;
    transform: scale(1.04);
}
.wcgm-change-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.wcgm-remain {
    background: #fef3c7;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #b45309;
    font-weight: 500;
}
.wcgm-no-changes {
    color: #94a3b8;
    font-size: 14px;
}

/* ===== برچسب قیمت هدیه ===== */
.wcgm-gift-price {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-left: 6px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 600px) {
    .wcgm-notice-block,
    .wcgm-gift-block {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .wcgm-notice-block .button,
    .wcgm-gift-actions {
        justify-content: center;
    }
    .wcgm-gift-block .gift-info {
        flex-direction: column;
        align-items: center;
    }
}