﻿@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 500;
  src: url('Baloo_2/Baloo2-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 700;
  src: url('Baloo_2/Baloo2-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
   src: url('Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
   src: url('Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
}

:root {
  --mint: #9fe8ca;
  --soft-yellow: #ffe78a;
  --sky: #94d7ff;
  --cream: #fefcf2;
  --ink: #23403d;
  --leaf: #4db678;
  --bubble-shadow: 0 10px 25px rgba(35, 64, 61, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: linear-gradient(155deg, #f4fffb 0%, #fbfff2 48%, #f2f9ff 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 14%, rgba(159, 232, 202, 0.45) 0, rgba(159, 232, 202, 0) 38%),
    radial-gradient(circle at 88% 20%, rgba(148, 215, 255, 0.43) 0, rgba(148, 215, 255, 0) 36%),
    radial-gradient(circle at 55% 82%, rgba(255, 231, 138, 0.34) 0, rgba(255, 231, 138, 0) 40%);
  z-index: -2;
}

.bg-lottie-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.16;
}

.bg-lottie {
  position: absolute;
  width: min(700px, 72vw);
  height: min(700px, 72vw);
  top: 6%;
  right: -8%;
  filter: saturate(1.15);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  opacity: 0.14;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%234db678' stroke-width='5' stroke-linecap='round'%3E%3Cpath d='M22 86c30-8 42-30 40-58-28 0-50 24-40 58z'/%3E%3Cpath d='M22 86c12-18 25-26 40-31'/%3E%3C/g%3E%3C/svg%3E") center/120px no-repeat;
}

.page-bg::before {
  top: 14%;
  left: 4%;
}

.page-bg::after {
  bottom: 8%;
  right: 6%;
}

.topbar,
main {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}

.leaf-icon {
  width: 100px;
  height: 54px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: #fff;
  box-shadow: var(--bubble-shadow);
}

.brand-logo {
  width: auto;
  height: 30px;
}

.tagline {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

h1,
h2,
h3,
.eyebrow,
.bubble-btn,
.chip {
  font-family: "Baloo 2", sans-serif;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.header-gif {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  opacity: 0.9;
  object-fit: contain;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(35, 64, 61, 0.1);
  padding: 8px 12px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-link {
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(35, 64, 61, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 16px rgba(35, 64, 61, 0.16);
}

.nav-link.active {
  background: linear-gradient(120deg, var(--mint), #fff);
}

h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
}

.hero {
  margin-top: 14px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.77);
  backdrop-filter: blur(4px);
  box-shadow: var(--bubble-shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.page-hero {
  margin-top: 14px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.77);
  backdrop-filter: blur(4px);
  box-shadow: var(--bubble-shadow);
}

.page-hero h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  max-width: 26ch;
}

.page-hero.compact h2 {
  max-width: 34ch;
}

.eyebrow {
  margin: 0;
  color: #2a8f61;
  letter-spacing: 0.02em;
}

.hero h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.hero p {
  margin: 0;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bubble-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: #123;
  background: linear-gradient(120deg, var(--mint), var(--soft-yellow));
  box-shadow: 0 8px 18px rgba(62, 127, 104, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.link-btn {
  display: inline-block;
  text-decoration: none;
}

.bubble-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 24px rgba(62, 127, 104, 0.28);
}

.bubble-btn.ghost {
  background: #fff;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(148, 215, 255, 0.86), rgba(159, 232, 202, 0.84));
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.mini-lottie {
  width: 86px;
  height: 86px;
  position: absolute;
  right: 12px;
  bottom: 8px;
  opacity: 0.88;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  right: -40px;
  top: -32px;
}

.hero-card-image {
  width: auto;
  height: 180px;
  border-radius: 30px;
}

.badge {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-link {
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(35, 64, 61, 0.16);
}

.controls {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-section {
  margin: 22px 0;
}

.page-view {
  display: none;
}

.page-view.active-view {
  display: block;
  animation: pageFade 0.28s ease;
}

.hero.page-view.active-view {
  display: grid;
}

.section-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 14px;
}

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

.info-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--bubble-shadow);
}

.info-card h3 {
  margin: 0 0 6px;
}

.info-card p {
  margin: 0;
}

.about-list {
  margin: 8px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.about-card {
  margin-bottom: 16px;
}

.about-kicker {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f7d57;
  margin-bottom: 12px;
}

.about-linkline {
  margin-top: 14px;
}

.about-link {
  color: #1f7d57;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.about-link:hover {
  border-color: #1f7d57;
}

.about-heading {
  color: #1f7d57;
  margin-bottom: 10px;
}

.about-offers,
.about-values {
  display: grid;
  gap: 12px;
}

.about-offer-item,
.about-value-item {
  background: #f7fcf9;
  border: 1px solid #e2f3eb;
  border-radius: 14px;
  padding: 14px;
}

.about-offer-item h4,
.about-value-item h4 {
  margin: 0 0 8px;
  font-family: "Baloo 2", sans-serif;
  color: #295a49;
  font-size: 1.05rem;
}

.about-offer-item p,
.about-value-item p {
  margin: 0;
}

.about-offer-item p + p,
.about-value-item p + p {
  margin-top: 10px;
}

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

.about-cta {
  text-align: center;
}

.about-cta-btn {
  margin-top: 8px;
  display: inline-block;
  background: #2f6b3f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(35, 64, 61, 0.18);
}

.about-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 20px rgba(35, 64, 61, 0.24);
}

.about-signoff {
  margin-top: 16px;
  font-weight: 700;
  color: #2f6b3f;
}

.tiny-lottie {
  width: 56px;
  height: 56px;
  margin-bottom: 6px;
}

.info-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(35, 64, 61, 0.14);
}
.info-icon img{
 
  border-radius: 50px !important;
  
}

.chip {
  border: 0;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(35, 64, 61, 0.1);
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(35, 64, 61, 0.16);
}

.chip:focus-visible {
  outline: 3px solid rgba(148, 215, 255, 0.7);
  outline-offset: 2px;
}

.chip.active {
  background: linear-gradient(120deg, var(--soft-yellow), #fff);
}

.empty-state {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--bubble-shadow);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 42px;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--bubble-shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(35, 64, 61, 0.2);
}

.product-media {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(140deg, #dbf9ec, #d9efff);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.12);
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.meta {
  margin: 8px 0 10px;
  font-size: 0.9rem;
  opacity: 0.75;
}

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

.price {
  font-weight: 800;
  font-size: 1.05rem;
}

.mini-btn {
  border: 0;
  background: #eefaf4;
  color: #1a6f4d;
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 700;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 40;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 20, 0.42);
  animation: fadeIn 0.28s ease;
}

.modal-card {
  position: relative;
  width: min(820px, 92vw);
  margin: 7vh auto;
  border-radius: 26px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 24px 45px rgba(8, 24, 22, 0.34);
  animation: popIn 0.32s ease;
}

.close-btn {
  position: absolute;
  right: 14px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-media {
  border-radius: 20px;
  overflow: hidden;
  background: #effaf3;
  min-height: 280px;
}

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

.modal-info h3 {
  margin: 4px 0 6px;
  font-size: 1.7rem;
}

.modal-info p {
  margin: 8px 0;
}

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

.contact-grid {
  margin: 18px 0 28px;
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.contact-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7fff9 100%);
  border: 1px solid #e0f3e9;
}

.contact-kicker {
  margin: 0 0 6px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: #2a8f61;
}

.contact-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.contact-intro {
  margin: 8px 0 14px;
  opacity: 0.92;
}

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

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8f4ee;
  text-decoration: none;
  color: var(--ink);
}

.contact-item:hover {
  border-color: #c9eadb;
  box-shadow: 0 8px 14px rgba(35, 64, 61, 0.08);
}

.contact-label {
  font-weight: 700;
}

.contact-value {
  text-align: right;
  color: #2a5f4f;
}

.contact-actions {
  margin-top: 14px;
}

.map-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--bubble-shadow);
  padding: 14px;
}

.contact-map-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fcff 100%);
}

.contact-map-card h3 {
  margin: 4px 4px 12px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 290px;
  border: 0;
  border-radius: 24px;
}

.map-frame {
  border: 0;
}

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

.blog-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--bubble-shadow);
  padding: 20px;
}

.blog-card h3 {
  margin: 0 0 8px;
}

.blog-card p {
  margin: 0;
}

.contact-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--bubble-shadow);
  padding: 20px;
  display: grid;
  gap: 10px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #daf2e6;
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(148, 215, 255, 0.5);
  border-color: #b8e9d2;
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto 24px;
  text-align: center;
  color: #2a5f4f;
  font-weight: 700;
  opacity: 0.92;
}

.site-footer p {
  margin: 0;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 25px;
  }

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

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

  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-value {
    text-align: left;
  }

  .about-kicker {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding-top: 14px;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
  }

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

  .hero h2 {
    font-size: 1.9rem;
  }

  .modal-card {
    margin-top: 4vh;
    padding: 16px;
  }

  .page-hero {
    padding: 24px;
  }

  .brand-wrap {
    width: calc(100% - 62px);
  }

  .header-gif {
    width: 48px;
    height: 48px;
    order: 3;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 42px;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0 2px;
  }

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

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
  }

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

  .bg-lottie {
    width: 86vw;
    height: 86vw;
    top: 8%;
    right: -24%;
  }

  .bg-lottie-wrap {
    display: none;
  }
}
