/* Component: b-005-product-hero (TOP PRODUCTS hero) ------------------------ */
.b-005-product-hero {
  --ph-max-width: 1500px;
  --ph-inner-width: 92%;
  --ph-gap: clamp(40px, 6vw, 140px);
  --ph-bg-gradient: radial-gradient(circle at 70% 30%, #ffffff 0%, #eef1f7 70%);
  --ph-lead-fs: clamp(1.05rem, 0.9rem + 0.7vw, 1.55rem);
  --ph-color-accent: var(--red, #c00000);
  position: relative;
  padding: clamp(60px, 9vw, 140px) 0;
  background: var(--ph-bg-gradient);
  overflow: hidden;
}

.b-005-product-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.b-005-product-hero__inner {
  width: min(var(--ph-max-width), var(--ph-inner-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--ph-gap);
}

.b-005-product-hero__content {
  max-width: 640px;
}

c-.heading__area--product .heading__copy {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.6rem);
  letter-spacing: 0.3em;
  color: var(--ph-color-accent);
  text-align: left;
  margin-bottom: 0.8em;
}

.c-heading__area--product .heading__copy:after {
  display: none;
}

.b-005-product-hero__lead {
  font-weight: 500;
  font-size: var(--ph-lead-fs);
  line-height: 1.7;
  margin: 0 0 1.6em;
}

.b-005-product-hero__text p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin: 0 0 1.4em;
}

.b-005-product-hero__note {
  display: block;
  margin-top: 0.4em;
  font-size: 0.7rem;
  opacity: 0.7;
}

.b-005-product-hero__spec {
  font-size: 0.8rem;
  margin: 2.2em 0 0.6em;
}

.b-005-product-hero__price {
  font-size: 0.85rem;
  margin: 0 0 2.4em;
}
.b-005-product-hero__priceValue {
  font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.9rem);
  font-weight: 600;
  margin-left: 0.4em;
  letter-spacing: 0.05em;
}
.b-005-product-hero__tax {
  font-size: 0.75rem;
  margin-left: 0.35em;
}

.b-005-product-hero__btnWrap {
  margin-top: 10px;
}
.b-005-product-hero__btn {
  min-width: 220px;
}

.b-005-product-hero__media {
  position: relative;
}
.b-005-product-hero__image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 640px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.12));
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
  .b-005-product-hero__media:hover .b-005-product-hero__image {
    transform: translateY(-6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .b-005-product-hero__image {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .b-005-product-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 80px);
  }
  .b-005-product-hero__content {
    max-width: 560px;
  }
}
@media (max-width: 767px) {
  .b-005-product-hero {
    padding: 80px 0;
  }
  .b-005-product-hero__inner {
    grid-template-columns: 1fr;
  }
  .b-005-product-hero__media {
    order: -1;
    margin-bottom: 48px;
  }
  .b-005-product-hero__content {
    max-width: 100%;
  }
  .b-005-product-hero__text p {
    font-size: 0.8rem;
  }
  .b-005-product-hero__lead {
    margin-bottom: 1.2em;
  }
}
