/* Product Type Badge Styles */
.product-type-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 0;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.badge-preloved {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.badge-wafer {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.3);
}

.badge-others {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(107, 114, 128, 0.3);
}

/* Price Display Enhancement */
.price-container {
    position: relative;
    overflow: hidden;
}

.price-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Product Info Icons */
.product-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a22e 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-size: 1rem;
}

/* Enhanced Product Card */
.product-card-enhanced {
    position: relative;
    overflow: hidden;
}

.product-card-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

/* Quantity Selector Enhanced */
.qty-selector-modern {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-selector-modern button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #d4af37 0%, #c9a22e 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector-modern button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.qty-selector-modern input {
    width: 60px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #15803d;
    margin: 5px;
}

.trust-badge i {
    font-size: 1rem;
}

/* Sticky Add to Cart */
@media (max-width: 768px) {
    .sticky-cart-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .sticky-cart-mobile .price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #d4af37;
    }
    
    .sticky-cart-mobile button {
        flex: 1;
    }
}



