:root {
  --ui-radius: 18px;
  --ui-radius-sm: 12px;
  --ui-border: 1px solid rgba(255, 255, 255, 0.08);
  --ui-surface: #1b1c1e;
  --ui-surface-2: #232426;
  --ui-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --ui-glow: 0 0 0 1px rgba(0, 191, 99, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Generalsans Variable", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img,
svg,
video {
  max-width: 100%;
}

.w-background-video > video,
.background-video video {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  max-width: min(140px, 42vw);
  height: auto;
}

.w-container,
.container,
.navbar-container,
.container-hero-v1 {
  max-width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p,
a,
li,
span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.collection-list-wrapper {
  opacity: 1 !important;
}

.paralax-wrap {
  width: 100% !important;
  max-width: 1279px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .cta-v1-image {
    height: 100%;
  }
}

.navbar.v1 {
  z-index: 1000;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease,
    box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background-color: rgba(21, 22, 20, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: #fff;
  color: #151614 !important;
  border-radius: 999px;
  padding: 10px 18px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.is-scrolled .nav-cta,
.nav-cta:hover {
  background: var(--accent-color);
  color: #102016 !important;
  box-shadow: 0 8px 24px rgba(0, 191, 99, 0.28);
}

#about,
#products,
#services,
#process,
#testimonials,
#contact {
  scroll-margin-top: 90px;
}

.navbar-container.v1 {
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .w-nav[data-collapse="all"] .w-nav-menu,
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: flex !important;
  }

  .w-nav[data-collapse="all"] .w-nav-button,
  .w-nav[data-collapse="medium"] .w-nav-button {
    display: none !important;
  }

  .nav-menu.v1 {
    position: static;
    width: auto;
    background: transparent !important;
    padding: 0;
    top: auto;
    right: auto;
    margin: 0;
  }

  .navlink.v1 {
    color: #fff;
    font-size: 15px;
    padding: 8px 12px;
  }

  .navlink.v1:hover {
    color: var(--accent-color);
  }

  .nav-cta {
    margin-left: 4px;
  }
}

.section.hero-v1 .video-cover {
  background: linear-gradient(
    180deg,
    rgba(14, 15, 14, 0.4) 0%,
    rgba(14, 15, 14, 0.15) 42%,
    rgba(14, 15, 14, 0.58) 100%
  );
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  border: 1px solid rgba(0, 191, 99, 0.45);
  background: rgba(0, 191, 99, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.18);
}

.heading-h1 {
  letter-spacing: -0.03em;
  font-weight: 600;
}

.heading-h2,
.heading-h3 {
  letter-spacing: -0.02em;
}

.button-wrap {
  flex-wrap: wrap;
}

.button,
.secondery-button {
  letter-spacing: 0.01em;
  font-weight: 500;
}

.button {
  box-shadow: 0 8px 24px rgba(0, 191, 99, 0.12);
}

.button:hover {
  transform: translateY(-1px);
}

.subtitle-text {
  letter-spacing: 0.08em;
  font-weight: 500;
}

.product-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 191, 99, 0.4);
  box-shadow: var(--ui-shadow);
}

.product-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  flex: 1;
}

.product-card-body .heading-h3 {
  color: var(--white);
}

.product-card-body .paragraph {
  color: rgba(255, 255, 255, 0.72);
}

.product-card-link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-row {
  border-top: 1px solid rgba(173, 232, 126, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 8px;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.service-row:hover {
  background: rgba(0, 191, 99, 0.06);
  box-shadow: inset 16px 16px 60px 0 var(--inner-shadow);
  padding-left: 20px;
  padding-right: 20px;
}

.service-index {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.process-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius);
  min-height: 0;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 99, 0.35);
}

.process-step {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 191, 99, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.why-us-wrap .card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius);
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-us-wrap .card:hover {
  border-color: rgba(0, 191, 99, 0.35);
  transform: translateY(-3px);
}

.feature-wrap.centered {
  background: rgba(21, 22, 20, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 0;
  flex: 1;
}

.price.thin {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.testemonial-card {
  border-radius: var(--ui-radius);
  border: var(--ui-border);
  background: var(--ui-surface);
  padding: 28px 40px 28px 24px;
  position: relative;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.testemonial-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(0, 191, 99, 0.28);
  font-size: 72px;
  line-height: 1;
  font-family: Georgia, serif;
}

.contact-card {
  border-radius: var(--ui-radius);
  border: var(--ui-border);
  min-width: 0;
  max-width: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 99, 0.4);
  background: var(--ui-surface-2);
}

.contact-text {
  word-break: break-word;
}

.footer-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.container.post-hero .blog-post-wrap {
  width: 52%;
  max-width: 640px;
  z-index: 2;
}

.product-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-toc a {
  border: 1px solid rgba(16, 32, 22, 0.18);
  background: rgba(255, 255, 255, 0.28);
  color: var(--bg-color);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}

.product-toc a:hover {
  background: #fff;
  transform: translateY(-1px);
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 110px;
}

.product-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-block:nth-child(even) {
  grid-template-columns: 1.15fr 1fr;
}

.product-block:nth-child(even) .product-block-media {
  order: 2;
}

.export-terms {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 110px;
}

.export-terms .heading-h2 {
  margin-bottom: 20px;
}

.product-block-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}

.product-block-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.product-block-content p {
  opacity: 0.78;
  line-height: 1.6;
}

.product-block-content .heading-h3 {
  margin-top: 20px;
}

.rich-text-wrap .heading-h2 {
  margin: 0 0 20px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 8px;
}

.spec-item {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: 14px;
  padding: 14px 16px;
}

.spec-label {
  display: block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-value {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

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

.feature-list li {
  position: relative;
  padding-left: 22px;
  opacity: 0.85;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 36px;
}

.info-cards.two {
  grid-template-columns: 1fr 1fr;
}

.info-card {
  background: var(--ui-surface);
  border: var(--ui-border);
  border-radius: var(--ui-radius);
  padding: 24px;
  min-height: 160px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}

.info-card p,
.info-card li {
  opacity: 0.78;
}

.info-card-time {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.shipping-note {
  border-left: 3px solid var(--accent-color);
  background: rgba(0, 191, 99, 0.08);
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  margin: 8px 0 40px;
  font-style: italic;
  opacity: 0.9;
  max-width: 820px;
  line-height: 1.6;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 991px) {
  .section.hero-v1 {
    height: auto !important;
    min-height: 100svh;
    overflow: hidden;
  }

  .container-hero-v1 {
    height: auto !important;
    min-height: 100svh;
    padding: 110px 32px 48px !important;
    align-items: flex-end;
  }

  .section.hero-v1 .horizontal-wrap {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .content-wrapper.hero-v1 {
    margin-top: 0;
    width: 100% !important;
  }

  .paragraph-wrap,
  .paragraph-wrap.hero-v1,
  .paragraph-wrap.hero-v2,
  .paragraph-wrap.half-width,
  .content-wrap.narrow,
  .content-wrap.testimonials,
  .why-us-wrap,
  .title-wrap,
  .title-wrap.half-width,
  .title-wrap.centered,
  .rich-text-wrap,
  .horizontal-wrap.tablet-vertical {
    width: 100% !important;
    max-width: 100%;
  }

  .heading-h1 br {
    display: none;
  }

  .container.post-hero {
    min-height: auto;
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }

  .container.post-hero .blog-post-wrap {
    width: 100% !important;
    max-width: none;
    position: relative;
    z-index: 2;
  }

  .post-image-frame {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 28px;
  }

  .post-image-frame .full-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
  }

  .service-row {
    flex-direction: column;
    gap: 12px;
  }

  .service-inner-wrap {
    width: 100%;
  }

  .product-block,
  .product-block:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-block:nth-child(even) .product-block-media {
    order: 0;
  }

  .info-cards,
  .info-cards.two,
  .spec-grid {
    grid-template-columns: 1fr !important;
  }

  .nav-menu,
  .nav-menu.v1,
  .nav-menu.white.v1 {
    width: min(86vw, 340px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 28px 22px 36px !important;
    background: #1b1c1e !important;
    top: 72px !important;
    right: 12px !important;
    left: auto !important;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .navlink.v1,
  .navlink-text {
    color: #fff !important;
    font-size: 17px !important;
    justify-content: flex-start;
    white-space: normal !important;
    width: 100%;
  }

  .nav-cta {
    margin-top: 12px;
    color: #151614 !important;
    width: fit-content;
  }

  body .contact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  body .contact-card {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 auto !important;
  }

  .section.cta-v1 {
    display: flex;
    flex-direction: column;
  }

  .section.cta-v1 .content-wrapper,
  .container.cta-v1 {
    width: 100% !important;
    position: relative;
    z-index: 1;
    padding-bottom: 40px !important;
  }

  .cta-v1-image {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    object-fit: cover;
  }

  .feature-wrapper,
  .feature-wrapper.absolute {
    display: flex !important;
    position: relative !important;
    flex-wrap: wrap;
    inset: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    gap: 12px;
    padding: 12px 0 0 !important;
  }

  .button-rounded {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 8px 16px auto;
    padding: 0;
    width: fit-content !important;
    z-index: 2;
  }

  .paralax-wrap {
    display: flex;
    flex-direction: column;
    height: auto !important;
    overflow: visible !important;
    padding-top: 24px;
  }

  .paralax-image {
    height: auto !important;
    min-height: 180px;
    overflow: visible !important;
    padding: 20px 16px !important;
    background-attachment: scroll, scroll;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .navbar-container,
  .navbar-container.v1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-rounded,
  .round-button,
  .section.cta-v1 .content-wrapper,
  .horizontal-wrap,
  .button-frame,
  .collection-list-wrapper,
  .paralax-wrap {
    transform: none !important;
    opacity: 1 !important;
  }

  .section.cta-v1 {
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  .heading-h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .heading-h1.small {
    font-size: 26px !important;
  }

  .heading-h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .heading-h3,
  .heading-h3.big {
    font-size: 18px !important;
    line-height: 1.35;
  }

  .horizontal-wrap,
  .horizontal-wrap.centered,
  .row {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 16px;
  }

  .spec-grid,
  .service-collection-list,
  .why-us-wrap {
    grid-template-columns: 1fr !important;
    display: grid !important;
    width: 100% !important;
  }

  body .contact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }

  .cta-v1-image {
    height: 220px !important;
  }

  .testimonials-wrap,
  .testimonials-wrap.v2 {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    column-count: 1 !important;
    width: 100% !important;
    height: auto !important;
  }

  .testemonial-card,
  .testemonial-card.v2,
  .testemonial-card-wrap {
    width: 100% !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: anywhere;
  }

  .paralax-wrap {
    height: auto !important;
    min-height: 0;
    overflow: visible !important;
    padding-top: 24px;
  }

  .paralax-image {
    height: auto !important;
    min-height: 160px;
    padding: 16px !important;
    background-attachment: scroll, scroll;
    overflow: visible !important;
  }

  .feature-wrap.centered {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
    padding: 12px 14px;
  }

  .price.thin {
    font-size: 28px !important;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .product-block {
    padding: 36px 0;
    gap: 20px;
  }

  .product-block-media img {
    min-height: 200px;
    max-height: 260px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    max-width: 100%;
  }

  .section.hero-v1,
  .container-hero-v1 {
    min-height: 0;
  }

  .container-hero-v1 {
    padding: 108px 20px 40px !important;
  }

  .container,
  .container.about-v1,
  .container.short,
  .container.testimonials-v1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .round-button {
    width: 88px !important;
    height: 88px !important;
  }

  .round-button-text {
    font-size: 13px;
    line-height: 1.25;
  }

  .button,
  .secondery-button {
    white-space: normal;
    text-align: center;
  }

  .button-wrap {
    flex-wrap: wrap;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .heading-h1 {
    font-size: 26px !important;
  }

  .heading-h1.small {
    font-size: 22px !important;
  }

  .heading-h2 {
    font-size: 22px !important;
  }

  .button,
  .secondery-button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .product-card-body,
  .process-card,
  .contact-card,
  .info-card {
    padding: 18px;
  }

  .subtitle-text {
    font-size: 12px;
  }

  .footer-link-wrap,
  .footer-row.space-between,
  .footer-row,
  .contact-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body .contact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }

  .feature-wrap.centered {
    flex: 1 1 100%;
    width: 100%;
  }

  .container.cta-v1 {
    padding-bottom: 32px !important;
  }

  .cta-v1-image {
    height: 180px !important;
  }

  .navbar-container.v1 {
    padding: 12px 16px;
  }

  .post-image-frame .full-image {
    height: 180px;
  }
}
