* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #222;
  background: #f7f8f4;
}

section[id] {
  scroll-margin-top: 90px;
}

.legal-page {
  padding-top: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  letter-spacing: 0.2px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.topbar {
  background: linear-gradient(90deg, #0b0b0b, #1d1d1d);
  color: #fff;
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
}

.topbar-item {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.topbar-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.logo img,
.custom-logo {
  height: 36px;
  width: auto;
  max-width: 200px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #000;
}

.nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a:hover {
  color: #48af36;
}

.nav .nav-cta {
  background: #48af36;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(72, 175, 54, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav .nav-cta:hover {
  color: #fff;
  background: #3e9a2f;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(72, 175, 54, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 24px 0 16px;
  background: linear-gradient(180deg, rgba(72, 175, 54, 0.18), rgba(72, 175, 54, 0));
}

.slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 21 / 9;
  background: #0d0d0d;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateX(12px);
  display: grid;
  place-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dots button.is-active {
  background: #fff;
  transform: scale(1.2);
}

.about {
  padding: 40px 0 48px;
  background: #fff;
}

.about-inner {
  display: grid;
  gap: 28px;
}

.about-text h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
}

.about-text p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-card {
  background: #f7f8f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(72, 175, 54, 0.15);
  color: #2f7b24;
  margin: 0 auto;
}

.about-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.about-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.products {
  padding: 32px 0 48px;
  background: #ffffff;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.products-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #48af36;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(72, 175, 54, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(72, 175, 54, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card .zoomable {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-card .zoomable img {
  transition: transform 0.3s ease;
}

.product-card .zoomable:hover img {
  transform: scale(1.04);
}

.zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zoom-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: block;
  position: relative;
}

.zoom-icon::after {
  content: "";
  width: 8px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 9px;
  bottom: 10px;
  transform: rotate(45deg);
  transform-origin: center;
}

.product-card .zoomable:hover .zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.product-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact {
  padding: 32px 0 16px;
  background: #f7f8f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact-info h2,
.contact-location h2 {
  margin-top: 0;
}

.contact-info h2,
.contact-location h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.contact-info p,
.contact-location p {
  margin: 0 0 10px;
  color: #3f4a3c;
}

.contact-info strong,
.contact-location strong {
  color: #1f4b19;
}

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

.contact-form p {
  margin: 0;
}

.contact-form br {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-form-control {
  width: 100%;
  max-width: 520px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2f3a2b;
}

.contact-form .wpcf7-submit {
  justify-self: start;
  padding: 10px 24px;
  border: none;
  background: linear-gradient(135deg, #1f1f1f, #000);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-form input:not([type="submit"]):not([type="checkbox"]),
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 520px;
  background: #fff;
}

.contact-form input[type="checkbox"] {
  width: auto;
  max-width: none;
}

.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
  width: auto;
  max-width: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #48af36;
  box-shadow: 0 0 0 3px rgba(72, 175, 54, 0.18);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 10px 24px;
  border: none;
  background: linear-gradient(135deg, #1f1f1f, #000);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.form-status {
  margin: 0;
  min-height: 20px;
  color: #48af36;
}

.map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.claim {
  padding: 32px 0 48px;
  background: #fff;
}

.claim-inner h1 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.claim-content {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
}

.claim-logo {
  width: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
}

.claim-logo img {
  max-width: 100%;
  height: auto;
}

.claim p {
  margin: 0;
  line-height: 1.6;
}

.legal {
  padding: 32px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legal h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
}

.legal p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

.footer {
  border-top: 1px solid rgba(72, 175, 54, 0.2);
  padding: 20px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ec 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: #3f4a3c;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #1f4b19;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links a {
  color: #3f4a3c;
}

.footer-links a:hover {
  color: #48af36;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: #3f4a3c;
}

.footer-menu a:hover {
  color: #48af36;
}

.footer-bottom {
  border-top: 1px solid rgba(72, 175, 54, 0.2);
  margin-top: 16px;
  padding: 14px 0 18px;
  color: #3f4a3c;
  font-size: 0.9rem;
  background: #e8f2e2;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}


@media (min-width: 1200px) {
  .container {
    width: min(1280px, 92%);
  }

  .slider {
    border-radius: 0;
  }

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

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 16px;
  }

  .nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 900px) {
  .slider {
    border-radius: 0;
    aspect-ratio: 16 / 9;
  }

  .contact {
    padding: 36px 0;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo img {
    height: 36px;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 64px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: none;
    border-radius: 12px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .claim-content {
    grid-template-columns: 1fr;
  }

  .products {
    padding: 24px 0 36px;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about {
    padding: 32px 0 40px;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .container {
    width: 90%;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .nav {
    width: 92%;
    right: 4%;
  }

  .product-card {
    padding: 14px;
  }

  .contact-form button {
    width: 100%;
    justify-self: stretch;
  }

}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 6vh auto 0;
  background: #111;
  padding: 12px;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 82vh;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #111;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

  .reveal,
  .product-card,
  .contact-form button {
    transition: none !important;
  }
}
