/* Product hero v2: calm, lightweight product entry */

.prod-hero {
  --hero-ease: cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff !important;
  border-bottom: 1px solid #e8e8e8 !important;
  padding: 34px 40px 34px !important;
  position: relative !important;
  overflow: hidden !important;
}

.prod-hero::before {
  content: none !important;
}

.prod-hero::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--rot), var(--lila), var(--dunkel), var(--blau)) !important;
  opacity: .82;
}

.prod-hero-inner {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) !important;
  gap: clamp(30px, 4vw, 58px) !important;
  align-items: center !important;
}

.prod-hero-content {
  padding: 0 !important;
  min-height: 0 !important;
}

.prod-hero .breadcrumb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #777 !important;
  font-family: 'Gotham', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  text-transform: none !important;
}

.prod-hero .breadcrumb a,
.prod-hero .breadcrumb span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0 !important;
  line-height: inherit !important;
  text-transform: none !important;
}

.prod-hero .breadcrumb a {
  color: #777 !important;
  text-decoration: none !important;
}

.prod-hero .breadcrumb a:hover {
  color: var(--rot) !important;
}

.prod-hero .breadcrumb span {
  color: #dedede !important;
}

.prod-hero .breadcrumb span[style] {
  color: var(--rot) !important;
}

.prod-hero h1 {
  max-width: 680px;
  margin: 0 !important;
  color: #111 !important;
  font-size: clamp(34px, 3.6vw, 50px) !important;
  line-height: 1.03 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

.prod-hero h1 em {
  display: block !important;
  color: #111 !important;
  font-style: normal !important;
}

.prod-hero-sub {
  max-width: 620px !important;
  margin: 16px 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #333 !important;
  font-size: clamp(15px, 1vw, 16px) !important;
  line-height: 1.55 !important;
  text-wrap: pretty;
}

.prod-hero .prod-hero-sub {
  border-left: 0 !important;
  padding-left: 0 !important;
}

.prod-specs-row {
  max-width: 700px;
  margin: 0 0 22px !important;
  padding: 13px 0 !important;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.prod-spec {
  min-height: 0 !important;
  padding: 0 22px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid #eeeeee !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

.prod-spec:first-child {
  padding-left: 0 !important;
}

.prod-spec:last-child {
  padding-right: 0 !important;
  border-right: 0 !important;
}

.prod-spec-val {
  color: #111 !important;
  font-size: clamp(19px, 1.45vw, 23px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.prod-spec-val sup {
  font-size: .55em !important;
}

.prod-spec-label {
  color: #666 !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  letter-spacing: .12em !important;
}

.prod-cta-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 !important;
}

.prod-hero .btn-primary,
.prod-hero .btn-secondary {
  min-height: 42px;
  padding: 11px 22px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #dedede !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%) !important;
  transition: transform 150ms var(--hero-ease), background 180ms ease, border-color 180ms ease, color 180ms ease !important;
}

.prod-hero .btn-primary {
  background: transparent !important;
  border-color: #dcdcdc !important;
  color: #111 !important;
  box-shadow: none !important;
}

.prod-hero .btn-primary:hover,
.prod-hero .btn-secondary:hover {
  background: linear-gradient(90deg, var(--rot), var(--lila), var(--dunkel), var(--blau)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.prod-hero .btn-primary:active,
.prod-hero .btn-secondary:active {
  transform: scale(.98);
}

.prod-hero .btn-secondary {
  background: transparent !important;
  color: #111 !important;
}

.prod-hero-img {
  position: relative !important;
  align-self: center !important;
  min-height: 280px;
  padding: 22px !important;
  background: #fafafa !important;
  border: 1px solid #eeeeee !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.prod-hero-img::before,
.prod-hero-img::after {
  content: none !important;
}

.prod-hero-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 230px;
  object-fit: contain !important;
  padding: 0 !important;
  filter: none !important;
}

.prod-hero-img-placeholder {
  width: 100% !important;
  background: transparent !important;
}

.hero-calc-callout {
  box-shadow: none !important;
  border-radius: 6px !important;
}

@media (max-width: 980px) {
  .prod-hero {
    padding: 36px 28px 34px !important;
  }

  .prod-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .prod-hero-img {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .prod-hero {
    padding: 34px 20px 30px !important;
  }

  .prod-hero h1 {
    font-size: clamp(30px, 10vw, 44px) !important;
  }

  .prod-hero-sub {
    font-size: 15px !important;
    margin: 18px 0 22px !important;
  }

  .prod-specs-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .prod-spec,
  .prod-spec:first-child,
  .prod-spec:last-child {
    padding: 0 !important;
    border-right: 0 !important;
  }

  .prod-hero-img {
    min-height: 220px;
    padding: 22px !important;
  }
}

body.pwf-accordion-ready .pwf-variant-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  margin: 28px 0 42px !important;
}

body.pwf-accordion-ready .pwf-variant-card {
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 36px rgba(17,17,17,.035) !important;
}

body.pwf-accordion-ready .pwf-variant-head {
  width: 100%;
  min-height: 118px;
  padding: 22px 64px 22px 26px;
  border: 0;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
}

body.pwf-accordion-ready .pwf-variant-head:hover .pwf-variant-code {
  color: var(--rot);
}

body.pwf-accordion-ready .pwf-plus-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rot);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform .22s cubic-bezier(.23,1,.32,1), background .18s ease, border-color .18s ease, color .18s ease;
}

body.pwf-accordion-ready .pwf-variant-card.open .pwf-plus-icon {
  transform: rotate(45deg);
  background: var(--rot);
  border-color: var(--rot);
  color: #fff;
}

body.pwf-accordion-ready .pwf-plus-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(.23,1,.32,1);
}

body.pwf-accordion-ready .pwf-variant-card.open .pwf-plus-panel {
  max-height: 5000px;
}

body.pwf-accordion-ready .pwf-plus-content {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}

body.pwf-accordion-ready .pwf-plus-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

body.pwf-accordion-ready .pwf-plus-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

body.pwf-accordion-ready .pwf-plus-section strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--sw);
}

body.pwf-accordion-ready .pwf-plus-section p,
body.pwf-accordion-ready .pwf-plus-section li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

body.pwf-accordion-ready .pwf-plus-section ul {
  margin: 0;
  padding-left: 18px;
}

.hp-connection-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 64px;
}

.hp-connection-panel {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .045);
  padding: 32px;
}

.hp-connection-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--rot);
  font-family: 'Gotham', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hp-connection-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rot);
}

.hp-connection-copy h2 {
  margin: 0 0 14px;
  color: var(--sw);
  font-family: 'Gotham', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hp-connection-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hp-connection-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hp-connection-list li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.hp-connection-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 6px;
  flex: 0 0 7px;
  background: var(--rot);
}

.hp-connection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-connection-figure {
  margin: 0;
  background: #f7f7f7;
  border: 1px solid var(--border);
  overflow: auto;
}

.hp-connection-figure img {
  display: block;
  width: 100%;
  min-width: 760px;
  height: auto;
}

.hp-connection-figure figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  background: #fff;
}

@media (max-width: 900px) {
  .hp-connection-section {
    padding: 0 20px 48px;
  }

  .hp-connection-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
