* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Arial, Calibri, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff
}

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

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

button {
  font-family: inherit
}

.container {
  width: min(1160px, 92%);
  margin: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e3dc
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px
}

.brand img {
  width: 145px;
  height: 55px;
  object-fit: contain
}

.brand-fallback {
  display: none;
  font-weight: 800;
  letter-spacing: 1px
}

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

.nav a {
  font-size: 15px;
  font-weight: 700;
  padding: 28px 0;
  border-bottom: 2px solid transparent
}

.nav a:hover,
.nav a.active {
  border-bottom-color: #1e3b2b
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer
}

.hero {
  height: 650px;
  position: relative;
  overflow: hidden;
  background: #222
}

.carousel,
.slide {
  position: absolute;
  inset: 0
}

.slide {
  opacity: 0;
  transition: opacity .7s ease
}

.slide.active {
  opacity: 1
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18))
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 1160px
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  max-width: 700px;
  margin: 10px 0 20px
}

.hero-content>p:not(.eyebrow) {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 30px
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-block;
  background: #1d3428;
  color: #fff;
  border: 1px solid #1d3428;
  padding: 12px 23px;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s
}

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

.btn-outline {
  background: transparent;
  border-color: #fff
}

.btn-light {
  background: #fff;
  color: #1d3428;
  border-color: #fff
}

.btn-small {
  padding: 9px 14px;
  font-size: 13px
}

.carousel-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer
}

.prev {
  left: 24px
}

.next {
  right: 24px
}

.dots {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  margin: 0 5px;
  background: #fff;
  opacity: .65;
  cursor: pointer
}

.dot.active {
  opacity: 1;
  transform: scale(1.2)
}

.section {
  padding: 85px 0
}

.soft {
  background: #f7f4ee
}

.intro {
  background: #fff
}

.two-column {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center
}

.two-column h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 10px 0 18px
}

.two-column p {
  color: #666;
  max-width: 680px
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  color: #1d3428
}

.highlight-box {
  background: #1d3428;
  color: #fff;
  padding: 50px 35px;
  border-radius: 8px;
  text-align: center
}

.highlight-box span {
  font-size: 72px;
  font-weight: 800;
  display: block;
  line-height: 1
}

.highlight-box p {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 10px auto
}

.highlight-box small {
  color: #dfe7df
}

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

.section-heading h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 10px 0
}

.section-heading>p:last-child {
  color: #666
}

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

.product-card {
  background: #fff;
  border: 1px solid #e6e1da;
  border-radius: 8px;
  overflow: hidden;
  transition: .25s
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08)
}

.product-image-link {
  display: block;
  background: #f5f1ea
}

.product-card>img,
.product-image-link img {
  width: 100%;
  height: 310px;
  object-fit: cover
}

.product-info {
  padding: 20px
}

.product-info h3 {
  font-size: 20px;
  margin: 6px 0 8px
}

.product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px
}

.tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 800;
  color: #697265
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.price {
  font-size: 19px;
  color: #1d3428
}

.dark-cta {
  background: #1d1d1b;
  color: #fff;
  padding: 55px 0
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta-inner h2 {
  font-size: 35px;
  margin: 7px 0
}

.cta-inner p:last-child {
  color: #ccc
}

.page-banner {
  background: #f0ece4;
  padding: 80px 0
}

.page-banner h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 10px 0
}

.page-banner p:last-child {
  color: #666
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 35px
}

.filter-btn {
  padding: 10px 17px;
  border: 1px solid #cfc9bf;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700
}

.filter-btn:hover,
.filter-btn.active {
  background: #1d3428;
  color: #fff;
  border-color: #1d3428
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  margin-top: 25px
}

.detail-image-wrap {
  background: #f5f1ea;
  border-radius: 8px;
  overflow: hidden
}

.detail-image-wrap img {
  width: 100%;
  height: 620px;
  object-fit: contain
}

.detail-info h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 8px 0
}

.detail-price {
  font-size: 28px;
  font-weight: 800;
  color: #1d3428;
  margin-bottom: 18px
}

.lead {
  color: #666;
  font-size: 17px;
  margin-bottom: 25px
}

.detail-list {
  list-style: none;
  margin: 15px 0 28px
}

.detail-list li {
  padding: 9px 0;
  border-bottom: 1px solid #eee
}

.detail-list li::before {
  content: "✓";
  font-weight: 800;
  margin-right: 10px;
  color: #1d3428
}

.whatsapp-btn {
  margin-top: 5px
}

.small-note {
  font-size: 12px !important;
  color: #888 !important;
  margin-top: 15px
}

.back-link {
  font-weight: 800;
  color: #1d3428
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px
}

.stats div {
  display: flex;
  flex-direction: column
}

.stats strong {
  font-size: 28px
}

.stats span {
  font-size: 13px;
  color: #777
}

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

.feature {
  padding: 30px;
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 8px
}

.feature h3 {
  margin-bottom: 10px
}

.feature p {
  color: #666
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start
}

.contact-grid h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 10px 0 25px
}

.contact-item {
  margin: 20px 0
}

.contact-item p {
  color: #666
}

.map-wrap {
  height: 470px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.site-footer {
  background: #171715;
  color: #ddd;
  padding-top: 55px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 45px
}

.footer-logo {
  width: 145px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(0) invert(1)
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 14px
}

.footer-grid a {
  display: block;
  color: #bbb;
  margin: 6px 0
}

.copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding: 17px;
  color: #999;
  font-size: 13px
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2)
}

@media(max-width:850px) {
  .menu-toggle {
    display: block
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 8px 5%;
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }

  .nav.open {
    display: flex
  }

  .nav a {
    padding: 11px 0
  }

  .hero {
    height: 580px
  }

  .hero-content {
    justify-content: center
  }

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

  .two-column,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px
  }

  .detail-image-wrap img {
    height: 470px
  }

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

@media(max-width:560px) {
  .brand img {
    width: 125px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero-content>p:not(.eyebrow) {
    font-size: 16px
  }

  .carousel-btn {
    width: 38px;
    height: 38px
  }

  .prev {
    left: 10px
  }

  .next {
    right: 10px
  }

  .section {
    padding: 60px 0
  }

  .section-heading h2,
  .two-column h2,
  .contact-grid h2 {
    font-size: 32px
  }

  .product-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .page-banner {
    padding: 60px 0
  }

  .page-banner h1 {
    font-size: 38px
  }

  .detail-info h1 {
    font-size: 38px
  }

  .detail-image-wrap img {
    height: 380px
  }
}