/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:51 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
... and 1 more hidden warnings

**/
#customer-orders-{{ section.id }} {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.customer-orders-section {
  margin-bottom: 40px;
}

.customer-orders-header {
  margin-bottom: 32px;
}

.customer-orders-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
}

.customer-orders-subtitle {
  margin: 0;
  opacity: 0.7;
}

.orders-grid {
  background: white;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 48px;
}

.order-card {
  margin-bottom: 24px;
  border-left: 2px solid rgba(165, 205, 167, 1);
  padding-left: 16px;
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.order-number {
  margin: 0;
  font-size: 20px;
}

.order-number a {
  text-decoration: none;
}

.order-date {
  margin-top: 4px;
  opacity: 0.7;
  font-size: 14px;
}

.orders-grid .order-total {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  line-height: 1em;
}

.order-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  background: rgba(248, 249, 255, 1);
}

.order-product {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.order-product-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.product-title {
  margin: 0 0 4px;
  font-weight: 600;
}

.product-meta {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.more-items {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.order-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.orders-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.orders-empty-state,
.orders-login-card {
  text-align: center;
  padding: 60px 24px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
}

@media screen and (max-width: 749px) {

  .customer-orders-title {
    font-size: 26px;
  }

  .order-card {
    padding: 20px;
  }

  .order-card-top {
    flex-direction: column;
  }

  .order-total {
    font-size: 16px;
  }

  .order-card-actions {
    flex-direction: column;
  }

  .order-card-actions .button {
    width: 100%;
  }

}
 
h3.order-number a {
  color: black;
}

.order-card-top .number-date {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.order-card-top .number-date h3,
.order-card-top .number-date p,
.order-card-top .number-date a {
  line-height: 1em;
  margin: 0;
  padding: 0;
}

.orders-grid h4 {
  margin-bottom: 24px;
  font-family: scandia-web;
  font-weight: bold;
  font-size: 22px;
}

.orders-grid h4 a {
  color: black;
  text-decoration: none;
}

