:root {
  --green: #16865c;
  --green-dark: #0b5139;
  --green-soft: #eaf7f1;
  --white: #ffffff;
  --bg: #f7f9f8;
  --text: #18211d;
  --muted: #637069;
  --line: #dde7e1;
  --green-bright: #b5f58d;
  --shadow: 0 18px 48px rgba(24, 33, 29, 0.11);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans Thai", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(22, 134, 92, 0.32);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  padding: 8px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 96px;
  height: 38px;
  place-items: center;
  color: #43ad2f;
  background: var(--white);
  border: 2px solid #aeb8b2;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(67, 173, 47, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 108px;
  height: auto;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a {
  color: var(--text);
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-dropdown { position: relative; flex: 0 0 auto; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-arrow { color: var(--green); font-size: 16px; line-height: 1; }
.nav-dropdown-menu {
  display: grid;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 260px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(24, 33, 29, .16);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown-menu::before { position: absolute; top: -7px; left: 50%; width: 12px; height: 12px; content: ""; background: var(--white); border-top: 1px solid var(--line); border-left: 1px solid var(--line); transform: translateX(-50%) rotate(45deg); }
.nav-dropdown-menu a { position: relative; z-index: 1; padding: 9px 12px; border-radius: 5px; white-space: nowrap; font-size: 14px; font-weight: 700; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { color: var(--green-dark); background: var(--green-soft); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.products-page .hero-categories { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-button,
.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-option {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.language-option + .language-option {
  border-left: 1px solid var(--line);
}

.language-option.is-active {
  color: var(--white);
  background: var(--green);
}

.quote-button,
.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.line {
  color: var(--white);
  background: #06c755;
  border-color: #06c755;
}

a[href*="line.me"] {
  transition: transform 200ms ease, color 200ms ease;
}

a[href*="line.me"]:hover,
a[href*="line.me"]:focus-visible {
  transform: translateY(-3px) scale(1.025);
}

.button.line:hover,
.button.line:focus-visible,
.mobile-contact-line:hover,
.mobile-contact-line:focus-visible {
  box-shadow: 0 10px 22px rgba(6, 199, 85, .24);
}

.contact-qr,
.footer-qr,
.brand-logo {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.contact-qr:hover,
.footer-qr:hover,
.brand-logo:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 22px rgba(24, 33, 29, .16);
}

.button.detail {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: var(--green-soft);
}

[data-hover-label] {
  position: relative;
}

[data-hover-label]::after {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  z-index: 900;
  width: max-content;
  max-width: 250px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(24, 33, 29, .94);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(24, 33, 29, .18);
  content: attr(data-hover-label);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
  white-space: normal;
}

[data-hover-label]:hover::after,
[data-hover-label]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

[data-hover-label]:hover,
[data-hover-label]:focus-visible {
  z-index: 20;
}

.promo-popup { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; }
.promo-popup[hidden] { display: none; }
.promo-backdrop { position: absolute; inset: 0; background: rgba(12, 22, 18, .68); backdrop-filter: blur(3px); }
.promo-card { position: relative; display: grid; place-items: center; width: min(1100px, 100%); max-height: 92vh; animation: promo-in 240ms ease-out; }
.promo-close { position: absolute; top: 10px; right: 10px; z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; color: #4a554f; background: var(--white); border: 0; border-radius: 50%; box-shadow: 0 3px 12px rgba(0,0,0,.2); cursor: pointer; font-size: 28px; line-height: 1; }
.promo-image { display: block; width: auto; max-width: 100%; max-height: 88vh; object-fit: contain; background: var(--white); border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
@keyframes promo-in { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 640px) { .promo-popup { padding: 12px; } .promo-image { max-height: 84vh; border-radius: 10px; } .promo-close { top: 6px; right: 6px; } }

@media (max-width: 900px) {
  .nav-dropdown { display: block; }
  .nav-dropdown-toggle { justify-content: space-between; width: 100%; }
  .nav-dropdown-menu { position: static; display: none; min-width: 0; padding: 4px 0 4px 16px; visibility: visible; opacity: 1; transform: none; border: 0; border-radius: 0; box-shadow: none; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
  .nav-dropdown-menu a { padding: 7px 10px; white-space: normal; }
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  display: block;
  height: 2px;
  margin: 0;
  background: var(--text);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1), opacity 160ms ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] {
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(24, 78, 54, 0.14);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.nav-toggle:active { transform: scale(.95); }

.hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(300px, 34vw, 470px);
  margin: 12px clamp(18px, 5vw, 52px) 0;
  padding: clamp(36px, 5vw, 72px);
  overflow: hidden;
  background: var(--green-soft);
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions,
.cta-buttons,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(234, 247, 241, 0.82), rgba(234, 247, 241, 0.18) 58%, rgba(234, 247, 241, 0.02)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
}

.hero-copy {
  width: min(560px, 100%);
  padding: clamp(22px, 3.5vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.12);
}

.home-catalog-page {
  background: #f7f7f6;
}

.home-catalog-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  width: min(100%, 1240px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(24px, 3.5vw, 44px) clamp(12px, 3vw, 24px) clamp(28px, 4vw, 44px);
}

.home-catalog-layout > * {
  min-width: 0;
}

.home-info-rail {
  position: sticky;
  top: 76px;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  color: #fffaf4;
  background: #625955;
  border: 1px solid rgba(98, 89, 85, 0.28);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(24, 33, 29, 0.12);
}

.home-info-rail .eyebrow {
  color: #e7ded5;
}

.home-info-rail h1 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.home-info-rail p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #ece4dc;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.home-info-list {
  display: grid;
  gap: 10px;
}

.home-info-list a {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding-block: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-info-list strong {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-info-list span {
  color: #f5eee8;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.home-info-rail .button {
  width: 100%;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(172px, 1fr);
  gap: 12px;
  min-width: 0;
}

.home-category-tile {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-banner-reference.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(24, 33, 29, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-category-tile:hover,
.home-category-tile:focus-visible {
  box-shadow: 0 20px 34px rgba(24, 33, 29, 0.16);
  transform: translateY(-3px);
}

.home-category-tile::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(22, 134, 92, 0.12), rgba(38, 66, 54, 0.08));
  transition: transform 220ms ease, opacity 220ms ease;
}

.home-category-tile:hover::before {
  opacity: 0.42;
  transform: scale(1.04);
}

.home-category-tile span {
  max-width: calc(100% - 24px);
  padding: 9px 12px;
  color: var(--white);
  background: rgba(15, 28, 24, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.24;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.tile-machine {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-Screenshot2024-06-18133652z-z181602969884-934d1b8a39.webp");
  background-position: center 45%;
}

.tile-magnetic {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-MagneticPolishingz-z418977855235-91289e9807.webp");
  background-position: 58% 42%;
}

.tile-ceramic {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-image-Photoroom-6-z-z449893161938-e7edeee5f2.png");
  background-position: 42% 50%;
}

.tile-plastic {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-GBSandz-z1506707535607-3ac278e469.webp");
  background-position: 65% 56%;
}

.tile-steel {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-PolishingMediaz-z119638418684-8589fbfcdd.webp");
  background-position: 30% 52%;
}

.tile-compound {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-Separatorz-z1628959849741-fbcea81c51.webp");
  background-position: 72% 48%;
}

.tile-spare {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-BowlFeederz-z705132466308-d9974ce643.webp");
  background-position: 48% 60%;
}

.tile-support {
  background-image:
    linear-gradient(180deg, rgba(13, 36, 29, 0.08), rgba(13, 36, 29, 0.58)),
    url("assets/rpv-watermarked-pattern/rpv-ServiceRepairz-z1108734234555-def29d64e2.webp");
  background-position: center 38%;
}

.product-search-hero,
.products-section,
.contact-cta {
  padding-inline: clamp(16px, 4vw, 42px);
}

.product-search-hero {
  display: grid;
  align-items: center;
  min-height: clamp(190px, 22vw, 260px);
  padding-block: clamp(22px, 3.4vw, 34px);
  background:
    linear-gradient(90deg, rgba(234, 247, 241, 0.96), rgba(234, 247, 241, 0.88)),
    var(--green-soft);
  border-bottom: 1px solid var(--line);
}

.search-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.search-copy h1,
.search-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.16;
}

.search-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-search {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(24, 33, 29, 0.1);
}

.products-section {
  padding-block: 0 clamp(44px, 6vw, 72px);
}

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

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.product-browser {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
}

.quick-categories {
  position: sticky;
  top: 78px;
  align-self: start;
  max-height: calc(100vh - 90px);
  padding: 10px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.84);
  border-right: 1px solid var(--line);
}

.hero-categories {
  position: static;
  grid-column: 1 / -1;
  max-height: none;
  padding: 10px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(196, 214, 204, 0.8);
  border-radius: 8px;
}

.hero-categories .quick-categories-head {
  display: flex;
  gap: 10px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.hero-categories .quick-categories-head p {
  display: block;
  text-align: right;
}

.hero-categories .filter-row {
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 6px;
}

.hero-categories .filter-button {
  min-height: 34px;
  padding: 5px 7px;
  font-size: 10px;
}

.quick-categories-head {
  display: block;
  margin-bottom: 8px;
}

.quick-categories h2 {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
}

.quick-categories p {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-list-panel {
  min-width: 0;
}

.product-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-panel-head strong,
.product-panel-head span {
  display: block;
}

.product-panel-head strong {
  font-size: 20px;
  line-height: 1.2;
}

.product-panel-head span {
  color: var(--muted);
  font-size: 14px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.product-sidebar .search-box {
  color: var(--white);
}

.search-box input {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.filter-button {
  width: 100%;
  min-height: 32px;
  padding: 5px 6px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  line-height: 1.25;
}

.category-mark {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 6px;
  font-size: 7px;
  font-weight: 900;
}

.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.filter-button[aria-pressed="true"] .category-mark {
  color: var(--green-dark);
  background: var(--white);
}

.product-count {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--admin-product-columns, 4), minmax(0, 1fr));
  gap: 14px;
}

.admin-draft-compact-hero .product-search-hero {
  min-height: 180px;
  padding-block: 18px;
}

.admin-draft-compact-hero .search-copy h1 {
  font-size: clamp(26px, 3vw, 36px);
}

.product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 29, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 134, 92, 0.5);
  box-shadow: 0 16px 34px rgba(24, 33, 29, 0.12);
}

.product-card.featured {
  border-color: rgba(22, 134, 92, 0.45);
}

.product-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-radius: 7px 7px 0 0;
}

.product-image img,
.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.product-image img {
  display: block;
  object-fit: contain;
  padding: 8px;
  cursor: zoom-in;
  transform: none;
}

.product-image:hover img {
  transform: none;
}

.image-zoom-preview {
  position: fixed;
  z-index: 1200;
  width: min(380px, 34vw);
  height: min(320px, 30vw);
  min-width: 260px;
  min-height: 220px;
  overflow: hidden;
  background-color: #fff;
  background-repeat: no-repeat;
  border: 1px solid rgba(24, 33, 29, 0.24);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transform-origin: center;
  transition: opacity 120ms ease, transform 120ms ease;
  visibility: hidden;
}

.image-zoom-preview.is-visible {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

@media (hover: none) {
  [data-hover-label]::after {
    display: none;
  }

  .product-image:hover img {
    transform: none;
  }

  .image-zoom-preview {
    display: none;
  }
}

.product-placeholder {
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background:
    linear-gradient(135deg, rgba(22, 134, 92, 0.1), rgba(11, 81, 57, 0.04)),
    var(--green-soft);
  text-align: center;
}

.product-placeholder span,
.product-placeholder small {
  display: block;
}

.product-placeholder span {
  font-size: 28px;
  font-weight: 900;
}

.product-placeholder small {
  color: var(--muted);
  font-weight: 800;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.product-category {
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
}

.product-en,
.product-desc {
  color: var(--muted);
}

.product-en {
  margin: 4px 0 2px;
  font-weight: 700;
}

.product-model {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.price-note {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 14px 14px;
}

.no-results {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.no-results p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-cta p,
.site-footer p {
  color: var(--muted);
}

.contact-cta {
  color: var(--white);
  background: var(--green-dark);
  padding-block: 46px;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: center;
  width: min(100%, 1240px);
  min-height: 170px;
  margin: 0 auto;
}

.contact-cta .eyebrow {
  color: #52d66b;
}

.contact-cta h2 {
  max-width: 780px;
  font-size: clamp(30px, 3vw, 36px);
}

.contact-cta p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cta-actions .button {
  width: 100%;
}

.office-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  background: #081812;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 0.75fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 42px clamp(18px, 4vw, 32px);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #52d66b;
  border: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.site-footer .brand-mark {
  width: 104px;
  height: 62px;
  margin-bottom: 14px;
  color: #43ad2f;
  background: #f8fbf8;
  border-color: #aeb8b2;
  font-size: 44px;
}

.site-footer .brand-logo {
  width: 126px;
  margin-bottom: 14px;
}

.footer-company,
.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-company {
  align-items: start;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-qr {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--white);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.footer-contact ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  gap: 7px;
}

.footer-links a,
.footer-contact a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-contact a:hover,
.office-link:hover {
  color: #43ad2f;
}

.footer-contact p,
.footer-company p {
  margin: 0;
  color: rgba(232, 242, 236, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.footer-about {
  max-width: 390px;
}

.footer-bottom {
  padding: 12px clamp(18px, 5vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #081812;
  text-align: center;
}

.footer-bottom p,
.copyright {
  margin: 0;
  color: rgba(232, 242, 236, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.floating-line {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  min-width: 60px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #06c755;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
  animation: line-float 3.6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-line:hover,
.floating-line:focus-visible {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 28px rgba(6, 199, 85, .28);
}

@keyframes line-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.mobile-contact-bar {
  display: none;
}

.product-modal {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.breadcrumb {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 42px) 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--muted);
  content: "/";
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.subpage-hero {
  display: grid;
  gap: 10px;
  padding: clamp(36px, 6vw, 74px) clamp(16px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(234, 247, 241, 0.98), rgba(234, 247, 241, 0.86)),
    var(--green-soft);
  border-bottom: 1px solid var(--line);
}

.subpage-hero > * {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.subpage-hero h1 {
  margin-block: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.14;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
}

.subpage-section {
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 42px);
}

.content-panel,
.info-grid,
.contact-page-grid {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.content-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-panel h2,
.info-grid h2,
.contact-card h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
}

.content-panel p,
.info-grid p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

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

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

.info-grid article,
.contact-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 29, 0.05);
}

.info-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 16px;
  align-items: stretch;
}

.primary-contact .button {
  width: 100%;
}

.contact-qr {
  width: min(100%, 160px);
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-panel {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 3vw, 24px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 29, 0.05);
}

.contact-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.contact-map-head h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
}

.contact-map-head p:not(.eyebrow) {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-map-frame {
  overflow: hidden;
  height: clamp(320px, 42vw, 460px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-soft);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.compact-page-search {
  min-height: 0;
}

.page-intro-band {
  padding-block: 28px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-intro-grid,
.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1240px);
  margin-inline: auto;
}

.page-intro-grid article,
.about-focus-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f7fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-intro-grid span,
.solution-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(22, 134, 92, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.page-intro-grid h2,
.about-focus-grid h2,
.decision-panel h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
}

.page-intro-grid p,
.about-focus-grid p,
.decision-panel p,
.clean-list {
  margin: 0;
  color: var(--muted);
}

.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 86px;
  height: 86px;
  background: rgba(22, 134, 92, 0.08);
  border-radius: 999px;
  content: "";
}

.decision-section {
  padding-top: 0;
}

.decision-panel {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

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

.process-steps li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  background: #f7fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-steps strong {
  color: var(--green-dark);
}

.process-steps span {
  color: var(--muted);
}

.company-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.company-summary div {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
}

.company-summary span {
  color: var(--muted);
  font-size: 13px;
}

.about-focus-section,
.contact-guide-section {
  padding-top: 0;
}

.about-focus-grid {
  grid-template-columns: 1fr 1fr;
}

.clean-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.contact-guide-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(6, 45, 34, 0.92), rgba(6, 45, 34, 0.76)),
    linear-gradient(135deg, #0c4b38, #16865c);
}

.about-hero .eyebrow,
.about-hero h1,
.about-hero p:not(.eyebrow) {
  color: #ffffff;
}

.about-hero .eyebrow {
  color: var(--green-bright);
}

.about-company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  width: min(100%, 1240px);
  margin-inline: auto;
  align-items: start;
}

.about-story p {
  font-size: 15.5px;
  line-height: 1.75;
}

.about-fact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(9, 61, 45, 0.98), rgba(5, 34, 27, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 44, 35, 0.18);
}

.about-fact-card h2,
.about-fact-card dl,
.about-fact-card dt,
.about-fact-card dd {
  margin: 0;
}

.about-fact-card h2 {
  font-size: 22px;
}

.about-fact-card dl {
  display: grid;
  gap: 10px;
}

.about-fact-card dl div {
  display: grid;
  gap: 3px;
  padding-block: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-fact-card dt {
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 800;
}

.about-fact-card dd {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
}

.about-vision-section {
  padding-top: 0;
}

.about-vision-panel {
  display: grid;
  gap: 10px;
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: clamp(22px, 4vw, 34px);
  background: #eef8f3;
  border: 1px solid rgba(22, 134, 92, 0.18);
  border-left: 6px solid var(--green);
  border-radius: 8px;
}

.about-vision-panel blockquote {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.45;
}

.section-head.compact {
  display: grid;
  gap: 8px;
  max-width: 780px;
}

.section-head.compact h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

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

.about-service-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-kicker {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(22, 134, 92, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.about-service-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 22px;
}

.about-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-service-card .clean-list {
  display: grid;
  gap: 7px;
  padding-left: 18px;
  color: #42534b;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.modal-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 30px;
}

.modal-image {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.image-zoom-trigger {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 33, 29, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 16px rgba(24, 33, 29, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.image-zoom-trigger:hover,
.image-zoom-trigger:focus-visible {
  color: var(--green-dark);
  border-color: var(--green);
  outline: none;
  transform: translateY(-1px);
}

.modal-features {
  font-size: 16px;
}

.image-viewer {
  width: min(1100px, calc(100vw - 28px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #f3f6f4;
}

.image-viewer::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.image-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(24, 33, 29, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.image-viewer-stage {
  display: grid;
  min-height: min(76vh, 760px);
  place-items: center;
  overflow: hidden;
  background: #f3f6f4;
  touch-action: none;
}

.image-viewer-stage img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  transform-origin: center;
  cursor: zoom-in;
  user-select: none;
  will-change: transform;
}

.image-viewer-stage img.is-zoomed {
  cursor: grab;
  transition: none;
}

.image-viewer-stage img.is-dragging {
  cursor: grabbing;
}

.image-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 9px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.image-viewer-toolbar button {
  min-width: 38px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.image-viewer-toolbar button:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.image-viewer-toolbar span {
  min-width: 54px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .image-viewer {
    width: calc(100vw - 20px);
  }

  .image-viewer-stage {
    min-height: 64vh;
  }

  .image-viewer-stage img {
    max-height: 64vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1180px) {
  .product-browser {
    grid-template-columns: 122px minmax(0, 1fr);
  }

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

@media (max-width: 900px) {
  .about-company-layout,
  .about-service-grid {
    grid-template-columns: 1fr;
  }

  .about-fact-card {
    order: -1;
  }
}

@media (max-width: 620px) {
  .about-story p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .about-fact-card,
  .about-service-card {
    padding: 16px;
  }

  .about-vision-panel {
    border-left-width: 4px;
  }

  .about-vision-panel blockquote {
    font-size: 19px;
  }

  .about-service-card h3 {
    font-size: 19px;
  }

  .about-service-card .clean-list {
    font-size: 14px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .home-catalog-layout {
    grid-template-columns: 1fr;
  }

  .home-info-rail {
    position: static;
    min-height: 0;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(160px, 1fr);
  }

  .brand-mark {
    width: 84px;
    height: 36px;
    font-size: 26px;
  }

  .brand-logo {
    width: 92px;
  }

  .search-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-search-hero {
    min-height: 0;
    padding-block: 22px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    grid-column: 1 / -1;
  }

  .contact-cta,
  .modal-layout {
    grid-template-columns: 1fr;
  }

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

  .product-browser {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-categories {
    position: static;
    max-height: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-right: 0;
  }

  .quick-categories-head {
    display: flex;
    gap: 16px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .quick-categories h2 {
    font-size: 22px;
  }

  .quick-categories p {
    display: block;
  }

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

  .filter-button {
    min-height: 54px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .category-mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid,
  .info-grid.tight,
  .contact-page-grid,
  .page-intro-grid,
  .company-summary,
  .about-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-panel {
    grid-template-columns: 1fr;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-actions {
    max-width: 360px;
  }
}

@media (max-width: 1100px) {
  body.nav-open {
    overflow: hidden;
  }

  body::before {
    opacity: 0;
    pointer-events: none;
  }

  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 104;
    background: rgba(4, 18, 13, 0.42);
    content: "";
    opacity: 1;
    animation: nav-backdrop-in 220ms ease both;
  }

  @keyframes nav-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 60px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: auto;
    max-width: 108px;
    max-height: 36px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 130;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: flex;
    width: min(86vw, 320px);
    padding: 20px 14px 148px;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: -18px 0 42px rgba(24, 33, 29, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(28px);
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, visibility 260ms ease;
    will-change: transform, opacity;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 15px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--white);
    background: var(--green);
  }

  .header-actions {
    position: fixed;
    right: 14px;
    bottom: 18px;
    z-index: 125;
    display: none;
    width: min(calc(86vw - 28px), 292px);
    padding: 12px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px rgba(24, 33, 29, 0.08);
  }

  body.nav-open .header-actions {
    display: grid;
  }

  .header-actions .quote-button {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
  }

  .language-switch {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 10px;
  }

  .site-header,
  .home-catalog-layout,
  .product-search-hero,
  .products-section,
  .contact-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    max-width: 96px;
    max-height: 34px;
  }

  .brand span {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    overflow: hidden;
    max-width: 160px;
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: stretch;
    gap: 8px;
  }

  .language-switch {
    width: 100%;
  }

  .language-option {
    flex: 1;
    min-height: 36px;
    padding: 7px 10px;
  }

  .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .home-catalog-layout {
    gap: 10px;
    width: min(100%, 390px);
    margin-inline: 0;
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .home-info-rail {
    gap: 16px;
    padding: 16px;
  }

  .home-info-rail h1 {
    font-size: 26px;
  }

  .home-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-info-list a {
    padding-block: 8px;
  }

  .home-info-list span {
    font-size: 12px;
    line-height: 1.35;
  }

  .home-category-grid {
    gap: 6px;
    grid-auto-rows: minmax(138px, 1fr);
  }

  .home-category-tile {
    min-height: 0;
  }

  .home-category-tile span {
    max-width: calc(100% - 18px);
    padding: 8px 10px;
    font-size: 16px;
  }

  .product-search-hero {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .search-hero-inner {
    gap: 12px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .search-copy h1 {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.18;
  }

  .search-copy p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-search {
    padding: 8px;
  }

  .search-box input {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 16px;
  }

  .products-section {
    padding-bottom: 34px;
  }

  .quick-categories-head {
    margin-bottom: 8px;
  }

  .quick-categories {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .quick-categories h2 {
    font-size: 18px;
  }

  .quick-categories p {
    font-size: 13px;
  }

  .hero-categories {
    padding: 10px;
  }

  .hero-categories .quick-categories-head {
    display: block;
    margin-bottom: 8px;
  }

  .hero-categories .quick-categories-head p {
    margin-top: 4px;
    text-align: left;
  }

  .hero-categories .filter-row {
    display: flex;
    grid-template-columns: none;
    width: calc(100% + 32px);
    max-width: 100vw;
    gap: 10px;
    padding-right: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .hero-categories .filter-row::-webkit-scrollbar {
    display: none;
  }

  .hero-categories .filter-button {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    max-width: 172px;
    min-height: 42px;
    white-space: nowrap;
  }

  .filter-row {
    display: flex;
    width: calc(100% + 32px);
    max-width: 100vw;
    gap: 10px;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    max-width: 172px;
    min-height: 42px;
    padding: 6px 9px;
    white-space: nowrap;
    font-size: 12px;
    scroll-snap-align: start;
  }

  .category-mark {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .breadcrumb {
    padding: 10px 16px 0;
    font-size: 12px;
  }

  .contact-cta {
    padding-block: 26px;
  }

  .contact-cta-inner {
    gap: 16px;
    min-height: 0;
  }

  .contact-cta h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.25;
  }

  .contact-cta p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .cta-actions {
    gap: 8px;
    max-width: none;
  }

  .office-link {
    min-height: 34px;
    padding-top: 4px;
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 16px;
  }

  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .footer-company .brand-logo,
  .site-footer .brand-logo {
    width: 112px;
  }

  .footer-contact-grid {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .footer-qr {
    width: 88px;
    height: 88px;
  }

  .footer-links {
    gap: 7px;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact p,
  .footer-company p {
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-bottom {
    padding: 10px 16px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px;
  }

  .product-browser {
    padding: 0;
  }

  .product-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
    padding: 10px 12px;
  }

  .product-panel-head strong {
    font-size: 16px;
  }

  .product-panel-head span {
    font-size: 13px;
  }

  .product-count {
    text-align: left;
    font-size: 13px;
  }

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

  .product-image img {
    object-fit: contain;
  }

  .product-image img,
  .product-placeholder {
    aspect-ratio: 1 / 1;
  }

  .product-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-body {
    padding: 9px;
  }

  .product-category,
  .product-model,
  .product-desc,
  .product-en {
    font-size: 11px;
  }

  .product-category {
    margin-bottom: 6px;
    padding: 3px 6px;
  }

  .product-desc {
    min-height: 34px;
    line-height: 1.45;
  }

  .product-placeholder span {
    font-size: 22px;
  }

  .product-placeholder small {
    font-size: 11px;
  }

  .product-actions {
    gap: 0;
    padding: 0 9px 9px;
  }

  .product-actions .button {
    min-height: 38px;
    padding: 8px 8px;
    font-size: 12px;
  }

  .product-actions .button.primary {
    display: none;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .floating-line {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 120;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(24, 33, 29, 0.18);
    backdrop-filter: blur(12px);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
  }

  .subpage-hero {
    padding-block: 28px;
  }

  .subpage-hero h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .subpage-section {
    padding-block: 28px;
  }

  .info-grid,
  .info-grid.tight,
  .contact-page-grid,
  .page-intro-grid,
  .company-summary,
  .about-focus-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article,
  .page-intro-grid article,
  .about-focus-grid article,
  .contact-card,
  .content-panel {
    padding: 14px;
  }

  .process-steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-guide-head {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-map-head {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-map-head .button {
    width: 100%;
  }

  .contact-map-frame {
    height: 340px;
  }

  .mobile-contact-line {
    color: var(--white);
    background: #06c755;
  }

  .mobile-contact-call {
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid rgba(22, 134, 92, 0.22);
  }
}

@media (max-width: 374px) {
  .site-header,
  .product-search-hero,
  .products-section,
  .contact-cta,
  .brand-logo {
    max-width: 86px;
  }

  .home-info-list {
    grid-template-columns: 1fr;
  }

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .brand strong {
    max-width: 130px;
    font-size: 11px;
  }

  .search-copy h1 {
    font-size: 21px;
  }

  .search-copy p:not(.eyebrow) {
    display: none;
  }

  .hero-search span {
    display: none;
  }

  .quick-categories p,
  .product-panel-head span {
    display: none;
  }

  .product-panel-head {
    flex-direction: row;
    align-items: center;
  }

  .product-panel-head strong {
    font-size: 15px;
  }

  .product-count {
    white-space: nowrap;
  }

  .filter-row {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .filter-button {
    flex-basis: 128px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-grid {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .footer-qr {
    width: 78px;
    height: 78px;
  }

  .mobile-contact-bar {
    grid-template-columns: 0.72fr 1.28fr;
  }
}

/* Mobile comfort pass: keep the product browser readable on real phones. */
@media (max-width: 700px) {
  body {
    background: #f4f7f5;
  }

  .site-header {
    min-height: 58px;
    padding: 8px 14px;
  }

  .brand-logo {
    max-width: 90px;
    max-height: 32px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.15;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .product-search-hero,
  .products-section,
  .contact-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-search-hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .search-hero-inner {
    gap: 14px;
  }

  .search-copy h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.22;
  }

  .search-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-search {
    padding: 12px;
    box-shadow: 0 10px 24px rgba(24, 33, 29, 0.08);
  }

  .search-box input {
    min-height: 48px;
    border-radius: 8px;
  }

  .product-browser {
    gap: 16px;
  }

  .quick-categories {
    padding-top: 4px;
  }

  .quick-categories-head {
    display: block;
    margin-bottom: 10px;
  }

  .quick-categories h2 {
    font-size: 18px;
    line-height: 1.25;
  }

  .quick-categories p {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.45;
  }

  .filter-row {
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 4px;
    gap: 8px;
  }

  .filter-button {
    max-width: 190px;
    min-height: 44px;
    padding: 7px 10px;
    border-radius: 9px;
    white-space: normal;
  }

  .category-mark {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .product-panel-head {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
  }

  .product-panel-head strong {
    font-size: 18px;
  }

  .product-panel-head span {
    line-height: 1.45;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(24, 33, 29, 0.07);
  }

  .product-image img,
  .product-placeholder {
    aspect-ratio: 4 / 3;
  }

  .product-body {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 17px;
    line-height: 1.32;
    -webkit-line-clamp: 3;
  }

  .product-category,
  .product-model,
  .product-desc,
  .product-en {
    font-size: 13px;
  }

  .product-desc {
    min-height: 0;
    line-height: 1.55;
    -webkit-line-clamp: 3;
  }

  .product-actions {
    gap: 8px;
    padding: 0 14px 14px;
  }

  .product-actions .button {
    min-height: 42px;
    font-size: 13px;
  }

  .product-actions .button.primary {
    display: inline-flex;
  }

  .contact-cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-cta h2 {
    font-size: 24px;
  }

  .footer-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-contact-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: min(calc(100% - 16px), 374px);
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
  }

  .mobile-contact-bar a {
    min-width: 0;
    padding-inline: 8px;
    overflow: hidden;
    line-height: 1.18;
    text-overflow: ellipsis;
  }

  .mobile-contact-call {
    font-size: 12px;
  }
}

@media (max-width: 374px) {
  .site-header,
  .product-search-hero,
  .products-section,
  .contact-cta {
    max-width: none;
  }

  .brand-logo {
    max-width: 82px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  body.nav-open::before {
    display: none !important;
  }

  .site-nav {
    top: 58px !important;
    right: 12px !important;
    bottom: auto !important;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 150px);
    padding: 10px !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 40px rgba(24, 33, 29, 0.22) !important;
    transform: translateY(-8px) !important;
  }

  body.nav-open .site-nav,
  .site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .site-nav a {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px !important;
    border-radius: 8px;
    background: #f7faf8;
  }

  .site-nav a + a {
    margin-top: 6px;
  }

  .site-nav .nav-dropdown {
    display: block;
  }

  .site-nav .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav .nav-dropdown-menu {
    display: none;
    max-height: min(420px, 56vh);
    padding: 6px 0 2px 12px !important;
    overflow-y: auto;
    background: transparent;
  }

  .site-nav .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .site-nav .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }

  .site-nav .nav-dropdown-menu a {
    min-height: 36px;
    margin-top: 4px;
    padding: 8px 12px !important;
    color: var(--green-dark);
    background: #edf7f1;
    border: 1px solid rgba(22, 134, 92, 0.12);
    font-size: 13px;
    line-height: 1.35;
  }

  .site-nav .nav-dropdown-menu a:first-child {
    margin-top: 0;
  }

  .site-nav .nav-dropdown.is-open > .nav-dropdown-toggle .nav-arrow {
    transform: rotate(180deg);
  }

  .site-nav .nav-dropdown-menu a:hover,
  .site-nav .nav-dropdown-menu a:focus-visible {
    color: var(--white);
    background: var(--green);
  }

  .header-actions {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: none !important;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  body.nav-open .header-actions {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto 42px !important;
  }

  .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .header-actions {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.nav-open .header-actions {
    display: flex !important;
  }

  .header-actions .quote-button {
    display: none !important;
  }

  .language-switch {
    width: auto !important;
  }

  .language-option {
    min-width: 40px;
    min-height: 34px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .nav-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px !important;
    gap: 8px 10px !important;
  }

  .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
  }

  .language-switch {
    width: 100% !important;
  }

  .nav-toggle {
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    background: var(--green) !important;
    border-color: var(--green) !important;
  }

  .nav-toggle span {
    background: var(--white) !important;
  }

  .site-nav {
    top: 104px !important;
  }
}

@media (max-width: 374px) {
  .brand strong {
    max-width: 118px;
  }

  .language-option {
    min-width: 34px;
    padding-inline: 7px;
  }
}

/* Product detail visual refresh: make the image and information feel like one designed panel. */
.product-modal {
  position: relative;
  max-height: calc(100vh - 28px);
  overflow: auto;
  background: #e9f5ee;
  border: 1px solid rgba(11, 81, 57, 0.18);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(6, 35, 24, 0.32);
}

.product-modal::backdrop {
  background: rgba(4, 27, 18, 0.7);
  backdrop-filter: blur(5px);
}

.modal-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(135deg, #f8fcfa 0%, #e4f3eb 100%);
}

.modal-layout::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(22, 134, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 134, 92, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(135deg, #000 0%, transparent 68%);
}

.modal-layout > * {
  position: relative;
  z-index: 1;
}

.modal-image {
  display: grid;
  min-height: clamp(340px, 42vw, 500px);
  aspect-ratio: 1 / 1;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(145deg, #0c5b40 0%, #092b21 100%);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 22px 42px rgba(6, 45, 30, 0.22);
  isolation: isolate;
}

.modal-image::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.modal-image::after {
  position: absolute;
  right: -52px;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04), 0 0 0 36px rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.modal-image > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  padding: clamp(28px, 5vw, 56px);
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.24));
}

.modal-image-label {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.modal-image-label i {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.modal-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4px clamp(0px, 1vw, 12px) 4px 0;
}

.modal-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.modal-copy .product-category {
  margin-bottom: 12px;
  color: var(--green-dark);
  background: #cfeee0;
  border: 1px solid rgba(22, 134, 92, 0.16);
}

.modal-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.modal-copy > .product-en {
  margin: 8px 0 0;
  color: #557467;
  font-size: 14px;
}

.modal-facts {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 18px;
}

.modal-facts > div {
  min-width: 0;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(11, 81, 57, 0.12);
  border-radius: 14px;
}

.modal-facts span {
  display: block;
  color: #729084;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.modal-facts strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.35;
}

.modal-description {
  width: 100%;
  margin: 0;
  color: #526a5f;
  line-height: 1.7;
}

.modal-copy h3 {
  width: 100%;
  margin: 22px 0 0;
  color: var(--green-dark);
  font-size: 15px;
}

.modal-features {
  display: grid;
  width: 100%;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #526a5f;
  font-size: 13px;
}

.modal-features li {
  position: relative;
  padding: 9px 12px 9px 30px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(11, 81, 57, 0.1);
  border-radius: 11px;
}

.modal-features li::before {
  position: absolute;
  top: 9px;
  left: 11px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.modal-note {
  width: 100%;
  margin: 10px 0 0;
  padding: 11px 13px;
  color: #5c7468;
  background: rgba(255, 255, 255, 0.54);
  border-left: 3px solid var(--green);
  border-radius: 0 11px 11px 0;
  font-size: 12px;
  line-height: 1.55;
}

.modal-actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.modal-actions .button {
  min-height: 46px;
  flex: 1 1 170px;
  border-radius: 12px;
}

.modal-close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(11, 81, 57, 0.16);
  box-shadow: 0 8px 20px rgba(6, 45, 30, 0.12);
  backdrop-filter: blur(8px);
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.image-zoom-trigger {
  min-height: 40px;
  padding-inline: 13px;
  color: var(--white);
  background: rgba(6, 39, 28, 0.82);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.image-zoom-trigger:hover,
.image-zoom-trigger:focus-visible {
  color: var(--white);
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.48);
}

/* Full-screen zoom viewer: keep the product as the focus instead of leaving a white void. */
.image-viewer {
  background: #092a20;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.image-viewer::backdrop {
  background: rgba(2, 18, 12, 0.82);
  backdrop-filter: blur(6px);
}

.image-viewer-stage {
  position: relative;
  min-height: min(76vh, 760px);
  background:
    radial-gradient(circle at 50% 42%, rgba(35, 145, 100, 0.28), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #092a20;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.image-viewer-stage::before {
  position: absolute;
  top: 22px;
  left: 28px;
  color: rgba(255, 255, 255, 0.55);
  content: "RPV.CO.TH  /  PRODUCT VIEW";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.image-viewer-stage::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.image-viewer-stage img {
  position: relative;
  z-index: 1;
  max-width: 92%;
  max-height: 70vh;
  padding: 28px;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.34));
}

.image-viewer-close {
  color: var(--white);
  background: rgba(6, 39, 28, 0.82);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.image-viewer-close:hover,
.image-viewer-close:focus-visible {
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.48);
}

.image-viewer-toolbar {
  min-height: 64px;
  background: linear-gradient(180deg, #0f3829, #092a20);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.image-viewer-toolbar::before {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.56);
  content: "RPV PRODUCT VIEW";
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.image-viewer-toolbar button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.image-viewer-toolbar button:hover,
.image-viewer-toolbar button:focus-visible {
  color: var(--white);
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.46);
}

.image-viewer-toolbar span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 700px) {
  .product-modal {
    width: calc(100vw - 18px);
    border-radius: 18px;
  }

  .modal-layout {
    gap: 20px;
    padding: 22px 18px 24px;
  }

  .modal-image {
    min-height: min(82vw, 390px);
  }

  .modal-copy {
    padding: 0 4px;
  }

  .modal-copy h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .image-viewer {
    width: calc(100vw - 12px);
    border-radius: 18px;
  }

  .image-viewer-stage {
    min-height: 64vh;
  }

  .image-viewer-stage::before {
    top: 16px;
    left: 18px;
    font-size: 9px;
  }

  .image-viewer-stage::after {
    inset: 14px;
  }

  .image-viewer-stage img {
    max-height: 62vh;
    padding: 22px;
  }

  .image-viewer-toolbar {
    gap: 5px;
    padding-inline: 9px;
  }

  .image-viewer-toolbar::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-close,
  .image-zoom-trigger,
  .image-viewer-toolbar button {
    transition: none;
  }
}

/* OLD QUICK FINDER CSS DISABLED
.surface-finder {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(32px, 5vw, 68px) clamp(16px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(71, 217, 132, 0.18), transparent 30%),
    radial-gradient(circle at 92% 92%, rgba(255, 213, 132, 0.12), transparent 28%),
    linear-gradient(135deg, #0b5139 0%, #073025 100%);
}

.surface-finder-intro,
.surface-finder-card {
  width: min(100%, 1240px);
  min-width: 0;
}

.surface-finder-intro {
  align-self: center;
  justify-self: end;
  max-width: 410px;
  padding-block: 12px;
}

.surface-finder-intro .eyebrow,
.finder-step-label {
  color: #8ceaa9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.surface-finder-intro h2 {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.surface-finder-intro > p:not(.eyebrow) {
  max-width: 370px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.finder-progress {
  display: flex;
  width: min(100%, 250px);
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.finder-progress-step {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.finder-progress-step.is-active,
.finder-progress-step.is-complete {
  color: var(--green-dark);
  background: #9cf0b7;
  border-color: #9cf0b7;
}

.finder-progress-line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.25);
}

.surface-finder-card {
  align-self: center;
  justify-self: start;
  padding: clamp(20px, 3vw, 34px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.finder-step[hidden],
.finder-result[hidden] {
  display: none;
}

.finder-step-label {
  margin: 0 0 8px;
  color: var(--green);
}

.finder-step h3,
.finder-result h3 {
  max-width: 720px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.finder-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1px 12px;
  min-width: 0;
  min-height: 92px;
  padding: 14px;
  color: var(--text);
  text-align: left;
  background: #f7fbf8;
  border: 1px solid #dcebe2;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.finder-option:hover,
.finder-option:focus-visible {
  background: #effaf3;
  border-color: rgba(22, 134, 92, 0.48);
  box-shadow: 0 12px 24px rgba(11, 81, 57, 0.1);
  transform: translateY(-2px);
}

.finder-option-icon {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: 1 / span 2;
  place-items: center;
  color: var(--green-dark);
  background: #d8f4e3;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 900;
}

.finder-option strong {
  min-width: 0;
  align-self: end;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.finder-option small {
  min-width: 0;
  align-self: start;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.finder-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -3px 0 18px;
  padding: 3px 0;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.finder-back:hover {
  color: var(--green);
}

.finder-result-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: #12613f;
  background: #d9f5e4;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.finder-result > p:not(.finder-step-label):not(.finder-selection):not(.finder-result-note) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.finder-selection {
  margin: 16px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.finder-result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.finder-result-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  color: var(--green-dark);
  background: #edf8f1;
  border: 1px solid #bfe5ce;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.finder-result-link:hover,
.finder-result-link:focus-visible {
  background: #d9f2e3;
  border-color: #80c99e;
  transform: translateY(-1px);
}

.finder-result-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: #708179;
  font-size: 12px;
  line-height: 1.55;
}

.finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.finder-result-actions .button {
  min-width: 170px;
}

.finder-reset {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: transparent;
  border: 1px solid #cfe2d6;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.finder-reset:hover,
.finder-reset:focus-visible {
  background: #f0f8f3;
  border-color: #8ac5a2;
}

@media (max-width: 900px) {
  .surface-finder {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .surface-finder-intro,
  .surface-finder-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .surface-finder-intro {
    padding-block: 0;
  }

  .surface-finder-intro h2 {
    max-width: 640px;
  }

  .surface-finder-intro > p:not(.eyebrow) {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .surface-finder {
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .surface-finder-intro h2 {
    font-size: 30px;
  }

  .surface-finder-intro > p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 14px;
  }

  .finder-progress {
    margin-top: 20px;
  }

  .surface-finder-card {
    padding: 17px;
    border-radius: 18px;
  }

  .finder-options {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .finder-option {
    min-height: 76px;
    padding: 12px;
  }

  .finder-option strong {
    font-size: 14px;
  }

  .finder-result-links,
  .finder-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .finder-result-link,
  .finder-result-actions .button,
  .finder-reset {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finder-progress-step,
  .finder-option,
  .finder-result-link {
    transition: none;
  }
}
*/


/* Homepage slideshow: a visual, additive showcase using existing RPV category assets. */
.rpv-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px) clamp(16px, 4vw, 42px);
  background:
    radial-gradient(circle at 7% 18%, rgba(22, 134, 92, 0.13), transparent 27%),
    radial-gradient(circle at 94% 84%, rgba(232, 192, 117, 0.12), transparent 25%),
    linear-gradient(180deg, #f9fcfa 0%, #edf5f0 100%);
  border-bottom: 1px solid var(--line);
}

.rpv-showcase::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), #06c755 58%, #e8c075);
}

.rpv-showcase-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.showcase-heading {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: 4px;
}

.showcase-heading > div:first-child {
  max-width: 760px;
}

.showcase-heading .eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 5px 10px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 134, 92, 0.2);
  border-radius: 999px;
}

.showcase-heading h2 {
  margin: 8px 0 0;
  color: var(--green-dark);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.showcase-heading > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 7px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 134, 92, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 81, 57, 0.08);
}

.showcase-control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid #cfe2d6;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(11, 81, 57, 0.08);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.showcase-control::before {
  width: 9px;
  height: 9px;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.showcase-control[data-showcase-action="prev"]::before {
  transform: rotate(135deg);
}

.showcase-control:hover,
.showcase-control:focus-visible {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 8px 18px rgba(22, 134, 92, 0.24);
  transform: translateY(-1px);
}

.showcase-counter {
  min-width: 70px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.showcase-viewport {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  background: #0b5139;
  border: 1px solid rgba(11, 81, 57, 0.2);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(11, 81, 57, 0.18);
}

.showcase-progress {
  height: 3px;
  margin: 14px 4px 0;
  overflow: hidden;
  background: rgba(22, 134, 92, 0.14);
  border-radius: 999px;
}

.showcase-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), #06c755, #e8c075);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.showcase-progress-fill.is-running {
  animation: showcase-progress-fill 6000ms linear forwards;
}

.showcase-progress-fill.is-paused {
  animation-play-state: paused;
}

.showcase-stage {
  min-height: 520px;
}

.showcase-slide {
  position: relative;
  display: block;
  min-height: 520px;
  animation: showcase-in 360ms ease-out;
}

.showcase-slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  overflow: hidden;
  background: #123c2d;
}

.showcase-slide-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 25, 17, 0.82) 0%, rgba(4, 25, 17, 0.45) 38%, rgba(4, 25, 17, 0.04) 82%),
    linear-gradient(0deg, rgba(4, 25, 17, 0.44), transparent 38%);
}

.showcase-slide-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.showcase-slide:hover .showcase-slide-image img {
  transform: scale(1.035);
}

.showcase-slide-number {
  position: absolute;
  top: 22px;
  right: 24px;
  left: auto;
  z-index: 1;
  display: inline-flex;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(11, 81, 57, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.showcase-slide-copy {
  display: flex;
  position: absolute;
  right: auto;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(20px, 4vw, 56px);
  overflow: hidden;
  z-index: 1;
  width: min(560px, calc(100% - clamp(40px, 8vw, 112px)));
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 40px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 48, 37, 0.94), rgba(6, 48, 37, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(3, 24, 16, 0.28);
  backdrop-filter: blur(12px);
  animation: showcase-copy-in 520ms cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

.showcase-slide-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, #9cf0b7);
  border: 0;
  border-radius: 0 24px 0 999px;
  pointer-events: none;
}

.showcase-slide-copy > * {
  position: relative;
  z-index: 1;
}

.showcase-slide-kicker {
  margin: 0 0 12px;
  color: #9bf0b6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-slide-copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.showcase-slide-copy .button {
  min-height: 44px;
  margin-top: 22px;
  padding-inline: 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.18);
}

.showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-inline: 4px;
}

.showcase-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 134, 92, 0.14);
  border-radius: 999px;
}

.showcase-dot {
  width: 28px;
  height: 5px;
  padding: 0;
  background: #c9dcd0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.showcase-dot.is-active {
  width: 52px;
  background: var(--green);
}

.showcase-dot:hover,
.showcase-dot:focus-visible {
  background: #75bb91;
}

.showcase-hint {
  margin: 0;
  color: #708179;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

@keyframes showcase-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes showcase-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes showcase-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  .showcase-heading {
    align-items: start;
    flex-direction: column;
  }

  .showcase-controls {
    align-self: flex-end;
  }

  .showcase-slide {
    min-height: 500px;
  }

  .showcase-slide-image {
    position: absolute;
    inset: 0;
  }

  .showcase-slide-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .showcase-slide-image::after {
    background:
      linear-gradient(180deg, rgba(4, 25, 17, 0.12) 15%, rgba(4, 25, 17, 0.2) 38%, rgba(4, 25, 17, 0.88) 100%);
  }

  .showcase-slide-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .rpv-showcase {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .showcase-heading h2 {
    font-size: 30px;
  }

  .showcase-heading > div:first-child > p:not(.eyebrow) {
    font-size: 14px;
  }

  .showcase-controls {
    align-self: stretch;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
  }

  .showcase-viewport {
    margin-top: 18px;
    border-radius: 18px;
  }

  .showcase-heading {
    padding-inline: 0;
  }

  .showcase-stage,
  .showcase-slide {
    min-height: 470px;
  }

  .showcase-slide-image,
  .showcase-slide-image img {
    min-height: 0;
    height: 100%;
  }

  .showcase-slide-number {
    top: 16px;
    left: 17px;
    right: auto;
  }

  .showcase-slide-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 22px 18px 22px;
  }

  .showcase-slide-copy h3 {
    font-size: 28px;
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    margin-top: 10px;
    font-size: 14px;
  }

  .showcase-slide-copy .button {
    width: 100%;
    margin-top: 18px;
  }

  .showcase-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding-inline: 0;
  }

  .showcase-hint {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-control,
  .showcase-slide-image img,
  .showcase-dot,
  .showcase-progress-fill {
    transition: none;
    animation: none;
  }

  .showcase-slide,
  .showcase-slide-copy {
    animation: none;
  }
}

/* Editorial industrial hero refinement: image-first, compact, and calmer. */
.rpv-showcase {
  padding: clamp(24px, 3.2vw, 42px) clamp(16px, 3vw, 32px) clamp(18px, 2.6vw, 32px);
  background:
    radial-gradient(circle at 0% 10%, rgba(22, 134, 92, 0.11), transparent 31%),
    linear-gradient(180deg, #f7fbf8 0%, #eef6f1 100%);
}

.rpv-showcase::before {
  height: 3px;
}

.showcase-heading {
  align-items: end;
  gap: 24px;
  padding-inline: 0;
}

.showcase-heading > div:first-child {
  max-width: 720px;
}

.showcase-heading .eyebrow {
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.showcase-heading h2 {
  margin-top: 7px;
  font-size: clamp(25px, 2.6vw, 36px);
  letter-spacing: -0.035em;
}

.showcase-heading > div:first-child > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.5;
}

.showcase-controls {
  gap: 8px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(11, 81, 57, 0.08);
}

.showcase-control {
  width: 38px;
  height: 38px;
  border-color: #d7e7dd;
  box-shadow: none;
}

.showcase-control::before {
  width: 8px;
  height: 8px;
  border-width: 0 1.5px 1.5px 0;
}

.showcase-counter {
  min-width: 58px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.showcase-viewport {
  margin-top: 20px;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(11, 81, 57, 0.14);
}

.showcase-stage,
.showcase-slide {
  min-height: clamp(390px, 36vw, 455px);
}

.showcase-slide-image img {
  min-height: clamp(390px, 36vw, 455px);
  transform: scale(1.015);
  animation: showcase-kenburns 6s ease-out both;
}

.showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(4, 25, 17, 0.78) 0%, rgba(4, 25, 17, 0.34) 42%, rgba(4, 25, 17, 0.02) 78%),
    linear-gradient(0deg, rgba(4, 25, 17, 0.58), transparent 48%);
}

.showcase-slide-number {
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  background: rgba(8, 57, 42, 0.48);
  border-color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.showcase-slide-copy {
  right: auto;
  bottom: 0;
  left: 0;
  width: min(610px, 72%);
  min-height: 100%;
  justify-content: end;
  padding: clamp(26px, 4vw, 48px);
  background: linear-gradient(90deg, rgba(3, 43, 32, 0.9) 0%, rgba(3, 43, 32, 0.66) 58%, rgba(3, 43, 32, 0) 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.showcase-slide-copy::before {
  display: none;
}

.showcase-slide-kicker {
  margin-bottom: 9px;
  color: #a4f3bd;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.showcase-slide-copy h3 {
  max-width: 480px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 430px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.showcase-slide-copy .button {
  min-height: 40px;
  margin-top: 18px;
  padding-inline: 17px;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.16);
}

.showcase-progress {
  height: 2px;
  margin: 9px 0 0;
}

.showcase-bottom {
  gap: 14px;
  margin-top: 10px;
  padding-inline: 0;
}

.showcase-dots {
  gap: 6px;
  padding: 6px 8px;
}

.showcase-dot {
  width: 24px;
  height: 4px;
}

.showcase-dot.is-active {
  width: 44px;
}

.showcase-hint {
  font-size: 11px;
}

@keyframes showcase-kenburns {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@media (max-width: 900px) {
  .showcase-heading {
    align-items: end;
  }

  .showcase-stage,
  .showcase-slide,
  .showcase-slide-image img {
    min-height: 430px;
  }

  .showcase-slide-copy {
    width: 76%;
    min-height: 100%;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .rpv-showcase {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .showcase-heading {
    gap: 14px;
  }

  .showcase-heading h2 {
    font-size: 28px;
  }

  .showcase-heading > div:first-child > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
  }

  .showcase-controls {
    align-self: stretch;
    width: auto;
  }

  .showcase-viewport {
    margin-top: 16px;
    border-radius: 16px;
  }

  .showcase-stage,
  .showcase-slide,
  .showcase-slide-image img {
    min-height: 430px;
  }

  .showcase-slide-image::after {
    background: linear-gradient(180deg, rgba(4, 25, 17, 0.05) 18%, rgba(4, 25, 17, 0.78) 100%);
  }

  .showcase-slide-copy {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 58%;
    justify-content: end;
    padding: 22px 18px 20px;
    background: linear-gradient(180deg, rgba(3, 43, 32, 0) 0%, rgba(3, 43, 32, 0.86) 48%, rgba(3, 43, 32, 0.94) 100%);
  }

  .showcase-slide-copy h3 {
    max-width: 100%;
    font-size: 29px;
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    max-width: 100%;
    font-size: 13px;
  }

  .showcase-slide-copy .button {
    width: auto;
  }

  .showcase-bottom {
    align-items: center;
    flex-direction: row;
  }

  .showcase-hint {
    display: none;
  }
}

/* Final cascade for the full-bleed hero (kept last so legacy theme rules cannot shrink it). */
/* The body-qualified selectors intentionally win over the earlier homepage themes. */
body .rpv-showcase-shell {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(18px, 2.2vw, 34px) clamp(16px, 3.3vw, 78px) 0;
}

body .showcase-viewport {
  position: relative;
  width: 100%;
  height: clamp(450px, 34vw, 640px);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

body .showcase-slide {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

body .showcase-slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

body .showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(4, 26, 19, 0.94) 0%, rgba(4, 26, 19, 0.74) 27%, rgba(4, 26, 19, 0.18) 57%, rgba(4, 26, 19, 0.02) 82%),
    linear-gradient(180deg, rgba(4, 26, 19, 0.08), rgba(4, 26, 19, 0.28));
}

body .showcase-slide-image img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

body .showcase-slide-image img[src*="imagez-z154"] {
  padding: 46px;
  background: #f1f5f1;
  object-fit: contain;
  mix-blend-mode: normal;
}

body .showcase-slide-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(56%, 720px);
  height: 100%;
  min-height: 0;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 104px) clamp(28px, 6vw, 108px);
  background: linear-gradient(90deg, rgba(5, 30, 21, 0.9), rgba(5, 30, 21, 0.52) 72%, transparent);
  border: 0;
  border-left: 3px solid #a7e86a;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body .showcase-slide-copy h3 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1.04;
}

body .showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 500px;
  margin-top: 20px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.7;
}

body .showcase-slide-copy .button {
  margin-top: 28px;
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 999px;
}

body .showcase-side-controls {
  padding-inline: clamp(12px, 1.6vw, 30px);
}

body .showcase-side-control {
  width: 50px;
  height: 50px;
}

body .showcase-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  margin: 0;
}

body .showcase-bottom {
  display: none;
}

body .home-catalog-layout {
  padding-top: clamp(58px, 6vw, 82px);
}

@media (max-width: 900px) {
  body .rpv-showcase-shell {
    padding-inline: 14px;
  }

  body .showcase-viewport {
    height: auto;
    min-height: 0;
    border-radius: 20px;
  }

  body .showcase-slide {
    display: grid;
    grid-template-rows: minmax(290px, 53vw) auto;
  }

  body .showcase-slide-image {
    position: relative;
    inset: auto;
    grid-row: 1;
    min-height: 290px;
  }

  body .showcase-slide-image::after {
    background: linear-gradient(180deg, rgba(4, 26, 19, 0.03), rgba(4, 26, 19, 0.12));
  }

  body .showcase-slide-copy {
    grid-row: 2;
    width: auto;
    height: auto;
    min-height: 248px;
    padding: 28px 30px 34px;
    background: linear-gradient(160deg, #0d3b2a, #08251b);
    border-top: 3px solid #a7e86a;
    border-left: 0;
  }

  body .showcase-slide-copy h3 {
    font-size: clamp(30px, 6vw, 46px);
  }

  body .showcase-slide-image img[src*="imagez-z154"] {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  body .rpv-showcase-shell {
    padding: 14px 10px 0;
  }

  body .showcase-viewport {
    border-radius: 16px;
  }

  body .showcase-slide {
    grid-template-rows: 260px auto;
  }

  body .showcase-slide-image {
    min-height: 260px;
  }

  body .showcase-slide-copy {
    min-height: 246px;
    padding: 25px 23px 30px;
  }

  body .showcase-slide-copy h3 {
    font-size: 30px;
  }

  body .showcase-side-controls {
    padding-inline: 8px;
  }

  body .showcase-side-control {
    width: 38px;
    height: 38px;
  }
}

.rpv-showcase {
  padding-bottom: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(100, 218, 123, 0.13), transparent 27%),
    linear-gradient(180deg, #061d16 0%, #08271c 100%);
}

.rpv-showcase-shell {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(18px, 2.2vw, 34px) clamp(16px, 3.3vw, 78px) 0;
}

.showcase-viewport {
  position: relative;
  width: 100%;
  height: clamp(450px, 34vw, 640px);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

.showcase-slide {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.showcase-slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  background: #dfe8e1;
}

.showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(4, 26, 19, 0.94) 0%, rgba(4, 26, 19, 0.74) 27%, rgba(4, 26, 19, 0.18) 57%, rgba(4, 26, 19, 0.02) 82%),
    linear-gradient(180deg, rgba(4, 26, 19, 0.08), rgba(4, 26, 19, 0.28));
}

.showcase-slide-image img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.showcase-slide-image img[src*="imagez-z154"] {
  padding: 46px;
  background: #f1f5f1;
  object-fit: contain;
  mix-blend-mode: normal;
}

.showcase-slide-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(56%, 720px);
  height: 100%;
  min-height: 0;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 104px) clamp(28px, 6vw, 108px);
  background: linear-gradient(90deg, rgba(5, 30, 21, 0.9), rgba(5, 30, 21, 0.52) 72%, transparent);
  border: 0;
  border-left: 3px solid #a7e86a;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.showcase-slide-copy h3 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1.04;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 500px;
  margin-top: 20px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.7;
}

.showcase-slide-copy .button {
  margin-top: 28px;
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 999px;
}

.showcase-side-controls {
  padding-inline: clamp(12px, 1.6vw, 30px);
}

.showcase-side-control {
  width: 50px;
  height: 50px;
  color: #effff2;
  background: rgba(4, 26, 19, 0.32);
  border-color: rgba(239, 255, 242, 0.62);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  opacity: 0.92;
}

.showcase-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.showcase-progress-fill {
  background: linear-gradient(90deg, #a7e86a, #f0cc7b);
}

.showcase-bottom {
  display: none;
}

.home-catalog-layout {
  padding-top: clamp(58px, 6vw, 82px);
}

@media (max-width: 900px) {
  .rpv-showcase-shell {
    padding-inline: 14px;
  }

  .showcase-viewport {
    height: auto;
    min-height: 0;
    border-radius: 20px;
  }

  .showcase-slide {
    display: grid;
    grid-template-rows: minmax(290px, 53vw) auto;
  }

  .showcase-slide-image {
    position: relative;
    inset: auto;
    grid-row: 1;
    min-height: 290px;
  }

  .showcase-slide-image::after {
    background: linear-gradient(180deg, rgba(4, 26, 19, 0.03), rgba(4, 26, 19, 0.12));
  }

  .showcase-slide-copy {
    grid-row: 2;
    width: auto;
    height: auto;
    min-height: 248px;
    padding: 28px 30px 34px;
    background: linear-gradient(160deg, #0d3b2a, #08251b);
    border-top: 3px solid #a7e86a;
    border-left: 0;
  }

  .showcase-slide-copy h3 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    max-width: 620px;
    font-size: 13px;
  }

  .showcase-slide-image img[src*="imagez-z154"] {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .rpv-showcase-shell {
    padding: 14px 10px 0;
  }

  .showcase-viewport {
    border-radius: 16px;
  }

  .showcase-slide {
    grid-template-rows: 260px auto;
  }

  .showcase-slide-image {
    min-height: 260px;
  }

  .showcase-slide-copy {
    min-height: 246px;
    padding: 25px 23px 30px;
  }

  .showcase-slide-copy h3 {
    font-size: 30px;
  }

  .showcase-slide-copy .button {
    margin-top: 18px;
  }

  .showcase-side-controls {
    padding-inline: 8px;
  }

  .showcase-side-control {
    width: 38px;
    height: 38px;
  }
}

/* RPV visual direction v9: full-bleed product hero with quiet controls. */
.rpv-showcase {
  padding-bottom: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(100, 218, 123, 0.13), transparent 27%),
    linear-gradient(180deg, #061d16 0%, #08271c 100%);
}

.rpv-showcase-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(18px, 2.2vw, 34px) clamp(16px, 3.3vw, 78px) 0;
}

.showcase-viewport {
  position: relative;
  width: 100%;
  height: clamp(450px, 34vw, 640px);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

.showcase-slide {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.showcase-slide-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  background: #dfe8e1;
}

.showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(4, 26, 19, 0.94) 0%, rgba(4, 26, 19, 0.74) 27%, rgba(4, 26, 19, 0.18) 57%, rgba(4, 26, 19, 0.02) 82%),
    linear-gradient(180deg, rgba(4, 26, 19, 0.08), rgba(4, 26, 19, 0.28));
}

.showcase-slide-image img {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.showcase-slide-image img[src*="imagez-z154"] {
  padding: 46px;
  background: #f1f5f1;
  object-fit: contain;
  mix-blend-mode: normal;
}

.showcase-slide-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(56%, 720px);
  height: 100%;
  min-height: 0;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 104px) clamp(28px, 6vw, 108px);
  background: linear-gradient(90deg, rgba(5, 30, 21, 0.9), rgba(5, 30, 21, 0.52) 72%, transparent);
  border: 0;
  border-left: 3px solid #a7e86a;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.showcase-slide-copy::after {
  right: clamp(24px, 3vw, 52px);
  bottom: clamp(24px, 3vw, 48px);
  width: clamp(54px, 5vw, 86px);
  height: clamp(54px, 5vw, 86px);
}

.showcase-slide-copy h3 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1.04;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 500px;
  margin-top: 20px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.7;
}

.showcase-slide-copy .button {
  margin-top: 28px;
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 999px;
}

.showcase-side-controls {
  padding-inline: clamp(12px, 1.6vw, 30px);
}

.showcase-side-control {
  width: 50px;
  height: 50px;
  color: #effff2;
  background: rgba(4, 26, 19, 0.32);
  border-color: rgba(239, 255, 242, 0.62);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  opacity: 0.92;
}

.showcase-side-control:hover,
.showcase-side-control:focus-visible {
  color: #062217;
  background: #a7e86a;
  border-color: #a7e86a;
}

.showcase-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.showcase-progress-fill {
  background: linear-gradient(90deg, #a7e86a, #f0cc7b);
}

.showcase-bottom {
  display: none;
}

.home-catalog-layout {
  padding-top: clamp(58px, 6vw, 82px);
}

@media (max-width: 900px) {
  .rpv-showcase-shell {
    padding-inline: 14px;
  }

  .showcase-viewport {
    height: auto;
    min-height: 0;
    border-radius: 20px;
  }

  .showcase-slide {
    display: grid;
    grid-template-rows: minmax(290px, 53vw) auto;
  }

  .showcase-slide-image {
    position: relative;
    inset: auto;
    grid-row: 1;
    min-height: 290px;
  }

  .showcase-slide-image::after {
    background: linear-gradient(180deg, rgba(4, 26, 19, 0.03), rgba(4, 26, 19, 0.12));
  }

  .showcase-slide-copy {
    grid-row: 2;
    width: auto;
    height: auto;
    min-height: 248px;
    padding: 28px 30px 34px;
    background: linear-gradient(160deg, #0d3b2a, #08251b);
    border-top: 3px solid #a7e86a;
    border-left: 0;
  }

  .showcase-slide-copy h3 {
    font-size: clamp(30px, 6vw, 46px);
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    max-width: 620px;
    font-size: 13px;
  }

  .showcase-slide-image img[src*="imagez-z154"] {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .rpv-showcase-shell {
    padding: 14px 10px 0;
  }

  .showcase-viewport {
    border-radius: 16px;
  }

  .showcase-slide {
    grid-template-rows: 260px auto;
  }

  .showcase-slide-image {
    min-height: 260px;
  }

  .showcase-slide-copy {
    min-height: 246px;
    padding: 25px 23px 30px;
  }

  .showcase-slide-copy h3 {
    font-size: 30px;
  }

  .showcase-slide-copy .button {
    margin-top: 18px;
  }

  .showcase-side-controls {
    padding-inline: 8px;
  }

  .showcase-side-control {
    width: 38px;
    height: 38px;
  }
}

/* Stronger visual direction: a dark, premium industrial hero strip. */
.rpv-showcase {
  padding: clamp(22px, 3vw, 38px) 0 clamp(18px, 2.4vw, 28px);
  color: #effcf4;
  background:
    radial-gradient(circle at 8% 0%, rgba(35, 178, 116, 0.2), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(232, 192, 117, 0.11), transparent 25%),
    #071e17;
}

.rpv-showcase::before {
  background: linear-gradient(90deg, #0b5139, #06c755 52%, #e8c075);
}

.rpv-showcase-shell {
  width: min(100%, 1340px);
}

.showcase-heading {
  padding-inline: 20px;
}

.showcase-heading .eyebrow {
  color: #a4f3bd;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(164, 243, 189, 0.32);
}

.showcase-heading h2 {
  color: #f4fff8;
}

.showcase-heading > div:first-child > p:not(.eyebrow) {
  color: rgba(238, 252, 244, 0.7);
}

.showcase-controls {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.showcase-control {
  color: #effff5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.showcase-control:hover,
.showcase-control:focus-visible {
  color: #063522;
  background: #9cf0b7;
  border-color: #9cf0b7;
}

.showcase-counter {
  color: #eafff0;
}

.showcase-viewport {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.showcase-progress {
  background: rgba(255, 255, 255, 0.14);
}

.showcase-bottom {
  padding-inline: 20px;
}

.showcase-dots {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.showcase-dot {
  background: rgba(255, 255, 255, 0.28);
}

.showcase-dot.is-active {
  background: #7bea9f;
}

.showcase-hint {
  color: rgba(238, 252, 244, 0.58);
}

@media (max-width: 620px) {
  .showcase-heading,
  .showcase-bottom {
    padding-inline: 16px;
  }
}

/* Keep the hero clean: navigation lives on the image edges. */
.showcase-heading .showcase-controls {
  display: none;
}

.showcase-side-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
}

.showcase-side-control {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: #f4fff8;
  background: rgba(7, 30, 23, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0.78;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.showcase-side-control::before {
  width: 11px;
  height: 11px;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg) translate(-1px, -1px);
}

.showcase-side-control[data-showcase-action="next"]::before {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.showcase-side-control:hover,
.showcase-side-control:focus-visible {
  color: #063522;
  background: #9cf0b7;
  border-color: #9cf0b7;
  opacity: 1;
  transform: scale(1.08);
}

.showcase-side-control:focus-visible {
  outline: 3px solid rgba(156, 240, 183, 0.42);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .showcase-side-controls {
    padding: 0 10px;
  }

  .showcase-side-control {
    width: 40px;
    height: 40px;
  }

  .showcase-side-control::before {
    width: 9px;
    height: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-side-control {
    transition: none;
  }
}

/* Homepage layout refresh: calmer B2B industrial direction with a clear visual hierarchy. */
.home-catalog-page {
  background: #f3f6f4;
}

.rpv-showcase {
  padding: clamp(34px, 5vw, 74px) 0 clamp(28px, 4vw, 54px);
  color: #0c2e21;
  background:
    radial-gradient(circle at 4% 0%, rgba(91, 194, 132, 0.16), transparent 30%),
    linear-gradient(180deg, #f7faf8 0%, #eef4f0 100%);
  border-bottom: 1px solid #d8e4dc;
}

.rpv-showcase::before {
  display: none;
}

.rpv-showcase-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.58fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(30px, 5vw, 82px);
  align-items: center;
  width: min(100%, 1360px);
}

.showcase-heading {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  padding: 0;
}

.showcase-heading .eyebrow {
  display: inline-flex;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.showcase-heading h2 {
  max-width: 470px;
  margin-top: 14px;
  color: #0c2e21;
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.showcase-heading h2::after {
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 24px;
  content: "";
  background: linear-gradient(90deg, var(--green), #9bcf50);
  border-radius: 99px;
}

.showcase-heading > div:first-child > p:not(.eyebrow) {
  max-width: 420px;
  margin-top: 22px;
  color: #63766d;
  font-size: 15px;
  line-height: 1.75;
}

.showcase-heading::after {
  display: block;
  margin-top: 42px;
  content: "MACHINES  /  MEDIA  /  SUPPORT";
  color: #9aa9a1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.showcase-viewport {
  grid-column: 2;
  grid-row: 1;
  height: clamp(400px, 39vw, 560px);
  min-height: 0;
  margin-top: 0;
  border: 1px solid rgba(9, 56, 39, 0.16);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(11, 81, 57, 0.16);
}

.showcase-stage,
.showcase-slide {
  height: 100%;
  min-height: 0;
}

.showcase-slide-image img {
  height: 100%;
  min-height: 0;
  object-position: center;
  transform: scale(1.01);
}

.showcase-slide-image::after {
  background:
    linear-gradient(180deg, rgba(3, 27, 18, 0.02) 32%, rgba(3, 27, 18, 0.76) 100%),
    linear-gradient(90deg, rgba(3, 27, 18, 0.28), transparent 46%);
}

.showcase-slide-number {
  display: none;
}

.showcase-slide-copy {
  right: auto;
  bottom: 24px;
  left: 24px;
  width: min(440px, calc(100% - 48px));
  min-height: 0;
  padding: 22px 24px 23px;
  background: rgba(6, 35, 25, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid #9bf0b6;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(3, 24, 16, 0.25);
  backdrop-filter: blur(14px);
}

.showcase-slide-copy::before {
  display: none;
}

.showcase-slide-kicker {
  margin-bottom: 8px;
  color: #a4f3bd;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.showcase-slide-copy h3 {
  max-width: 390px;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 390px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.showcase-slide-copy .button {
  min-height: 38px;
  margin-top: 15px;
  padding-inline: 16px;
  font-size: 12px;
}

.showcase-side-controls {
  padding-inline: 14px;
}

.showcase-side-control {
  width: 44px;
  height: 44px;
  color: #0b5139;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(3, 24, 16, 0.16);
  opacity: 0.9;
}

.showcase-side-control:hover,
.showcase-side-control:focus-visible {
  color: #063522;
  background: #b2f3c5;
  border-color: #b2f3c5;
}

.showcase-progress {
  grid-column: 2;
  grid-row: 2;
  height: 3px;
  margin: 13px 0 0;
  background: #d3e2d8;
}

.showcase-progress-fill {
  background: linear-gradient(90deg, var(--green), #9bcf50);
}

.showcase-bottom {
  grid-column: 2;
  grid-row: 3;
  margin-top: 12px;
  padding-inline: 0;
}

.showcase-dots {
  padding: 0;
  background: transparent;
  border: 0;
}

.showcase-dot {
  width: 28px;
  height: 4px;
  background: #b9cec0;
}

.showcase-dot.is-active {
  width: 52px;
  background: var(--green);
}

.showcase-hint {
  color: #819189;
  font-size: 11px;
}

.home-catalog-layout {
  display: block;
  width: min(100%, 1360px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 42px) clamp(54px, 7vw, 92px);
}

.home-info-rail {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.82fr) auto;
  align-items: end;
  gap: clamp(22px, 4vw, 56px);
  min-height: 0;
  padding: 0 0 30px;
  color: #0c2e21;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d5e2da;
  border-radius: 0;
  box-shadow: none;
}

.home-info-rail > div:first-child {
  max-width: 520px;
}

.home-info-rail .eyebrow {
  color: var(--green);
}

.home-info-rail h1 {
  margin-top: 10px;
  color: #0c2e21;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-info-rail p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 14px;
  color: #65766d;
  line-height: 1.7;
}

.home-info-list {
  gap: 0;
}

.home-info-list a {
  padding: 10px 0;
  border-top-color: #d5e2da;
}

.home-info-list strong {
  color: #87968e;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.home-info-list span {
  color: #0c2e21;
  font-size: 14px;
}

.home-info-rail .button {
  width: auto;
  margin-bottom: 2px;
  white-space: nowrap;
}

.home-category-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(164px, 1fr));
  grid-auto-rows: minmax(164px, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.home-category-tile {
  display: block;
  grid-column: span 3;
  min-height: 0;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(24, 33, 29, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.tile-machine {
  grid-column: span 6;
  grid-row: span 2;
}

.tile-compound,
.tile-spare,
.tile-support {
  grid-column: span 4;
}

.home-category-tile::before {
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 28, 19, 0.02) 25%, rgba(5, 28, 19, 0.8) 100%);
  opacity: 1;
  transform: none;
}

.home-category-tile:hover,
.home-category-tile:focus-visible {
  box-shadow: 0 20px 36px rgba(24, 33, 29, 0.16);
  filter: saturate(1.08);
  transform: translateY(-4px);
}

.home-category-tile:hover::before {
  opacity: 1;
  transform: none;
}

.home-category-tile span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  max-width: none;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 1.18;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.home-category-tile span::after {
  margin-left: 8px;
  content: "↗";
  color: #b2f3c5;
  font-size: 0.8em;
}

.contact-cta {
  padding-block: clamp(50px, 7vw, 86px);
  color: #f2fff6;
  background:
    radial-gradient(circle at 88% 20%, rgba(100, 218, 143, 0.18), transparent 24%),
    #0b5139;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 40px;
  width: min(100%, 1360px);
}

.contact-cta .eyebrow {
  color: #a4f3bd;
}

.contact-cta h2 {
  max-width: 720px;
  color: #f4fff8;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-cta p {
  max-width: 650px;
  color: rgba(242, 255, 246, 0.7);
  line-height: 1.7;
}

.cta-actions {
  justify-items: start;
}

.contact-cta .button.secondary {
  color: #d7f8e3;
  border-color: rgba(215, 248, 227, 0.36);
}

.office-link {
  color: rgba(242, 255, 246, 0.64);
}

@media (max-width: 980px) {
  .rpv-showcase-shell {
    display: block;
  }

  .showcase-heading {
    margin-bottom: 24px;
  }

  .showcase-heading h2 {
    max-width: 680px;
  }

  .showcase-heading > div:first-child > p:not(.eyebrow) {
    max-width: 620px;
  }

  .showcase-heading::after {
    margin-top: 22px;
  }

  .showcase-viewport {
    height: min(64vw, 520px);
    min-height: 400px;
  }

  .showcase-progress,
  .showcase-bottom {
    margin-top: 12px;
  }

  .home-info-rail {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
  }

  .home-info-rail .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 620px) {
  .rpv-showcase {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .showcase-heading h2 {
    margin-top: 10px;
    font-size: 38px;
  }

  .showcase-heading > div:first-child > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
  }

  .showcase-heading::after {
    margin-top: 24px;
    font-size: 9px;
  }

  .showcase-viewport {
    height: 430px;
    min-height: 430px;
    border-radius: 18px;
  }

  .showcase-slide-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 19px 18px 20px;
    border-radius: 15px;
  }

  .showcase-slide-copy h3 {
    font-size: 27px;
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    font-size: 12px;
  }

  .showcase-side-controls {
    padding-inline: 9px;
  }

  .showcase-side-control {
    width: 38px;
    height: 38px;
  }

  .showcase-bottom {
    align-items: center;
  }

  .showcase-hint {
    display: none;
  }

  .home-catalog-layout {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .home-info-rail {
    display: block;
    padding-bottom: 24px;
  }

  .home-info-rail h1 {
    font-size: 38px;
  }

  .home-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .home-info-list a {
    min-width: 0;
  }

  .home-info-list span {
    font-size: 11px;
    line-height: 1.35;
  }

  .home-info-rail .button {
    display: inline-flex;
    width: auto;
    margin-top: 22px;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 148px;
    gap: 9px;
    margin-top: 20px;
  }

  .home-category-tile,
  .tile-machine,
  .tile-compound,
  .tile-spare,
  .tile-support {
    grid-column: span 1;
    grid-row: auto;
    border-radius: 16px;
  }

  .tile-machine {
    grid-column: span 2;
    grid-row: span 2;
  }

  .home-category-tile span {
    right: 13px;
    bottom: 13px;
    left: 13px;
    font-size: 15px;
  }

  .contact-cta-inner {
    gap: 28px;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }
}

/* RPV homepage visual reset: a compact split hero with clean product photography. */
.home-catalog-page {
  background: #f3f6f3;
}

.rpv-showcase {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  color: #f5fff8;
  background:
    linear-gradient(135deg, rgba(20, 118, 79, 0.24), transparent 34%),
    linear-gradient(180deg, #071e17 0%, #0b2c20 100%);
  border: 0;
}

.rpv-showcase::before {
  height: 4px;
  background: linear-gradient(90deg, #0b5139 0%, #8ee65f 48%, #e8c075 100%);
}

.rpv-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.rpv-showcase-shell {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1450px);
  padding: clamp(24px, 4vw, 54px) clamp(18px, 4vw, 52px) 0;
}

.showcase-heading {
  display: none;
}

.showcase-viewport {
  height: clamp(470px, 42vw, 620px);
  margin-top: 0;
  background: #0a251b;
  border: 1px solid rgba(166, 242, 190, 0.24);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.showcase-stage,
.showcase-slide {
  height: 100%;
  min-height: 0;
}

.showcase-slide {
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
  animation: showcase-in 420ms ease-out;
}

.showcase-slide-copy {
  position: relative;
  inset: auto;
  order: 1;
  width: auto;
  height: 100%;
  min-height: 0;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
  background:
    radial-gradient(circle at 10% 14%, rgba(121, 229, 143, 0.16), transparent 30%),
    linear-gradient(150deg, #0d3b2a 0%, #08251b 76%);
  border: 0;
  border-left: 4px solid #a7e86a;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.showcase-slide-copy::after {
  position: absolute;
  right: 34px;
  bottom: 32px;
  width: 70px;
  height: 70px;
  content: "";
  border-right: 1px solid rgba(167, 232, 106, 0.46);
  border-bottom: 1px solid rgba(167, 232, 106, 0.46);
  opacity: 0.7;
}

.showcase-slide-copy h3 {
  max-width: 520px;
  font-size: clamp(31px, 3.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 430px;
  margin-top: 17px;
  color: rgba(245, 255, 248, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.showcase-slide-kicker {
  color: #b5f58d;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.showcase-slide-copy .button {
  min-height: 42px;
  margin-top: 25px;
  padding-inline: 20px;
  color: #062217;
  background: #a7e86a;
  border-color: #a7e86a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.showcase-slide-copy .button:hover,
.showcase-slide-copy .button:focus-visible {
  color: #062217;
  background: #d2f79b;
  border-color: #d2f79b;
}

.showcase-slide-image {
  position: relative;
  inset: auto;
  order: 2;
  height: 100%;
  min-width: 0;
  background: #e8eee9;
}

.showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(6, 35, 25, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 35, 25, 0.22));
}

.showcase-slide-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: none;
}

.showcase-slide-image img[src*="imagez-z154"] {
  padding: 24px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.showcase-slide:hover .showcase-slide-image img {
  transform: scale(1.025);
}

.showcase-side-controls {
  padding: 0 16px;
}

.showcase-side-control {
  width: 42px;
  height: 42px;
  color: #eaffef;
  background: rgba(6, 35, 25, 0.78);
  border-color: rgba(234, 255, 239, 0.45);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  opacity: 0.92;
}

.showcase-side-control:hover,
.showcase-side-control:focus-visible {
  color: #062217;
  background: #a7e86a;
  border-color: #a7e86a;
}

.showcase-progress {
  height: 2px;
  margin: 13px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.showcase-progress-fill {
  background: linear-gradient(90deg, #a7e86a, #e8c075);
}

.showcase-bottom {
  margin-top: 11px;
  padding-inline: 0;
}

.showcase-dots {
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
}

.showcase-dot {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
}

.showcase-dot.is-active {
  width: 48px;
  background: #a7e86a;
}

.showcase-hint {
  color: rgba(245, 255, 248, 0.56);
}

.home-catalog-layout {
  background: #f3f6f3;
}

@media (max-width: 900px) {
  .showcase-viewport {
    height: auto;
  }

  .showcase-stage,
  .showcase-slide {
    height: auto;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 52vw) auto;
  }

  .showcase-slide-image {
    height: 100%;
    min-height: 300px;
  }

  .showcase-slide-copy {
    height: auto;
    min-height: 255px;
    padding: 30px 34px 36px;
    border-top: 3px solid #a7e86a;
    border-left: 0;
  }

  .showcase-slide-copy::after {
    right: 24px;
    bottom: 22px;
  }
}

@media (max-width: 620px) {
  .rpv-showcase {
    padding-bottom: 18px;
  }

  .rpv-showcase-shell {
    padding: 20px 12px 0;
  }

  .showcase-viewport {
    border-radius: 16px;
  }

  .showcase-slide {
    grid-template-rows: 280px auto;
  }

  .showcase-slide-image {
    min-height: 280px;
  }

  .showcase-slide-image img[src*="imagez-z154"] {
    padding: 12px;
  }

  .showcase-slide-copy {
    min-height: 255px;
    padding: 27px 24px 30px;
  }

  .showcase-slide-copy h3 {
    font-size: 31px;
  }

  .showcase-slide-copy p:not(.showcase-slide-kicker) {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.6;
  }

  .showcase-slide-copy .button {
    margin-top: 18px;
  }

  .showcase-side-controls {
    padding-inline: 8px;
  }

  .showcase-side-control {
    width: 36px;
    height: 36px;
  }

  .showcase-bottom {
    align-items: center;
  }

  .showcase-hint {
    display: none;
  }
}

/* RPV visual direction v10: verified final rules. */
body .rpv-showcase {
  padding: clamp(22px, 3vw, 42px) 0 28px;
  color: #effcf4;
  background:
    radial-gradient(circle at 8% 0%, rgba(83, 196, 122, 0.18), transparent 31%),
    radial-gradient(circle at 92% 100%, rgba(232, 192, 117, 0.12), transparent 26%),
    linear-gradient(180deg, #061b14 0%, #0b2d21 100%);
}

body .rpv-showcase-shell {
  width: min(100%, 1540px);
  max-width: 1540px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 42px) clamp(14px, 4vw, 70px) 0;
}

body .showcase-viewport {
  height: clamp(475px, 42vw, 650px);
  margin-top: 0;
  background: #0b2e21;
  border: 1px solid rgba(186, 247, 205, 0.22);
  border-radius: clamp(20px, 2vw, 30px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

body .showcase-stage,
body .showcase-slide {
  height: 100%;
  min-height: 0;
}

body .showcase-slide {
  display: grid;
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 0.6fr);
  background: #0b2e21;
}

body .showcase-slide-copy {
  display: flex;
  grid-column: 1;
  order: 1;
  width: auto;
  height: 100%;
  align-items: flex-start;
  padding: clamp(38px, 5vw, 82px) clamp(28px, 4vw, 72px);
  background:
    radial-gradient(circle at 10% 10%, rgba(121, 229, 143, 0.16), transparent 31%),
    linear-gradient(145deg, #123e2c 0%, #09261b 78%);
  border: 0;
  border-right: 1px solid rgba(167, 232, 106, 0.2);
  border-left: 0;
}

body .showcase-slide-copy h3 {
  max-width: 520px;
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

body .showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 440px;
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.75;
}

body .showcase-slide-copy .button {
  min-height: 44px;
  margin-top: 26px;
  padding-inline: 19px;
  background: #a7e86a;
  border-color: #a7e86a;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

body .showcase-slide-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  order: 2;
  height: 100%;
  background: #dfe8e1;
}

body .showcase-slide-image::after {
  background:
    linear-gradient(90deg, rgba(6, 35, 25, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 35, 25, 0.24));
}

body .showcase-slide-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.001);
  transition: transform 700ms cubic-bezier(0.22, 0.8, 0.24, 1), filter 700ms ease;
}

body .showcase-slide-image img[src*="imagez-z154"] {
  padding: 30px;
  background: #edf3ee;
  object-fit: contain;
  mix-blend-mode: normal;
}

body .showcase-side-controls {
  padding: 0 18px;
}

body .showcase-side-control {
  width: 44px;
  height: 44px;
  background: rgba(6, 35, 25, 0.58);
  border-color: rgba(239, 255, 242, 0.54);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

body .showcase-progress {
  height: 3px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
}

body .showcase-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-inline: 2px;
}

body .showcase-dots {
  gap: 7px;
  padding: 0;
  background: transparent;
  border: 0;
}

body .showcase-dot {
  width: 22px;
  height: 4px;
}

body .showcase-dot.is-active {
  width: 46px;
}

@media (max-width: 900px) {
  body .showcase-viewport {
    height: auto;
    min-height: 0;
  }

  body .showcase-stage,
  body .showcase-slide {
    height: auto;
  }

  body .showcase-slide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 56vw) auto;
  }

  body .showcase-slide-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  body .showcase-slide-copy {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 258px;
    padding: 29px 30px 34px;
    border-top: 3px solid #a7e86a;
    border-right: 0;
  }
}

@media (max-width: 620px) {
  body .rpv-showcase {
    padding-bottom: 18px;
  }

  body .rpv-showcase-shell {
    padding: 14px 10px 0;
  }

  body .showcase-viewport {
    border-radius: 17px;
  }

  body .showcase-slide {
    grid-template-rows: clamp(220px, 68vw, 300px) auto;
  }

  body .showcase-slide-image {
    min-height: 220px;
  }

  body .showcase-slide-image img[src*="imagez-z154"] {
    padding: 14px;
  }

  body .showcase-slide-copy {
    min-height: 250px;
    padding: 25px 22px 29px;
  }

  body .showcase-slide-copy h3 {
    font-size: 30px;
  }

  body .showcase-slide-copy p:not(.showcase-slide-kicker) {
    margin-top: 11px;
    font-size: 13.5px;
    line-height: 1.65;
  }

  body .showcase-slide-copy .button {
    margin-top: 18px;
  }

  body .showcase-side-controls {
    padding-inline: 8px;
  }

  body .showcase-side-control {
    width: 38px;
    height: 38px;
  }

  body .showcase-bottom {
    margin-top: 10px;
  }

  body .showcase-hint {
    display: none;
  }
}

/* RPV visual direction v10: final detail layer. */
body .showcase-slide-number {
  top: 20px;
  right: 22px;
  z-index: 6;
  padding: 8px 11px;
  color: rgba(245, 255, 248, 0.9);
  background: rgba(6, 35, 25, 0.56);
  border: 1px solid rgba(234, 255, 239, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body .showcase-slide-copy::before {
  top: auto;
  right: -20px;
  bottom: -56px;
  width: auto;
  height: auto;
  content: "RPV";
  color: rgba(167, 232, 106, 0.07);
  border: 0;
  font-size: clamp(110px, 14vw, 220px);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.8;
  pointer-events: none;
}

body .showcase-slide-copy::after {
  top: 28px;
  right: 28px;
  bottom: auto;
  width: 58px;
  height: 58px;
  border-top: 1px solid rgba(167, 232, 106, 0.5);
  border-right: 1px solid rgba(167, 232, 106, 0.5);
  border-bottom: 0;
}

body .showcase-slide-copy > * {
  position: relative;
  z-index: 1;
}

body .showcase-slide-kicker {
  margin: 0 0 13px;
  color: #b5f58d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

body .showcase-slide-copy h3 {
  margin: 0;
  color: #f5fff8;
}

body .showcase-slide-copy p:not(.showcase-slide-kicker) {
  margin: 17px 0 0;
  color: rgba(245, 255, 248, 0.72);
}

body .showcase-slide-copy .button {
  color: #062217;
  border-radius: 999px;
}

body .showcase-slide-copy .button::after {
  margin-left: 9px;
  content: "\2197";
  font-size: 17px;
  line-height: 1;
}

body .showcase-slide-image img:hover {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.025);
}

body .showcase-side-control:hover,
body .showcase-side-control:focus-visible {
  color: #062217;
  background: #a7e86a;
  border-color: #a7e86a;
}

body .showcase-progress-fill {
  background: linear-gradient(90deg, #a7e86a, #e8c075);
}

body .showcase-hint {
  color: rgba(245, 255, 248, 0.58);
}

@media (max-width: 900px) {
  body .showcase-slide-copy::after {
    top: 20px;
    right: 22px;
  }

  body .showcase-slide-number {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 620px) {
  body .showcase-slide-copy::before {
    right: -8px;
    bottom: -32px;
    font-size: 118px;
  }
}

/* RPV corporate showcase v11: clear product photography and B2B presentation. */
body .rpv-showcase {
  padding: clamp(34px, 5vw, 68px) 0 clamp(34px, 5vw, 64px);
  color: #152b32;
  background:
    radial-gradient(circle at 4% 0%, rgba(93, 183, 132, 0.12), transparent 30%),
    linear-gradient(180deg, #f8faf9 0%, #eef3f1 100%);
  border-bottom: 1px solid #dbe5e1;
}

body .rpv-showcase::before {
  height: 4px;
  background: linear-gradient(90deg, #0a6849 0%, #2a9a68 62%, #c79b52 100%);
}

body .rpv-showcase-shell {
  width: min(100%, 1480px);
  max-width: 100vw;
  padding-inline: clamp(16px, 3vw, 42px);
}

body .showcase-heading {
  display: block;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  padding: 0;
}

body .showcase-heading > div:first-child {
  max-width: 900px;
  width: 100%;
  min-width: 0;
}

body .showcase-heading .eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 3px 0 3px 13px;
  color: #08734d;
  background: transparent;
  border: 0;
  border-left: 3px solid #9acb59;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
}

body .showcase-heading h2 {
  margin-top: 12px;
  color: #132d34;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

body .showcase-heading > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 12px;
  color: #607176;
  font-size: 15px;
  line-height: 1.7;
  white-space: normal;
  overflow-wrap: anywhere;
}

body .showcase-viewport {
  height: clamp(465px, 43vw, 640px);
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #d5e1dc;
  border-radius: 22px;
  box-shadow: 0 24px 58px rgba(24, 58, 53, 0.14);
}

body .showcase-stage,
body .showcase-slide {
  height: 100%;
  min-height: 0;
}

body .showcase-slide {
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.58fr);
  width: 100%;
  min-width: 0;
  background: #fff;
}

body .showcase-slide-copy {
  position: relative;
  inset: auto;
  grid-column: 1;
  order: 1;
  width: auto;
  height: 100%;
  justify-content: center;
  padding: clamp(38px, 5vw, 78px) clamp(30px, 4vw, 70px);
  background:
    radial-gradient(circle at 0% 10%, rgba(44, 139, 102, 0.26), transparent 34%),
    linear-gradient(150deg, #103b34 0%, #122a34 100%);
  border: 0;
  border-right: 1px solid rgba(173, 221, 191, 0.2);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body .showcase-slide-copy::before {
  top: 0;
  right: 0;
  bottom: auto;
  width: 120px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, #a9de68);
  border: 0;
  border-radius: 0;
}

body .showcase-slide-copy::after {
  top: 28px;
  right: 28px;
  bottom: auto;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(169, 222, 104, 0.52);
  border-right: 1px solid rgba(169, 222, 104, 0.52);
  border-bottom: 0;
}

body .showcase-slide-kicker {
  margin-bottom: 14px;
  color: #b6e47b;
  font-size: 10px;
  letter-spacing: 0.18em;
}

body .showcase-slide-copy h3 {
  max-width: 540px;
  color: #f7fbf8;
  font-size: clamp(32px, 3.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

body .showcase-slide-copy p:not(.showcase-slide-kicker) {
  max-width: 450px;
  margin-top: 18px;
  color: rgba(247, 251, 248, 0.74);
  font-size: 14px;
  line-height: 1.75;
  white-space: normal;
  overflow-wrap: anywhere;
}

body .showcase-slide-copy .button {
  min-height: 46px;
  margin-top: 28px;
  padding-inline: 20px;
  color: #102a28;
  background: #a9de68;
  border-color: #a9de68;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

body .showcase-slide-copy .button:hover,
body .showcase-slide-copy .button:focus-visible {
  color: #102a28;
  background: #c1ed8e;
  border-color: #c1ed8e;
  transform: translateY(-2px);
}

body .showcase-slide-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  order: 2;
  height: 100%;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 42px);
  background:
    linear-gradient(135deg, #f7faf8 0%, #e8efec 100%);
}

body .showcase-slide-image::before {
  position: absolute;
  inset: clamp(14px, 2vw, 28px);
  z-index: 0;
  content: "";
  border: 1px solid rgba(18, 76, 60, 0.1);
  border-radius: 13px;
  pointer-events: none;
}

body .showcase-slide-image::after {
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, transparent 68%, rgba(14, 47, 42, 0.08));
}

body .showcase-slide-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
  transform: none;
  transition: transform 600ms cubic-bezier(0.22, 0.8, 0.24, 1), filter 600ms ease;
}

body .showcase-slide-image img[src*="imagez-z154"] {
  padding: 18px;
  background: #fff;
  object-fit: contain;
  mix-blend-mode: normal;
}

body .showcase-slide:hover .showcase-slide-image img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.015);
}

body .showcase-image-label {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 3;
  padding: 7px 10px;
  color: #1b6650;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 102, 80, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(24, 58, 53, 0.1);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

body .showcase-slide-number {
  top: 18px;
  right: 20px;
  z-index: 4;
  padding: 7px 10px;
  color: #1b6650;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 102, 80, 0.2);
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(24, 58, 53, 0.08);
  backdrop-filter: none;
  font-size: 10px;
}

body .showcase-side-controls {
  padding-inline: 14px;
}

body .showcase-side-control {
  width: 42px;
  height: 42px;
  color: #14543f;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 84, 63, 0.24);
  box-shadow: 0 8px 20px rgba(24, 58, 53, 0.13);
  opacity: 0.95;
  backdrop-filter: none;
}

body .showcase-side-control:hover,
body .showcase-side-control:focus-visible {
  color: #fff;
  background: #147b57;
  border-color: #147b57;
}

body .showcase-progress {
  height: 3px;
  margin: 14px 2px 0;
  background: #d9e5df;
}

body .showcase-progress-fill {
  background: linear-gradient(90deg, #0a6849, #4eaf72, #c79b52);
}

body .showcase-bottom {
  margin-top: 14px;
  padding-inline: 0;
}

body .showcase-dots {
  gap: 6px;
  padding: 7px 8px;
  background: #fff;
  border: 1px solid #d8e4df;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(24, 58, 53, 0.06);
}

body .showcase-dot {
  width: 22px;
  height: 4px;
  background: #c8d8d0;
}

body .showcase-dot.is-active {
  width: 42px;
  background: #16815b;
}

body .showcase-hint {
  color: #6a797c;
}

@media (max-width: 900px) {
  body .showcase-viewport {
    height: auto;
  }

  body .showcase-stage,
  body .showcase-slide {
    height: auto;
    width: 100%;
    min-width: 0;
  }

  body .showcase-slide {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(290px, 56vw, 460px) auto;
  }

  body .showcase-slide-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 290px;
  }

  body .showcase-slide-copy {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    width: 100%;
    min-width: 0;
    min-height: 260px;
    padding: 32px 32px 38px;
    border-top: 4px solid #a9de68;
    border-right: 0;
  }
}

@media (max-width: 620px) {
  body .rpv-showcase {
    padding-bottom: 24px;
  }

  body .rpv-showcase-shell {
    padding-inline: 12px;
  }

  body .showcase-heading {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body .showcase-heading h2 {
    display: block;
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    font-size: 28px;
    line-height: 1.16;
    white-space: normal !important;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  body .showcase-heading > div:first-child > p:not(.eyebrow) {
    width: 100%;
    max-width: 340px;
    font-size: 13px;
    word-break: break-word;
  }

  body .showcase-viewport {
    border-radius: 16px;
  }

  body .showcase-slide {
    max-width: 100%;
    grid-template-rows: clamp(230px, 68vw, 310px) auto;
  }

  body .showcase-slide-image {
    min-height: 230px;
    padding: 14px;
  }

  body .showcase-slide-image::before {
    inset: 10px;
  }

  body .showcase-image-label {
    right: auto;
    left: 56px;
    bottom: 22px;
    max-width: calc(100% - 80px);
    padding: 6px 8px;
    font-size: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body .showcase-slide-number {
    top: 14px;
    right: 14px;
  }

  body .showcase-slide-copy {
    min-height: 248px;
    padding: 26px 24px 30px;
  }

  body .showcase-slide-copy h3 {
    font-size: 31px;
  }

  body .showcase-slide-copy p:not(.showcase-slide-kicker) {
    margin-top: 11px;
    font-size: 13.5px;
  }

  body .showcase-slide-copy .button {
    margin-top: 19px;
  }

  body .showcase-side-controls {
    padding-inline: 8px;
  }

  body .showcase-side-control {
    width: 36px;
    height: 36px;
  }

  body .showcase-bottom {
    align-items: center;
  }

  body .showcase-hint {
    display: none;
  }
}

/* RPV homepage density polish v12: use the hero intro space with a compact visual cue. */
body .rpv-showcase {
  padding: clamp(24px, 3vw, 42px) 0 clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 4% 0%, rgba(93, 183, 132, 0.14), transparent 30%),
    radial-gradient(circle at 96% 18%, rgba(199, 155, 82, 0.08), transparent 24%),
    linear-gradient(180deg, #f8faf9 0%, #edf3f0 100%);
}

body .rpv-showcase-shell {
  padding: clamp(10px, 1.5vw, 20px) clamp(16px, 3vw, 42px) 0;
}

body .showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(22px, 3vw, 34px);
}

body .showcase-heading > div:first-child {
  max-width: 820px;
}

body .showcase-heading h2 {
  max-width: 700px;
  margin-top: 10px;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.08;
}

body .showcase-heading > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}

body .showcase-heading::after {
  display: flex;
  grid-column: 2;
  align-items: flex-end;
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding: 20px 22px;
  content: "MACHINES  /  MEDIA  /  SUPPORT";
  color: #e9fff1;
  background:
    radial-gradient(circle at 88% 8%, rgba(169, 222, 104, 0.26), transparent 34%),
    linear-gradient(145deg, #103b34 0%, #122a34 100%);
  border: 1px solid rgba(28, 101, 76, 0.2);
  border-left: 4px solid #a9de68;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(24, 58, 53, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.7;
}

body .showcase-viewport {
  height: clamp(450px, 39vw, 590px);
}

@media (max-width: 900px) {
  body .showcase-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 22px;
  }

  body .showcase-heading::after {
    grid-column: 1;
    min-height: 66px;
    align-items: center;
    padding: 14px 18px;
  }
}

@media (max-width: 620px) {
  body .rpv-showcase {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  body .rpv-showcase-shell {
    padding: 10px 10px 0;
  }

  body .showcase-heading {
    gap: 14px;
    margin-bottom: 18px;
  }

  body .showcase-heading h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.14;
    word-break: normal;
    overflow-wrap: normal;
  }

  body .showcase-heading > div:first-child > p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 12px;
    font-size: 13px;
  }

  body .showcase-heading::after {
    min-height: 54px;
    padding: 12px 14px;
    border-left-width: 3px;
    border-radius: 12px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  body .showcase-viewport {
    height: auto;
  }
}

/* Product detail modal overlap fix: let each grid item stay inside its own track. */
.product-modal {
  box-sizing: border-box;
  max-width: calc(100vw - 28px);
  overflow-x: hidden;
}

.product-modal,
.product-modal *,
.modal-layout,
.modal-layout > * {
  box-sizing: border-box;
}

.modal-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
}

.modal-layout > *,
.modal-image,
.modal-copy {
  min-width: 0;
}

.modal-image {
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
}

.modal-image > img {
  min-width: 0;
  min-height: 0;
}

.modal-copy {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.modal-copy h2,
.modal-copy p,
.modal-copy h3,
.modal-copy ul,
.modal-copy .modal-actions {
  max-width: 100%;
}

@media (max-width: 700px) {
  .product-modal {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 18px;
  }

  .modal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 58px 16px 24px;
  }

  .modal-image {
    min-height: 0;
    max-width: 100%;
  }

  .modal-copy {
    padding: 0;
  }

  .modal-copy h2 {
    max-width: 100%;
    font-size: clamp(25px, 8vw, 34px);
  }

  .modal-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-actions .button {
    flex-basis: 100%;
  }
}
