/* Dashboard/Account Styles */
/* Order Product List Styles */
.herlan-order-product-list {
  margin-bottom: 30px;
  border-top: 1px solid #e2e2e2;
}
.herlan-order-product-list .herlan-order-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
  align-items: center;
}
.herlan-order-product-list .herlan-order-item .herlan-product-image {
  width: 80px;
  height: 80px;
  /* Fixed size for consistency */
  flex-shrink: 0;
  margin-right: 20px;
}
.herlan-order-product-list .herlan-order-item .herlan-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details {
  flex-grow: 1;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-product-name {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-product-name a {
  text-decoration: none;
  color: inherit;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-review-prompt {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-stars-placeholder {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 15px;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-stars-placeholder.checked {
  color: #333;
}
.herlan-order-product-list .herlan-order-item .herlan-product-details .herlan-review-action {
  display: inline-block;
}
.btn-create-review {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-create-review:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}
.btn-reviewed {
  display: inline-block;
  padding: 8px 20px;
  background: #ccc;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: default;
}
