/* Global Styles */
.container {
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* Space between sidebar and product grid */
}

  
  /* Sidebar */
  .sidebar {
    width: 20%;
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .sidebar h2 {
    font-size: 1.2rem;
    color: #002c86;
    margin-bottom: 1rem;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .sidebar ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .sidebar ul li .count {
    background: #eee;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .sort-bar select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  /* Product Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .product-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .product-card h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  .color-options {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  
  .color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 0.2rem;
  }
  
  .color.black {
    background: #000;
  }
  
  .price {
    font-size: 1.1rem;
    color: #002c86;
    font-weight: bold;
  }
  /* Container to align sidebar and product grid */
.container {
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* Space between sidebar and product grid */
}

/* Sidebar */
.sidebar {
  flex: 0 0 20%; /* Fixed width for the sidebar */
  background: #fff;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Product Grid */
.main-content {
  flex: 1; /* Remaining space for the product grid */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
