/* 
.order-container {
  display: flex;
  gap: 20px;
  padding: 30px 40px;
  background: #f1f3f6;
  min-height: 100vh;
  padding-top:160px;
}

.filters {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  height: fit-content;
}

.filters h2 {
  font-size: 18px;
  margin-bottom: 20px;
 font-family: 'roboto-medium';
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 13px;
  margin-bottom: 12px;
  color: #878787;
  font-family: 'roboto-medium';
  letter-spacing: 0.5px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #212121;
}

.filter-group input {
  margin-right: 8px;
}

.orders {
  flex: 1;
}

.search-bar {
  display: flex;
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 14px;
}

.search-bar button {
  background: #2874f0;
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: 0.3s;
}

.search-bar button:hover {
  background: #1f5edb;
}

.order-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: 0.2s ease;
  justify-content: space-between;
}

.order-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.order-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 20px;
}

.order-details {
  flex: 2;
}

.order-details h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #212121;
}

.order-details .color {
  font-size: 13px;
  color: #878787;
}

.price {
  width: 120px;
  font-family: 'roboto-medium';
  font-size: 15px;
  color: #212121;
}

.status {
  font-size: 14px;
}

.status .delivered {
  font-family: 'roboto-medium';
  color: #212121;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status .dot {
  width: 8px;
  height: 8px;
  background: #26a541;
  border-radius: 50%;
  display: inline-block;
}

.status .sub-text {
  font-size: 13px;
  color: #878787;
  margin: 4px 0 8px;
}

.status a {
  font-size: 14px;
  color: #2874f0;
  text-decoration: none;
  font-weight: 500;
}

.status a:hover {
  text-decoration: underline;
}


.orders a {
  text-decoration: none;
  color: inherit;
  display: block;
}


@media (max-width: 992px) {
  .order-container {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .order-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    margin: 10px 0;
  }

  .status {
    margin-top: 10px;
  }
} */