/* Product listing grid fixes for consistent card sizes */
.product-listing {
    margin-bottom: 30px;
  }
  
  .product-listing .card {
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.1);
  }
  
  .product-listing .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .product-listing .image-container {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
  }
  
  .product-listing .card-img-top {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
  }
  
  .product-listing .card-title {
    font-size: 16px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
  }
  
  .product-listing .card-body {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  
  .product-listing .contentpoint {
    flex-grow: 1;
    min-height: 60px;
  }
  
  .product-listing .contentpoint ul {
    padding-left: 1.2rem;
    margin-bottom: 10px;
  }
  
  .product-listing .contentpoint li {
    font-size: 13px;
    margin-bottom: 3px;
  }
  
  .product-listing .form-check {
    margin-top: auto;
  }
  
  /* Sale badge styling */
  .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 1;
  }
  
  /* Star rating styling */
  .startating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Color icons styling */
  .color-icons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .color-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid rgba(0,0,0,0.1);
  }
  
  /* Filter section styling */
  .filter-box {
    margin-bottom: 30px;
  }
  
  .filter-box .card-header {
    font-weight: bold;
    background-color: #f8f9fa;
  }
  
  .filter-box .accordion-button {
    padding: 10px 15px;
    font-weight: 500;
  }
  
  .filter-box .accordion-body {
    padding: 15px;
  }
  
  .filter-box .form-check {
    margin-bottom: 8px;
  }
  
  /* Make all product cards in a row the same height */
  @media (min-width: 768px) {
    .row {
      display: flex;
      flex-wrap: wrap;
    }
    
    .col-md-6 {
      display: flex;
    }
    
    .product-listing {
      width: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg-4 {
      display: flex;
    }
  }