/* 真实产品图片展示：作为定制能力与产品形态之间的可视桥梁。 */
.custom-apple .custom-product-showcase {
  padding: clamp(72px, 8vw, 118px) 0;
}
.custom-apple .custom-product-showcase::before {
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(180deg, #f7fcf9 0%, #edf8f2 100%);
}
.custom-apple .custom-product-showcase .iso-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.custom-apple .custom-product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: #18835f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
}
.custom-apple .custom-product-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: #2caf7e;
}
.custom-apple .custom-product-showcase .iso-section-head h2 {
  max-width: 720px;
  margin: 0;
  color: #123f32;
  font-size: clamp(26px, 3.2vw, 43px);
  letter-spacing: -.055em;
}
.custom-apple .custom-product-showcase .iso-section-head > p:last-child {
  max-width: 610px;
  margin: 16px 0 0;
  color: #71837b;
  font-size: 13px;
  line-height: 1.75;
}
.custom-apple .custom-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.custom-apple .custom-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 137, 98, .13);
  border-radius: 19px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 42px -34px rgba(14, 89, 61, .55), inset 0 1px 0 #fff;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1), box-shadow .32s ease, border-color .32s ease;
}
.custom-apple .custom-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 151, 108, .3);
  box-shadow: 0 30px 48px -33px rgba(14, 89, 61, .62), inset 0 1px 0 #fff;
}
.custom-apple .custom-product-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #edf7f2;
}
.custom-apple .custom-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 56%, rgba(8, 67, 45, .14));
}
.custom-apple .custom-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.custom-apple .custom-product-card:hover .custom-product-image img { transform: scale(1.045); }
.custom-apple .custom-product-copy { padding: 18px 20px 21px; }
.custom-apple .custom-product-copy span {
  color: #26946b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
}
.custom-apple .custom-product-copy h3 {
  margin: 8px 0 7px;
  color: #174738;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.025em;
}
.custom-apple .custom-product-copy p {
  margin: 0;
  color: #74847d;
  font-size: 11px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .custom-apple .custom-product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .custom-apple .custom-product-showcase { padding: 66px 0; }
  .custom-apple .custom-product-gallery { grid-template-columns: 1fr; gap: 14px; }
  .custom-apple .custom-product-image { height: 205px; }
}
