:root {
  --green: #76b33a;
  --green-deep: #5f982c;
  --green-soft: #8bc34a;
  --orange: #e8892a;
  --orange-deep: #d97716;
  --price: #f39c12;
  --text: #1c1c1c;
  --muted: #6a6a6a;
  --line: #ececec;
  --bg: #fff;
  --paper: #f6f6f6;
  --footer: #111;
  --blue: #1a8cd8;
  --pink: #f3cfc8;
  --shadow: 0 8px 28px rgba(20, 20, 20, 0.06);
  --w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.wrap { width: min(var(--w), calc(100% - 48px)); margin: 0 auto; }

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #241e16;
}
.footer .logo img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.logo-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-en {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #888;
  font-weight: 500;
}
.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  font-size: 13px;
  color: #333;
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav a:hover,
.nav a.is-on {
  color: var(--orange);
}
.nav a.is-on {
  background: #fff4e8;
}
.header-acts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  color: var(--green);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.icon-btn svg { width: 22px; height: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  background: var(--green);
  font-size: 13px;
}
.btn:hover { background: var(--green-deep); }
.btn-orange { background: var(--orange); }
.btn-orange:hover { background: var(--orange-deep); }
.btn-ghost {
  background: #4a4a4a;
  color: #fff;
}
.btn-ghost:hover { background: #333; }
.btn-lg { height: 44px; padding: 0 28px; font-size: 15px; }

/* hero — editorial still, not the old heart/cart first screen */
.page-home {
  background: #f3eee4;
}
.page-home .header {
  background: #f3eee4;
  border-bottom-color: #e4ddd0;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px) 0 56px;
  background:
    linear-gradient(#f3eee4, #f3eee4),
    repeating-linear-gradient(
      90deg,
      transparent 0 47px,
      rgba(40, 32, 22, 0.035) 47px 48px
    );
  background-blend-mode: multiply;
}
.hero::before {
  content: "内文";
  position: absolute;
  right: -2%;
  top: 8%;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 700;
  color: rgba(36, 30, 22, 0.05);
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
}
.hero-board {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  min-height: calc(100vh - 160px);
}
.hero-copy {
  padding-bottom: 12px;
  max-width: 36rem;
}
.hero-index {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #7a7164;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #241e16;
  margin-bottom: 22px;
}
.lead {
  color: #5c554a;
  font-size: 16px;
  max-width: 28em;
  margin-bottom: 28px;
}
.hero-acts {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
}
.btn-ink {
  background: #241e16;
  color: #f3eee4;
}
.btn-ink:hover { background: #3a3228; }
.hero-link {
  font-size: 14px;
  color: #241e16;
  border-bottom: 1px solid #241e16;
  padding-bottom: 2px;
}
.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid #d8d0c2;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.hero-cats a { color: #7a7164; }
.hero-cats a:hover { color: #241e16; }
.hero-still {
  position: relative;
  min-height: 520px;
}
.still {
  background: #efe8db;
  border: 1px solid #d8d0c2;
  padding: 12px 12px 10px;
}
.still img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f7f2e9;
}
.still figcaption {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #7a7164;
}
.still-a {
  width: 58%;
  position: absolute;
  top: 0;
  right: 0;
}
.still-b {
  width: 44%;
  position: absolute;
  left: 0;
  top: 28%;
  z-index: 2;
  transform: rotate(-3deg);
}
.still-c {
  width: 48%;
  position: absolute;
  right: 8%;
  bottom: 0;
}
.kicker {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 18px;
}

/* sections */
.page-home .sec,
.page-home .promo { background: #fff; }
.sec { padding: 48px 0 20px; position: relative; }
.sec-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
/* appliance grid */
.appliance {
  overflow: hidden;
  background: #fff;
}
.shop-illu {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 170px;
  z-index: 1;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  border-radius: 4px;
}
.ap-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px 26px;
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
.ap-item:nth-child(3n) { border-right: 0; }
.ap-item:nth-last-child(-n+3) { border-bottom: 0; }
.ap-item img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7f7f7;
  flex-shrink: 0;
}
.ap-item h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price {
  color: var(--price);
  font-weight: 700;
  margin-top: 8px;
}
.ap-line {
  position: relative;
  height: 1px;
  background: #f0c48a;
  margin-top: 10px;
  max-width: 160px;
}
.ap-line::before,
.ap-line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.ap-line::before { left: 0; }
.ap-line::after { right: 0; }

/* promo */
.promo {
  margin: 56px 0 20px;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.8)),
    url("../img/towel.png") left bottom / 240px no-repeat,
    radial-gradient(ellipse at 50% 40%, #f3f3f3 0 40%, #fff 70%);
  position: relative;
}
.promo h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 22px;
}
.promo .arrows {
  position: absolute;
  right: 8%;
  top: 50%;
  display: flex;
  transform: translateY(-50%);
}
.sq {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
}
.sq-dark { background: #111; }
.sq-orange { background: var(--orange); }

/* product cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
}
.card-img {
  height: 260px;
  background: #f6f6f6;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 14px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.tag-price {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* daily category */
.cat-page { padding: 28px 0 60px; background: #f7f7f7; min-height: 70vh; }
.cat-title { text-align: center; font-size: 34px; font-weight: 800; margin: 12px 0 28px; }
.daily-layout {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 22px;
  align-items: start;
}
.side-list { display: grid; gap: 12px; }
.side-card {
  background: #fff;
  border: 1px solid #ececec;
  padding: 14px 16px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
}
.side-card.is-on {
  border-left: 4px solid var(--orange);
  font-weight: 600;
  color: #111;
}
.feature {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  min-height: 460px;
}
.feature .big-price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}
.feature img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  background: #f3f3f3;
}
.side-art {
  min-height: 420px;
  border-radius: 0 180px 180px 0;
  background:
    url("../img/umbrella.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 3px rgba(232, 137, 42, 0.35);
}

/* sports */
.sports-hero {
  background: #f3f3f3;
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 360px;
  margin-bottom: 36px;
  position: relative;
}
.spec {
  padding: 36px 28px;
}
.spec dt, .spec dd { display: inline; }
.spec li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.spec .k { letter-spacing: 0.28em; color: #333; }
.sports-visual {
  background: #ececec url("../img/yoga.png") right center / contain no-repeat;
}
.float-card {
  position: absolute;
  left: 40px;
  bottom: -28px;
  background: #fff;
  padding: 16px 18px;
  width: 360px;
  box-shadow: var(--shadow);
}
.float-card h3 { font-size: 14px; font-weight: 500; margin-top: 8px; }

/* apply */
.apply-banner {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(8,22,48,0.25), rgba(8,22,48,0.15)),
    radial-gradient(circle at 70% 20%, #1c4d8a 0, #0b1c38 55%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.apply-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(90deg, #2ea44f, #f0c14b, #3b82c4, #e85d4c);
  clip-path: polygon(0 70%, 12% 40%, 22% 80%, 36% 30%, 48% 75%, 62% 20%, 78% 70%, 90% 35%, 100% 80%, 100% 100%, 0 100%);
  opacity: 0.95;
}
.apply-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  min-height: 360px;
  padding: 40px 0 70px;
}
.apply-box {
  background: rgba(20, 20, 20, 0.55);
  border-radius: 8px;
  padding: 28px 26px 24px;
  backdrop-filter: blur(6px);
}
.apply-box h2 { font-size: 22px; margin-bottom: 16px; font-weight: 600; }
.apply-box li { margin: 10px 0; font-size: 14px; }
.apply-box .sub { color: #ddd; font-size: 13px; margin: 4px 0 0 18px; }
.apply-acts { display: flex; gap: 12px; margin-top: 22px; }
.apply-copy {
  text-align: right;
  padding-right: 20px;
}
.apply-copy small { opacity: 0.85; }
.apply-copy b { display: block; font-size: 36px; margin-top: 8px; }

.tips {
  background: #f6f3ee;
  padding: 16px 0;
  font-size: 13px;
  color: #555;
}
.tips-inner { display: flex; gap: 12px; align-items: flex-start; }
.flow { padding: 48px 0 20px; }
.flow-title, .guide h2 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 28px;
}
.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.step { flex: 1; text-align: center; color: #2b6cb0; }
.step .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  color: #2b6cb0;
}
.step p { font-size: 14px; color: #333; }
.chev { color: #c8c8c8; align-self: center; font-size: 28px; }
.tabs { display: flex; margin: 8px 0 18px; }
.tab {
  padding: 10px 28px;
  background: #f2f2f2;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}
.tab.is-on { background: var(--blue); color: #fff; }
.guide-body { color: #444; font-size: 14px; line-height: 1.8; padding-bottom: 40px; }
.guide-body h3 { margin: 8px 0 12px; color: #111; }
.guide-body p { margin-bottom: 10px; }
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
  padding: 22px 0 36px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.benefits div { border-right: 1px solid #eee; }
.benefits div:last-child { border-right: 0; }

/* footer */
.footer { margin-top: 80px; color: #ddd; }
.tear {
  height: 28px;
  background: #111;
  clip-path: polygon(
    0 40%, 3% 0, 6% 50%, 10% 8%, 14% 55%, 18% 4%, 22% 48%, 26% 10%,
    30% 60%, 35% 6%, 40% 52%, 45% 2%, 50% 58%, 55% 10%, 60% 48%,
    65% 4%, 70% 56%, 75% 12%, 80% 50%, 85% 0, 90% 54%, 95% 8%, 100% 46%,
    100% 100%, 0 100%
  );
}
.footer-main {
  background: #111;
  padding: 28px 0 18px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2a2a2a;
}
.contacts { display: flex; gap: 36px; font-size: 13px; color: #cfcfcf; }
.contacts b { display: block; color: #fff; margin-bottom: 4px; font-weight: 500; }
.maps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 0;
  font-size: 13px;
}
.maps h4 { color: #fff; margin-bottom: 10px; font-weight: 600; }
.maps a { display: block; color: #9a9a9a; margin: 6px 0; }
.maps a:hover { color: #fff; }
.operator { text-align: right; font-size: 12px; color: #888; }
.operator span { display: block; margin-bottom: 4px; }
.operator strong { color: #ddd; font-size: 13px; font-weight: 500; }
.legal {
  background: #0a0a0a;
  color: #777;
  font-size: 12px;
  padding: 14px 0 18px;
  text-align: center;
}
.legal span { margin-right: 14px; }
.legal a:hover { color: #bbb; }

/* modal */
.mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  place-items: center;
  z-index: 80;
}
.mask.show { display: grid; }
.modal {
  width: min(420px, calc(100% - 32px));
  background: #fff;
  padding: 28px 26px;
  border-radius: 10px;
}
.modal h3 { margin-bottom: 16px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; font-size: 13px; color: #555; }
.field input {
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 12px;
  border-radius: 6px;
}
.auth-consent { margin: 2px 0 16px; font-size: 12px; color: #666; }
.auth-consent[hidden] { display: none; }
.auth-consent label { display: flex; align-items: flex-start; gap: 8px; }
.auth-consent input { margin-top: 3px; flex: 0 0 auto; }
.auth-consent a { color: var(--green-deep); }
.auth-consent a:hover { text-decoration: underline; }
.card-party { margin-top: 10px; color: #888; font-size: 12px; line-height: 1.5; }
.category-note {
  margin: -18px 0 28px;
  padding: 12px 16px;
  border-left: 3px solid var(--orange);
  background: #fff8ef;
  color: #6d5a45;
  font-size: 13px;
}
.party-info {
  margin: -6px 0 24px;
  padding: 16px 18px;
  background: #f7f7f7;
  border: 1px solid #ececec;
  font-size: 13px;
}
.party-info div { display: grid; grid-template-columns: 112px 1fr; gap: 14px; padding: 5px 0; }
.party-info dt { color: #888; }
.party-info dd { color: #333; }
.legal-page { padding: 58px 0 80px; }
.legal-page article { max-width: 840px; margin: 0 auto; }
.legal-page h1 { font-size: 34px; margin-bottom: 8px; }
.legal-page .updated { color: #999; font-size: 13px; margin-bottom: 38px; }
.legal-page h2 { margin: 30px 0 10px; font-size: 19px; }
.legal-page p, .legal-page li { color: #555; font-size: 14px; line-height: 1.9; }
.legal-page ul { padding-left: 20px; }
.company-facts { display: grid; gap: 0; margin-top: 30px; border: 1px solid #e7e7e7; }
.company-facts div { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid #e7e7e7; }
.company-facts div:last-child { border-bottom: 0; }
.company-facts dt, .company-facts dd { padding: 15px 18px; font-size: 14px; }
.company-facts dt { background: #f7f7f7; color: #777; }
.company-facts dd { color: #222; }
.company-facts a { color: var(--green-deep); }
.search-pop {
  position: fixed;
  top: 72px;
  right: 24px;
  width: 320px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 50;
}
.search-pop.show { display: block; }
.search-pop input { width: 100%; height: 38px; border: 1px solid #ddd; padding: 0 10px; }
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
  z-index: 90;
}
.toast.show { display: block; }
.top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-board, .daily-layout, .apply-inner, .sports-hero { grid-template-columns: 1fr; }
  .hero-board { min-height: 0; }
  .hero-still { min-height: 420px; margin-top: 12px; }
  .nav { display: none; }
  .grid-3, .cards-3, .maps, .benefits { grid-template-columns: 1fr 1fr; }
  .side-art { display: none; }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--w), calc(100% - 28px)); }
  .header-acts { gap: 4px; }
  .header-acts .icon-btn { display: none; }
  .header-inner { gap: 10px; }
  .operator { text-align: left; }
  .footer-top { flex-direction: column; }
  .maps { grid-template-columns: 1fr 1fr; }
  .legal { padding-inline: 14px; }
  .legal span, .legal a { display: block; margin: 3px 0; }
  .party-info div, .company-facts div { grid-template-columns: 1fr; gap: 0; }
  .company-facts dt { padding-bottom: 5px; }
  .company-facts dd { padding-top: 5px; }
}
