/* Crownstore — Order detail */
.t1-order-detail-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  background: transparent;
  color: #2a2118;
  font-family: var(--theme-font-family, Jost, system-ui, sans-serif);
  box-sizing: border-box;
}

.t1-od-title {
  margin: 0 0 28px;
  font-family: var(--theme-font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: #2a2118 !important;
  letter-spacing: -0.02em;
}

.t1-od-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 12px;
  background: var(--theme-accent, #b8945a);
}

.t1-od-summary,
.t1-od-addresses {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--theme-border, #c4b8a0);
  box-shadow: 0 10px 32px rgba(42, 33, 24, 0.05);
}

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

.t1-od-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5f54 !important;
}

.t1-od-value {
  font-size: 15px;
  font-weight: 600;
  color: #2a2118 !important;
}

.t1-od-address-block {
  flex: 1;
  min-width: 0;
}

.t1-od-address-title {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a2118 !important;
}

.t1-od-address-text {
  font-size: 14px;
  line-height: 1.55;
  color: #6b5f54 !important;
  white-space: pre-line;
}

.t1-od-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.t1-od-item {
  display: flex;
  gap: 18px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--theme-border, #c4b8a0);
  align-items: center;
}

.t1-od-item-img {
  width: 88px;
  height: 110px;
  overflow: hidden;
  background: #f2ede3;
  flex-shrink: 0;
}

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

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

.t1-od-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #2a2118 !important;
}

.t1-od-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-primary, #4a5c47) !important;
}

.t1-od-item-row {
  font-size: 13px;
  color: #6b5f54 !important;
}

.t1-od-item-row span:first-child {
  color: #6b5f54;
}

.t1-od-totals {
  max-width: 360px;
  margin-left: auto;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid var(--theme-border, #c4b8a0);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t1-od-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: #2a2118 !important;
}

.t1-od-grand {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--theme-border, #c4b8a0);
  font-weight: 700;
}

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

@media (max-width: 720px) {
  .t1-order-detail-page { padding: 28px 16px 56px; }
  .t1-od-summary,
  .t1-od-addresses { flex-direction: column; gap: 16px; padding: 18px; }
  .t1-od-item { align-items: flex-start; }
  .t1-od-totals { max-width: none; margin-left: 0; }
}