/* ご注文製品一覧のUI調整 */
.shipping-products-list {
  background: #f5fafd;
  border-radius: 12px;
  padding: 24px 18px;
  /* align width with the form container */
  max-width: 520px;
  margin: 32px auto;
  box-shadow: 0 2px 8px rgba(79,195,247,0.07);
  /* Keep list normal; we'll center only the summary block */
  text-align: left;

  /* Force centering even if a parent layout (flex/grid/float) interferes */
  display: block;
  float: none;
  justify-self: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.shipping-products-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.shipping-product-li {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e3f2fd;
}
.shipping-product-title {
  font-weight: bold;
  color: #1976d2;
}
.shipping-product-qty, .shipping-product-price, .shipping-product-subtotal {
  margin-left: 8px;
}
.shipping-color-list {
  margin: 8px 0 0 16px;
  padding: 0;
  list-style: none;
}
.shipping-color-li {
  font-size: 0.98em;
  margin-bottom: 4px;
}
.shipping-color-name {
  color: #0288d1;
  font-weight: bold;
}
.shipping-total, .shipping-fee, .shipping-tax, .shipping-grand-total {
  font-size: 1.08em;
  margin: 8px 0;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  text-align: right;
  margin-left: auto;
  margin-right: auto;
}
.shipping-grand-total strong {
  color: #c00;
  font-size: 1.15em;
}
/* 発送先情報入力ページ用CSS */
.shipping-info-main {
  max-width: 520px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(79,195,247,0.08);
  padding: 32px 24px;
}
.shipping-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 24px;
  color: #1976d2;
  text-align: center;
}
.shipping-info-form {
  width: 100%;
}
.shipping-row {
  margin-bottom: 20px;
}
.shipping-row label {
  font-weight: bold;
  display: block;
}
.shipping-row input,
.shipping-row textarea,
.shipping-row select {
  width: 100%;
  padding: 8px;
  border: 1px solid #90caf9;
  border-radius: 8px;
  font-size: 1em;
  margin-top: 6px;
  box-sizing: border-box;
}
.shipping-row textarea {
  resize: vertical;
}
.required {
  color: #c00;
  font-size: 0.95em;
}
.shipping-submit-box {
  text-align: center;
  margin-top: 32px;
}
.shipping-submit {
  background: linear-gradient(90deg, #4fc3f7 0%, #81d4fa 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(79,195,247,0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.shipping-submit:hover {
  background: linear-gradient(90deg, #29b6f6 0%, #4fc3f7 100%);
}
.shipping-error {
  color: #c00;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
