.item-type-badge{
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  display: inline-block;
  line-height: 1.6;
}

.item-type-badge.stock{
  background:#f0f0f0;
  color:#333;
}

.item-type-badge.collections{
  background:#f0f8ff;
  color:#0b3d91;
}

.checkout-wrapper {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 24px 100px;
}

.checkout-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.checkout-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}

.checkout-header h1 {
  font-family: 'Freight', serif;
  font-size: 30px;
  font-weight: 400;
}

.checkout-section {
  margin-bottom: 40px;
}

.checkout-section-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
}

.checkout-item-sku {
  font-family: 'Freight', serif;
  color: #111;
}

.checkout-item-qty {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1px;
  white-space: nowrap;
}

.checkout-item-price {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  margin-top: 4px;
}

.checkout-total {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  margin-top: 8px;
}

.checkout-total-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.checkout-total-value {
  font-family: 'Freight', serif;
  font-size: 24px;
  font-weight: 400;
  color: #111;
}

.checkout-user-info {
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.checkout-user-info strong {
  color: #111;
  font-weight: 500;
}

.checkout-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.checkout-terms {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
}

.checkout-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #111;
  flex-shrink: 0;
}

.checkout-terms label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #111;
  line-height: 1.35;
  cursor: pointer;
  user-select: none;
}

.checkout-terms-strong {
  color: #9a9a9a;
  font-weight: 600;
}

.checkout-terms-error {
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  color: #b00020;
  letter-spacing: .2px;
}

.btn-thelios.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}

.checkout-item-info-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkout-item-image {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 3px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.checkout-item-placeholder {
  width: 72px;
  height: 54px;
  background: #f0f0f0;
  border-radius: 3px;
  flex-shrink: 0;
}

.checkout-item-brand {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1px;
  margin-top: 3px;
}

.checkout-item-summary {
  text-align: right;
  flex-shrink: 0;
  margin-left: 16px;
}

.checkout-hidden {
  display: none;
}

.is-hidden {
  display: none;
}