/* Product index: restored quiet three-column shop grid, 2026-08-03. */

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

.product-section {
  width: min(1640px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(68px, 6vw, 112px) 0 clamp(94px, 9vw, 156px);
}

.selection-grid,
.product-grid.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(92px, 8vw, 150px) clamp(52px, 6vw, 112px);
  padding: 0;
}

.selection-card,
.selection-card[class*="magazine-item-"] {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  grid-column: auto;
}

.selection-card .product-photo,
.selection-card[class*="magazine-item-"] .product-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--product-photo-surface);
}

.selection-card .product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.selection-card .product-photo[data-open-product="aud6280"] img,
.selection-card .product-photo[data-open-product="ma-s-798"] img,
.selection-card .product-photo[data-open-product="ma-c-273"] img,
.selection-card .product-photo[data-open-product="aud3554"] img,
.selection-card .product-photo[data-open-product="aud3691"] img,
.selection-card .product-photo[data-open-product="aud6714"] img {
  padding: 5%;
  mix-blend-mode: multiply;
}

.selection-card .product-photo[data-open-product="ma-c-273"] img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.15);
  -webkit-mask-image: radial-gradient(ellipse 78% 94% at 50% 52%, #000 64%, rgba(0, 0, 0, 0.9) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 94% at 50% 52%, #000 64%, rgba(0, 0, 0, 0.9) 78%, transparent 100%);
  mix-blend-mode: multiply;
}

.selection-card .product-photo[data-open-product="ma-s-798"] img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.selection-card .product-list-info {
  display: block;
  width: 100%;
  margin: 19px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal-ink);
  text-align: left;
}

.selection-card .product-list-name {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--charcoal-ink);
  font-size: clamp(15px, 1.12vw, 19px);
  font-weight: 650;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--charcoal-ink) 38%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.selection-card .product-list-name-ja {
  display: block;
  margin-top: 5px;
  color: var(--weathered-gray);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.product-index-card {
  display: block;
  width: 100%;
  margin-top: 17px;
  border-top: 3px solid var(--charcoal-ink);
}

.product-index-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
}

.product-index-label,
.product-index-value {
  display: block;
  min-width: 0;
  padding: 10px 0 9px;
  font-size: 11px;
  line-height: 1.45;
}

.product-index-label {
  color: var(--weathered-gray);
}

.product-index-value {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--charcoal-ink);
  font-weight: 550;
}

.product-index-label small,
.product-index-value small {
  display: block;
  margin-top: 2px;
  color: var(--weathered-gray);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.45;
}

.selection-card .product-list-price {
  display: block;
  margin-top: 17px;
  color: var(--charcoal-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.selection-card .product-list-status {
  display: block;
  margin-top: 3px;
  color: var(--weathered-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .product-section {
    width: calc(100% - 40px);
    padding-block: 64px 108px;
  }

  .selection-grid,
  .product-grid.selection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px 28px;
  }
}

@media (max-width: 520px) {
  .product-section {
    width: calc(100% - 32px);
    padding-block: 54px 88px;
  }

  .selection-grid,
  .product-grid.selection-grid {
    grid-template-columns: 1fr;
    row-gap: 74px;
  }

  .selection-card .product-list-name {
    font-size: 16px;
  }

  .selection-card .product-list-name-ja {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .selection-card .product-photo img {
    transition: none;
  }
}
