body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  /* padding: 0px 20px; */
}

.order-container {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.order-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-info-row {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.order-info-row p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

.order-info-row strong {
  font-size: 14px;
  font-weight: 900;
}
.order-info-row a {
  color: #ff826b;
}

/* Artist link styling */
.prod-attr a {
  color: #fd9d8c !important; /* Consistent with your heading color */
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-item-qty.badge-style {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #e9e9e9;       
  color: #222;                     
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ddd;         
  cursor: default;                
  user-select: none;              
}


.order-info {
  flex: 1;
  padding: 16px;
}

.order-info p {
  margin-bottom: 8px;
  color: #555;
}

.order-info strong {
  font-weight: 600;
}

.order-status {
  font-size: 16px;
  font-weight: bold;
  color: #27ae60;
}

.order-status a {
  font-size: 16px;
  font-weight: bold;
}

.order-item-box {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .order-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .order-info-row {
    text-align: center;
    padding: 10px;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
  }
}
