:root {
  --green: #006b3f;
  --green-dark: #004a2c;
  --green-soft: #e8f5ee;
  --ink: #14231b;
  --muted: #607268;
  --line: #dfe8e4;
  --paper: #ffffff;
  --wash: #f6faf7;
  --shadow: 0 10px 35px rgba(0, 60, 35, 0.1);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  padding: 0 34px 0 14px;
  font-weight: 800;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 21px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 38, 21, 0.88), rgba(0, 74, 44, 0.68) 42%, rgba(0, 74, 44, 0.1)),
    url("assets/hero/garden-irrigation-hero-valve.webp") center / cover no-repeat;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 201, 158, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding-top: 96px;
  padding-bottom: 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #79d6a1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-box h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.36);
}

.hero h1 span {
  display: block;
}

.hero-line-accent {
  color: #ffd83d;
  white-space: nowrap;
}

.hero-copy {
  max-width: 720px;
  transform: translateY(4px);
}

.hero-support {
  max-width: 560px;
  margin: 22px 0 0;
  color: white;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-applications {
  width: min(620px, 100%);
  color: white;
  margin-top: 54px;
  padding: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 580px;
  margin: 0;
  align-items: start;
}

.application-item {
  display: flex;
  align-items: center;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  text-align: left;
}

.application-item:first-child {
  padding-left: 0;
}

.application-item + .application-item {
  border-left: 1px solid rgba(255, 255, 255, 0.62);
}

.line-icon {
  display: grid;
  place-items: center;
}

.line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.line-icon svg {
  width: 100%;
  height: 100%;
}

.line-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application-item h3 {
  margin: 0;
  color: white;
  max-width: 105px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-wrap: balance;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: white;
  color: var(--green);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.contact-section .btn-secondary {
  border-color: var(--green);
  color: var(--green);
}

.hero-showcase {
  display: grid;
  place-items: center;
  align-self: end;
  justify-self: end;
  width: min(390px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-showcase img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: contain;
}

.hero-showcase span {
  justify-self: stretch;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 82px 0;
}

.section-alt {
  background: var(--wash);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2,
.contact-box h2 {
  font-size: clamp(30px, 5vw, 46px);
}

.section-head p,
.gallery-layout p,
.contact-box p {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.78;
  background: #f8fbf9;
}

.product-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.product-body {
  padding: 22px;
}

.product-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.product-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.product-card dt {
  color: var(--muted);
}

.product-card dd {
  margin: 0;
  font-weight: 800;
}

.bestseller-layout {
  display: grid;
  gap: 34px;
}

.bestseller-media {
  overflow: hidden;
  width: min(100%, 1080px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.bestseller-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.bestseller-content {
  text-align: center;
}

.bestseller-content h2 {
  margin: 0 auto 24px;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.key-features-panel {
  border: 1px solid rgba(42, 128, 75, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4fbf6);
  padding: 26px;
  box-shadow: 0 14px 34px rgba(21, 54, 36, 0.09);
}

.key-features-head {
  margin-bottom: 22px;
  text-align: center;
}

.key-features-head h3 {
  margin: 0 auto;
  max-width: 760px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

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

.key-feature-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(42, 128, 75, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 12px;
  text-align: center;
}

.key-feature-item svg {
  width: 52px;
  height: 52px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.key-feature-item span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}


.package-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.package-detail-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(21, 54, 36, 0.08);
}

.package-detail-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.feature-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(21, 54, 36, 0.08);
}

.feature-list h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.gallery-layout h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

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

.path-list code {
  display: block;
  width: 100%;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 10px 12px;
  color: var(--green-dark);
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
  padding: 14px;
}

.gallery-grid figcaption {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.spec-card {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  text-align: left;
}

th {
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 16px;
}

td:first-child {
  width: 42%;
  color: var(--muted);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

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

.manual-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  box-shadow: var(--shadow);
}

.manual-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.manual-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.manual-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  padding: 0 18px;
  color: white;
  font-weight: 800;
}

.manual-link[hidden] {
  display: none;
}

.manual-link:hover {
  transform: translateY(-2px);
}

.manual-card-muted {
  background: #f7faf8;
}

.manual-card-muted .product-kicker {
  color: var(--muted);
}

.manual-card-muted p {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-section {
  background: white;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 26px;
  background: var(--green-soft);
  padding-top: 42px;
  padding-bottom: 42px;
}

.contact-box h2 {
  margin-bottom: 12px;
}

.footer {
  background: #0a2a1a;
  color: #a8c4b8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav.open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }

  .nav-toggle {
    display: flex;
  }

  .bestseller-layout,
  .gallery-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .bestseller-media {
    position: static;
  }

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

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

  .hero-inner {
    min-height: 600px;
    padding-top: 70px;
    padding-bottom: 38px;
  }

  .hero-copy {
    transform: translateY(0);
  }

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

  .application-item {
    min-height: auto;
    padding: 0 12px;
    gap: 8px;
  }

  .application-item + .application-item {
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    border-top: 0;
    padding-top: 0;
  }

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

  .contact-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 62px;
    padding-bottom: 28px;
  }

  .hero-copy {
    transform: translateY(0);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 9.2vw, 42px);
  }

  .hero-line-accent {
    white-space: nowrap;
  }

  .hero-support {
    max-width: 330px;
    font-size: 16px;
  }

  .contact-actions,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .feature-list,
  .package-detail-gallery,
  .key-feature-grid,
  .gallery-grid,
  .manual-grid {
    grid-template-columns: 1fr;
  }

  .key-features-panel {
    padding: 20px;
  }

  .hero-applications {
    width: 100%;
    margin-top: 38px;
    padding: 0;
  }

  .application-item {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 0 7px;
    text-align: center;
  }

  .line-icon {
    width: 38px;
    height: 38px;
  }

  .line-icon svg * {
    stroke-width: 3.2;
  }

  .application-item h3 {
    max-width: 92px;
    font-size: 12px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  table {
    min-width: 540px;
  }
}
.product-detail-link {
  transition: background 0.2s ease;
}

.product-detail-link:hover,
.product-detail-link:focus-visible {
  background: var(--green-soft);
}

.product-model-link {
  border-bottom: 1px solid transparent;
}

.product-model-link:hover,
.product-model-link:focus-visible {
  border-color: currentColor;
}

.product-card-featured {
  border-color: rgba(0, 107, 63, 0.36);
}

.product-detail-hero {
  padding: 44px 0 76px;
  background: linear-gradient(135deg, #eef8f2 0%, #ffffff 60%, #e7f4ed 100%);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--green);
}

.detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.detail-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.03;
}

.detail-hero-copy > p:last-of-type {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.detail-model {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-hero-media {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid rgba(0, 107, 63, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.detail-hero-media img {
  width: 88%;
  max-height: 430px;
  object-fit: contain;
}

.detail-specs {
  display: grid;
  gap: 0;
  max-width: 580px;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.detail-specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.detail-specs dt {
  color: var(--muted);
}

.detail-specs dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.detail-features-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.detail-features-section .key-features-head h2 {
  margin: 0 auto;
  max-width: 760px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.detail-content {
  display: grid;
  gap: 34px;
}

.product-gallery-section .section-head {
  margin-bottom: 34px;
}

.product-gallery-section .eyebrow {
  color: var(--green);
}

@media (max-width: 900px) {
  .detail-hero-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero-media {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .product-detail-hero {
    padding: 28px 0 52px;
  }

  .detail-hero-layout {
    gap: 30px;
  }

  .detail-hero-copy h1 {
    font-size: 34px;
  }

  .detail-hero-media {
    min-height: 290px;
  }

  .detail-specs div {
    align-items: flex-start;
  }
}
.hot-sale-badge {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: #fff2b8;
  padding: 6px 11px;
  color: #6e5100;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.hot-sale-badge svg {
  width: 15px;
  height: 15px;
  fill: #ffd83d;
  stroke: #6e5100;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.product-title-link {
  transition: color 0.2s ease;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--green);
}

.product-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--green);
  padding: 10px 16px;
  color: white;
  font-size: 14px;
  font-weight: 850;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-details-cta:hover,
.product-details-cta:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.product-details-cta svg,
.product-image-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-link {
  position: relative;
}

.product-image-action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(0, 74, 44, 0.92);
  padding: 8px 12px;
  color: white;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(0, 48, 28, 0.22);
}

.product-carousel {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0 0 50px;
  overflow: hidden;
}

.carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: inherit;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  display: grid;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 530px;
  margin: 0;
  place-items: center;
  padding: 24px 54px 12px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.carousel-slide img {
  width: 100%;
  max-width: 430px;
  height: 500px;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 107, 63, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  box-shadow: 0 8px 22px rgba(0, 60, 35, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--green);
  color: white;
}

.carousel-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow-prev {
  left: 14px;
}

.carousel-arrow-next {
  right: 14px;
}

.carousel-footer {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.carousel-dots {
  grid-column: 2;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #b8c9c0;
  padding: 0;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--green);
  transform: scale(1.25);
}

.carousel-status {
  grid-column: 3;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .carousel-slide {
    min-height: 480px;
  }

  .carousel-slide img {
    height: 450px;
  }
}

@media (max-width: 560px) {
  .product-image-action {
    right: 10px;
    bottom: 10px;
  }

  .carousel-slide {
    min-height: 390px;
    padding: 18px 42px 8px;
  }

  .carousel-slide img {
    height: 365px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow-prev {
    left: 8px;
  }

  .carousel-arrow-next {
    right: 8px;
  }
}
.product-image .hot-sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
}

.certification-row dd {
  max-width: 68%;
  line-height: 1.35;
  text-align: right;
}
.detail-bottom-features {
  margin-top: 52px;
}
.detail-bottom-key-features {
  margin-top: 52px;
}