/* Product page specific styles */

/* Product filter */
.product-filter ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .product-filter li {
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--bg-lightgrey);
  }
  
  .product-filter li.active,
  .product-filter li:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  /* Product cards */
  .product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--bg-color);
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .product-img {
    overflow: hidden;
  }
  
  .product-img img {
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-img img {
    transform: scale(1.05);
  }
  
  .product-info h4 {
    font-size: 20px;
    font-weight: 600;
  }
  
  .product-info h4 a {
    color: var(--heading-color);
    transition: color 0.3s ease;
  }
  
  .product-info h4 a:hover {
    color: var(--primary-color);
  }
  
  .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  /* Featured product section */
  .featured-product-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .featured-list p {
    margin-bottom: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .product-filter ul {
      gap: 10px;
    }
    
    .product-filter li {
      padding: 6px 15px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 576px) {
    .product-filter ul {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    
    .product-filter li {
      width: 80%;
      text-align: center;
    }
  }
