:root {
  --ink: #2c2521;
  --muted: #70645d;
  --paper: #fbf8f3;
  --surface: #f0e7dc;
  --line: #ded0c2;
  --cream: #fffdf8;
  --sage: #7c8b70;
  --rose: #c98f84;
  --clay: #a56f50;
  --gold: #b78a32;
  --heading: #614a37;
  --shadow: 0 20px 60px rgba(45, 34, 25, 0.13);
}

/* 2026-07-17 wide editorial layout */
.home-body main {
  overflow: hidden;
}

.product-section,
.contact-panel,
.feature-band,
.guide-band,
.page-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: min(100% - 32px, 1280px);
}

.product-section {
  margin-bottom: clamp(2.6rem, 6vw, 5.5rem);
  padding-left: clamp(0.4rem, 2vw, 2rem);
  padding-right: clamp(0.4rem, 2vw, 2rem);
}

.section-head {
  border-bottom-color: rgba(105, 96, 84, 0.18);
}

.product-slider {
  overflow-x: auto;
  overflow-y: visible;
  padding-left: 0;
  padding-right: max(8vw, 2rem);
}

.home-body .product-grid[data-products],
.list-grid {
  overflow: visible;
}

.product-media {
  overflow: visible;
}

.product-media-link {
  background: #f4f1ec;
}

.product-card-cart {
  right: -0.9rem;
  top: 0.7rem;
}

.product-line span,
.purchase-base-price,
.purchase-summary strong,
.cart-item strong,
.cart-summary-panel strong {
  font-family: "Noto Sans JP", sans-serif;
}

.photo-band {
  margin: clamp(2.8rem, 6vw, 6rem) 0;
  min-height: clamp(250px, 37vw, 520px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.photo-band img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-band::after {
  background: linear-gradient(180deg, rgba(32, 28, 24, 0.02), rgba(32, 28, 24, 0.22));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-band p {
  bottom: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin: 0;
  max-width: min(88vw, 980px);
  position: absolute;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.photo-band-alt p {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-section {
  margin: clamp(3rem, 7vw, 6.5rem) auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  text-align: center;
  width: min(100%, 1180px);
}

.gallery-section h2 {
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.gallery-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 980px;
}

.gallery-grid img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.purchase-page {
  padding: clamp(1.6rem, 4vw, 4rem) clamp(1rem, 5vw, 6rem);
}

.purchase-layout {
  gap: clamp(1.6rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  max-width: 1500px;
}

.purchase-gallery,
.purchase-info {
  min-width: 0;
}

.purchase-main-image {
  border-radius: 0;
  box-shadow: none;
}

.purchase-options,
.addon-option,
.cart-item,
.cart-summary-panel {
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 780px) {
  .product-section,
  .contact-panel,
  .feature-band,
  .guide-band,
  .page-hero {
    width: min(100% - 22px, 1280px);
  }

  .product-section {
    padding: clamp(1.5rem, 7vw, 2.4rem) 0;
  }

  .product-slider {
    margin-left: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-right: 1.3rem;
  }

  .home-body .product-grid[data-products],
  .list-grid {
    overflow: visible;
  }

  .product-card .product-card-cart {
    right: -0.58rem;
    top: 0.48rem;
  }

  .photo-band {
    min-height: 310px;
  }

  .photo-band p {
    font-size: clamp(1.35rem, 8vw, 2.4rem);
    letter-spacing: 0.055em;
    max-width: 86vw;
  }

  .gallery-section {
    padding: 0;
    width: 100%;
  }

  .purchase-page {
    padding: 1.2rem 0 3rem;
  }

  .purchase-layout {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .purchase-main-image {
    aspect-ratio: 1;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.notice {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 0.48rem 1rem;
  text-align: center;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 243, 0.92);
  border-bottom: 1px solid rgba(222, 208, 194, 0.78);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  line-height: 1.15;
}

.brand-group {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}

.brand-social-icon {
  height: 36px;
  width: 36px;
}

.brand-social-icon svg {
  height: 17px;
  width: 17px;
}

.brand-logo-icon {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(62, 48, 38, 0.1);
  display: block;
  flex: 0 0 auto;
  height: 42px;
  overflow: hidden;
  width: 42px;
}

.brand-logo-icon img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-mark {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(0.9rem, 1.8vw, 1.8rem);
  justify-content: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible,
.small-link:hover,
.small-link:focus-visible {
  color: var(--ink);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
}

.icon-button svg {
  height: 19px;
  width: 19px;
}

.social-buttons {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}

.text-icon {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--cream);
  border-color: #bda88f;
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 114px);
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.83) 32%, rgba(251, 248, 243, 0.28) 62%, rgba(251, 248, 243, 0.08) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 670px;
  padding: clamp(5.5rem, 12vw, 9rem) 5vw clamp(6rem, 12vw, 10rem);
  position: relative;
  z-index: 1;
}

.kicker,
.eyebrow {
  color: var(--clay);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-content p,
.page-hero p {
  color: #514940;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  max-width: 37rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions.center {
  justify-content: center;
}

.primary-link,
.text-link,
.small-link,
.buy-link,
.quick-cart-button,
.disabled-link {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
}

.primary-link,
.buy-link {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--cream);
  justify-content: center;
  padding: 0.68rem 1.45rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible,
.buy-link:hover,
.buy-link:focus-visible {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-1px);
}

.text-link,
.small-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(44, 37, 33, 0.35);
  text-underline-offset: 0.35em;
}

.quick-cart-button {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 44px;
}

.quick-cart-button svg {
  height: 18px;
  width: 18px;
}

.quick-cart-button:hover,
.quick-cart-button:focus-visible {
  background: var(--cream);
  border-color: #bda88f;
  transform: translateY(-1px);
}

.cart-toast {
  background: rgba(44, 37, 33, 0.94);
  border-radius: 999px;
  bottom: 1.2rem;
  color: #fffdf8;
  font-size: 0.9rem;
  font-weight: 700;
  left: 50%;
  opacity: 0;
  padding: 0.75rem 1.1rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 50;
}

.cart-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.intro,
.live-band,
.product-section,
.feature-band,
.contact-panel,
.page-hero,
.link-list,
.guide-band {
  padding: clamp(4rem, 8vw, 7rem) 5vw;
}

.intro {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
}

.intro p,
.feature-copy p,
.contact-panel p,
.live-band p {
  color: var(--muted);
  margin: 0;
  max-width: 42rem;
}

.live-band {
  align-items: center;
  background: #e8eee4;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.live-band h2 {
  margin-bottom: 0.6rem;
}

.product-section.alt,
.contact-panel {
  background: var(--cream);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.slider-controls {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}

.list-jump {
  margin-right: 0.35rem;
}

.product-slider {
  display: grid;
  gap: 1.1rem;
  grid-auto-columns: minmax(250px, 29vw);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 0.2rem 5vw 1.2rem 0;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--clay) transparent;
}

.product-slider::-webkit-scrollbar {
  height: 8px;
}

.product-slider::-webkit-scrollbar-thumb {
  background: #c8b49f;
  border-radius: 999px;
}

.product-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.product-media {
  position: relative;
}

.product-card img {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-thumbs {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.product-thumbs button,
.image-thumb {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.product-thumbs button.active,
.image-thumb.active {
  border-color: var(--clay);
}

.product-thumbs img,
.image-thumb img {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 4px;
  box-shadow: none;
  object-fit: cover;
  width: 100%;
}

.badge {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(222, 208, 194, 0.86);
  border-radius: 999px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  left: 0.7rem;
  padding: 0.18rem 0.65rem;
  position: absolute;
  top: 0.7rem;
}

.product-info {
  padding-top: 0.9rem;
}

.product-actions .purchase-slot {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.product-actions .detail-link {
  flex: 1;
}

.product-line {
  align-items: start;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.product-line p,
.product-line span,
.product-info small {
  margin: 0;
}

.product-line p {
  font-weight: 700;
}

.product-line span {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.stock-line {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 0.22rem;
}

.stock-line.soldout {
  color: #8e2929;
}

.product-info small {
  color: var(--muted);
  display: block;
  margin-top: 0.35rem;
}

.product-actions {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.buy-link,
.disabled-link {
  font-size: 0.88rem;
  min-height: 38px;
  padding: 0.48rem 1rem;
}

.disabled-link {
  background: #e8ded1;
  border: 1px solid #e0d2c2;
  border-radius: 999px;
  color: #74685e;
  cursor: not-allowed;
  justify-content: center;
}

.line-link {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.empty-message {
  color: var(--muted);
  grid-column: 1 / -1;
}

.feature-band {
  align-items: center;
  background: #e7eadf;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.72fr);
}

.list-tabs-section {
  background: #f7f1e9;
}

.list-tabs {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 0.35rem;
  padding: 0.32rem;
}

.list-tabs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 0.45rem 1rem;
}

.list-tabs button.active {
  background: var(--ink);
  color: var(--cream);
}

.list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.list-grid[data-grid-size="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-grid[data-grid-size="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.list-grid[data-grid-size="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.list-view-options {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin: -0.4rem 0 1.4rem;
}

.list-view-options span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.compact-tabs button {
  font-size: 0.82rem;
  min-height: 34px;
  padding: 0.34rem 0.78rem;
}

.feature-band img {
  aspect-ratio: 1.12;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.feature-copy h2 {
  margin-bottom: 1.2rem;
  max-width: 38rem;
}

.contact-panel {
  text-align: center;
}

.contact-panel .eyebrow,
.contact-panel p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: linear-gradient(90deg, var(--paper), #f3ece1);
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.first-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.link-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-card {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  min-height: 130px;
  padding: 1.2rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: #bda88f;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.link-card svg {
  color: var(--clay);
  flex: 0 0 auto;
  height: 26px;
  width: 26px;
}

.link-card span {
  display: grid;
}

.link-card small {
  color: var(--muted);
}

.primary-card {
  background: #eef2e9;
}

.guide-band {
  background: #e8eee4;
}

.steps {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}

.steps li {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(222, 208, 194, 0.78);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.3rem 5vw;
}

.site-footer p {
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin: 0;
}

.site-footer small {
  font-size: 0.82rem;
}

.admin-body {
  background: #f5f0e9;
}

.admin-shell {
  padding: 4vw 5vw 6vw;
}

.easy-admin h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.admin-lead {
  color: var(--muted);
  max-width: 52rem;
}

.easy-steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0;
}

.easy-steps div {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
}

.easy-steps span {
  white-space: nowrap;
}

.easy-steps strong {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--cream);
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.admin-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.admin-panel-head {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.easy-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.easy-form label,
.easy-fieldset {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 0.35rem;
}

.easy-form input,
.easy-form select,
.easy-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.easy-form textarea {
  min-height: 96px;
}

.image-uploader {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 150px 1fr;
  padding: 1rem;
}

.image-uploader img {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.image-uploader small {
  color: var(--muted);
  display: block;
  font-weight: 500;
  margin: 0.4rem 0 0.7rem;
}

.image-thumbs {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin-top: 0.8rem;
}

.image-thumb-wrap {
  display: grid;
  gap: 0.35rem;
  touch-action: none;
}

.image-thumb span {
  align-items: center;
  background: rgba(44, 37, 33, 0.82);
  border-radius: 999px;
  bottom: 0.25rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 0.25rem;
  width: 20px;
}

.image-thumb-wrap.dragging,
.image-thumb-wrap.drag-over {
  opacity: 0.72;
}

.image-thumb-wrap.drag-over .image-thumb {
  border-color: var(--ink);
  transform: scale(0.98);
}

.image-uploader input[type="file"] {
  background: #f7f1e9;
}

.easy-fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 1rem;
}

.easy-fieldset legend {
  color: var(--clay);
  padding: 0 0.35rem;
}

.variant-fieldset {
  display: grid;
}

.variant-fieldset > p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
}

.variant-list {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

.variant-row {
  align-items: end;
  background: #f8f3ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(120px, 1fr) 100px 110px minmax(220px, 2fr) auto;
  padding: 0.8rem;
}

.option-row {
  align-items: end;
  background: #f8f3ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(180px, 1fr) 160px auto;
  padding: 0.8rem;
}

.variant-link-field {
  min-width: 0;
}

.variant-remove {
  background: transparent;
  border: 0;
  color: #8e2929;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 48px;
  padding: 0.5rem;
}

.variant-add {
  justify-self: start;
}

.variant-select-label {
  color: var(--muted);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.3rem;
  margin-top: 0.65rem;
}

.variant-select-label select {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  min-height: 40px;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.purchase-page {
  min-height: 70vh;
  padding: clamp(2rem, 5vw, 5rem) 5vw;
}

.purchase-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1280px;
}

.purchase-main-image {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.purchase-thumbs {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.purchase-thumbs button {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  padding: 0;
}

.purchase-thumbs button.active {
  border-color: var(--clay);
}

.purchase-thumbs img {
  aspect-ratio: 1;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
}

.purchase-info h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.25;
  margin: 0.5rem 0 1rem;
}

.purchase-description,
.checkout-note {
  color: var(--muted);
}

.purchase-base-price {
  font-size: 1.05rem;
  font-weight: 800;
}

.purchase-options {
  border: 1px solid var(--line);
  border-radius: 9px;
  margin: 1.2rem 0 0;
  padding: 1rem;
}

.purchase-options legend {
  color: var(--clay);
  font-weight: 800;
  padding: 0 0.4rem;
}

.purchase-options label > span {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.purchase-options select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 0.65rem 0.8rem;
  width: 100%;
}

.addon-list {
  display: grid;
  gap: 0.65rem;
}

.addon-option {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: auto 1fr auto;
  padding: 0.75rem;
}

.addon-option span {
  margin: 0 !important;
}

.addon-option strong {
  color: var(--clay);
}

.purchase-summary {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
}

.purchase-summary strong {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.purchase-stock {
  color: var(--clay);
  font-weight: 800;
}

.purchase-stock.soldout {
  color: #8e2929;
}

.purchase-checkout {
  display: flex;
  margin-top: 1rem;
  min-height: 52px;
  width: 100%;
}

.cart-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.cart-status {
  color: var(--clay);
  font-weight: 800;
  margin: 0.7rem 0 0;
}

.purchase-checkout:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.checkout-error {
  color: #8e2929;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0.75rem 0 0;
}

.checkout-note {
  font-size: 0.78rem;
  margin-top: 0.8rem;
}

.cart-page {
  min-height: 70vh;
}

.cart-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.cart-layout {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  padding: clamp(2.5rem, 6vw, 5rem) 5vw;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 112px minmax(0, 1fr) auto auto;
  padding: 1rem;
}

.cart-item img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.cart-item h2 {
  font-size: 1.15rem;
}

.cart-item p {
  color: var(--muted);
  margin: 0.25rem 0;
}

.cart-item strong,
.cart-summary-panel strong {
  color: var(--clay);
}

.cart-quantity {
  align-items: center;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: 38px 34px 38px;
  justify-items: center;
}

.cart-quantity button,
.cart-remove {
  background: #f6f0e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
}

.cart-quantity span {
  font-weight: 800;
}

.cart-remove {
  padding: 0.35rem 0.9rem;
}

.cart-summary-panel {
  align-self: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
  position: sticky;
  top: 98px;
}

.cart-summary-panel h2 {
  font-size: 1.5rem;
}

.cart-summary-panel > strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 0.8rem;
}

.easy-fieldset label,
.easy-toggle {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
}

.easy-fieldset input,
.easy-toggle input {
  min-height: auto;
  width: auto;
}

.easy-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.soft-button {
  background: var(--sage);
  border-color: var(--sage);
}

.reset-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.admin-actions,
.admin-row,
.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-status {
  color: var(--clay);
  font-weight: 700;
  margin: 1rem 0;
}

.admin-output {
  color: var(--muted);
  display: grid;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.35rem;
  margin: 1rem 0 1.2rem;
}

.admin-output textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 0.8rem;
}

.admin-output input {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
}

.sync-steps {
  background: #f8f3ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1rem 1rem 1rem 2.4rem;
}

.sync-steps li + li {
  margin-top: 0.45rem;
}

.easy-product-list {
  display: grid;
  gap: 1rem;
}

.admin-product-tools {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 0 1.2rem;
}

.admin-filter-tabs {
  flex-wrap: wrap;
}

.admin-product-count {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.admin-pagination button {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  height: 40px;
  min-width: 40px;
  padding: 0 0.8rem;
}

.admin-pagination button.active {
  background: var(--ink);
  color: var(--cream);
}

.category-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  width: 100%;
}

.category-manager-form {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
}

.category-manager-form input {
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 1;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
}

.custom-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.custom-category-chip {
  align-items: center;
  background: #f8f3ec;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem 0.4rem 0.85rem;
}

.custom-category-chip button {
  background: transparent;
  border: 0;
  color: #8e2929;
  cursor: pointer;
  font-weight: 800;
}

.easy-product-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 120px 1fr;
  padding: 1rem;
}

.easy-product-card img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.easy-product-title {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.easy-product-title span,
.easy-product-card small {
  color: var(--muted);
}

.easy-product-card p {
  color: var(--muted);
  margin: 0.35rem 0;
}

.easy-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.easy-card-actions button {
  background: #f6f0e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
}

.admin-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 1rem 0;
}

.admin-row input,
.admin-row textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

.admin-row textarea {
  min-height: 84px;
}

.admin-row label {
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.25rem;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-12 {
  grid-column: span 12;
}

.admin-checks label {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
}

@media (max-width: 980px) {
  .product-grid,
  .link-list,
  .list-grid,
  .list-grid[data-grid-size="2"],
  .list-grid[data-grid-size="3"],
  .list-grid[data-grid-size="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0.7rem 5vw 0.8rem;
  }

  .site-header > .icon-button {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header > .social-buttons {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero {
    min-height: calc(100svh - 138px);
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(251, 248, 243, 0.94) 0%, rgba(251, 248, 243, 0.76) 46%, rgba(251, 248, 243, 0.16) 100%);
  }

  .hero-content {
    padding-top: 4.2rem;
  }

  .intro,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .live-band,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .product-slider {
    gap: 0.55rem;
    grid-auto-columns: calc((100% - 1.1rem) / 3);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 0 0.8rem;
    scroll-snap-type: x mandatory;
  }

  .home-body .product-grid[data-products] {
    gap: 0.55rem;
    grid-auto-columns: calc((100% - 1.1rem) / 3);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    scroll-snap-type: x mandatory;
  }

  .product-grid,
  .list-grid,
  .list-grid[data-grid-size="2"],
  .list-grid[data-grid-size="3"],
  .list-grid[data-grid-size="4"] {
    gap: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .link-list {
    grid-template-columns: 1fr;
  }

  .product-card .product-info {
    padding-top: 0.5rem;
  }

  .product-card .product-line {
    display: grid;
    gap: 0.05rem;
  }

  .product-card .product-line p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .product-card .product-line span,
  .product-card .stock-line {
    font-size: 0.68rem;
  }

  .product-card .product-info > small {
    display: none;
  }

  .product-card .product-thumbs {
    gap: 0.18rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0.3rem;
  }

  .product-card .product-thumbs button:nth-child(n + 5) {
    display: none;
  }

  .purchase-thumbs {
    gap: 0.4rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-card .badge {
    font-size: 0.58rem;
    left: 0.35rem;
    padding: 0.08rem 0.35rem;
    top: 0.35rem;
  }

  .product-card .product-actions {
    margin-top: 0.45rem;
  }

  .product-card .buy-link,
  .product-card .disabled-link {
    font-size: 0.66rem;
    min-height: 32px;
    padding: 0.3rem 0.45rem;
    text-align: center;
  }

  .product-card .quick-cart-button {
    flex: 0 0 34px;
    height: 34px;
    min-height: 34px;
    width: 34px;
  }

  .product-card .quick-cart-button svg {
    height: 16px;
    width: 16px;
  }

  .product-card .variant-select-label {
    font-size: 0.65rem;
    margin-top: 0.35rem;
  }

  .product-card .variant-select-label select {
    font-size: 0.65rem;
    min-height: 34px;
    padding: 0.25rem 0.35rem;
  }

  .list-view-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-band img {
    aspect-ratio: 1;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .easy-steps,
  .easy-form,
  .easy-product-card,
  .image-uploader {
    grid-template-columns: 1fr;
  }

  .easy-admin h1 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .easy-steps div {
    padding: 0.78rem 0.9rem;
  }

  .variant-row {
    grid-template-columns: 1fr;
  }

  .option-row {
    grid-template-columns: 1fr;
  }

  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .cart-layout,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-summary-panel {
    position: static;
  }

  .cart-item img {
    max-width: 180px;
  }

  .admin-panel-head {
    flex-direction: column;
  }

  .admin-product-tools,
  .category-manager-form {
    align-items: stretch;
    flex-direction: column;
  }

  .span-2,
  .span-3,
  .span-4,
  .span-6,
  .span-12 {
    grid-column: span 1;
  }
}

@media (max-width: 460px) {
  .notice {
    font-size: 0.76rem;
  }

  .nav a {
    font-size: 0.84rem;
  }

  .slider-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .slider-controls .slider-button {
    display: none;
  }

  .product-slider {
    padding-right: 0;
  }

  .image-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-actions .primary-link,
  .cart-actions .text-link {
    justify-content: center;
    width: 100%;
  }
}

/* 2026-07 renewal: Lift & web form-inspired visual refresh */
:root {
  --ink: #4c4946;
  --muted: #8e8a87;
  --paper: #f1efeb;
  --surface: #ffffff;
  --line: #e9e5df;
  --cream: #ffffff;
  --sage: #767f72;
  --rose: #b68f8b;
  --clay: #6c6763;
  --gold: #d8cdc1;
  --heading: #67625e;
  --shadow: 0 16px 50px rgba(95, 91, 88, 0.055);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 340px),
    var(--paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.notice {
  background: #67625e;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  padding: 0.42rem 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  min-height: 82px;
  padding: 0 4vw;
}

.brand-logo-icon {
  border-color: var(--line);
  box-shadow: none;
  height: 46px;
  width: 46px;
}

.brand-mark {
  color: var(--heading);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.nav {
  gap: clamp(1rem, 2vw, 2.4rem);
}

.nav a {
  color: #716d69;
  font-family: "Cormorant Garamond", "Noto Sans JP", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  position: relative;
}

.nav a::after {
  background: #9c948d;
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
  width: 100%;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.icon-button,
.quick-cart-button,
.cart-quantity button,
.cart-remove,
.admin-pagination button,
.easy-card-actions button {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  box-shadow: none;
}

.icon-button:hover,
.icon-button:focus-visible,
.quick-cart-button:hover,
.quick-cart-button:focus-visible {
  background: #fbfaf8;
  border-color: #d8cdc1;
  transform: translateY(-2px);
}

.hero {
  min-height: min(760px, calc(100svh - 112px));
}

.hero img {
  filter: saturate(0.86) contrast(0.96) brightness(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(241, 239, 235, 0.96) 0%, rgba(241, 239, 235, 0.86) 34%, rgba(241, 239, 235, 0.28) 70%, rgba(241, 239, 235, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.hero-content {
  max-width: 660px;
  padding: clamp(5rem, 10vw, 8rem) 7vw clamp(5.5rem, 10vw, 8.5rem);
}

.kicker,
.eyebrow {
  color: var(--muted);
  font-family: "Cormorant Garamond", "Noto Sans JP", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

h1 {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  letter-spacing: 0.07em;
}

.hero-content p,
.page-hero p {
  color: #6f6a66;
  line-height: 2.05;
}

.primary-link,
.buy-link {
  background: #6c6763;
  border-color: #6c6763;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.06em;
  min-height: 46px;
  padding-inline: 1.55rem;
}

.primary-link:hover,
.primary-link:focus-visible,
.buy-link:hover,
.buy-link:focus-visible {
  background: #57524e;
  border-color: #57524e;
  transform: translateY(-2px);
}

.text-link,
.small-link,
.line-link {
  color: #5f5a56;
  font-weight: 500;
  text-decoration-color: rgba(95, 90, 86, 0.28);
}

.intro,
.product-section,
.feature-band,
.contact-panel,
.page-hero,
.link-list,
.guide-band {
  width: min(100% - 40px, 1180px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2.6rem, 5.4vw, 4.5rem);
}

.product-section,
.contact-panel,
.feature-band,
.guide-band,
.page-hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.product-section.alt,
.list-tabs-section,
.contact-panel,
.guide-band {
  background: #fff;
}

.live-band {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 1.15rem;
  justify-content: flex-start;
  margin: clamp(1.8rem, 3.5vw, 3rem) auto;
  padding: clamp(1.35rem, 2.7vw, 2rem);
  width: min(33.333vw, 430px);
}

.live-band h2 {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  letter-spacing: 0.06em;
}

.live-band p {
  font-size: 0.88rem;
  line-height: 1.85;
}

.live-band .primary-link {
  width: 100%;
}

.section-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.55rem;
  padding-bottom: 1.45rem;
}

.product-slider {
  gap: 1.15rem;
  grid-auto-columns: minmax(240px, 25vw);
  padding-bottom: 1.3rem;
  scrollbar-color: #d8cdc1 transparent;
}

.product-card {
  animation: renewalFadeUp 560ms ease both;
}

.product-card img,
.purchase-main-image,
.feature-band img {
  border-radius: 10px;
  box-shadow: none;
}

.product-card img {
  background: #f7f5f2;
}

.product-info {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  margin-top: -1px;
  padding: 0.95rem;
}

.product-line p {
  color: #4f4b47;
  font-weight: 500;
}

.product-line span,
.stock-line,
.purchase-base-price,
.cart-item strong,
.cart-summary-panel strong {
  color: #6c6763;
}

.badge {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  color: #6c6763;
  font-family: "Cormorant Garamond", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-thumbs button.active,
.image-thumb.active,
.purchase-thumbs button.active {
  border-color: #8f8881;
}

.list-tabs {
  background: #f8f7f5;
  border-color: var(--line);
}

.list-tabs button {
  color: #817c78;
  font-weight: 500;
}

.list-tabs button.active,
.admin-pagination button.active {
  background: #6c6763;
  color: #fff;
}

.link-card,
.steps li,
.cart-item,
.cart-summary-panel,
.purchase-options,
.addon-option,
.admin-panel,
.easy-steps div,
.easy-product-card,
.easy-form input,
.easy-form select,
.easy-form textarea,
.image-uploader,
.variant-row,
.option-row {
  background: #fff;
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: none;
}

.link-card:hover,
.link-card:focus-visible,
.cart-item:hover,
.product-card:hover .product-info {
  border-color: #d8cdc1;
  box-shadow: 0 18px 45px rgba(95, 91, 88, 0.07);
  transform: translateY(-2px);
}

.page-hero {
  text-align: center;
}

.page-hero h1,
.cart-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  letter-spacing: 0.12em;
}

.site-footer {
  border-top-color: var(--line);
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.site-footer p {
  color: var(--heading);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-content,
.live-band,
.product-section,
.contact-panel,
.page-hero,
.link-card,
.guide-band {
  animation: renewalFadeUp 680ms ease both;
}

.product-section:nth-of-type(3) {
  animation-delay: 80ms;
}

.product-section:nth-of-type(4) {
  animation-delay: 140ms;
}

.product-section:nth-of-type(5) {
  animation-delay: 200ms;
}

@keyframes renewalFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .live-band {
    width: min(100% - 40px, 520px);
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 76px;
  }

  .nav {
    gap: 1.15rem;
  }

  .hero {
    min-height: calc(100svh - 138px);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(241, 239, 235, 0.96) 0%, rgba(241, 239, 235, 0.78) 48%, rgba(241, 239, 235, 0.16) 100%);
  }

  .intro,
  .product-section,
  .feature-band,
  .contact-panel,
  .page-hero,
  .link-list,
  .guide-band,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .product-section,
  .contact-panel,
  .feature-band,
  .guide-band,
  .page-hero {
    padding: 1.35rem;
  }

  .live-band {
    width: min(100% - 28px, 520px);
  }
}

/* 2026-07-17 mobile product-list refinements */
@media (min-width: 981px) {
  .live-band {
    align-items: center;
    flex-direction: row;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    justify-content: space-between;
    min-height: 0;
    padding: 1.1rem 1.45rem;
    width: min(100% - 40px, 1180px);
  }

  .live-band > div {
    align-items: center;
    display: grid;
    gap: 0.35rem 1.1rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .live-band .eyebrow {
    grid-row: span 2;
    margin: 0;
    writing-mode: vertical-rl;
  }

  .live-band h2 {
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
    margin: 0;
  }

  .live-band p {
    font-size: 0.86rem;
    margin: 0;
    max-width: none;
  }

  .live-band .primary-link {
    flex: 0 0 auto;
    width: auto;
  }
}

@media (max-width: 780px) {
  .customer-category-tabs,
  .list-view-options .compact-tabs {
    border-radius: 12px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .customer-category-tabs::-webkit-scrollbar,
  .list-view-options .compact-tabs::-webkit-scrollbar {
    display: none;
  }

  .customer-category-tabs button,
  .compact-tabs button {
    flex: 0 0 auto;
    font-size: 0.72rem;
    line-height: 1.25;
    min-height: 32px;
    padding: 0.32rem 0.62rem;
    white-space: nowrap;
  }

  .list-view-options {
    gap: 0.55rem;
    margin: -0.2rem 0 1rem;
  }

  .list-view-options span {
    font-size: 0.75rem;
  }

  .product-slider,
  .home-body .product-grid[data-products] {
    gap: 0.7rem;
    grid-auto-columns: minmax(160px, calc((100% - 0.7rem) / 2));
  }

  .product-grid,
  .list-grid,
  .list-grid[data-grid-size="2"],
  .list-grid[data-grid-size="3"],
  .list-grid[data-grid-size="4"] {
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card .product-info {
    padding: 0.7rem;
  }

  .product-card .product-line {
    display: grid;
    gap: 0.12rem;
  }

  .product-card .product-line p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .product-card .product-line span,
  .product-card .stock-line {
    font-size: 0.72rem;
  }

  .product-card .product-actions,
  .product-actions .purchase-slot {
    align-items: center;
    display: flex;
    gap: 0.42rem;
    min-width: 0;
  }

  .product-actions .purchase-slot {
    width: 100%;
  }

  .product-card .buy-link,
  .product-card .disabled-link {
    flex: 1 1 auto;
    font-size: 0.7rem;
    line-height: 1.25;
    min-height: 34px;
    padding: 0.32rem 0.52rem;
    white-space: nowrap;
  }

  .product-card .quick-cart-button {
    flex: 0 0 34px;
    height: 34px;
    min-height: 34px;
    width: 34px;
  }
}

@media (max-width: 420px) {
  .product-slider,
  .home-body .product-grid[data-products] {
    grid-auto-columns: minmax(154px, calc((100% - 0.65rem) / 2));
  }

  .product-grid,
  .list-grid,
  .list-grid[data-grid-size="2"],
  .list-grid[data-grid-size="3"],
  .list-grid[data-grid-size="4"] {
    gap: 0.65rem;
  }
}

/* 2026-07-17 product gallery + hamburger menu refresh */
.menu-button {
  display: none;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 1.5px;
  width: 18px;
}

.menu-button span + span {
  margin-top: 4.5px;
}

.product-slider,
.product-grid {
  scroll-behavior: smooth;
}

.product-card {
  animation: productReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-index, 0) * 55ms);
  contain: content;
  transform: translateZ(0);
}

.product-media {
  aspect-ratio: 1;
  background: #f4f2ef;
  overflow: visible;
  position: relative;
}

.product-media-link {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
}

.product-card img.product-main-image {
  aspect-ratio: 1;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1.001);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
  width: 100%;
}

.product-card:hover img.product-main-image,
.product-card:focus-within img.product-main-image {
  filter: brightness(0.98);
  transform: translateZ(0) scale(1.025);
}

.product-card-cart {
  background: rgba(139, 128, 111, 0.9);
  border: 0;
  box-shadow: 0 8px 22px rgba(70, 63, 55, 0.16);
  color: #fff;
  height: 48px;
  position: absolute;
  right: -0.55rem;
  top: 0.55rem;
  width: 48px;
  z-index: 2;
}

.product-card-cart svg {
  height: 21px;
  width: 21px;
}

.product-card-cart:hover,
.product-card-cart:focus-visible {
  background: #6c6763;
  transform: translateY(-2px);
}

.disabled-cart {
  opacity: 0.45;
  pointer-events: none;
}

.product-info {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 1rem 0 0;
}

.product-line {
  color: #5a534d;
  display: grid;
  gap: 0.42rem;
  text-decoration: none;
}

.product-line p {
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.product-line span {
  color: #4f4943;
  font-size: 1rem;
  font-weight: 500;
  justify-self: start;
}

.product-card .badge {
  border-radius: 999px;
  left: 0.45rem;
  padding: 0.12rem 0.5rem;
  top: 0.45rem;
}

.product-card:hover .product-info {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.list-view-options {
  display: none;
}

.list-grid,
.list-grid[data-grid-size="2"],
.list-grid[data-grid-size="3"],
.list-grid[data-grid-size="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@keyframes productReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 781px) {
  .product-slider {
    grid-auto-columns: minmax(260px, 24vw);
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: sticky;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .site-header > .menu-button {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header > .text-icon {
    grid-column: 2;
    grid-row: 1;
    margin-right: 48px;
  }

  .site-header > .social-buttons {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header .nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(95, 91, 88, 0.08);
    display: none;
    gap: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.55rem;
    overflow: hidden;
    padding: 0.3rem;
  }

  .site-header.menu-open .nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-header .nav a {
    border-bottom: 1px solid var(--line);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    padding: 0.78rem 0.9rem;
  }

  .site-header .nav a:last-child {
    border-bottom: 0;
  }

  .site-header .nav a::after {
    display: none;
  }

  .product-slider,
  .home-body .product-grid[data-products] {
    gap: 1.25rem 1rem;
    grid-auto-columns: minmax(146px, calc((100% - 1rem) / 2));
    scroll-snap-type: x mandatory;
  }

  .product-grid,
  .list-grid,
  .list-grid[data-grid-size="2"],
  .list-grid[data-grid-size="3"],
  .list-grid[data-grid-size="4"] {
    gap: 1.7rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-category-tabs {
    justify-self: start;
  }

  .product-card .product-card-cart {
    height: 42px;
    right: -0.42rem;
    top: 0.42rem;
    width: 42px;
  }

  .product-card .product-card-cart svg {
    height: 19px;
    width: 19px;
  }

  .product-card .product-info {
    padding: 0.76rem 0 0;
  }

  .product-card .product-line {
    gap: 0.28rem;
  }

  .product-card .product-line p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .product-card .product-line span {
    font-size: 0.84rem;
  }

  .product-card .badge {
    font-size: 0.58rem;
  }
}

/* Final wide editorial overrides */
.home-body main {
  overflow: hidden;
}

.product-section,
.contact-panel,
.feature-band,
.guide-band,
.page-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: min(100% - 32px, 1280px);
}

.product-section {
  margin-bottom: clamp(2.6rem, 6vw, 5.5rem);
  padding-left: clamp(0.4rem, 2vw, 2rem);
  padding-right: clamp(0.4rem, 2vw, 2rem);
}

.section-head {
  border-bottom-color: rgba(105, 96, 84, 0.18);
}

.product-slider {
  overflow-x: auto;
  overflow-y: visible;
  padding-left: 0;
  padding-right: max(8vw, 2rem);
}

.home-body .product-grid[data-products],
.list-grid {
  overflow: visible;
}

.product-media {
  overflow: visible;
}

.product-media-link {
  background: #f4f1ec;
}

.product-card .product-card-cart {
  right: -0.72rem;
  top: 0.62rem;
}

.product-line span,
.purchase-base-price,
.purchase-summary strong,
.cart-item strong,
.cart-summary-panel strong {
  font-family: "Noto Sans JP", sans-serif;
}

.photo-band {
  margin: clamp(2.8rem, 6vw, 6rem) 0;
  min-height: clamp(250px, 37vw, 520px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.photo-band img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.photo-band::after {
  background: linear-gradient(180deg, rgba(32, 28, 24, 0.02), rgba(32, 28, 24, 0.22));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-band p {
  bottom: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin: 0;
  max-width: min(88vw, 980px);
  position: absolute;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.photo-band-alt p {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-section {
  margin: clamp(3rem, 7vw, 6.5rem) auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  text-align: center;
  width: min(100%, 1180px);
}

.gallery-section h2 {
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.gallery-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 980px;
}

.gallery-grid img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.purchase-page {
  padding: clamp(1.6rem, 4vw, 4rem) clamp(1rem, 5vw, 6rem);
}

.purchase-layout {
  gap: clamp(1.6rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  max-width: 1500px;
}

.purchase-gallery,
.purchase-info {
  min-width: 0;
}

.purchase-main-image {
  border-radius: 0;
  box-shadow: none;
}

.purchase-options,
.addon-option,
.cart-item,
.cart-summary-panel {
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 780px) {
  .product-section,
  .contact-panel,
  .feature-band,
  .guide-band,
  .page-hero {
    width: min(100% - 22px, 1280px);
  }

  .product-section {
    padding: clamp(1.5rem, 7vw, 2.4rem) 0;
  }

  .product-slider {
    margin-left: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-right: 1.3rem;
  }

  .home-body .product-grid[data-products],
  .list-grid {
    overflow: visible;
  }

  .product-card .product-card-cart {
    right: -0.58rem;
    top: 0.48rem;
  }

  .photo-band {
    min-height: 310px;
  }

  .photo-band p {
    font-size: clamp(1.35rem, 8vw, 2.4rem);
    letter-spacing: 0.055em;
    max-width: 86vw;
  }

  .gallery-section {
    padding: 0;
    width: 100%;
  }

  .purchase-page {
    padding: 1.2rem 0 3rem;
  }

  .purchase-layout {
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* Product detail mobile width fix */
@media (max-width: 780px) {
  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .purchase-main-image {
    aspect-ratio: 1;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
  }
}

/* Floating cart and linked gallery fixes */
.product-card {
  contain: none;
  overflow: visible;
}

.product-media {
  overflow: visible;
}

.product-card .product-card-cart {
  border-radius: 50%;
  right: -12px;
  top: -12px;
  z-index: 5;
}

.gallery-grid a {
  display: block;
  line-height: 0;
  outline-offset: -3px;
}

.gallery-grid a:focus-visible {
  outline: 2px solid rgba(97, 74, 55, 0.75);
}

@media (max-width: 780px) {
  .product-card .product-card-cart {
    right: -10px;
    top: -10px;
  }
}

/* Editorial photo update */
.photo-band p,
.photo-band-alt p {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Desktop cart badge visibility fix */
.product-section,
.home-body .product-grid[data-products],
.list-grid {
  overflow: visible;
}

.product-slider {
  overflow-x: auto;
}

.product-slider,
.home-body .product-grid[data-products],
.list-grid {
  padding-top: 18px;
}

.product-slider {
  margin-top: -18px;
}
