.category-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(17, 17, 17, 0.6);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 25px;
    color: var(--honey-beige);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--honey-gold);
    color: var(--warm-black);
    border-color: var(--honey-gold);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 196, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--honey-gold);
    box-shadow: 0 15px 40px rgba(255, 183, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1;
}

.product-badge.limited {
    background: linear-gradient(135deg, var(--honey-orange), var(--honey-gold));
    color: var(--warm-black);
    animation: pulse 2s infinite;
}

.product-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.hexagon-product {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    transition: transform 0.3s;
}

.product-card:hover .hexagon-product {
    transform: rotate(10deg) scale(1.1);
}

.product-title {
    font-size: 1.3rem;
    color: var(--honey-yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-description {
    color: rgba(255, 244, 214, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--honey-gold);
    margin-bottom: 1.5rem;
}

.product-btn {
    width: 100%;
}

/* Cart Preview */
.cart-preview {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--honey-gold);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-content h3 {
    color: var(--honey-yellow);
    margin-bottom: 0.5rem;
}

.cart-content p {
    color: var(--honey-beige);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .cart-preview {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}
