/* Club Shop Styles */

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-green);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-maroon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-sizes {
    margin-bottom: 1rem;
}

.size-label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.size-option {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    margin: 0.2rem;
    border: 1px solid var(--primary-green);
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover,
.size-option.selected {
    background: var(--primary-green);
    color: white;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--primary-maroon);
    transform: translateY(-2px);
}

.cart-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.cart-summary h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
}

.cart-total {
    font-size: 1.3rem;
    text-align: right;
    margin: 1rem 0;
    color: var(--primary-green);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.shop-info {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 1.5rem;
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Filter animations */
.product-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .shop-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .shop-info {
        padding: 2rem 1rem;
    }
}
