/**
 * SD VIP Styles
 */

/* VIP Badge - Base Style */
.sd-vip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    animation: sd-vip-shine 3s ease-in-out infinite;
}

/* VIP Badge - Mobile Menu */
.sd-vip-badge-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* VIP Badge - Header (Desktop) */
.sd-vip-badge-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
    animation: sd-vip-shine 3s ease-in-out infinite;
}

/* Shine animation */
@keyframes sd-vip-shine {

    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
    }
}

/* VIP Badge with star icon */
.sd-vip-badge::before,
.sd-vip-badge-header::before {
    content: '⭐';
    margin-right: 3px;
    font-size: 9px;
}

/* Balance shortcode with VIP */
.sd-balance-shortcode .sd-vip-badge {
    margin-left: 8px;
    vertical-align: middle;
}

/* Cart VIP discount label */
.woocommerce-cart-form .sd-vip-discount-label {
    color: #FFD700;
    font-weight: bold;
    font-size: 12px;
}