:root {
  --site-blue: #00678e;
  --site-blue-dark: #15568d;
  --site-blue-deep: #084b70;
  --site-red: #a43b32;
  --site-yellow: #f4df35;
  --ink: #333;
  --muted: #68737b;
  --line: #d8dde1;
  --pale-blue: #f1f7fa;
  --paper: #fff;
  --shadow: 0 5px 18px rgba(29, 65, 84, .12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Roboto, "Microsoft JhengHei", "Noto Sans TC", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--site-blue-dark); text-decoration: none; }
a:hover { color: var(--site-red); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 18px;
  padding: 10px 16px;
  color: #fff;
  background: #222;
}
.skip-link:focus { top: 12px; }

.site-header { background: #fff; }
.header-photo {
  position: relative;
  height: 198px;
  overflow: hidden;
  background: url("/assets/img/school-campus.png") center 52% / cover no-repeat;
}
.header-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255,255,255,.78);
}
.top-utility,
.header-main {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}
.top-utility {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  height: 47px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}
.top-utility span { color: #999; }
.top-utility a { color: #333; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.site-logo { display: block; flex: 0 1 520px; }
.site-logo img { display: block; width: 500px; }
.header-tools {
  display: flex;
  flex: 0 1 480px;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
}
.site-search {
  display: flex;
  flex: 1;
  max-width: 350px;
  border: 2px solid var(--site-red);
  background: #fff;
}
.site-search input {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 8px 12px;
  border: 0;
  outline: 0;
}
.site-search button {
  width: 62px;
  border: 0;
  color: #fff;
  background: var(--site-red);
  font-weight: 700;
}
.header-order-link {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--site-blue);
  font-weight: 700;
  white-space: nowrap;
}
.header-order-link:hover { color: #fff; background: var(--site-blue-dark); }

.main-menu-wrap {
  background: var(--site-blue);
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.main-menu {
  display: flex;
  width: min(1220px, calc(100% - 40px));
  min-height: 65px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.main-menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 17px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.main-menu a:hover,
.main-menu a.is-active { color: var(--site-yellow); background: rgba(0,0,0,.08); }
.menu-toggle {
  display: none;
  width: 100%;
  padding: 12px 20px;
  border: 0;
  color: #fff;
  text-align: left;
  background: var(--site-blue);
  font-weight: 700;
}
.menu-toggle span { margin-right: 7px; }

.breadcrumb {
  border-bottom: 1px solid #e5eaed;
  background: var(--pale-blue);
}
.breadcrumb > div {
  display: flex;
  width: min(1220px, calc(100% - 40px));
  min-height: 50px;
  margin: 0 auto;
  gap: 8px;
  align-items: center;
  color: #59656c;
  font-size: 15px;
}
.breadcrumb strong { font-weight: 500; }

.site-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  width: min(1220px, calc(100% - 40px));
  margin: 38px auto 80px;
}
.site-sidebar { min-width: 0; align-self: start; }
.site-sidebar > h2 {
  margin: 0;
  padding: 15px 16px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2,72,117,.95), rgba(14,113,157,.86)),
    url("/assets/img/school-campus.png") center / cover;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .04em;
}
.sidebar-nav {
  display: grid;
  border: 1px solid #cbd5dc;
  border-top: 0;
  background: #fff;
}
.sidebar-nav a {
  padding: 10px 15px;
  border-bottom: 1px dashed #c7cdd1;
  color: var(--site-blue-dark);
  font-weight: 700;
}
.sidebar-nav a:last-child { border-bottom: 0; }
.sidebar-nav a:hover,
.sidebar-nav a.is-current {
  color: var(--site-red);
  background: #f7fafb;
}
.sidebar-nav .sidebar-order-link {
  color: #fff;
  background: var(--site-red);
}
.sidebar-nav .sidebar-order-link:hover { color: #fff; background: #852f29; }
.sidebar-info {
  margin-top: 24px;
  padding: 17px;
  border: 1px solid #d7e1e6;
  background: var(--pale-blue);
  font-size: 14px;
}
.sidebar-info h3 {
  margin: 0 0 10px;
  color: var(--site-blue-dark);
  font-size: 17px;
}
.sidebar-info p { margin: 6px 0; }
.sidebar-info dl, .sidebar-info dd { margin: 0; }
.sidebar-info dl > div { margin-top: 10px; }
.sidebar-info dt { color: var(--muted); }
.sidebar-info dd { color: #222; font-weight: 700; }

.catalog-main,
.form-page { min-width: 0; }
.content-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7d7d7;
}
.content-title > span {
  display: block;
  width: 15px;
  height: 28px;
  border-left: 5px solid #70a73d;
  border-right: 5px solid #efc52b;
}
.content-title h1 {
  margin: 0;
  color: #333;
  font-size: 29px;
  font-weight: 700;
}
.store-notices { display: grid; gap: 10px; margin: 20px 0; }
.store-notice {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid #d6e2e8;
  border-left: 4px solid var(--site-blue);
  background: var(--pale-blue);
  font-size: 15px;
}
.store-notice strong { color: var(--site-blue-deep); }
.store-notice.maintenance,
.store-notice.pause {
  border-color: #e5c9c6;
  border-left-color: var(--site-red);
  background: #fff7f6;
}
.store-notice.maintenance strong,
.store-notice.pause strong { color: var(--site-red); }
.store-notice.stock {
  border-color: #e6dca9;
  border-left-color: #b38a00;
  background: #fffdf2;
}
.store-notice.stock strong { color: #7b6200; }
.order-notices { margin-top: 18px; }
.homepage-banner-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}
.homepage-banner {
  position: relative;
  min-height: 210px;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--site-blue-deep), var(--site-blue));
  box-shadow: var(--shadow);
}
a.homepage-banner:hover { color: #fff; }
.homepage-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,48,76,.84), rgba(4,48,76,.26));
}
.homepage-banner-copy {
  position: relative;
  z-index: 1;
  display: block;
  width: min(650px, 100%);
}
.homepage-banner-copy strong,
.homepage-banner-copy small { display: block; }
.homepage-banner-copy strong { font-size: clamp(25px, 3.3vw, 38px); line-height: 1.25; }
.homepage-banner-copy small { margin-top: 8px; font-size: 17px; line-height: 1.6; }
.catalog-intro {
  margin: 24px 0 32px;
  padding: 23px 26px;
  border-left: 4px solid var(--site-blue);
  background:
    linear-gradient(rgba(255,255,255,.93), rgba(255,255,255,.93)),
    url("/assets/img/paper-texture.png");
}
.catalog-intro p { margin: 0 0 10px; }
.catalog-intro p:last-child { margin-bottom: 0; }

.souvenir-information {
  margin-top: 26px;
  padding: 28px 30px;
  border-left: 4px solid var(--site-blue);
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("/assets/img/paper-texture.png");
}
.souvenir-information > p { margin-top: 0; }
.information-notes {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid #d2dde3;
  background: rgba(241,247,250,.8);
}
.information-notes p { margin: 0 0 6px; }
.information-notes ol { margin: 5px 0 0; padding-left: 1.5em; }
.information-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.search-summary {
  margin: 22px 0;
  padding: 13px 16px;
  border-left: 4px solid var(--site-blue);
  background: var(--pale-blue);
}
.product-list { display: grid; margin-top: 23px; gap: 0; }
.product-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  min-width: 0;
  padding: 24px 10px 28px;
  border-bottom: 1px dashed #c9ced1;
}
.product-row:first-child { padding-top: 6px; }
.product-row .product-image {
  display: grid;
  overflow: hidden;
  width: 230px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  padding: 10px;
  place-items: center;
  border: 1px solid #d2d7da;
  background: #fff;
}
.product-row .product-image > img {
  display: block;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}
.image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 18px;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    url("/assets/img/school-gate.jpg") center / cover;
}
.image-fallback img { width: min(88%, 240px); }
.product-details { min-width: 0; }
.product-details > h2 {
  margin: 0 0 12px;
  color: var(--site-red);
  font-size: 23px;
  font-weight: 500;
  text-align: center;
}
.product-details dl { margin: 0; }
.product-details dl > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 12px;
  padding: 8px 12px;
  border-top: 1px dashed #c9ced1;
}
.product-details dt {
  color: #4d8b35;
  font-weight: 800;
  letter-spacing: .12em;
}
.product-details dd { min-width: 0; margin: 0; }
.product-details dd small {
  display: block;
  margin-top: 2px;
  color: var(--site-red);
}
.empty-state {
  padding: 55px 30px;
  border: 1px dashed #aebbc3;
  text-align: center;
  background: #f8fafb;
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 20px;
  border: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--site-red);
  font-weight: 700;
  white-space: nowrap;
}
.button:hover { color: #fff; background: #842f29; }
.button.secondary { color: #fff; background: var(--site-blue); }
.button.secondary:hover { background: var(--site-blue-deep); }
.button[disabled] { cursor: wait; opacity: .55; }

.preorder-campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.preorder-campaign-card {
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #ced9df;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(28,67,87,.09);
}
.preorder-campaign-image {
  display: block;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: var(--pale-blue);
}
.preorder-campaign-image > img,
.preorder-campaign-image .image-fallback {
  width: 100%;
  height: 100%;
}
.preorder-campaign-image > img { object-fit: cover; }
.preorder-campaign-body {
  display: grid;
  padding: 28px;
  align-content: center;
  gap: 13px;
}
.preorder-campaign-status {
  margin: 0;
  color: var(--site-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.preorder-campaign-body h2 {
  margin: 0;
  color: var(--site-blue-dark);
  font-size: 23px;
}
.preorder-campaign-body > p:not(.preorder-campaign-status) {
  margin: 0;
  color: #586871;
}
.preorder-campaign-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 7px;
}
.preorder-campaign-meta div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
}
.preorder-campaign-meta dt { color: var(--muted); }
.preorder-campaign-meta dd { margin: 0; color: #34444c; font-weight: 700; }
.preorder-campaign-body .button { justify-self: start; margin-top: 3px; }

.public-promotion-list {
  display: grid;
  gap: 22px;
}
.public-promotion-card {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #ced9df;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(28,67,87,.09);
}
.public-promotion-image {
  min-height: 390px;
  overflow: hidden;
  background: var(--pale-blue);
}
.public-promotion-image > img,
.public-promotion-image .image-fallback {
  width: 100%;
  height: 100%;
}
.public-promotion-image > img {
  display: block;
  object-fit: contain;
  object-position: center;
}
.public-promotion-body {
  display: grid;
  padding: 28px;
  align-content: center;
  gap: 13px;
}
.public-promotion-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.public-promotion-badges span,
.public-promotion-badges small {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.public-promotion-badges span {
  color: #fff;
  background: var(--site-red);
}
.public-promotion-badges small {
  color: var(--site-blue-dark);
  background: #e8f3f7;
}
.public-promotion-body h2 {
  margin: 0;
  color: var(--site-blue-dark);
  font-size: 25px;
}
.public-promotion-body > p { margin: 0; color: #596971; }
.public-promotion-rule {
  padding: 12px 14px;
  border-left: 4px solid var(--site-red);
  color: #5e312d !important;
  background: #fff5f3;
  font-weight: 700;
}
.public-promotion-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.public-promotion-products section {
  padding: 11px 13px;
  border: 1px solid #d7e0e4;
  border-radius: 7px;
  background: #f7fafb;
}
.public-promotion-products h3 {
  margin: 0 0 6px;
  color: var(--site-blue);
  font-size: 14px;
}
.public-promotion-products ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 5px;
  list-style: none;
}
.public-promotion-products li { display: grid; line-height: 1.35; }
.public-promotion-products li span { color: var(--muted); font-size: 12px; }
.public-promotion-body .button { justify-self: start; }
.public-promotion-sold-out {
  justify-self: start;
  padding: 9px 13px;
  color: #6b7377;
  background: #edf0f2;
  font-weight: 700;
}

.order-layout { align-items: start; }
.order-sidebar { position: sticky; top: 18px; }
.form-page { max-width: none; }
.form-intro {
  margin: 23px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--site-blue);
  color: #43545d;
  background:
    linear-gradient(rgba(244,248,250,.94), rgba(244,248,250,.94)),
    url("/assets/img/paper-texture.png");
}
.form-intro p { margin: 0; }
.form-section {
  margin-top: 20px;
  padding: 28px 30px;
  border: 1px solid #d5dde2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(29,65,84,.08);
  scroll-margin-top: 20px;
}
.form-section h2 {
  margin: 0 0 5px;
  color: var(--site-blue-dark);
  font-size: 21px;
}
.section-help { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { display: grid; min-width: 0; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label, .group-label { color: #3b464d; font-weight: 700; }
.required::after { content: " *"; color: var(--site-red); }
.field > input, .field > select, .field > textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid #bfcbd2;
  border-radius: 6px;
  color: #333;
  background: #fbfcfd;
  box-shadow: inset 0 1px 2px rgba(34,61,74,.04);
}
.field > input:focus, .field > select:focus, .field > textarea:focus,
.variant-row input:focus, .transfer-inline input:focus {
  border-color: var(--site-blue);
  outline: 2px solid rgba(0,103,142,.14);
  background: #fff;
}
.field > textarea { min-height: 112px; resize: vertical; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.choice-grid.two-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card {
  display: flex;
  min-width: 0;
  min-height: 76px;
  padding: 13px 15px;
  gap: 11px;
  align-items: center;
  border: 1px solid #cbd7dd;
  border-radius: 8px;
  color: #3b464d;
  background: #fafcfd;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.choice-card:hover {
  border-color: #91b4c4;
  background: #f4f9fb;
}
.choice-card:has(input:checked) {
  border-color: var(--site-blue);
  color: var(--site-blue-dark);
  background: #eef7fa;
  box-shadow: 0 0 0 2px rgba(0,103,142,.09);
}
.choice-card input {
  width: 20px;
  height: 20px;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--site-blue);
}
.choice-card > span {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}
.choice-card strong { white-space: nowrap; }
.choice-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.order-category-list { display: grid; gap: 12px; }
.order-promotion-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 8px 0 13px;
  padding: 14px 16px;
  align-items: center;
  gap: 10px 14px;
  border: 1px solid #d7c883;
  border-left: 5px solid #b78a20;
  color: #67551f;
  background: #fffbee;
}
.order-promotion-heading strong { color: #604b0d; font-size: 18px; }
.order-promotion-heading a { color: var(--site-blue); font-weight: 700; }
.order-promotion-list {
  display: grid;
  margin-bottom: 24px;
  gap: 12px;
}
.order-promotion {
  border-color: #d7c883;
}
.order-promotion .category-toggle {
  background: #fffbee;
}
.order-promotion .category-toggle:hover { background: #fff8dc; }
.order-promotion .category-index { background: #a77d1f; }
.order-promotion .category-copy small { color: #716331; }
.order-promotion .category-products { background: #fffcf2; }
.order-promotion-rule {
  display: grid;
  padding: 12px 14px;
  border: 1px solid #dfd09a;
  border-radius: 7px;
  color: #6d5b21;
  background: #fff;
}
.order-promotion-rule strong { color: #5c480d; }
.regular-products-title {
  margin: 0 0 12px;
  color: var(--site-blue-dark);
  font-size: 19px;
}
.order-category {
  overflow: hidden;
  border: 1px solid #c7d5dc;
  border-radius: 9px;
  background: #fff;
}
.category-toggle {
  display: flex;
  width: 100%;
  min-height: 74px;
  padding: 12px 17px;
  border: 0;
  align-items: center;
  gap: 14px;
  color: #33434c;
  text-align: left;
  background: #f8fbfc;
}
.category-toggle:hover { background: #f1f7fa; }
.category-index {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--site-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}
.category-copy {
  display: grid;
  min-width: 0;
  flex: 1;
  line-height: 1.35;
}
.category-copy strong { color: var(--site-blue-dark); font-size: 18px; }
.category-copy small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.category-symbol {
  color: var(--site-blue);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}
.order-category.is-open .category-symbol { transform: rotate(45deg); }
.category-products {
  display: none;
  padding: 13px;
  gap: 9px;
  border-top: 1px solid #d8e1e5;
  background: #eef4f7;
}
.order-category.is-open .category-products { display: grid; }
.order-product {
  overflow: hidden;
  border: 1px solid #cbd6dc;
  border-radius: 7px;
  background: #fff;
}
.product-toggle {
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 13px 15px;
  gap: 12px;
  align-items: center;
  color: #333;
  text-align: left;
  background: #fff;
}
.product-toggle:hover { background: #f5f9fb; }
.product-toggle input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  accent-color: var(--site-blue);
}
.product-toggle span { display: grid; min-width: 0; flex: 1; }
.product-toggle small { color: var(--muted); }
.product-variants {
  display: none;
  padding: 10px 15px 15px 46px;
  border-top: 1px solid #dce4e8;
  background: #f4f8fa;
}
.order-product.is-open .product-variants { display: grid; gap: 9px; }
.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.variant-row span { min-width: 0; color: #66747c; font-size: 13px; }
.variant-row input {
  width: 82px;
  min-height: 39px;
  padding: 6px 9px;
  border: 1px solid #bfcbd2;
  border-radius: 5px;
}
.promotion-role-badge {
  display: inline-flex;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #725813;
  background: #f5e8b7;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  vertical-align: middle;
}

.preorder-campaign-summary {
  margin-top: 22px;
  padding: 24px 26px;
  border: 1px solid #cbdbe3;
  border-left: 6px solid var(--site-blue);
  background: #f3f8fa;
}
.preorder-campaign-summary > p { margin: 0 0 18px; }
.preorder-campaign-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 10px 22px;
}
.preorder-campaign-summary dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}
.preorder-campaign-summary dt { color: var(--muted); }
.preorder-campaign-summary dd { margin: 0; font-weight: 700; }
.preorder-product-list { display: grid; gap: 13px; }
.preorder-order-product {
  overflow: hidden;
  border: 1px solid #c7d5dc;
  border-radius: 9px;
}
.preorder-product-toggle {
  display: flex;
  min-height: 92px;
  padding: 10px 16px 10px 10px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  background: #f8fbfc;
}
.preorder-product-toggle > input {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  accent-color: var(--site-blue);
}
.preorder-product-thumb {
  display: grid;
  width: 78px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}
.preorder-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preorder-product-copy { display: grid; min-width: 0; flex: 1; }
.preorder-product-copy strong { color: var(--site-blue-dark); font-size: 18px; }
.preorder-product-copy small { color: var(--site-red); }
.preorder-variant-list {
  display: none;
  padding: 14px 18px 17px 54px;
  gap: 10px;
  border-top: 1px solid #d6e0e5;
  background: #f2f7f9;
}
.preorder-order-product.is-open .preorder-variant-list { display: grid; }
.preorder-order-product.is-open .category-symbol { transform: rotate(45deg); }
.preorder-fixed-policy {
  display: grid;
  padding: 17px 19px;
  border: 1px solid #c8d9e2;
  border-radius: 8px;
  color: #38515f;
  background: #eef7fa;
}
.preorder-fixed-policy strong { color: var(--site-blue-dark); }
.preorder-fixed-policy span { margin-top: 3px; color: var(--muted); }

.quote-panel {
  display: block;
  border-top: 4px solid var(--site-blue);
  transition: opacity .18s ease;
}
.quote-panel.is-updating { opacity: .62; }
.quote-placeholder {
  margin-top: 15px;
  padding: 18px;
  border: 1px dashed #b9c8d0;
  color: var(--muted);
  text-align: center;
  background: #f7fafb;
}
.gift-choice-panel {
  display: flex;
  margin: 17px 0 20px;
  padding: 16px 17px;
  border: 1px solid #d8c984;
  border-radius: 9px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fffbee;
}
.gift-choice-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}
.gift-choice-copy > span:last-child,
.gift-decline-card > span {
  display: grid;
  min-width: 0;
  line-height: 1.4;
}
.gift-choice-copy small,
.gift-decline-card small {
  margin-top: 2px;
  color: #726a48;
  font-size: 12px;
}
.gift-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #a27c20;
  font-weight: 800;
}
.gift-decline-card {
  display: flex;
  min-width: 190px;
  padding: 10px 12px;
  border: 1px solid #d1c68f;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  background: #fff;
  cursor: pointer;
}
.gift-decline-card:has(input:checked) {
  border-color: var(--site-red);
  color: #7c302b;
  background: #fff4f2;
}
.gift-decline-card input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--site-red);
}
.quote-lines { display: grid; gap: 7px; margin: 16px 0; }
.quote-line, .quote-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.quote-line small { color: var(--muted); }
.quote-summary { display: grid; gap: 7px; padding-top: 14px; border-top: 1px solid var(--line); }
.quote-total.grand {
  padding-top: 8px;
  color: var(--site-red);
  font-size: 19px;
  font-weight: 800;
}
.message {
  padding: 11px 13px;
  border-left: 4px solid #e0a82e;
  color: #69501d;
  background: #fff6dd;
}
.message.error { border-left-color: var(--site-red); color: #792d28; background: #fcedeb; }
.message.success { border-left-color: #4e8d5b; color: #276535; background: #edf7ee; }
.form-actions {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}

.success-content {
  width: min(760px, calc(100% - 40px));
  margin: 45px auto 80px;
}
.success-card {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid #ccd7dd;
  border-top: 6px solid var(--site-blue);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.success-card > h1 { color: var(--site-blue-dark); }
.eyebrow {
  margin: 0;
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.order-code {
  margin: 18px 0;
  color: var(--site-red);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
  letter-spacing: .08em;
}
.success-detail {
  display: grid;
  gap: 7px;
  margin: 23px 0;
  padding: 19px;
  text-align: left;
  border: 1px solid #d6e0e5;
  background: var(--pale-blue);
}
.success-detail div { display: flex; justify-content: space-between; gap: 18px; }
.bank-information {
  margin: 28px 0 0;
  padding: 21px 23px;
  border: 1px solid #c9dbe4;
  border-left: 5px solid var(--site-blue);
  border-radius: 7px;
  color: #33434c;
  text-align: left;
  background: #f4f9fb;
}
.bank-information h2 {
  margin: 0 0 10px;
  color: var(--site-blue-dark);
  font-size: 20px;
}
.bank-information p { margin: 0; line-height: 1.9; }
.transfer-form { margin-top: 24px; padding-top: 21px; border-top: 1px solid var(--line); text-align: left; }
.transfer-inline { display: flex; gap: 9px; margin-top: 9px; }
.transfer-inline input {
  min-width: 0;
  flex: 1;
  padding: 9px 11px;
  border: 1px solid #bfcbd2;
  letter-spacing: .2em;
}

.site-footer {
  padding: 30px 0 38px;
  color: #fff;
  background: #303030;
  border-radius: 0 0 18px 18px;
}
.footer-policy-nav {
  display: flex;
  min-height: 44px;
  margin-bottom: 21px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.footer-policy-nav a { color: #fff; font-size: 15px; }
.footer-policy-nav a:hover { color: var(--site-yellow); }
.footer-policy-nav span { color: #aaa; }
.footer-main {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 60px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  gap: 28px;
  align-items: center;
}
.footer-main > img {
  width: 140px;
  height: 140px;
  padding: 8px;
  background: #fff;
}
.footer-contact p {
  margin: 2px 0;
  color: #eee;
  font-size: 16px;
}
.footer-copyright { margin-top: 7px !important; }
.footer-copyright a { color: #fff; }
.footer-copyright span { color: #a0a0a0; }
.footer-top {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #414141;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
.footer-top:hover { color: var(--site-yellow); background: #494949; }

@media (max-width: 1320px) {
  .main-menu a { padding-inline: 11px; font-size: 15px; }
}

@media (max-width: 1060px) {
  .main-menu a { padding-inline: 11px; font-size: 15px; }
  .header-main { gap: 24px; }
  .site-logo { flex-basis: 430px; }
  .identity-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-photo { height: auto; min-height: 152px; }
  .top-utility { display: none; }
  .header-main {
    width: calc(100% - 30px);
    padding: 22px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .site-logo { flex: none; }
  .site-logo img { width: min(100%, 430px); }
  .header-tools { flex: none; width: 100%; }
  .site-search { max-width: none; }
  .main-menu-wrap { box-shadow: none; }
  .menu-toggle { display: block; }
  .main-menu {
    display: none;
    width: 100%;
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }
  .main-menu.is-open { display: flex; }
  .main-menu a {
    min-height: 46px;
    padding: 9px 20px;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .breadcrumb > div { width: calc(100% - 30px); }
  .site-content {
    display: block;
    width: calc(100% - 30px);
    margin-top: 25px;
  }
  .site-sidebar { margin-bottom: 27px; }
  .order-sidebar { position: static; }
  .sidebar-nav {
    display: flex;
    overflow-x: auto;
    border: 1px solid #cbd5dc;
    scrollbar-width: thin;
  }
  .sidebar-nav a {
    flex: 0 0 auto;
    border-right: 1px dashed #c7cdd1;
    border-bottom: 0;
    white-space: nowrap;
  }
  .sidebar-info { display: none; }
  .content-title h1 { font-size: 25px; }
  .product-row { grid-template-columns: 190px minmax(0, 1fr); gap: 20px; }
  .product-row .product-image { width: 190px; }
  .preorder-campaign-card {
    display: block;
  }
  .preorder-campaign-image {
    height: 230px;
    min-height: 0;
  }
  .preorder-campaign-meta {
    grid-template-columns: 1fr;
  }
  .public-promotion-card {
    display: block;
  }
  .public-promotion-image {
    height: 240px;
    min-height: 0;
  }
  .public-promotion-products {
    grid-template-columns: 1fr;
  }
  .form-section { padding: 21px 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-policy-nav { flex-wrap: wrap; padding-inline: 20px; gap: 8px 13px; }
  .footer-main {
    grid-template-columns: 105px minmax(0, 1fr) 48px;
    width: calc(100% - 30px);
    gap: 18px;
  }
  .footer-main > img { width: 105px; height: 105px; }
  .footer-contact p { font-size: 13px; }
  .footer-top { width: 46px; height: 46px; font-size: 28px; }
}

@media (max-width: 540px) {
  .header-tools { flex-direction: column; }
  .header-order-link { min-height: 42px; justify-content: center; }
  .homepage-banner { min-height: 180px; padding: 21px 19px; }
  .homepage-banner-copy small { font-size: 15px; }
  .souvenir-information { padding: 20px 18px; }
  .information-actions { align-items: stretch; flex-direction: column; }
  .information-actions .button { width: 100%; }
  .product-row { display: block; padding-inline: 0; }
  .product-row .product-image {
    width: min(100%, 320px);
    margin: 0 auto 17px;
  }
  .product-details > h2 { text-align: left; }
  .order-promotion-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .preorder-campaign-image { height: 205px; }
  .public-promotion-image { height: 205px; }
  .public-promotion-body { padding: 21px 18px; }
  .preorder-campaign-summary { padding: 20px 18px; }
  .preorder-campaign-summary dl { grid-template-columns: 1fr; }
  .preorder-campaign-summary dl div { grid-template-columns: 104px minmax(0, 1fr); }
  .preorder-product-toggle { padding-right: 11px; gap: 10px; }
  .preorder-product-thumb { width: 62px; height: 58px; }
  .preorder-variant-list { padding-left: 14px; }
  .product-details dl > div {
    grid-template-columns: 82px minmax(0, 1fr);
    padding-inline: 5px;
  }
  .choice-grid,
  .choice-grid.two-choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 68px; }
  .gift-choice-panel { align-items: stretch; flex-direction: column; }
  .gift-decline-card { width: 100%; min-width: 0; }
  .category-toggle { padding-inline: 13px; }
  .category-products { padding: 9px; }
  .product-variants { padding-left: 15px; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .quote-line { align-items: flex-start; }
  .success-content { width: calc(100% - 30px); margin-top: 28px; }
  .order-code { font-size: 58px; }
  .transfer-inline { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-main > img { margin: 0 auto; }
  .footer-top { margin: 0 auto; }
}
