
.orders-section{
    padding: 50px 0;
}


.order-page-title {
  font-size: 30px;
  color: #3b6026;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: center;
  font-family: var(--Heading-font);
}

.order-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--para-font);
}


.order-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
align-items: center;
justify-content: center;
margin-bottom: 30px;
font-family: var(--Heading-font);
 
}

.order-filters button {
  padding: 8px 16px;
  background: #e7f1e4;
  border: 1px solid #bcd2b1;
  border-radius: 5px;
  color: #3b6026;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-filters button.active,
.order-filters button:hover {
  background: #d89200;
  color: #fff;
}


.order-card {
  background: #fff;
  
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(100, 130, 100, 0.08);
 
}

.order-header {
    text-align: end;
     font-size: 14px;
    margin-bottom: 15px;
    color: #444;
    gap: 10px;

}

.order-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.order-body img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.order-body img:hover {
  transform: scale(1.05);
}

.order-details h4 {
  margin-bottom: 8px;
  color: #3b6026;
}

.order-details p {
  font-size: 14px;
  margin: 8px 0;
  font-family: var(--para-font);
}


.status {
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 13px;
}

.status.delivered {
  background: #d1f4d1;
  color: #2e7d32;
}

.status.inprogress {
  background: #fff5cc;
  color: #a87c00;
}

.status.cancelled {
  background: #fce0e0;
  color: #d32f2f;
}
.order-id{
    margin-bottom: 15px;
    font-size: 15px;
    font-family: var(--Heading-font);
}
.order-id strong{
    padding-left: 10px;
    font-size: 14px;
    color: #444;
}
.order-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-actions button {
  padding: 8px 14px;
  background: #d89200;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.order-actions button:hover {
  background: #fff;
  color: #d89200;
  border: 1px solid #d89200;
}


.no-orders {
  text-align: center;
  margin-top: 60px;
}

.empty-img{
      width: 120px;
      height: 120px;
      background-color: #e4f5e9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto ;
      margin-bottom: 30px;
}
.empty-img img {
  width: 60px;
  margin-bottom: 20px;

}


.no-orders h3 {
  font-size: 24px;
  color: #3b6026;
  margin-bottom: 10px;
  font-family: var(--Heading-font);
}

.no-orders p {
  font-size: 16px;
  color: #666;
   font-family: var(--para-font);
}

.shop-now-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #3b6026;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.shop-now-btn:hover {
  background: #2c4c1b;
}


@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .order-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-body img {
    width: 90px;
    height: 90px;
  }

  .order-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .order-actions button {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .order-page-title {
    font-size: 24px;
  }

  .order-subtitle {
    font-size: 14px;
  }

  .order-filters {
    flex-direction: column;
    gap: 8px;
  }

  .order-filters button {
    width: 60%;
  }

  .order-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
