.order-summary-card {
  padding: 20px;
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid #b873323d;
}

.order-summary-card .order-summary-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #343434;
  font-family: "Raleway";
}

.order-summary-card .order-summary-box {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 4px;
}

/* Row styling */
.order-summary-card .summary-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: none;
  justify-content: space-between;
}

.order-summary-card .summary-row:last-child {
  margin-bottom: 0;
}

/* Label fixed width */
.order-summary-card .label {
  font-size: 18px;
  font-weight: 500;
  color: #3d3a3a;
}

/* Value aligned right */
.order-summary-card .value {
  font-size: 18px;
  font-family: "Roboto Slab";
  font-weight: 700;
  color: #3d3a3a;
}

/* Total row highlight */
.order-summary-card .total-row .label {
  color: #884200;
  font-weight: 700;
}

.order-summary-card .total-value {
  color: #884200;
  font-weight: 700;
}

/* Rating section */
.order-summary-card .rating-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.order-summary-card .rating-label {
  font-size: 14px;
  color: #555;
}

.order-summary-card .stars {
  font-size: 18px;
  color: #333;
  letter-spacing: 3px;
  cursor: pointer;
}

/* Submit link */
.order-summary-card .submit-link {
  text-align: right;
  margin-top: 10px;
}

.order-summary-card .submit-link a {
  font-size: 13px;
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}

/*==================== Responsive ====================== */
@media (min-width: 0px) and (max-width: 574px) {
  .order-summary-card .label,
  .order-summary-card .value {
    font-size: 14px;
  }
  .order-summary-card {
    padding: 7px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tracking-card .step-description {
    max-width: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .order-summary-card .label {
    font-size: 17px;
  }
  .order-summary-card .value {
    font-size: 17px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .order-summary-card .label {
    font-size: 16px;
  }
  .order-summary-card .value {
    font-size: 16px;
  }
}
