/* Sidebar styles */
.sidebar {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    position: sticky;
  top: 0;

  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  }
  /* Optional: Custom scrollbar style */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}
  .filter-section {
    margin-bottom: 20px;
  }
  
  .filter-heading {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .toggle-button {
    font-size: 18px;
  }
  
  .filter-list {
    display: none; 
    padding-left: 20px;
  }
  
  .filter-list li {
    margin: 5px 0;
  }
  
  .filter-list input {
    margin-right: 10px;
  }
  
  /* When active dropdown is visible */
  .filter-list.active {
    display: block;
  }
  
  .sidebar input[type="checkbox"] {
    cursor: pointer;
  }

  .filter-header{

  overflow-y: auto;
  position: sticky;
  top: 0;
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #eee;
  }
    
  .content-area {
    height: 300px;
    overflow-y: auto;
    padding-left: 20px;
  }
  .filter-header p{
    margin: 0;
  }

  .clear-filters{
    background-color: transparent;
    border: 1px solid #000;
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .applied-filters-section {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }

  .applied-filters-section p {
    margin-bottom: 15px !important;
  }

  .applied-filter-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
  }

  .applied-filter-container p {
     padding: 4px 12px;
      background-color: #69473B;
     border-radius: 30px;
     margin: 0 !important;
     color: #fff;
  }
  
  .product-card {
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  
    transition: transform 0.3s;
    text-align: center;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
  }

  .product-price {
    color: #e67e22;
    font-weight: bold;
  }

  .old-price {
    text-decoration: line-through;
    color: #aaa;
  }

  .product-stars {
    color: gold;
    font-size: 14px;
  }

  .product-icons {
    align-items: end;
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product-card:hover .product-icons {
    opacity: 1;
  }

  .product-icons i {
    background: #ffffffcc;
    padding: 6px;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    font-size: 14px;
  }