/* ===== D1: HERO BANNER — lifestyle background, USP, CTA ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../../../../../image/catalog/hero-bg.webp') center center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 25, 35, 0.92) 0%,
    rgba(15, 25, 35, 0.82) 40%,
    rgba(15, 25, 35, 0.45) 70%,
    rgba(15, 25, 35, 0.15) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__content { flex: 1; max-width: 660px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  /* Тинты от --brand-teal через color-mix: 20% непрозрачности = transparent 80%. */
  background: color-mix(in srgb, var(--brand-teal), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--brand-teal), transparent 60%);
  color: var(--brand-teal);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.12;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: white;
}
.hero h1 span { color: var(--brand-teal); }
.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 560px;
}
.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.hero__usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero__usp svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero__usp svg path { fill: var(--brand-teal); }
.hero__cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  padding: 18px 40px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  /* Glow от --brand-yellow (idle/hover/label) — все производные через color-mix. */
  box-shadow: 0 4px 16px color-mix(in srgb, var(--brand-yellow), transparent 70%);
}
.hero__cta:hover {
  /* На 10% темнее основного — стандартный hover-шейд через color-mix. */
  background: color-mix(in srgb, var(--brand-yellow), black 10%);
  /* Keep the label dark и без подчёркивания on hover — overrides legacy
     `a:hover{color:#ffcf06}` and link underline (style.css). */
  color: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-yellow), transparent 55%);
}
.hero__cta svg { width: 20px; height: 20px; fill: var(--brand-dark); }
.hero__cta--secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 17px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
  cursor: pointer;
}
.hero__cta--secondary:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  background: color-mix(in srgb, var(--brand-teal), transparent 90%);
  text-decoration: none;
}
.hero__product {
  flex: 0 0 360px;
  position: relative;
  text-align: center;
}
.hero__product-link { display: contents; }
.hero__product-img {
  width: 320px; height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.hero__product-img:hover { transform: scale(1.05) rotate(-2deg); }
.hero__product-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-yellow);
  color: var(--brand-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--brand-yellow), transparent 75%);
}
