/* Natureprof reference skin */
:root {
  --np-green: #307145;
  --np-green-dark: #205c34;
  --np-green-soft: #eef6ef;
  --np-text: #2d3436;
  --np-muted: #636e72;
  --np-line: rgba(15, 23, 42, 0.08);
  --np-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  --np-container: min(1320px, calc(100vw - 48px));
  --np-wide: min(1560px, calc(100vw - 24px));
  --np-header-height: 96px;
  --np-radius: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Prompt", system-ui, sans-serif !important;
  color: var(--np-text);
  background: #fff;
}

body {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(48, 113, 69, 0.18);
}

.np-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--np-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
}

.np-header-shell {
  display: flex;
  width: var(--np-wide);
  min-height: var(--np-header-height);
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 48px);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 30px);
}

.np-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.np-brand__image {
  display: block;
  width: 210px;
  height: auto;
  max-width: min(210px, 25vw);
  object-fit: contain;
}

.np-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: auto;
}

.np-nav-link,
.np-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2937;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

button.np-nav-link {
  cursor: pointer;
  font-family: inherit;
}

.np-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.np-nav-link:hover,
.np-nav-link.is-active,
.np-language:hover {
  color: var(--np-green);
}

.np-nav-caret {
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
}

.np-language {
  padding: 9px 12px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  font-family: inherit;
}

.np-language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.np-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  display: none;
  width: 180px;
  border: 1px solid var(--np-line);
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.np-language-switcher.is-language-open .np-language-menu {
  display: block;
}

.np-language-menu a,
.np-language-menu span {
  display: block;
  padding: 12px 14px;
  color: #1f2937;
  text-decoration: none;
}

.np-language-menu a:hover {
  background: #f5f8f3;
  color: var(--np-green);
}

.np-language-menu .is-active {
  color: var(--np-green);
  font-weight: 700;
}

.np-language-menu .is-disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.np-language-menu small {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
}

.np-submenu {
  position: absolute;
  top: calc(100% + 28px);
  right: 0;
  z-index: 60;
  display: none;
  width: 280px;
  padding: 18px;
  border: 1px solid var(--np-line);
  background: #fff;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
  overflow: auto;
}

.np-nav-item.is-submenu-open .np-submenu {
  display: block;
}

.np-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 30px;
  content: "";
}

.np-submenu--mega {
  position: fixed;
  top: var(--np-header-height);
  right: 12px;
  left: 12px;
  width: auto;
  max-height: calc(100dvh - var(--np-header-height) - 20px);
  padding: clamp(22px, 3vw, 34px);
}

.np-submenu__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}

.np-submenu__intro p {
  margin: 0;
  color: var(--np-green);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.np-submenu__intro a {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.np-submenu__intro a:hover {
  color: var(--np-green);
}

.np-submenu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px 22px;
}

.np-submenu--mega .np-submenu__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.np-submenu__link {
  display: block;
  min-width: 0;
  padding: 11px 8px;
  color: #1f2937;
  text-decoration: none;
}

.np-submenu__link:hover {
  background: #f5f8f3;
  color: var(--np-green);
}

.np-submenu__link span {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.np-submenu__link small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
}

.np-flag {
  position: relative;
  width: 24px;
  height: 16px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: linear-gradient(
    to bottom,
    #b91c1c 0 16%,
    #fff 16% 28%,
    #1d4ed8 28% 72%,
    #fff 72% 84%,
    #b91c1c 84% 100%
  );
}

.np-flag--en {
  background:
        /* 1. Straight Red Cross (Top Layer) */
    linear-gradient(
      to bottom,
      transparent calc(50% - 0.75px),
      #b91c1c calc(50% - 0.75px) calc(50% + 0.75px),
      transparent calc(50% + 0.75px)
    ),
    linear-gradient(
      to right,
      transparent calc(50% - 0.75px),
      #b91c1c calc(50% - 0.75px) calc(50% + 0.75px),
      transparent calc(50% + 0.75px)
    ),
    /* 2. Straight White Cross */
    linear-gradient(
        to bottom,
        transparent calc(50% - 1.5px),
        #fff calc(50% - 1.5px) calc(50% + 1.5px),
        transparent calc(50% + 1.5px)
      ),
    linear-gradient(
      to right,
      transparent calc(50% - 1.5px),
      #fff calc(50% - 1.5px) calc(50% + 1.5px),
      transparent calc(50% + 1.5px)
    ),
    /* 3. Diagonal Red Cross */
    linear-gradient(
        to bottom right,
        transparent calc(50% - 0.5px),
        #b91c1c calc(50% - 0.5px) calc(50% + 0.5px),
        transparent calc(50% + 0.5px)
      ),
    linear-gradient(
      to top right,
      transparent calc(50% - 0.5px),
      #b91c1c calc(50% - 0.5px) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ),
    /* 4. Diagonal White Cross */
    linear-gradient(
        to bottom right,
        transparent calc(50% - 1.25px),
        #fff calc(50% - 1.25px) calc(50% + 1.25px),
        transparent calc(50% + 1.25px)
      ),
    linear-gradient(
      to top right,
      transparent calc(50% - 1.25px),
      #fff calc(50% - 1.25px) calc(50% + 1.25px),
      transparent calc(50% + 1.25px)
    ),
    /* 5. Blue Background (Bottom Layer) */ #1d4ed8;
}

.np-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.np-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1f2937;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.np-menu-toggle.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.np-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.np-menu-toggle.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
  background: #fff;
}

main > section {
  position: relative;
  padding-top: clamp(64px, 7vw, 104px) !important;
  padding-bottom: clamp(64px, 7vw, 104px) !important;
}

main > section > div:not([class*="absolute"]),
main > div > div {
  max-width: var(--np-container) !important;
}

main > section:first-child,
section.np-page-hero,
section#home {
  min-height: clamp(430px, 48vw, 560px);
  display: flex;
  align-items: center;
  padding: 0 !important;
  color: #fff;
  background: #1f3f2a !important;
}

main > section:first-child > img,
section.np-page-hero > img,
section#home > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.92;
  filter: saturate(0.92);
}

main > section:first-child > div[class*="absolute"],
section.np-page-hero > div[class*="absolute"],
section#home > div[class*="absolute"] {
  background: linear-gradient(
    90deg,
    rgba(13, 32, 20, 0.62),
    rgba(13, 32, 20, 0.24)
  ) !important;
}

section#home > div[class*="pointer-events"] {
  display: none !important;
}

main > section:first-child > div[class*="relative"],
section.np-page-hero > div[class*="relative"],
section#home > div[class*="relative"] {
  position: relative;
  z-index: 1;
  width: var(--np-container);
  margin: 0 auto;
}

section#home > div[class*="relative"] {
  display: block !important;
  text-align: center;
}

section#home > div[class*="relative"] > div:first-child {
  max-width: 920px;
  margin: 0 auto;
}

section#home > div[class*="relative"] > div:last-child {
  display: none !important;
}

main > section:first-child p:first-child,
section#home p:first-child,
main p[class*="uppercase"] {
  color: var(--np-green) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

main > section:first-child p:first-child,
section.np-page-hero p[class*="uppercase"],
section#home p:first-child {
  color: rgba(255, 255, 255, 0.86) !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Prompt", system-ui, sans-serif !important;
  letter-spacing: 0 !important;
}

h1 {
  color: inherit;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
}

section#home h1 {
  margin-top: 1rem !important;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

section#home h1 span {
  color: #fff !important;
}

h2 {
  color: var(--np-text);
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  color: var(--np-text);
  font-weight: 600;
}

p {
  color: var(--np-muted);
}

section#home p {
  color: rgba(255, 255, 255, 0.9) !important;
}

section#overview {
  text-align: center;
}

section#overview h2 {
  text-transform: uppercase;
}

section#overview h2::first-letter {
  color: inherit;
}

section#overview h2 + div {
  text-align: left;
}

section#overview .grid.gap-3 > div {
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--np-green) !important;
  color: #fff !important;
}

section#overview .grid.gap-3 p {
  color: rgba(255, 255, 255, 0.9) !important;
}

a[href],
button {
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

main a[class*="rounded-full"],
main a[class*="bg-brand"],
main a[class*="border-brand"],
main a[class*="bg-white"],
.np-footer__button {
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0;
}

main section[class*="text-white"] .text-brand-900,
main section[class*="text-white"] a[class*="bg-white"] {
  color: var(--np-green) !important;
}

main .bg-stone-50 {
  background-color: #f5f8f3 !important;
}

main [class*="rounded-2xl"],
main [class*="rounded-xl"],
main [class*="rounded-lg"],
main [class*="rounded-md"] {
  border-radius: var(--np-radius) !important;
}

main [class*="shadow"],
main [class*="shadow-lg"],
main [class*="shadow-md"],
main [class*="shadow-sm"] {
  box-shadow: var(--np-shadow) !important;
}

main article,
main a.group,
main .group,
main [class*="ring-1"] {
  border-color: rgba(15, 23, 42, 0.08) !important;
}

main article[class*="bg-white"],
main a.group,
main .group[class*="bg-white"],
main section [class*="bg-white"][class*="border"] {
  background: #fff !important;
}

main article img,
main a.group img,
main section [class*="overflow-hidden"] > img {
  border-radius: 0 !important;
}

main a.group:hover,
main article:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12) !important;
}

section#products .grid a,
section#services .grid a {
  min-height: 100%;
}

section#products .grid a > div:last-child,
section#services .grid a > div:last-child {
  border-top: 4px solid var(--np-green);
}

section#philosophy,
section#why {
  color: #fff !important;
}

section#philosophy h2,
section#philosophy h3,
section#why h2,
section#why h3,
main section[class*="text-white"] h2,
main section[class*="text-white"] h3,
main section[class*="bg-gradient-to-br"] h2,
main section[class*="bg-gradient-to-br"] h3 {
  color: #fff !important;
}

section#philosophy p,
section#why p,
main section[class*="bg-gradient-to-br"] p,
main section[class*="bg-gradient-to-br"] li {
  color: rgba(255, 255, 255, 0.86) !important;
}

.np-footer {
  background: #fff;
  border-top: 1px solid var(--np-line);
  color: var(--np-text);
}

.np-footer__inner {
  display: grid;
  width: var(--np-container);
  grid-template-columns: minmax(240px, 0.9fr) minmax(420px, 2fr) minmax(
      220px,
      0.8fr
    );
  gap: clamp(32px, 5vw, 76px);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 92px) 0 56px;
}

.np-footer__company {
  margin: 18px 0 24px;
  color: #4b5563;
  font-size: 0.95rem;
}

.np-footer__address {
  margin-top: 18px;
}

.np-footer__address h3,
.np-footer__heading {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--np-green) !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.np-footer__address p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.np-footer__links div,
.np-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.np-footer a {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.np-footer a:hover {
  color: var(--np-green);
}

.np-footer__button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 12px;
  padding: 11px 18px;
  background: var(--np-green);
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 700;
}

.np-footer__follow {
  margin: 22px 0 0;
  color: var(--np-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.np-footer__social {
  display: flex;
  gap: 10px;
}

.np-footer__social a {
  padding: 8px 11px;
  border: 1px solid #e5e7eb;
}

.np-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px max(24px, calc((100vw - 1320px) / 2));
  background: var(--np-green);
  color: #fff;
}

.np-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.np-footer__bottom a,
.np-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.np-footer__bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  :root {
    --np-header-height: 76px;
  }

  .np-brand__image {
    max-width: min(186px, 48vw);
  }

  .np-menu-toggle {
    display: inline-flex;
  }

  .np-site-nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--np-line);
    background: #fff;
    box-shadow: var(--np-shadow);
    max-height: calc(100dvh - var(--np-header-height) - 16px);
    overflow: auto;
  }

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

  .np-nav-link,
  .np-language {
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid #eef2f7;
  }

  .np-nav-item {
    display: block;
  }

  .np-submenu,
  .np-submenu--mega {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 10px 12px;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    box-shadow: none;
  }

  .np-site-nav.is-open .np-nav-item.is-submenu-open .np-submenu {
    display: block;
  }

  .np-submenu::before,
  .np-submenu__intro {
    display: none;
  }

  .np-submenu__grid,
  .np-submenu--mega .np-submenu__grid {
    grid-template-columns: 1fr;
    max-height: 220px;
    overflow: auto;
  }

  .np-submenu__link {
    padding: 9px 8px;
  }

  .np-submenu__link span {
    font-size: 0.86rem;
  }

  .np-language-switcher {
    display: block;
  }

  .np-language {
    width: 100%;
    border: 0;
  }

  .np-language-menu {
    position: static;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    box-shadow: none;
  }

  .np-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --np-container: min(100vw - 32px, 1320px);
    --np-wide: min(100vw - 16px, 1560px);
  }

  body {
    font-size: 15px;
  }

  main > section:first-child,
  section.np-page-hero,
  section#home {
    min-height: 440px;
  }

  section#home > div[class*="relative"] {
    text-align: left;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.1rem) !important;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem) !important;
  }

  .np-footer__links {
    grid-template-columns: 1fr;
  }

  .np-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 16px;
  }
}
