:root {
  --ink: #172126;
  --muted: #5f6d72;
  --line: #d8e0df;
  --paper: #f8faf7;
  --soft: #eef4f0;
  --brand: #116b68;
  --brand-dark: #0d4442;
  --accent: #b9862c;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 36, 38, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--brand-dark);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #292929;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 88px;
  padding: 7px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 215px;
  max-width: 46vw;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #eeeeee;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #ffffff;
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 700;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: clamp(357px, 35.7vw, 697px);
  overflow: hidden;
  background: #101010;
}

.banner-track,
.banner-slide {
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 650ms ease;
}

.banner-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 72px;
  height: 92px;
  border: 0;
  background: rgba(0, 0, 0, 0.46);
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

.banner-arrow-prev {
  left: 0;
}

.banner-arrow-next {
  right: 0;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.banner-dots button {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.banner-dots button.is-active {
  background: #ffffff;
}

.hero,
.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px 39px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero {
  padding-top: 38px;
  padding-bottom: 43px;
  align-items: start;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.home-title-band {
  width: 100%;
  padding: 38px 32px 10px;
  display: grid;
  place-items: center;
  background: var(--soft);
}

.home-title-band h1 {
  width: fit-content;
  max-width: calc(100% - 96px);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(2.1rem, 3.25vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 3px 9px rgba(23, 33, 38, 0.16);
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 4.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 3px 9px rgba(23, 33, 38, 0.16);
}

body:has(.applications-section) .page-hero h1 {
  font-size: clamp(2.1rem, 3.25vw, 3.55rem);
  line-height: 1;
}

body:has(.applications-section) .page-hero {
  align-items: start;
}

.hero .hero-secondary-title {
  margin: 0 0 18px;
  color: #1769aa;
  font-size: clamp(1.6rem, 2.15vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 750;
  text-shadow: 0 2px 7px rgba(23, 33, 38, 0.12);
}

.hero-media figcaption {
  padding: 12px 4px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
}

.hero-media {
  margin: 0;
  position: relative;
  width: 80%;
  justify-self: end;
}

.hero p,
.page-hero p,
.contact-hero p {
  font-size: 1.12rem;
  line-height: 1.38;
  color: var(--muted);
  max-width: 680px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--brand);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
}

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

.hero-media img,
.page-hero img,
.image-card,
.product-grid article,
.contact-panel,
.contact-form,
.faq-list article {
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}

.muted {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px));
  background: var(--soft);
}

.applications-section {
  padding-top: 52px;
}

.product-details-section {
  padding-top: 18px;
}

.product-details-section figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.section h2,
.site-footer h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.15vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 750;
  text-shadow: 0 2px 8px rgba(23, 33, 38, 0.1);
}

.section h3 {
  margin: 4px 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(23, 33, 38, 0.06);
}

.check-list {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}

.thermal-break-note {
  margin-top: 10px;
}

.thermal-break-note h2 {
  margin-bottom: 14px;
}

.thermal-break-note p {
  margin: 0;
}

.thermal-break-note p + p {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 3px solid #c8d8d5;
}

.image-card {
  margin: 0;
  overflow: hidden;
}

.benefit-image-card {
  aspect-ratio: 1 / 1.16;
}

.benefit-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.04);
}

figcaption {
  padding: 12px 14px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.applications-heading {
  max-width: none;
}

.energy-section {
  padding-top: 34px;
}

.energy-section .energy-heading {
  max-width: none;
  margin: 0 auto 34px;
  text-align: center;
}

.energy-section .energy-heading h2,
.energy-title {
  display: block;
  max-width: 100%;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: nowrap !important;
  font-size: clamp(1.45rem, 2vw, 2.35rem) !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.comparison-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.4vw, 64px);
}

.comparison-group h3 {
  margin: 0 0 10px;
  color: var(--ink);
  text-align: center;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 2px 7px rgba(23, 33, 38, 0.08);
}

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

.comparison-subtitles {
  margin-bottom: 12px;
  align-items: end;
}

.comparison-subtitles span {
  color: var(--muted);
  text-align: center;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.18;
  font-weight: 800;
}

.comparison-grid,
.product-grid,
.feature-grid,
.gallery-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

.comparison-grid {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.comparison-grid figure,
.comparison-pair figure,
.gallery-grid figure,
.detail-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.features-benefits-panel {
  width: min(100%, 980px);
  margin: 42px auto 0;
  padding: 34px 46px 40px;
  border-radius: 8px;
  background: #fbf4ec;
  box-shadow: var(--shadow);
}

.features-benefits-panel h2 {
  margin: 0 0 28px;
  color: #3f8d91;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  text-shadow: none;
}

.features-benefits-table {
  display: grid;
  gap: 18px;
}

.features-benefits-head,
.features-benefits-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.features-benefits-head {
  color: #3f8d91;
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  line-height: 1.05;
  font-weight: 800;
}

.features-benefits-row {
  min-height: 58px;
}

.feature-name {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  color: #12213a;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.12;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #d8ded8;
  background: #ffffff;
  color: #116b68;
}

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

.features-benefits-row p {
  margin: 0;
  color: #12213a;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.12;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid article {
  overflow: hidden;
  padding-bottom: 18px;
}

.product-grid article img {
  aspect-ratio: 1.25;
  object-fit: cover;
}

.product-grid article h3,
.product-grid article p {
  padding-left: 18px;
  padding-right: 18px;
}

.range-configuration-image {
  width: 100%;
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.range-configuration-image img {
  width: 100%;
  height: auto;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  border-top: 4px solid var(--brand);
  padding: 22px;
  background: var(--white);
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fbf4ec;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: clamp(260px, 24vw, 390px);
  object-fit: cover;
}

.contact-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 68px 22px 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.contact-form,
.faq-list article {
  padding: 26px;
}

.contact-list p {
  margin: 0 0 18px;
}

.contact-list strong {
  display: block;
}

.contact-list a {
  color: var(--brand-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}

.contact-page .contact-hero {
  max-width: 940px;
  padding-top: 58px;
  padding-bottom: 22px;
  text-align: center;
}

.contact-page .contact-hero h1 {
  font-size: clamp(1.96rem, 3.6vw, 4rem);
  margin-bottom: 14px;
}

.contact-page .contact-hero p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  line-height: 1.42;
}

.contact-page .contact-layout {
  gap: 22px;
  padding-top: 46px;
}

.contact-page .contact-panel,
.contact-page .contact-form {
  padding: 21px;
  font-size: 0.8rem;
}

.contact-page .contact-panel h2,
.contact-page .contact-form h2 {
  font-size: clamp(1.05rem, 1.6vw, 1.48rem);
  margin-bottom: 12px;
}

.contact-page .contact-list p {
  margin-bottom: 14px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 10px 11px;
  font-size: 0.86rem;
}

.file-upload-field {
  display: grid;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 650;
  color: #5f6e73;
}

.file-upload-field input[type="file"] {
  width: 100%;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  background: #f7faf8;
  color: #5f6e73;
  font: inherit;
  font-size: 0.82rem;
}

.file-upload-field input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--brand);
  color: #ffffff;
  padding: 7px 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding-top: 49px;
}

.site-footer {
  position: relative;
  background: #292929;
  color: #f4f4f4;
  padding: 58px 22px 0;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(190px, 0.55fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-grid a {
  color: #f4f4f4;
  text-decoration: none;
}

.footer-contact h2 {
  margin: 0 0 20px;
  color: #c89a62;
  font-size: clamp(1.32rem, 1.8vw, 1.84rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-contact address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-contact strong {
  display: block;
  margin-top: 6px;
}

.footer-contact-highlight {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f4f4f4;
  font-weight: 650;
}

.footer-contact-highlight a {
  color: #f4f4f4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links h2,
.footer-form h2 {
  margin: 0 0 18px;
  color: #e8e8e8;
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 650;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
}

.social-links {
  display: flex;
  gap: 18px;
  margin: 0 0 34px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #d8d8d8;
  font-size: 1.16rem;
  font-weight: 800;
}

.footer-link {
  display: block;
  margin-top: 18px;
  color: #dddddd;
  font-size: 0.94rem;
}

.footer-form {
  display: grid;
  gap: 10px;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: #202020;
  color: #ffffff;
  padding: 10px 11px;
  font: inherit;
  font-size: 0.86rem;
}

.footer-form .file-upload-field {
  color: rgba(255, 255, 255, 0.72);
}

.footer-form .file-upload-field input[type="file"] {
  border-color: rgba(255, 255, 255, 0.2);
  background: #202020;
  color: rgba(255, 255, 255, 0.72);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer-form select {
  color: rgba(255, 255, 255, 0.78);
}

.footer-form button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  background: #c89a62;
  color: #1f1f1f;
  padding: 9px 21px;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

.whatsapp-cta {
  position: fixed;
  right: 28px;
  bottom: 72px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #28d466;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.74rem, 0.95vw, 0.9rem);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(40, 212, 102, 0.24);
}

.whatsapp-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 0.84rem;
  line-height: 1;
}

.copyright {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 360px 12px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .hero,
  .page-hero,
  .two-column,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .product-grid,
  .feature-grid,
  .detail-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid figure {
    grid-column: auto;
  }

  .comparison-groups {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer {
    padding: 42px 20px 0;
  }

  .footer-grid {
    gap: 30px;
  }

  .hero-media {
    width: 100%;
    justify-self: stretch;
  }

  .copyright {
    padding: 18px 0 14px;
  }

  .features-benefits-panel {
    padding: 30px 24px 34px;
  }

  .features-benefits-head {
    display: none;
  }

  .features-benefits-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    min-height: 94px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    padding: 10px;
    background: #292929;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .banner-slider {
    height: clamp(238px, 61.2vw, 366px);
  }

  .banner-arrow {
    width: 46px;
    height: 64px;
    font-size: 1.9rem;
  }

  .banner-dots {
    bottom: 14px;
  }

  .banner-dots button {
    width: 11px;
    height: 11px;
  }

  .hero,
  .page-hero,
  .section,
  .contact-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-title-band {
    padding: 28px 16px 8px;
  }

  .home-title-band h1 {
    width: fit-content;
    max-width: calc(100% - 32px);
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    white-space: normal;
    text-wrap: balance;
  }

  .comparison-grid,
  .product-grid,
  .feature-grid,
  .detail-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid figure {
    grid-column: auto;
  }

  .comparison-subtitles,
  .comparison-pair {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand img {
    width: 190px;
    max-width: 62vw;
  }

  .footer-contact h2 {
    font-size: 1.24rem;
  }

  .footer-contact address {
    font-size: 0.78rem;
  }

  .social-links {
    gap: 14px;
  }

  .whatsapp-cta {
    right: 14px;
    bottom: 64px;
    max-width: calc(100vw - 28px);
    min-height: 40px;
    padding: 7px 13px;
    font-size: 0.74rem;
  }
}

.product-details-section figcaption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.product-details-section .keep-visible-caption figcaption {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 18px 20px 22px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.product-details-section .keep-visible-caption img {
  width: 100%;
  height: clamp(320px, 28vw, 460px);
  object-fit: cover;
}

.product-detail-set-break {
  grid-column: 1 / -1;
  height: 56px;
  margin: 6px 0 4px;
  position: relative;
}

.product-detail-set-break::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(17, 107, 104, 0.5), transparent);
}

.product-detail-group-heading {
  grid-column: 1 / -1;
  margin: -4px 0 4px;
  scroll-margin-top: 132px;
}

.product-detail-group-heading h2 {
  margin: 0 0 14px;
}

.product-details-section .visible-short-caption figcaption {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 14px 18px 18px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.seo-caption-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.image-magnify-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(15, 28, 34, 0.78);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.image-magnify-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.image-magnify-button:hover,
.image-magnify-button:focus-visible {
  background: var(--brand);
  outline: 3px solid rgba(20, 124, 118, 0.24);
}

.image-link-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(15, 28, 34, 0.78);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.image-link-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-link-button:hover,
.image-link-button:focus-visible {
  background: var(--brand);
  outline: 3px solid rgba(20, 124, 118, 0.24);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 15, 18, 0.86);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox-panel {
  position: relative;
  max-width: min(1120px, 94vw);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.image-lightbox-panel img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fbf4ec;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.image-lightbox-panel p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.image-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

body.has-lightbox {
  overflow: hidden;
}
