/* TK-Store 首页 — 精细还原 */

.page-home .store-footer { display: none; }
.page-home { background: #fafafa; }

/* ── Hero 轮播（PC：全宽固定高度，图片 cover 左右铺满） ── */
.tk-hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  background: #f3f4f6;
  height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}

.tk-hero__media {
  position: absolute;
  inset: 0;
  background: #f3f4f6;
  overflow: hidden;
}

.tk-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.tk-hero__stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.tk-hero__copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  max-width: 52%;
}

.tk-hero__line {
  margin: 0;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #6a2fb5;
  text-transform: uppercase;
}

.tk-hero__line--1 {
  font-size: clamp(42px, 4.8vw, 58px);
}

.tk-hero__line--2 {
  font-size: clamp(54px, 6.2vw, 78px);
  margin-top: 2px;
}

.tk-hero__dotline {
  width: 118px;
  height: 8px;
  margin: 10px 0 12px;
  background: radial-gradient(circle, #6a2fb5 2.5px, transparent 2.5px);
  background-size: 11px 8px;
  background-repeat: repeat-x;
}

.tk-hero__script {
  margin: 0 0 4px;
  font-family: "Dancing Script", "Segoe Script", cursive;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: #e94e77;
}

.tk-hero__promo {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e94e77;
  text-transform: uppercase;
}

.tk-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(70, 70, 70, 0.52);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.tk-hero__arrow:hover { background: rgba(50, 50, 50, 0.72); }

.tk-hero__arrow--prev { left: 16px; }
.tk-hero__arrow--next { right: 88px; }

.tk-hero__pager {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.tk-hero__pager button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d4d4d4;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.tk-hero__pager button.is-active {
  background: #111;
  transform: scale(1.15);
}

/* 右侧悬浮购物车（固定于视口右侧垂直居中） */
.tk-float-cart {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  padding: 14px 6px 10px;
  background: #f5a623;
  color: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.08);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  gap: 8px;
}

.tk-float-cart:hover { color: #fff; filter: brightness(1.03); }

.tk-float-cart i {
  font-size: 18px;
  line-height: 1;
}

.tk-float-cart__price {
  display: block;
  width: calc(100% - 4px);
  padding: 5px 2px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* ── 轮播下方促销网格（TK 1:1，85% 宽 + 比例拉伸） ── */
.tk-promo-grid {
  background: #fff;
  padding: 12px 0 14px;
}

.tk-promo-grid > .tk-wrap {
  width: 1500px;
  max-width: calc(100% - 24px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.tk-promo-grid__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  aspect-ratio: 1200 / 438;
}

.tk-promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #111;
  background: #f3f3f3;
  min-height: 0;
}

.tk-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}

.tk-promo-card:hover img { transform: scale(1.03); }

.tk-promo-card--tall {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.tk-promo-card--tall img { object-position: center top; }

.tk-promo-card--square:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.tk-promo-card--square:nth-of-type(3) { grid-column: 3; grid-row: 1; }

.tk-promo-card--wide {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.tk-promo-card__cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 85%;
  min-width: 340px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: none;
}

.tk-promo-card__clearance {
  display: block;
  padding: 12px 36px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tk-promo-card__more {
  display: block;
  margin-top: 0;
  padding: 9px 36px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.tk-promo-card__glass {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.tk-promo-card--tall .tk-promo-card__glass {
  width: 220px;
  padding: 16px 18px 14px;
}

.tk-promo-card--square .tk-promo-card__glass,
.tk-promo-card--wide .tk-promo-card__glass {
  width: 198px;
  padding: 12px 14px 11px;
}

.tk-promo-card__badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tk-promo-card--tall .tk-promo-card__title {
  margin: 12px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.tk-promo-card--square .tk-promo-card__title,
.tk-promo-card--wide .tk-promo-card__title {
  margin: 8px 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.tk-promo-card__title {
  margin: 0;
}

.tk-promo-card__link {
  display: inline-block;
  font-size: 12px;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
}

.tk-promo-card:hover .tk-promo-card__link { color: #333; }

/* ── 推荐分类 / 每日新品 ── */
.tk-home-wrap {
  width: 1500px;
  max-width: calc(100% - 24px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.tk-home-block {
  background: #fff;
  padding: 28px 0 8px;
}

.tk-home-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tk-home-block__head .tk-home-block__title {
  margin: 0;
}

.tk-home-block__more {
  flex-shrink: 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  padding: 4px 2px;
  transition: color 0.15s;
}

.tk-home-block__more:hover {
  color: #ff9900;
}

/* ── 每日特惠横幅 ── */
.tk-daily-deal-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tk-daily-deal {
  display: flex;
  align-items: stretch;
  gap: 24px;
  min-height: 280px;
  padding: 36px 40px;
  background: #ececec;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.tk-daily-deal__content {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tk-daily-deal__tag {
  margin: 0 0 10px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.tk-daily-deal__title {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 12px;
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.15;
}

.tk-daily-deal__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 5px;
  background: #111;
  border-radius: 999px;
}

.tk-daily-deal__desc {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.tk-daily-deal__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.tk-daily-deal__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 12px 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tk-daily-deal__num {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tk-daily-deal__unit small {
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

.tk-daily-deal__sep {
  font-size: 22px;
  font-weight: 700;
  color: #999;
  line-height: 1;
  padding-bottom: 14px;
}

.tk-daily-deal__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}

.tk-daily-deal__btn:hover {
  background: #333;
  color: #fff;
}

.tk-daily-deal__visual {
  position: relative;
  flex: 0 0 42%;
  max-width: 520px;
  align-self: center;
  min-height: 220px;
}

.tk-daily-deal__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: contain;
  object-position: center bottom;
}

.tk-daily-deal__badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.02em;
}

.tk-daily-deal__badge [data-deal-badge-pct] {
  font-size: 18px;
}

.tk-daily-deal__badge [data-deal-badge-off] {
  font-size: 14px;
}

.tk-home-block__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.tk-category-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tk-category-strip:active {
  cursor: grabbing;
}

.tk-category-item {
  flex: 0 0 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: #333;
  text-decoration: none;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.tk-category-strip::-webkit-scrollbar {
  display: none;
}

.tk-category-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.tk-category-strip.is-dragging .tk-category-item {
  cursor: grabbing;
}

.tk-category-item:hover,
.tk-category-item.is-active {
  background: #f5f5f5;
  border-color: #e5e5e5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.tk-category-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #fafafa;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}

.tk-category-item:hover .tk-category-item__icon,
.tk-category-item.is-active .tk-category-item__icon {
  border-color: #111;
}

.tk-category-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tk-category-item__name {
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  color: #333;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tk-daily-section {
  padding-top: 18px;
  padding-bottom: 24px;
}

.tk-daily-section .tk-product-grid > *:nth-child(n + 11) {
  display: none;
}

.tk-featured-section {
  padding-top: 0;
  padding-bottom: 8px;
}

.tk-featured-section .tk-product-grid > *:nth-child(n + 11) {
  display: none;
}

/* ── 首页中部双栏（home_mid，位于推荐产品下方）── */
.tk-mid-duo-section {
  padding-top: 0;
  padding-bottom: 24px;
}

.tk-mid-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tk-mid-card {
  position: relative;
  display: block;
  aspect-ratio: 742 / 200;
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #ececec;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.tk-mid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.tk-mid-card:hover img { transform: scale(1.03); }

.tk-mid-card__glass {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  width: min(220px, 56%);
  padding: 10px 14px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.tk-mid-card__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
}

.tk-mid-card__title {
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.15;
}

.tk-mid-card__link {
  font-size: 12px;
  color: #666;
  transition: color 0.15s;
}

.tk-mid-card:hover .tk-mid-card__link { color: #111; }

/* ── 店铺街横幅（home_shop_street，位于店铺街标题上方）── */
.tk-shop-street-banners-section {
  padding-top: 8px;
  padding-bottom: 0;
}

.tk-shop-street-banners-section.is-hidden {
  display: none !important;
}

/* ── 店铺街 ── */
.tk-shop-street-section {
  padding-top: 16px;
  padding-bottom: 24px;
}

/* ── 首页底部链接区（店铺街下方）── */
.tk-home-footer-links {
  padding: 8px 0 48px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.tk-home-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(120px, 1fr));
  gap: 48px 32px;
  align-items: start;
}

.tk-home-footer-subscribe__lead {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.tk-home-footer-subscribe {
  display: flex;
  align-items: stretch;
  max-width: 360px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.tk-home-footer-subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border: 0;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.tk-home-footer-subscribe input::placeholder {
  color: #aaa;
}

.tk-home-footer-subscribe input:focus {
  outline: none;
}

.tk-home-footer-subscribe button {
  flex: 0 0 auto;
  padding: 0 22px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.tk-home-footer-subscribe button:hover {
  background: #333;
}

.tk-home-footer-col__title {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.tk-home-footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tk-home-footer-col__links a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.15s;
}

.tk-home-footer-col__links a:hover {
  color: #111;
}

.tk-home-footer-col--side {
  padding-top: 38px;
}

.tk-bottom-cat-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tk-bottom-cat-section .tk-product-grid > *:nth-child(n + 11) {
  display: none;
}

.tk-shop-street {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.tk-shop-street--banners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tk-shop-street--shops {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.tk-shop-street-shops-wrap {
  display: block;
}

.tk-shop-street__more {
  display: none;
}

.tk-shop-street__item {
  display: block;
  aspect-ratio: 490 / 300;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.tk-shop-street__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tk-shop-street__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tk-shop-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.tk-shop-card:hover {
  border-color: #ffb800;
  box-shadow: 0 8px 22px rgba(255, 153, 0, 0.12);
  transform: translateY(-2px);
}

.tk-shop-card__logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f3f4f6;
  overflow: hidden;
}

.tk-shop-card__logo img {
  width: 72px;
  height: 72px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  display: block;
}

.tk-shop-card__logo img[src=""],
.tk-shop-card__logo img:not([src]) {
  display: none;
}

.tk-shop-card__logo-ph {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe8b8 0%, #ffb800 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.tk-shop-card__body {
  min-width: 0;
  flex: 1 1 auto;
}

.tk-shop-card__name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tk-shop-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: #888;
}

.tk-shop-card__rating {
  color: #ff9900;
  font-weight: 600;
}

.tk-product-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.tk-product-row::-webkit-scrollbar { height: 6px; }
.tk-product-row::-webkit-scrollbar-thumb { background: #ddd; border-radius: 999px; }

.tk-product-row .tk-product-card {
  scroll-snap-align: start;
}

.tk-product-row .store-empty {
  flex: 1 1 auto;
  min-width: 100%;
}

.tk-category-strip .store-empty {
  flex: 1 1 auto;
  min-width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
}

/* ── 商品区 ── */
.tk-products-section {
  background: #fafafa;
  padding: 4px 0 48px;
}

.tk-products-section > .tk-wrap,
.tk-products-section > .tk-home-wrap {
  width: 1500px;
  max-width: calc(100% - 24px);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

@media (max-width: 1100px) {
  .tk-hero__arrow--next { right: 72px; }
  .tk-promo-grid > .tk-wrap { width: calc(100% - 24px); max-width: 1500px; }
  .tk-home-wrap { width: calc(100% - 24px); max-width: 1500px; }
  .tk-category-item { flex-basis: 108px; }
  .tk-promo-grid__layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto;
    aspect-ratio: auto;
    min-height: 0;
  }
  .tk-promo-card--tall {
    grid-row: 1 / span 2;
    grid-column: 1;
    min-height: 315px;
  }
  .tk-promo-card--square:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    min-height: 153px;
  }
  .tk-promo-card--square:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
    min-height: 153px;
  }
  .tk-promo-card--wide {
    grid-column: 1 / span 2;
    grid-row: 3;
    min-height: 150px;
    aspect-ratio: 1200 / 215;
  }
}

@media (max-width: 768px) {
  /* 轮播：宽度随屏自适应，固定比例框 + 圆角，图片铺满 */
  .page-home .tk-hero {
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: none;
    height: auto;
    aspect-ratio: 2 / 1;
    margin: 10px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: none;
    display: block;
  }

  .tk-hero__media {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    max-width: none;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
  }

  .tk-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .tk-hero__media img.is-ready {
    opacity: 1;
  }

  .tk-promo-card img:not(.is-ready) {
    opacity: 0;
  }

  .tk-promo-card img.is-ready {
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .tk-hero__pager {
    bottom: 8px;
    z-index: 6;
  }

  .tk-hero__copy { max-width: 68%; }
  .tk-hero__arrow { display: none; }
  .tk-promo-grid { padding: 10px 0 12px; }
  .tk-promo-grid > .tk-wrap {
    width: 100%;
    max-width: none;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .tk-home-wrap {
    width: 100%;
    max-width: none;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .tk-home-block__title {
    font-size: 18px;
    margin-bottom: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .tk-home-block__title::before,
  .tk-home-block__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
  }
  .tk-daily-deal-section {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .tk-daily-deal {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    min-height: 0;
    border-radius: 10px;
  }

  .tk-daily-deal__content {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }

  .tk-daily-deal__tag {
    display: none;
  }

  .tk-daily-deal__title {
    margin-bottom: 4px;
    padding-bottom: 4px;
    font-size: 16px;
  }

  .tk-daily-deal__title::after {
    width: 36px;
    height: 2px;
  }

  .tk-daily-deal__desc {
    display: none;
  }

  .tk-daily-deal__countdown {
    flex-wrap: nowrap;
    gap: 2px;
    margin-bottom: 6px;
  }

  .tk-daily-deal__unit {
    min-width: 30px;
    padding: 3px 4px 2px;
    border-radius: 6px;
  }

  .tk-daily-deal__num { font-size: 13px; }

  .tk-daily-deal__unit small {
    margin-top: 1px;
    font-size: 9px;
  }

  .tk-daily-deal__sep {
    font-size: 12px;
    padding-bottom: 6px;
  }

  .tk-daily-deal__btn {
    padding: 5px 12px;
    font-size: 11px;
  }

  .tk-daily-deal__visual {
    display: none;
  }

  .tk-mid-duo { grid-template-columns: 1fr; }
  .tk-shop-street--banners { grid-template-columns: 1fr; }

  .tk-shop-street--shops {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .tk-shop-street--shops.is-collapsed > *:nth-child(n + 7) {
    display: none;
  }

  .tk-shop-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 10px 6px 12px;
    border-radius: 10px;
    box-shadow: none;
  }

  .tk-shop-card:hover {
    transform: none;
    box-shadow: none;
  }

  .tk-shop-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }

  .tk-shop-card__logo img {
    width: 56px;
    height: 56px;
  }

  .tk-shop-card__logo-ph {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .tk-shop-card__body {
    width: 100%;
  }

  .tk-shop-card__name {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
  }

  .tk-shop-card__meta {
    justify-content: center;
    font-size: 11px;
  }

  .tk-shop-street__more {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px 16px;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
  }

  .tk-shop-street__more:hover {
    border-color: #ffb800;
    color: #ff9900;
  }

  .tk-shop-street__more.is-hidden {
    display: none !important;
  }
  .tk-home-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .tk-home-footer-col--subscribe {
    grid-column: 1 / -1;
  }

  .tk-home-footer-subscribe {
    max-width: none;
  }

  .tk-home-footer-subscribe__lead {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .tk-home-footer-col__title {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 13px;
  }

  .tk-home-footer-col__links {
    gap: 8px;
  }

  .tk-home-footer-col__links a {
    font-size: 12px;
  }
  .tk-category-item { flex-basis: 96px; padding: 10px 8px; }
  .tk-category-item__icon { width: 60px; height: 60px; }
  /* 手机端促销区：行高随内容，避免 STOCK CLEARANCE 下方出现空白 */
  .tk-promo-grid__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    aspect-ratio: auto;
  }
  .tk-promo-card--square:nth-of-type(2) {
    grid-column: 1;
    grid-row: 1;
    order: 1;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    align-self: start;
  }
  .tk-promo-card--square:nth-of-type(3) {
    grid-column: 2;
    grid-row: 1;
    order: 2;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    align-self: start;
  }
  .tk-promo-card--wide {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
    min-height: 0;
    aspect-ratio: 794 / 215;
    align-self: start;
  }
  /* 手机端隐藏：STOCK CLEARANCE 下方潮男系列大横幅（红框位置） */
  .tk-promo-card--tall {
    display: none;
  }
  .tk-promo-card--tall .tk-promo-card__glass,
  .tk-promo-card--square .tk-promo-card__glass,
  .tk-promo-card--wide .tk-promo-card__glass {
    width: min(198px, calc(100% - 40px));
  }
  .tk-promo-card__cta {
    width: 85%;
    min-width: 0;
    max-width: none;
  }
  .tk-promo-card__clearance {
    padding: 10px 20px;
    font-size: 20px;
  }
  .tk-promo-card__more {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .tk-promo-card--tall .tk-promo-card__title { font-size: 18px; }
  .tk-promo-card--square .tk-promo-card__title,
  .tk-promo-card--wide .tk-promo-card__title { font-size: 15px; }
}

@media (max-width: 640px) {
  .tk-hero__copy { max-width: 78%; }

  .tk-hero__line--1 { font-size: clamp(28px, 8vw, 42px); }

  .tk-hero__line--2 { font-size: clamp(34px, 9.5vw, 54px); }

  .tk-hero__promo { font-size: clamp(24px, 7vw, 38px); }

  .tk-hero__script { font-size: clamp(16px, 4.5vw, 22px); }

  .tk-category-strip { padding: 0 4px; }

  .tk-category-item { flex-basis: 88px; }

  .tk-category-item__icon { width: 52px; height: 52px; }
}
