/* LUXURY THEME BADGES */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 8px;
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.badge-warning {
    background: #fff8e1;
    color: #f57c00;
}

.status-badge.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.badge-info {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.badge-danger {
    background: #ffebee;
    color: #c62828;
}

.status-badge.badge-secondary {
    background: #f5f5f5;
    color: #616161;
}

.status-badge.badge-primary {
    background: #e8eaf6;
    color: #3f51b5;
}

/* Status Text Colors only (using specific selectors instead of !important) */
.status-pending {
    color: #f57f17;
}

.status-processing {
    color: #1565c0;
}

.status-shipped {
    color: #2e7d32;
}

.status-delivered {
    color: #00695c;
}

.status-cancelled {
    color: #c62828;
}

.status-returned {
    color: #6a1b9a;
}

.status-default {
    color: #777;
}

/* Sale Badge */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Accessibility contrast fix for badges */
.badge.bg-danger {
    background-color: #c82333;
    color: #ffffff;
}

/* Premium Flash Sale Tag (Renamed to avoid conflicts) */
.luxury-fs-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.luxury-fs-tag i {
    color: #fff;
    font-size: 0.8rem;
    animation: flash-pulse 2s infinite;
}

@keyframes flash-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.product-card:hover .luxury-fs-tag {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}