/**
 * Product Badge CSS
 */

/* Product Badge Container */
.product-badge {
    margin-bottom: 15px;
}

/* Badge Base Styles */
.badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Best Seller Badge */
.badge.best-seller {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #fff;
    border: none;
}

/* Good Seller Badge */
.badge.good-seller {
    background: linear-gradient(135deg, #4ecdc4, #44bdac);
    color: #fff;
    border: none;
}

/* New Arrival Badge */
.badge.new {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
}

/* Sale Badge */
.badge.sale {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
}

/* Limited Edition Badge */
.badge.limited {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
    border: none;
}

/* Hot Badge (Optional) */
.badge.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border: none;
    animation: pulse 1.5s infinite;
}

/* Featured Badge (Optional) */
.badge.featured {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #fff;
    border: none;
}

/* Out of Stock Badge */
.badge.out-of-stock {
    background: #95a5a6;
    color: #fff;
    border: none;
}

/* Hover Effects */
.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Pulse Animation for Hot Badge */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Badges */
@media (max-width: 768px) {
    .badge {
        padding: 4px 14px;
        font-size: 10px;
    }
}

/* Optional: Badge with Icon */
.badge.best-seller::before {
    content: "🏆 ";
    font-size: 11px;
}

.badge.new::before {
    content: "✨ ";
    font-size: 11px;
}

.badge.sale::before {
    content: "🔥 ";
    font-size: 11px;
}

.badge.limited::before {
    content: "⚡ ";
    font-size: 11px;
}

.badge.hot::before {
    content: "🌶️ ";
    font-size: 11px;
}