.mpjsalescountdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0,0,0,0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 12px 16px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mpjsalescountdown-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0,0,0,0.04);
}

@media (min-width: 1024px) {
    .mpjsalescountdown-wrapper {
        flex-direction: row;
        padding: 12px 20px;
    }
}

.mpjsalescountdown-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #334155;
}

.mpjsalescountdown-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 126, 20, 0.1);
    color: #FD7E14;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: 4px;
}

.mpjsalescountdown-icon {
    width: 16px;
    height: 16px;
}

.mpjsalescountdown-title {
    font-weight: 500;
}

.mpjsalescountdown-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.mpjsalescountdown-code:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.mpjsalescountdown-code.copied {
    background: #dcfce7;
    border-color: #22c55e;
    color: #166534;
}

.mpjsalescountdown-code.copied .mpjsalescountdown-copy-icon {
    display: none;
}

.mpjsalescountdown-code-text {
    letter-spacing: 0.5px;
}

.mpjsalescountdown-price-text {
    color: #64748b;
}

.mpjsalescountdown-price {
    font-weight: 800;
    color: #ef4444;
    font-size: 1.1rem;
}

.mpjsalescountdown-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mpjsalescountdown-timer-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpjsalescountdown-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    font-size: 0.95rem;
    letter-spacing: 1px;
    animation: mpj-pulse-soft 2s infinite;
}

@keyframes mpj-pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
