.t1-order-detail-page {
  width: 100%;
  padding: 30px 20px 60px;
  background: var(--theme-bg, #fff);
}

/* Page title */
.t1-od-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--theme-text, #111);
}

/* Summary */
.t1-od-summary {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.t1-od-summary-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t1-od-label {
  font-size: 13px;
  color: var(--theme-muted, #666);
}

.t1-od-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-text, #333);
}

/* Addresses */
.t1-od-addresses {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.t1-od-address-block {
  width: 50%;
}

.t1-od-address-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--theme-text, #333);
}

.t1-od-address-text {
  font-size: 14px;
  color: var(--theme-muted, #555);
  line-height: 1.4;
}

/* Items */
.t1-od-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.t1-od-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: var(--theme-radius, 8px);
  border: 1px solid var(--theme-border, #eee);
  background: var(--theme-surface, #fff);
}

.t1-od-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--theme-radius, 6px);
  overflow: hidden;
  background: var(--theme-bg-muted, #f7f7f7);
}

.t1-od-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-od-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t1-od-item-name {
  font-size: 14px;
  color: var(--theme-text, #333);
}

.t1-od-item-price {
  font-size: 15px;
  color: var(--theme-price, var(--theme-primary, #4CAF50));
  font-weight: 600;
}

.t1-od-item-row span:first-child {
  color: var(--theme-muted, #666);
  font-size: 13px;
}

/* Totals */
.t1-od-totals {
  border-top: 1px solid var(--theme-border, #eee);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t1-od-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--theme-text, #333);
}

.t1-od-grand strong {
  font-size: 18px;
  color: var(--theme-price, var(--theme-primary, #4CAF50));
}

/* Responsive */
@media (max-width: 992px) {
  .t1-od-summary,
  .t1-od-addresses {
    flex-direction: column;
    gap: 20px;
  }

  .t1-od-address-block {
    width: 100%;
  }

  .t1-od-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .t1-od-item-img {
    width: 180px;
    height: 180px;
  }
}