/* 
.order-detail-holder{
   padding: 30px 40px;
  padding-top:160px;

}
.order-detail-container {
  display: flex;
  gap: 20px;
    padding: 30px 0px;

  width:100%;
  max-width: var(--width-1280px);
}

.order-left {
  flex: 3;
}

.order-right {
  flex: 1.4;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.order-id {
  color: #2874f0;
  font-weight: 500;
}

.order-detail-container .card {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.order-detail-container .card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.order-detail-container .product-info {
  display: flex;
  gap: 20px;
}

.order-detail-container .product-img img {
  width: 120px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.order-detail-container .product-details h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.4;
}

.order-detail-container .product-details .color,
.order-detail-container .product-details .seller {
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.price {
  font-size: 20px;
font-family: 'roboto-medium';
  margin-top: 8px;
}

.offer {
  font-size: 13px;
  color: #388e3c;
  margin-left: 10px;
}

.status-section {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.status-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 12px;
}

.status-item .check {
  width: 22px;
  height: 22px;
  background: #388e3c;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.updates-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #2874f0;
  text-decoration: none;
}

.updates-link:hover {
  text-decoration: underline;
}

.chat-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.rating-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.rate-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 6px;
}

.stars {
  font-size: 22px;
  letter-spacing: 6px;
  color: #bbb;
  margin-top: 8px;
  cursor: pointer;
}

.stars span:hover,
.stars span:hover ~ span {
  color: #ff9800;
}

.order-detail-container .side-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.delivery-info p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.price-row.discount span:last-child {
  color: #388e3c;
}

.price-row.total {
  font-size: 16px;
font-family: 'roboto-medium';
  margin-top: 10px;
}

hr {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 10px 0;
}
.payment-method {
  font-size: 14px;
  margin: 15px 0;
  color: #444;
}
.invoice-btn {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.invoice-btn:hover {
  background: #2874f0;
  color: #fff;
  border-color: #2874f0;
}

.offers {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}


@media (max-width: 992px) {
  .order-detail-container {
    flex-direction: column;
  }

  .order-right {
    width: 100%;
  }

  .product-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-img img {
    width: 150px;
  }
} */