/* ══════════════════════════════════════════════════
   TOKYO CENTRAL — Shop Pages (Collection + Product)
   Extracted from tc-collection-page.liquid & tc-product-page.liquid
   ══════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.tc-page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #FAF8F0 0%, #F5F0DC 60%, #EDE8D0 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) {
  .tc-page-hero { padding: 80px 0 64px; }
}
.tc-page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(46,125,50,0.018) 40px, rgba(46,125,50,0.018) 41px),
    repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(46,125,50,0.018) 40px, rgba(46,125,50,0.018) 41px);
  pointer-events: none;
}
.tc-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}
.tc-section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2E7D32;
  background: rgba(46,125,50,0.08);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.tc-page-hero-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: #1A1A1A;
  margin: 0 0 16px;
}
.tc-page-hero-subtitle {
  font-size: 16px;
  color: #6B6B6B;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* Compact hero — product detail pages */
.tc-page-hero--compact { padding: 32px 0 28px; }
@media (min-width: 768px) {
  .tc-page-hero--compact { padding: 40px 0 36px; }
}
.tc-page-hero--compact .tc-page-hero-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 8px;
}
.tc-page-hero--compact .tc-page-hero-inner { max-width: 720px; }

/* Breadcrumb */
.tc-breadcrumb { margin-bottom: 12px; }
.tc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #6B6B6B;
}
.tc-breadcrumb li { display: flex; align-items: center; gap: 4px; }
.tc-breadcrumb li + li::before {
  content: '/';
  color: #A8A8A0;
  margin-right: 4px;
}
.tc-breadcrumb a {
  color: #2E7D32;
  text-decoration: none;
  padding: 4px 2px;
}
.tc-breadcrumb a:hover { text-decoration: underline; }
.tc-breadcrumb a:focus-visible { outline: 2px solid #2E7D32; outline-offset: 2px; }
.tc-breadcrumb [aria-current='page'] {
  color: #1A1A1A;
  font-weight: 600;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── CATEGORY CHIPS ── */
.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.tc-shop-collection {
  padding: 48px 0 64px;
  background: #FAF8F0;
}
.tc-shop-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media (max-width: 639px) {
  /* one swipeable row instead of stacked rows */
  .tc-shop-chips {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    margin: 0 -20px 32px;
    padding: 4px 20px;
  }
  .tc-shop-chips::-webkit-scrollbar { display: none; }
  .tc-shop-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
.tc-shop-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #fff;
  color: #6B6B6B;
  border: 1.5px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.tc-shop-chip:hover {
  color: #2E7D32;
  border-color: rgba(46,125,50,0.2);
  background: rgba(46,125,50,0.04);
}
.tc-shop-chip.active {
  background: #2E7D32;
  color: #fff;
  border-color: #2E7D32;
  box-shadow: 0 4px 12px rgba(42,40,30,0.08), 0 2px 4px rgba(42,40,30,0.04);
}
.tc-shop-chip.active:hover {
  background: #1B5E20;
  border-color: #1B5E20;
}
.tc-shop-chip:focus-visible { outline: 2px solid #2E7D32; outline-offset: 2px; }

/* ── PRODUCT GRID ── */
.tc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (min-width: 640px) {
  .tc-product-grid { gap: 24px; }
}
@media (min-width: 1024px) {
  .tc-product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── PRODUCT CARD ── */
.tc-product-card {
  background: #FAF8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(42,40,30,0.06), 0 1px 2px rgba(42,40,30,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 180ms ease, transform 180ms ease;
  display: flex;
  flex-direction: column;
}
.tc-product-card:hover {
  box-shadow: 0 4px 12px rgba(42,40,30,0.08), 0 2px 4px rgba(42,40,30,0.04);
  transform: translateY(-3px);
}
.tc-product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  display: block;
  text-decoration: none;
}
.tc-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.tc-product-card:hover .tc-product-card-img img {
  transform: scale(1.06);
}
.tc-product-card-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
}
.tc-product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(26,26,26,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
}
.tc-product-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tc-product-card-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.tc-product-card-name a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 180ms ease;
}
.tc-product-card-name a:hover { color: #2E7D32; }
.tc-product-card-name a:focus-visible { outline: 2px solid #2E7D32; outline-offset: 2px; }
.tc-product-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #2E7D32;
}

/* Actions row */
.tc-product-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tc-product-card-detail-link {
  font-size: 13px;
  font-weight: 600;
  color: #6B6B6B;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0;
  transition: color 180ms ease;
}
@media (max-width: 639px) {
  .tc-product-card-body { padding: 12px 12px 16px; gap: 8px; }
  .tc-product-card-name { font-size: 14px; }
  .tc-product-card-price { font-size: 16px; }
  .tc-product-card-img img { padding: 8px; }
  .tc-product-card-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 4px;
    text-align: center;
  }
  .tc-product-card-actions form { width: 100%; }
  .tc-btn-add-to-cart { min-height: 44px; }
}
.tc-product-card-detail-link:hover { color: #2E7D32; }
.tc-product-card-detail-link:focus-visible { outline: 2px solid #2E7D32; outline-offset: 2px; }
.tc-product-card-actions form { flex: 1; }
.tc-btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  background: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 180ms ease;
}
.tc-btn-add-to-cart:hover { background: #1B5E20; }
.tc-btn-add-to-cart:focus-visible { outline: 2px solid #1A1A1A; outline-offset: 2px; }
.tc-btn-add-to-cart:disabled { opacity: 0.7; cursor: wait; }
.tc-product-card-sold-out {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #6B6B6B;
  padding: 8px 16px;
  background: #EFEDE3;
  border-radius: 9999px;
}

/* ── PAGINATION ── */
.tc-load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.tc-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 9999px;
  background: #fff;
  border: 1.5px solid #2E7D32;
  color: #2E7D32;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.tc-load-more:hover { background: #2E7D32; color: #fff; }
.tc-load-more:focus-visible { outline: 2px solid #2E7D32; outline-offset: 2px; }

/* ── UTILITIES ── */
.tc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── EMPTY STATE ── */
.tc-shop-empty {
  text-align: center;
  padding: 64px 24px;
}
.tc-shop-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #F5F0DC;
  border-radius: 24px;
  color: #A8A8A0;
  margin-bottom: 20px;
}
.tc-shop-empty-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.tc-shop-empty-text {
  font-size: 15px;
  color: #6B6B6B;
  max-width: 360px;
  margin: 0 auto;
}

/* ── PRODUCT DETAIL ── */
.tc-shop-detail { padding: 40px 0 64px; background: #FAF8F0; }
.tc-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tc-detail-layout { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}

.tc-detail-image {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(42,40,30,0.08), 0 2px 4px rgba(42,40,30,0.04);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
@media (max-width: 767px) {
  .tc-detail-image {
    aspect-ratio: auto;
    min-height: 300px;
  }
  .tc-detail-image img {
    object-fit: cover;
    padding: 0;
  }
}

.tc-detail-info { display: flex; flex-direction: column; gap: 20px; }
.tc-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(46,125,50,0.08);
  color: #2E7D32;
}
.tc-detail-badge svg { flex-shrink: 0; }

.tc-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #2E7D32;
}
.tc-detail-price-compare {
  font-size: 0.6em;
  font-weight: 600;
  color: #6B6B6B;
}
.tc-detail-desc { font-size: 15px; color: #6B6B6B; line-height: 1.65; }
.tc-detail-desc ul { list-style: disc; padding-left: 20px; }
.tc-detail-desc li { margin-bottom: 4px; }

.tc-detail-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.55;
  margin: 0;
  padding: 12px 16px;
  background: rgba(46,125,50,0.05);
  border-radius: 10px;
}
.tc-detail-note svg { flex-shrink: 0; margin-top: 2px; color: #2E7D32; }

.tc-detail-variant-label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
  display: block;
}
.tc-detail-variant-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  background: #FAF8F0;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  color: #2C2C2C;
}

.tc-detail-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Quantity Selector */
.tc-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.tc-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  font-weight: 600;
  color: #2C2C2C;
  background: #FAF8F0;
  border: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.tc-qty-btn:hover { background: #EDE8D0; color: #2E7D32; }
.tc-qty-value {
  width: 52px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  border: none;
  border-left: 1.5px solid rgba(0,0,0,0.08);
  border-right: 1.5px solid rgba(0,0,0,0.08);
  height: 44px;
  line-height: 44px;
  background: #fff;
  -moz-appearance: textfield;
}
.tc-qty-value::-webkit-inner-spin-button,
.tc-qty-value::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.tc-detail-add { padding: 16px 32px !important; font-size: 15px !important; flex: 1; }

/* ── ACCORDIONS ── */
.tc-shop-accordions { padding: 40px 0 64px; background: #FAF8F0; }
.tc-accordion-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-accordion {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.tc-accordion-heading { margin: 0; font-size: inherit; }
.tc-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  transition: background 180ms ease;
}
.tc-accordion-header:hover { background: #FAF8F0; }
.tc-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6B6B6B;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.tc-accordion.open .tc-accordion-icon { transform: rotate(180deg); }
.tc-accordion-body {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0.4s;
}
.tc-accordion.open .tc-accordion-body {
  max-height: 2400px;
  visibility: visible;
}
.tc-accordion-content {
  padding: 0 24px 24px;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.7;
}
.tc-accordion-content p { margin: 0; }
.tc-accordion-content p + p { margin-top: 12px; }
.tc-accordion-content ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.tc-accordion-content li { margin-bottom: 4px; }
.tc-accordion-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
}
.tc-accordion-content ul.tc-accordion-stores { list-style: none; padding-left: 0; }
.tc-accordion-store-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #1B5E20;
  background: #E8F5E9;
  border: 1px solid rgba(27,94,32,0.15);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 0;
}
.tc-accordion-store-tag--mk {
  color: #BF360C;
  background: #FFF3E0;
  border-color: rgba(191,54,12,0.15);
}
@media (max-width: 480px) {
  .tc-accordion-store-tag { font-size: 11px; padding: 3px 10px; }
  .tc-accordion-stores { gap: 6px; }
}

/* ── YOU MAY ALSO LIKE ── */
.tc-shop-related { padding: 40px 0 64px; background: #F5F0DC; }
.tc-related-header { text-align: center; margin-bottom: 32px; }
.tc-related-header h2 {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}
.tc-related-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
}
.tc-related-scroll::-webkit-scrollbar { height: 6px; }
.tc-related-scroll::-webkit-scrollbar-track { background: #EDE8D0; border-radius: 3px; }
.tc-related-scroll::-webkit-scrollbar-thumb { background: #A8A8A0; border-radius: 3px; }
.tc-related-scroll .tc-product-card {
  min-width: 240px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ── VARIANT SELECT ── */
.tc-detail-variants select:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
  outline: none;
}

/* ── STICKY MOBILE BUY BAR ── */
.tc-sticky-buy { display: none; }
@media (max-width: 767px) {
  .tc-sticky-buy {
    display: flex;
    align-items: center;
    gap: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 16px rgba(42,40,30,0.10);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .tc-sticky-buy-price {
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    white-space: nowrap;
  }
  .tc-sticky-buy form { flex: 1; }
  .tc-sticky-buy-btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }
  /* keep page content reachable above the fixed bar */
  .tc-shop-related { padding-bottom: 96px; }
  .tc-shop-accordions:last-of-type { padding-bottom: 96px; }
}

/* ── COLLECTION LIST — PICKUP GRID ── */
/* How it works */
.tc-pickup-how {
  padding: 40px 0;
  background: #FAF8F0;
}
.tc-pickup-how-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.tc-pickup-how-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 28px;
}
.tc-pickup-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-pickup-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  position: relative;
}
.tc-pickup-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 23px;
  right: -28px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #D5CDA8;
  border-right: 2px solid #D5CDA8;
  transform: rotate(45deg);
}
.tc-pickup-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46,125,50,0.08);
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}
.tc-pickup-step-num {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2E7D32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-pickup-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 4px;
}
.tc-pickup-step-desc {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 640px) {
  .tc-pickup-how { padding: 32px 0; }
  .tc-pickup-how-title { margin-bottom: 20px; }
  .tc-pickup-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .tc-pickup-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    text-align: left;
    max-width: none;
    background: #fff;
    border: 1px solid #EDE8D0;
    border-radius: 12px;
    padding: 14px 16px;
  }
  .tc-pickup-step:not(:last-child)::after { display: none; }
  .tc-pickup-step-icon {
    width: 48px;
    height: 48px;
    grid-row: 1 / span 2;
    margin: 0;
  }
  .tc-pickup-step-title { margin: 0; }
}

/* Catalog section */
.tc-pickup-catalog {
  padding: 64px 0;
  background: #fff;
}
@media (max-width: 640px) {
  .tc-pickup-catalog { padding: 48px 0; }
}
.tc-pickup-catalog-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
}
.tc-pickup-catalog-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.15;
  margin: 0 0 12px;
}
.tc-pickup-catalog-sub {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0;
}

/* Category Grid — flex so a short last row stays centered */
.tc-pickup-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-pickup-grid > li {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 280px;
  display: flex;
}
@media (max-width: 640px) {
  .tc-pickup-grid { gap: 16px; }
  .tc-pickup-grid > li { flex-basis: 100%; min-width: 0; }
}

/* Card styles */
.tc-pickup-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #FAF8F0;
  box-shadow: 0 1px 3px rgba(42,40,30,0.06), 0 1px 2px rgba(42,40,30,0.04);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
  color: inherit;
}
.tc-pickup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,40,30,0.10), 0 4px 8px rgba(42,40,30,0.04);
}
.tc-pickup-card:focus-visible { outline: 3px solid #2E7D32; outline-offset: 2px; }

.tc-pickup-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.tc-pickup-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.tc-pickup-card:hover .tc-pickup-card-img img { transform: scale(1.05); }
.tc-pickup-card-img-fallback {
  width: 100%;
  height: 100%;
  background: #EDE8D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
}

.tc-pickup-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tc-pickup-card-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px;
  line-height: 1.25;
}
.tc-pickup-card-desc {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.tc-pickup-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: #2E7D32;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  align-self: flex-start;
  transition: background 180ms cubic-bezier(0.16,1,0.3,1), gap 180ms cubic-bezier(0.16,1,0.3,1);
}
.tc-pickup-card:hover .tc-pickup-card-cta,
.tc-pickup-card:focus-visible .tc-pickup-card-cta {
  background: #1B5E20;
  gap: 12px;
}
@media (max-width: 640px) {
  .tc-pickup-card-cta { align-self: stretch; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .tc-product-card,
  .tc-product-card-img img,
  .tc-btn-add-to-cart,
  .tc-pickup-card,
  .tc-pickup-card-img img,
  .tc-pickup-card-cta,
  .tc-accordion-body,
  .tc-accordion-icon { transition: none; }
  .tc-product-card:hover,
  .tc-pickup-card:hover { transform: none; }
  .tc-product-card:hover .tc-product-card-img img,
  .tc-pickup-card:hover .tc-pickup-card-img img { transform: none; }
}

/* ── SEARCH ── */
.tc-search-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.tc-search-form input[type='search'] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 48px;
  padding: 12px 20px;
  border: 1.5px solid #E3DED0;
  border-radius: 9999px;
  background: #fff;
  font-size: 15px;
  color: #2A2622;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.tc-search-form input[type='search']:focus {
  outline: none;
  border-color: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}
.tc-search-form .tc-btn-primary {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 28px;
}
.tc-search-error {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #FDECEA;
  color: #B3261E;
  font-size: 14px;
  text-align: center;
}
.tc-search-results .search-result {
  margin-bottom: 40px;
}
.tc-search-results .search-result h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: #2A2622;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #E3DED0;
}
.tc-search-results .search-results-item {
  padding: 12px 0;
  border-bottom: 1px solid #F0EBDE;
}
.tc-search-results .search-results-item:last-child {
  border-bottom: none;
}
.tc-search-results .search-results-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2A2622;
  font-size: 15px;
  font-weight: 500;
  transition: color 140ms ease;
}
.tc-search-results .search-results-item a:hover {
  color: #2E7D32;
}
.tc-search-results .search-results-item img {
  border-radius: 8px;
  flex: 0 0 auto;
}
.tc-search-results .search-results-item small {
  color: #6B6455;
  font-weight: 600;
}
@media (max-width: 640px) {
  .tc-search-form { flex-direction: column; border-radius: 16px; }
  .tc-search-form .tc-btn-primary { width: 100%; }
}
