/* TASFUL市場 — 検索結果（Amazon風・390px基準） */
body.tasful-market-search-page {
  padding-top: calc(var(--tasful-market-header-total-h, 152px) + env(safe-area-inset-top, 0px)) !important;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  background: var(--tasful-market-bg);
}

body.tasful-market-search-page .tasu-banner {
  display: none !important;
}

.tasful-market-search-shell {
  min-height: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tasful-market-search-main {
  padding: 10px 0 0;
}

/* ツールバー — 件数 + 並び替え */
.tasful-market-search-toolbar {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid var(--tasful-market-border);
}

.tasful-market-search-toolbar__hit {
  margin: 0;
  padding-left: 4px;
  font-size: 12px;
  color: #666;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

/* 並び替え */
.tasful-market-search-toolbar .tasful-market-search-sort {
  display: block;
  width: 100%;
}

.tasful-market-search-sort__select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--tasful-market-border);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tasful-market-text);
}

/* 絞り込みチップ */
.tasful-market-search-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px var(--tasful-market-pad);
  background: #fff;
  border-bottom: 1px solid var(--tasful-market-border);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tasful-market-search-filters::-webkit-scrollbar {
  display: none;
}

.tasful-market-search-chip {
  flex-shrink: 0;
  padding: 7px 12px;
  border: 1px solid var(--tasful-market-border);
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
}

.tasful-market-search-chip:hover {
  border-color: var(--tasful-market-accent);
}

.tasful-market-search-chip.is-active {
  background: var(--tasful-market-accent);
  border-color: var(--tasful-market-accent);
  color: #fff;
}

.tasful-market-search-empty {
  margin: 20px var(--tasful-market-pad);
  padding: 28px 16px;
  border: 1px dashed var(--tasful-market-border);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  font-size: 0.875rem;
  color: var(--tasful-market-muted);
}

/* 商品グリッド */
.tasful-market-search-grid {
  display: grid;
  align-items: stretch;
  gap: 8px;
  padding: 10px 12px;
  background: var(--tasful-market-bg);
}

@media (max-width: 960px) {
  .tasful-market-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tasful-market-search-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.tasful-market-search-filters-panel,
.tasful-market-search-cart-rail,
.tasful-market-search-pc-bottom {
  display: none;
}

.tasful-market-search-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
  padding: 6px 8px 4px;
  text-decoration: none;
  color: inherit;
}

.tasful-market-search-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  overflow: hidden;
}

.tasful-market-search-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tasful-market-search-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.tasful-market-search-card__fav {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.14);
  color: #6b7280;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
}

.tasful-market-search-card__fav.is-active {
  color: #e11d48;
}

.tasful-market-search-card__fav-icon {
  display: block;
  line-height: 1;
}

.tasful-market-search-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  padding: 0;
}

.tasful-market-search-card__condition {
  display: inline-block;
  align-self: flex-start;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.tasful-market-search-card__condition--handmade {
  background: #fef3c7;
  color: #92400e;
}

.tasful-market-search-card__condition--local {
  background: #ecfdf5;
  color: #047857;
}

.tasful-market-search-card__condition--used {
  background: #eff6ff;
  color: #1d4ed8;
}

.tasful-market-search-card__condition--likeNew {
  background: #f5f3ff;
  color: #6d28d9;
}

.tasful-market-search-card__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.38;
  min-height: calc(2 * 1.38em);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tasful-market-search-card__rating {
  margin: 0;
  font-size: 0.75rem;
  color: var(--tasful-market-muted);
  font-weight: 600;
  line-height: 1.3;
}

.tasful-market-search-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tasful-market-search-card__price {
  margin: 0;
  font-size: var(--tasful-market-list-price-size);
  font-weight: var(--tasful-market-list-price-weight);
  color: var(--tasful-market-list-price-color);
  line-height: 1.28;
}

.tasful-market-search-card__price-tax {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--tasful-market-muted);
}

.tasful-market-search-card__ship {
  margin: 0;
  font-size: 0.6875rem;
  color: #047857;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tasful-market-search-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-height: 1.25rem;
  margin: 0;
}

.tasful-market-search-card__ship-free {
  font-size: 0.6875rem;
  color: #047857;
  font-weight: 700;
  line-height: 1.3;
}

.tasful-market-search-card__badge-connect {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.25;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.tasful-market-search-card__rating-row--pc,
.tasful-market-search-card__pc-detail,
.tasful-market-search-card__seller-trust--pc {
  display: none;
}

.tasful-market-search-card__rating--legacy {
  margin: 0;
}

/* RELEASE FROZEN — 検索 SP「カートに入れる」CTA 44px（verify-market-search-sp-cta.mjs PASS） */
.tasful-market-search-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: calc(100% - 16px);
  margin: auto 8px 10px;
  min-height: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e7b500;
  border-radius: 999px;
  background: #ffd814;
  color: #111;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  -webkit-tap-highlight-color: transparent;
}

/* SP — 検索カード「カートに入れる」タップ領域 44px+ */
@media (max-width: 960px) {
  body.tasful-market-search-page .tasful-market-search-card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: calc(100% - 16px);
    margin: 6px 8px 10px;
    min-height: 44px;
    height: 44px;
    padding: 0 10px;
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
  }
}

.tasful-market-search-card__cart:hover {
  filter: brightness(0.98);
}

.tasful-market-search-card__cart:disabled {
  opacity: 0.72;
  cursor: default;
}

.tasful-market-search-card.recommend-fill {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-style: dashed;
  border-color: #d1d5db;
  background: #fafafa;
}

.tasful-market-search-card.recommend-fill::after {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 46px;
  margin: 0 8px 10px;
}

.tasful-market-search-card__recommend-label {
  margin: 0;
  padding: 6px 8px 0;
  font-size: 0.625rem;
  font-weight: 800;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.recommend-fill .tasful-market-search-card__link {
  flex: 1;
}

.recommend-fill__price {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
  color: #b12704;
}

.recommend-fill .tasful-market-search-card__body {
  gap: 4px;
}

.recommend-fill .tasful-market-search-card__title {
  -webkit-line-clamp: 2;
}

/* ページネーション */
.tasful-market-search-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px 16px;
  background: var(--tasful-market-bg);
}

.tasful-market-search-pagination__btn,
.tasful-market-search-pagination__page {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--tasful-market-border);
  border-radius: 8px;
  background: #fff;
  color: var(--tasful-market-text);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  cursor: pointer;
}

.tasful-market-search-pagination__page.is-active {
  background: var(--tasful-market-accent);
  border-color: var(--tasful-market-accent);
  color: #fff;
}

.tasful-market-search-pagination__btn[disabled] {
  opacity: 0.45;
  cursor: default;
}

/* 関連棚 */
.tasful-market-search-shelf {
  padding: 14px 0 6px;
  background: #fff;
  border-top: 8px solid var(--tasful-market-bg);
}

.tasful-market-search-shelf__head {
  padding: 0 10px 8px;
  text-align: left;
}

.tasful-market-search-shelf__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--tasful-market-text);
  text-align: left;
}

.tasful-market-search-shelf__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 10px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tasful-market-search-shelf__scroll::-webkit-scrollbar {
  display: none;
}

.tasful-market-search-mini {
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.tasful-market-search-mini__img {
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  overflow: hidden;
}

.tasful-market-search-mini__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasful-market-search-mini__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 6px 8px 8px;
  text-align: left;
}

.tasful-market-search-mini__title {
  margin: 0;
  width: 100%;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tasful-market-search-mini__condition {
  display: inline-block;
  align-self: flex-start;
  padding: 1px 5px;
  border-radius: 4px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.5625rem;
  font-weight: 800;
  line-height: 1.35;
}

.tasful-market-search-mini__condition--handmade {
  background: #fef3c7;
  color: #92400e;
}

.tasful-market-search-mini__condition--local {
  background: #ecfdf5;
  color: #047857;
}

.tasful-market-search-mini__condition--used {
  background: #eff6ff;
  color: #1d4ed8;
}

.tasful-market-search-mini__condition--likeNew {
  background: #f5f3ff;
  color: #6d28d9;
}

.tasful-market-search-mini__rating {
  margin: 0;
  width: 100%;
  font-size: 0.625rem;
  color: var(--tasful-market-muted);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.tasful-market-search-mini__price {
  margin: 0;
  width: 100%;
  font-size: var(--tasful-market-list-price-size);
  font-weight: var(--tasful-market-list-price-weight);
  color: var(--tasful-market-list-price-color);
  line-height: 1.28;
  text-align: left;
}

.tasful-market-search-shelf__sellers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 10px 4px;
  text-align: left;
}

.tasful-market-search-seller {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  color: var(--tasful-market-text);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.tasful-market-search-seller__name {
  line-height: 1.35;
  text-align: left;
}

.tasful-market-search-seller__mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.625rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-weight: 800;
  line-height: 1.25;
}

.tasful-market-search-shell > [data-breadcrumb] {
  padding: 8px var(--tasful-market-pad) 0;
}

.tasful-market-search-page .tasful-market-footer {
  margin-top: 0;
}

@media (min-width: 961px) {
  .tasful-market-search-shell {
    max-width: 1240px;
    margin: 0 auto;
  }

  /* shop-market-pc.css より後に読み込まれるため PC タイポを確定 */
  .tasful-market-search-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: calc(2 * 1.4em);
    color: #111827;
  }

  .tasful-market-search-card__price {
    font-size: var(--tasful-market-list-price-size-pc);
    font-weight: var(--tasful-market-list-price-weight);
    color: var(--tasful-market-list-price-color);
  }

  .tasful-market-search-card__rating {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #9ca3af;
  }

  .tasful-market-search-card__ship,
  .tasful-market-search-card__ship-free {
    font-size: 0.625rem;
    font-weight: 600;
    color: #6b7280;
  }

  .tasful-market-search-card__img {
    max-height: 200px;
  }

  body.tasful-market-search-page .tasful-market-search-card__img,
  body.tasful-market-search-page .tasful-market-search-card__img img {
    max-height: none !important;
  }

  .tasful-market-search-card__img img {
    max-height: 200px;
    object-fit: cover;
  }

  .tasful-market-search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 961px) and (max-width: 1099px) {
  .tasful-market-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Amazon JP 検索 — PC 1025px+ のみ（モバイル〜1024px は上記ルールのまま） */
@media (min-width: 1025px) {
  body.tasful-market-search-page {
    scroll-padding-top: calc(var(--tasful-market-header-total-h, 152px) + 8px);
  }

  body.tasful-market-search-page .tasful-market-search-shell {
    box-sizing: border-box;
    width: 100%;
    max-width: calc(1440px + 48px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  body.tasful-market-search-page {
    --tasful-search-pc-layout-max: 1440px;
    --tasful-search-pc-filter-w: 240px;
    --tasful-search-pc-layout-gap: 16px;
    --tasful-search-pc-grid-row-gap: 20px;
    --tasful-search-pc-grid-col-gap: 14px;
    --tasful-search-pc-card-min-h: 340px;
  }

  body.tasful-market-search-page .tasful-market-search-layout {
    display: grid;
    grid-template-columns: var(--tasful-search-pc-filter-w) minmax(0, 1fr);
    gap: var(--tasful-search-pc-layout-gap);
    align-items: start;
    box-sizing: border-box;
    width: 100%;
    max-width: var(--tasful-search-pc-layout-max);
    margin-left: auto;
    margin-right: auto;
  }

  body.tasful-market-search-page .tasful-market-search-filters-panel {
    display: block;
    position: static;
    top: auto;
    max-height: none;
    height: auto;
    overflow: visible;
    z-index: auto;
    align-self: start;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail {
    display: none !important;
  }

  body.tasful-market-search-page .tasful-market-search-center {
    min-width: 0;
    width: 100%;
  }

  body.tasful-market-search-page .tasful-market-search-main {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    padding-top: 4px;
    min-width: 0;
    scroll-margin-top: calc(var(--tasful-market-header-total-h, 152px) + 8px);
  }

  body.tasful-market-search-page .tasful-market-search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    background: transparent;
    border-bottom: 1px solid #d5d9d9;
  }

  body.tasful-market-search-page .tasful-market-search-toolbar__hit {
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #0f1111;
    line-height: 1.4;
  }

  body.tasful-market-search-page .tasful-market-search-toolbar .tasful-market-search-sort {
    display: block;
    width: auto;
    flex-shrink: 0;
  }

  body.tasful-market-search-page .tasful-market-search-sort__select {
    width: auto;
    min-width: 180px;
    height: 32px;
    padding: 0 28px 0 10px;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #f0f2f2;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #0f1111;
  }

  body.tasful-market-search-page .tasful-market-search-filters {
    display: none;
  }

  body.tasful-market-search-page .tasful-market-search-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--tasful-search-pc-grid-row-gap) var(--tasful-search-pc-grid-col-gap);
    padding: 16px 0;
    background: transparent;
    overflow: visible;
  }

  body.tasful-market-search-page .tasful-market-search-main,
  body.tasful-market-search-page .tasful-market-search-center {
    overflow-x: visible;
  }

  body.tasful-market-search-page .tasful-market-search-shelf--mobile-only,
  body.tasful-market-search-page .tasful-market-search-shelf__scroll {
    display: none !important;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d5d9d9;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom__block + .tasful-market-search-pc-bottom__block {
    margin-top: 20px;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom__title {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.3;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom__brands {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    color: #0f1111;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card__img {
    display: block;
    width: 104px;
    height: 104px;
    overflow: hidden;
    background: #fff;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f1111;
  }

  body.tasful-market-search-page .tasful-market-search-brand-card__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: #007185;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom__history {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
  }

  body.tasful-market-search-page .tasful-market-search-history-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    border: 1px solid #d5d9d9;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
  }

  body.tasful-market-search-page .tasful-market-search-history-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.tasful-market-search-page .tasful-market-footer--search {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 32px 0 0;
    padding: 0;
    border-radius: 0;
    background: #1f2937;
  }

  body.tasful-market-search-page .tasful-market-footer--search .tasful-market-footer__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: min(96vw, 1600px);
    margin: 0 auto;
    padding: 32px 16px 24px;
    display: grid;
    grid-template-columns: minmax(200px, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
    align-items: start;
  }

  body.tasful-market-search-page .tasful-market-footer--search .tasful-market-footer__copy {
    grid-column: 1 / -1;
    margin-top: 8px;
    text-align: left;
  }

  body.tasful-market-search-page .tasful-market-search-card {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: var(--tasful-search-pc-card-min-h);
    overflow: visible;
    scroll-margin-top: calc(var(--tasful-market-header-total-h, 152px) + 8px);
  }

  body.tasful-market-search-page .tasful-market-search-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 5px;
    min-height: 0;
    padding: 0;
  }

  body.tasful-market-search-page .tasful-market-search-card__img {
    max-height: none !important;
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  body.tasful-market-search-page .tasful-market-search-card__img img {
    max-height: none !important;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  body.tasful-market-search-page .tasful-market-search-card__condition,
  body.tasful-market-search-page .tasful-market-search-card__meta {
    display: none;
  }

  body.tasful-market-search-page .tasful-market-search-card__link {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 2px 0 0;
    text-decoration: none;
    color: inherit;
  }

  body.tasful-market-search-page .tasful-market-search-card__link .tasful-market-search-card__price-block {
    display: none;
  }

  body.tasful-market-search-page .tasful-market-search-card__pc-detail {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
    margin-top: 0;
  }

  body.tasful-market-search-page .tasful-market-search-card__rating--legacy {
    display: none;
  }

  body.tasful-market-search-page .tasful-market-search-card__rating-row--pc {
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  body.tasful-market-search-page .tasful-market-search-card__seller-trust--pc {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 0 3px;
    padding: 0;
    flex-shrink: 0;
  }

  body.tasful-market-search-page .tasful-market-search-card__seller-trust-connect {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #047857;
  }

  body.tasful-market-search-page .tasful-market-search-card__seller-trust-deals {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;
  }

  body.tasful-market-search-page .tasful-rating {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    outline: none;
  }

  body.tasful-market-search-page .tasful-rating__trigger {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 400;
    color: #007185;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-rating__star {
    color: #f59e0b;
    font-size: 12px;
    line-height: 1;
  }

  body.tasful-market-search-page .tasful-rating__score {
    font-weight: 600;
    color: #007185;
  }

  body.tasful-market-search-page .tasful-rating__count {
    color: #007185;
  }

  body.tasful-market-search-page .tasful-rating-popover {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 300px;
    padding: 14px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    pointer-events: none;
  }

  body.tasful-market-search-page .tasful-rating:hover .tasful-rating-popover,
  body.tasful-market-search-page .tasful-rating:focus-within .tasful-rating-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.tasful-market-search-page .tasful-rating.is-edge .tasful-rating-popover {
    left: auto;
    right: 0;
  }

  body.tasful-market-search-page .tasful-rating-popover__head {
    margin-bottom: 10px;
  }

  body.tasful-market-search-page .tasful-rating-popover__score-line {
    margin: 0 0 4px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-rating-popover__stars {
    color: #f59e0b;
    letter-spacing: 0.02em;
  }

  body.tasful-market-search-page .tasful-rating-popover__score {
    font-weight: 700;
    color: #0f1111;
  }

  body.tasful-market-search-page .tasful-rating-popover__count {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: #565959;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-rating-popover__breakdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.tasful-market-search-page .tasful-rating-popover__bar-row {
    display: grid;
    grid-template-columns: 36px 150px 1fr;
    align-items: center;
    gap: 6px;
  }

  body.tasful-market-search-page .tasful-rating-popover__bar-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #007185;
    line-height: 1.2;
  }

  body.tasful-market-search-page .tasful-rating-popover__bar-track {
    display: block;
    width: 150px;
    height: 14px;
    border-radius: 3px;
    background: #e5e7eb;
    overflow: hidden;
  }

  body.tasful-market-search-page .tasful-rating-popover__bar-fill {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: #f59e0b;
  }

  body.tasful-market-search-page .tasful-rating-popover__bar-pct {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #565959;
    text-align: right;
    line-height: 1.2;
  }

  body.tasful-market-search-page .tasful-rating-popover__divider {
    margin: 12px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
  }

  body.tasful-market-search-page .tasful-rating-popover__trust-heading {
    margin: 0 0 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-rating-popover__trust-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.tasful-market-search-page .tasful-rating-popover__trust-item {
    font-size: 0.75rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.4;
  }

  body.tasful-market-search-page .tasful-rating-popover__trust-item.is-verified {
    font-weight: 600;
    color: #047857;
  }

  body.tasful-market-search-page .tasful-rating-popover__reviews-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #007185;
    text-decoration: none;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-rating-popover__reviews-link:hover {
    color: #c7511f;
    text-decoration: underline;
  }

  body.tasful-market-search-page .tasful-market-search-card__rating {
    display: none;
  }

  body.tasful-market-search-page .tasful-market-search-card__title {
    flex-shrink: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    height: auto;
    min-height: 0;
    max-height: calc(2 * 1.45em);
    color: #0f1111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.tasful-market-search-page .tasful-market-search-card__price-block {
    margin-top: auto;
    padding-top: 4px;
  }

  body.tasful-market-search-page .tasful-market-search-card__pc-detail .tasful-market-search-card__price-block {
    margin-top: auto;
    padding-top: 0;
  }

  body.tasful-market-search-page .tasful-market-search-card__price {
    margin: 0;
    font-size: var(--tasful-market-list-price-size-pc);
    font-weight: var(--tasful-market-list-price-weight);
    color: var(--tasful-market-list-price-color);
    line-height: 1.25;
  }

  body.tasful-market-search-page .tasful-market-search-card__price-tax {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #565959;
  }

  body.tasful-market-search-page .tasful-market-search-card__ship {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: #565959;
    line-height: 1.3;
  }

  body.tasful-market-search-page .tasful-market-search-card__cart {
    flex-shrink: 0;
    width: 100%;
    margin: 6px 0 0;
    min-height: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #e7b500;
    border-radius: 999px;
    background: #ffd814;
    color: #111;
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  }

  body.tasful-market-search-page .tasful-market-search-card__cart:hover {
    background: #f7ca00;
    color: #111;
    filter: none;
  }

  body.tasful-market-search-page .tasful-market-search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin: 4px 0 0;
    padding: 18px 0 20px;
    box-sizing: border-box;
    background: transparent;
  }

  body.tasful-market-search-page .tasful-market-search-shelf {
    border-top: 1px solid #d5d9d9;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel {
    padding: 16px 18px;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    background: #fff;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel__group + .tasful-market-search-filter-panel__group {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e3e6e6;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel__heading {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 28px;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #0f1111;
    cursor: pointer;
  }

  body.tasful-market-search-page .tasful-market-search-filter-panel__check input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__box {
    padding: 16px;
    border: 1px solid #e3e6e6;
    border-radius: 8px;
    background: #fff;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1111;
    line-height: 1.35;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__subtotal {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    color: #565959;
    line-height: 1.45;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__subtotal strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b12704;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__checkout {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 14px;
    padding: 10px 12px;
    min-height: 40px;
    border: 1px solid #ffd814;
    border-radius: 999px;
    background: #fff7cc;
    color: #5c4200;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
  }

  .tasful-market-search-cart-rail__checkout:hover {
    background: #ffd814;
    color: #111;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__item-img {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 1px solid #e3e6e6;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }

  .tasful-market-search-cart-rail__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tasful-market-search-cart-rail__item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__item-title {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #007185;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #b12704;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__empty {
    margin: 0;
    font-size: 0.9375rem;
    color: #565959;
  }

  body.tasful-market-search-page .tasful-market-search-cart-rail__view {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #007185;
    text-decoration: none;
  }

  .tasful-market-search-cart-rail__view:hover {
    color: #c7511f;
    text-decoration: underline;
  }
}

@media (min-width: 1280px) {
  body.tasful-market-search-page {
    --tasful-search-pc-filter-w: 240px;
    --tasful-search-pc-grid-row-gap: 22px;
    --tasful-search-pc-grid-col-gap: 16px;
    --tasful-search-pc-card-min-h: 360px;
  }

  body.tasful-market-search-page .tasful-market-search-pc-bottom__brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  body.tasful-market-search-page {
    --tasful-search-pc-filter-w: 240px;
    --tasful-search-pc-grid-col-gap: 18px;
    --tasful-search-pc-card-min-h: 370px;
  }

  body.tasful-market-search-page .tasful-market-search-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) {
  body.tasful-market-search-page {
    --tasful-search-pc-filter-w: 240px;
    --tasful-search-pc-grid-col-gap: 20px;
    --tasful-search-pc-card-min-h: 380px;
  }
}

@media (max-width: 1024px) {
  .tasful-rating-popover,
  .tasful-market-search-card__rating-row--pc,
  .tasful-market-search-card__pc-detail,
  .tasful-market-search-card__seller-trust--pc {
    display: none !important;
  }
}
