:root {
  --color-green: #7ac143;
  --color-green-dark: #4f9a22;
  --color-gray: #6d6e71;
  --color-dark: #2f3437;
  --color-blue: #2f6fa5;
  --color-orange: #e56d2c;
  --color-bg: #ffffff;
  --color-soft: #f4f7f8;
  --shadow: 0 12px 30px rgba(0,0,0,.12);
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.6;
}
a { color: var(--color-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

.site-header {
  background: #fff;
  border-top: 5px solid var(--color-green);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; }
.logo img { width: 220px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav__link { color: var(--color-gray); font-weight: 700; padding: 14px 16px; border-radius: 999px; }
.main-nav__link:hover, .main-nav__link.is-active { background: var(--color-green); color: #fff; text-decoration: none; }
.menu-toggle { display: none; border: 0; background: var(--color-green); color: #fff; padding: 10px 14px; border-radius: 999px; font-weight: 700; }

.hero { background: linear-gradient(180deg, #eaf6ff 0%, #fff 100%); }
.hero__slider { position: relative; max-width: 1120px; margin: 0 auto; overflow: hidden; }
.hero__slide { display: none; margin: 0; }
.hero__slide.is-active { display: block; }
.hero__slide img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.hero__control { position: absolute; top: 50%; transform: translateY(-50%); border: 0; width: 42px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--color-dark); font-size: 32px; cursor: pointer; }
.hero__control--prev { left: 16px; }
.hero__control--next { right: 16px; }

.section { padding: 56px 0; }
.section--soft { background: var(--color-soft); }
.eyebrow { color: var(--color-green-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
h1, h2 { line-height: 1.15; color: var(--color-gray); margin-top: 0; }
h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lead { font-size: 1.25rem; max-width: 820px; }
.lead--secondary { font-size: 1.25rem; font-weight: 600; color: var(--color-dark); }
.button { display: inline-block; margin-top: 16px; background: var(--color-green); color: #fff; padding: 13px 22px; border-radius: 999px; font-weight: 800; box-shadow: var(--shadow); }
.button:hover { background: var(--color-green-dark); text-decoration: none; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 5px solid var(--color-green); }

.site-footer { background: var(--color-dark); color: #fff; padding: 44px 0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.site-footer__logo { width: 180px; margin-bottom: 12px; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { color: #fff; }

@media (max-width: 760px) {
  .site-header__inner { min-height: 76px; }
  .logo img { width: 170px; }
  .menu-toggle { display: inline-block; }
  .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 82px; background: #fff; padding: 12px; box-shadow: var(--shadow); border-radius: var(--radius); }
  .main-nav.is-open { display: grid; }
  .main-nav__link { border-radius: 10px; }
  .grid--2, .site-footer__grid { grid-template-columns: 1fr; }
  .hero__slide img { aspect-ratio: 16 / 10; }
}

.form-template {
  margin-top: 1.5rem;
}

.form-template p {
  margin-bottom: 1.25rem;
}

.form-line {
  display: block;
  min-height: 2rem;
  border-bottom: 1px solid rgba(39, 50, 43, 0.35);
}

.form-line--large {
  min-height: 4rem;
}

.note {
  font-size: 0.95rem;
  opacity: 0.8;
}


.form-template{display:grid;gap:1rem;max-width:700px}
.form-template label{display:flex;flex-direction:column;font-weight:600}
.form-template input,.form-template textarea{padding:.6rem;margin-top:.3rem}
.button-row{display:flex;gap:1rem;margin-top:1rem}
@media print {
  @page {
    margin: 15mm;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
  }

  .site-header,
  .site-footer,
  .main-nav,
  .menu-toggle,
  .eyebrow,
  .button-row {
    display: none !important;
  }

  main,
  .section,
  .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .container > h1 {
    display: none !important;
  }

  .card,
  .legal-content {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .form-template {
    max-width: none;
    gap: 0.75rem;
  }

  .form-template input,
  .form-template textarea {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 0.25rem 0;
    background: transparent;
  }
}

.about-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
}

.about-hero__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39,50,43,.86), rgba(39,50,43,.38)), url('../../images/about-hero.jpg') center/cover no-repeat;
}

.about-hero__content {
  position: relative;
  padding-top: 96px;
  padding-bottom: 72px;
}

.about-hero h1,
.about-hero .eyebrow {
  color: #fff;
}

.about-section {
  max-width: 900px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--color-green);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-soft), #fff);
  color: var(--color-green-dark);
  border: 2px solid rgba(122, 184, 0, 0.24);
  box-shadow: 0 10px 24px rgba(39, 50, 43, 0.10);
}

.feature-card__icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__icon text {
  fill: currentColor;
  stroke: none;
  font-size: 13px;
  font-weight: 800;
  font-family: Arial, sans-serif;
}

.feature-card h3 {
  margin-top: 0;
  color: var(--color-gray);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.split-section--reverse .split-section__media {
  order: 2;
}

.split-section__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-soft);
}

.split-section__media img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-cta {
  background: var(--color-green);
  color: #fff;
  text-align: center;
}

.about-cta h2 {
  color: #fff;
}

.about-cta__inner {
  max-width: 760px;
}

.about-cta .button {
  background: #fff;
  color: var(--color-green-dark);
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: 360px;
  }

  .feature-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-section__media {
    order: 0;
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 5px solid var(--color-green);
}

.solution-card__image {
  margin: 0;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-soft);
  padding: 34px;
}

.solution-card__image img {
  width: 88%;
  height: 100%;
  max-height: 210px;
  object-fit: contain;
}

.solution-card__image--wide img {
  width: 68%;
  height: 100%;
  max-height: 165px;
  object-fit: contain;
}

.solution-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-card__content h3 {
  margin-top: 0;
  min-height: 2.6em;
  color: var(--color-gray);
  font-size: 1.35rem;
}

.solution-card__content .button {
  align-self: flex-start;
  margin-top: auto;
}

.tech-hero {
  background: linear-gradient(135deg, var(--color-soft), #fff);
  padding: 64px 0;
}

.tech-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 48px;
  align-items: center;
}

.tech-hero__image {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.tech-hero__image img {
  max-height: 300px;
  width: auto;
  object-fit: contain;
}

.tech-hero__image--wide img {
  width: 100%;
  max-height: 260px;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: start;
}

.tech-main h2:not(:first-child) {
  margin-top: 2.25rem;
}

.tech-aside {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 118px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green-dark);
  font-weight: 800;
}

.process-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.process-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--color-soft);
  font-weight: 800;
  color: var(--color-gray);
}

.process-flow span:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translate(50%, -50%);
  color: var(--color-green-dark);
  z-index: 1;
}

@media (max-width: 980px) {
  .solution-grid,
  .tech-hero__inner,
  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-aside {
    position: static;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow span:not(:last-child)::after {
    content: '↓';
    right: auto;
    top: auto;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* pr11 quality pass: consistent cards, image sizing and lead typography */
.card {
  height: 100%;
}

.grid--2 > .card {
  display: flex;
  flex-direction: column;
}

.solution-card {
  height: 100%;
}

.solution-card__image {
  height: 280px;
  padding: 40px;
}

.solution-card__image img {
  width: 82%;
  max-height: 205px;
}

.solution-card__image--wide img {
  width: 54%;
  max-height: 135px;
}

.solution-card__content h3 {
  min-height: 3.2em;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 760px) {
  .solution-card__content h3 {
    min-height: 0;
  }
}


/* pr12: downloads and Heizstab package image */
.tech-hero__image figcaption {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--color-gray);
  text-align: center;
}

.tech-hero__image--package img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.download-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.download-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--color-green);
}

.download-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.download-card p {
  margin: 0;
}

.download-card .button {
  flex: 0 0 auto;
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .download-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-card .button {
    white-space: normal;
  }
}


/* pr13: product page updates */
.tech-hero__image img[src$="Hausstrom_PV2.gif"] {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.cross-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cross-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cross-cta .button {
  margin-top: 10px;
}


/* pr14: Wärmepumpen-Hero ohne Überlagerung und Kontaktformular */
.tech-hero--waermepumpe {
  overflow: visible;
}

.tech-hero__inner--stacked {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.tech-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.tech-hero--waermepumpe .tech-hero__image--diagram {
  width: min(100%, 860px);
  min-height: 0;
  margin: 0 auto;
  padding: 24px;
}

.tech-hero--waermepumpe .tech-hero__image--diagram img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--color-gray);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(47, 52, 55, .24);
  border-radius: 10px;
  font: inherit;
  color: var(--color-dark);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(122, 193, 67, .26);
  border-color: var(--color-green-dark);
}

.form-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 400 !important;
  color: var(--color-dark) !important;
}

.form-check input {
  width: auto;
  margin-top: 5px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
}

.form-message--success {
  background: #edf8e8;
  color: var(--color-green-dark);
}

.form-message--error {
  background: #fff1eb;
  color: #9b3f12;
}

.form-note {
  margin: 0;
  color: var(--color-gray);
  font-size: .95rem;
}

.contact-aside {
  display: grid;
  gap: 24px;
}

@media (max-width: 860px) {
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .tech-hero--waermepumpe .tech-hero__image--diagram {
    padding: 18px;
  }
}


/* pr17: Über-uns-Bilder und Bestellseite */
.split-section__media {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section__media img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  min-height: 0;
  object-fit: contain;
}

.split-section__media img.about-image--person {
  max-height: 240px;
  max-width: 320px;
}

.order-grid {
  display: grid;
  gap: 28px;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--color-green);
  padding: 32px;
}

.order-card__image {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-soft);
}

.order-card__image img {
  max-height: 280px;
  object-fit: contain;
}

.product-number {
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--color-soft);
}

@media (max-width: 760px) {
  .order-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* pr18: Bestellformular */
.order-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: start;
}

.order-form-card .contact-form {
  margin-top: 24px;
}

.order-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: #fff;
}

.order-summary-table th,
.order-summary-table td {
  padding: 12px 14px;
  border: 1px solid rgba(47, 52, 55, .18);
  text-align: left;
  vertical-align: top;
}

.order-summary-table th {
  width: 32%;
  background: var(--color-soft);
  color: var(--color-gray);
}

.order-print__note {
  color: var(--color-gray);
  font-size: .95rem;
}

.reseller-note {
  border-top: 5px solid var(--color-green);
}

.button--secondary {
  background: var(--color-gray);
}

.button--secondary:hover {
  background: var(--color-dark);
}

@media (max-width: 860px) {
  .order-form-layout {
    grid-template-columns: 1fr;
  }
}

@media print {
  .no-print,
  .site-header,
  .site-footer,
  .main-nav,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  main,
  .section,
  .container,
  .card,
  .order-form-card,
  .order-print {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    background: #fff !important;
  }

  .order-summary-table th,
  .order-summary-table td {
    border: 1px solid #000;
  }

  @page {
    margin: 15mm;
  }
}


/* pr20: Wissen Detailseite Speicherkapazität Wasser */
.knowledge-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.knowledge-detail {
  display: grid;
  gap: 28px;
}

.video-card {
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: 560px;
  background: #000;
}

.formula-box {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 5px solid var(--color-green);
  border-radius: 10px;
  background: var(--color-soft);
  color: var(--color-gray);
  font-size: 1.15rem;
  font-weight: 800;
}

/* pr21: Wissen cards and detail pages */
.knowledge-card {
  display: flex;
  flex-direction: column;
}

.knowledge-card .button + .button {
  margin-left: 0;
  margin-top: 12px;
}

/* pr22: Bestellbereich Produktliste und Mehrfachauswahl */
.price-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 760px;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(47, 52, 55, .14);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--color-green);
  color: #fff;
  font-weight: 800;
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-soft);
}

.muted {
  color: var(--color-gray);
  font-size: .9rem;
}

.product-select-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 4px;
  padding: 0;
  border: 0;
}

.product-select-list legend {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-dark);
}

.product-select-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(47, 52, 55, .16);
  border-radius: var(--radius);
  background: #fff;
}

.product-select-item p {
  margin: 8px 0 0;
}

.product-select-item label {
  align-self: stretch;
}

.product-select-price {
  color: var(--color-green-dark);
  font-weight: 800;
}

@media (max-width: 700px) {
  .product-select-item {
    grid-template-columns: 1fr;
  }
}

.order-live-total {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(119, 180, 47, 0.35);
  border-radius: 14px;
  background: #f7fbf2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-live-total span {
  font-weight: 600;
  color: #345;
}

.order-live-total strong {
  font-size: 1.8rem;
  color: var(--color-primary, #77b42f);
}

.order-live-total small {
  color: #667;
}

/* pr25: Produkt-Vorschaubilder im Bestellbereich */
.product-preview {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  z-index: 3;
}

.product-preview__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(78, 142, 31, .45);
  border-radius: 999px;
  color: var(--color-green-dark);
  background: #fff;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  white-space: nowrap;
}

.product-preview__image {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 280px;
  max-width: min(70vw, 320px);
  padding: 12px;
  border: 1px solid rgba(47, 52, 55, .16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.product-preview__image::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid rgba(47, 52, 55, .16);
  border-bottom: 1px solid rgba(47, 52, 55, .16);
  transform: rotate(45deg);
}

.product-preview__image img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.product-preview:hover .product-preview__image,
.product-preview:focus-within .product-preview__image,
.product-preview:focus .product-preview__image {
  opacity: 1;
  transform: translateY(0);
}

.product-select-item .product-preview {
  margin-top: 12px;
}

@media (max-width: 700px) {
  .product-preview__image {
    left: 0;
    right: auto;
    width: 240px;
  }

  .product-preview__image::after {
    left: 24px;
    right: auto;
  }
}
