@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

* {
  box-sizing: border-box;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #fff;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

button,
input,
optgroup,
select,
a,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1001;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0c291b;
  color: #fff;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.site-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .site-main {
    padding-top: 64px;
  }
}
.site-main--home {
  padding-top: 0;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #32af6d;
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top svg {
  transition: transform 0.3s ease;
}

.main-section {
  padding: 50px 0;
  overflow: hidden;
  background: #fff;
}
.main-section--secondary {
  background-color: #f2fcf5;
}
.main-section__container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.main-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.main-section__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #0c291b;
}
.main-section__subtitle {
  font-size: 1.1rem;
  color: #1e7246;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .cart-page ~ .back-to-top {
    display: none;
  }
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.4s ease;
}
.overlay .banner {
  position: relative;
  width: 100%;
  max-width: 540px;
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-wrap: balance;
  overflow: hidden;
}
.overlay .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #a7d7bc, #238f56);
}
.overlay .banner__header {
  margin-bottom: 25px;
}
.overlay .banner__header .banner__title {
  font-size: 32px;
  font-weight: 800;
  color: #174b31;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.overlay .banner__header .banner__title span {
  color: #238f56;
}
.overlay .banner__body {
  margin-bottom: 40px;
}
.overlay .banner__body .banner__text {
  font-size: 18px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 15px;
}
.overlay .banner__body .banner__text strong {
  color: #111827;
  font-weight: 700;
}
.overlay .banner__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 480px) {
  .overlay .banner__footer {
    flex-direction: row;
  }
}
.overlay .banner__footer .btn {
  flex: 1;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
}
.overlay .banner__footer .btn--primary {
  background-color: #1e7246;
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 42, 30, 0.18);
}
@media (hover: hover) and (pointer: fine) {
  .overlay .banner__footer .btn--primary:hover {
    background: #238f56;
    box-shadow: 0 20px 40px rgba(35, 143, 86, 0.3);
  }
}
.overlay .banner__footer .btn--secondary {
  background-color: rgba(255, 255, 255, 0.8);
  color: #0c291b;
  border: 1px solid rgba(10, 42, 30, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .overlay .banner__footer .btn--secondary:hover {
    background: #f2fcf5;
    box-shadow: 0 20px 40px rgba(35, 143, 86, 0.3);
  }
}

.navbar:not(.is-ready) {
  transition: none !important;
}

.woocommerce .navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .navbar__inner {
    height: 5rem;
  }
}
.navbar__menu {
  display: none;
}
@media (min-width: 768px) {
  .navbar__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.navbar__link {
  font-size: 1rem;
  font-weight: 500;
  color: #637181;
  text-decoration: none;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .navbar__link:hover {
    color: #238f56;
  }
}
.navbar__link.is-active {
  color: #32af6d;
}
.navbar__link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__link-dropdown-icon {
  transition: transform 0.3s ease;
}
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -50%;
  width: 12rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1f8e8;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
.navbar__dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #174b31;
  text-decoration: none;
}
.navbar__dropdown-link.is-active {
  background-color: #f2fcf5;
}
.navbar__dropdown-link:last-child {
  padding-bottom: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .navbar__dropdown-link:hover {
    background-color: #f2fcf5;
    color: #1e7246;
  }
}
.navbar__dropdown-link--bold {
  font-weight: 700;
}
.navbar__divider {
  height: 1px;
  background: #e1f8e8;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar__cart-btn {
  position: relative;
  color: #0c291b;
  display: flex;
  align-items: center;
}
.navbar__cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #32af6d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #174b31;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.navbar__burger span:last-child {
  margin-bottom: 0;
}
.navbar__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (min-width: 768px) {
  .navbar__burger {
    display: none;
  }
}
.navbar__mobile-menu {
  display: block;
  background: #fff;
  width: 100%;
  overflow: auto;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
.navbar__mobile-menu.open {
  max-height: 100vh;
  border-top: 1px solid #e1f8e8;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-group__image {
  height: 2.5rem;
  width: auto;
  transition: all 0.3s;
  filter: hue-rotate(120deg) brightness(0.8) saturate(1.5);
}
@media (min-width: 768px) {
  .logo-group__image {
    height: 3rem;
  }
}
.logo-group__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #174b31;
}

.has-dropdown {
  position: relative;
}
.has-dropdown--open .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  max-height: initial;
  transform: translateY(0);
}
.has-dropdown--open .navbar__link-dropdown-icon {
  transform: rotate(180deg);
}

.navbar__mobile-menu {
  display: block;
  background: #fff;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .navbar__mobile-menu.open {
    display: none;
  }
}
.navbar__mobile-menu.open {
  max-height: calc(100vh - 4rem);
  border-top: 1px solid #e1f8e8;
}
.navbar__mobile-menu .navbar__mobile-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: visible;
}
.navbar__mobile-menu .navbar__mobile-link,
.navbar__mobile-menu .navbar__mobile-sublink {
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navbar__mobile-menu .navbar__mobile-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #0c291b;
}
@media (hover: hover) and (pointer: fine) {
  .navbar__mobile-menu .navbar__mobile-link:hover {
    background-color: #f9fafb;
  }
}
.navbar__mobile-menu .navbar__mobile-title {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #0c291b;
  margin-top: 0.25rem;
}
.navbar__mobile-menu .navbar__mobile-submenu {
  margin-left: 1rem;
  padding-left: 2rem;
  border-left: 2px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.navbar__mobile-menu .navbar__mobile-submenu .navbar__mobile-sublink {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #0c291b;
}
.navbar__mobile-menu .navbar__mobile-submenu .navbar__mobile-sublink:hover {
  color: #238f56;
}
.navbar__mobile-menu .navbar__mobile-link.is-active,
.navbar__mobile-menu .navbar__mobile-sublink.is-active,
.navbar__mobile-menu .navbar__mobile-title.is-active {
  background-color: rgba(50, 175, 109, 0.05);
  border-left: 3px solid #32af6d;
  color: #32af6d;
  padding-left: 17px;
}

.woocommerce img.logo-group__image, .woocommerce-page img.logo-group__image {
  height: 2.5rem;
}
@media (min-width: 768px) {
  .woocommerce img.logo-group__image, .woocommerce-page img.logo-group__image {
    height: 3rem;
  }
}

.site-footer {
  flex-shrink: 0;
  background-color: #133e2b;
  color: #fff;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(227, 237, 232, 0.1);
  font-family: system-ui, -apple-system, sans-serif;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 5rem 0 2rem;
  }
}
.site-footer .footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer__grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }
}
.site-footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.site-footer .footer__logo img {
  height: 3.5rem;
  filter: brightness(0) invert(1);
}
.site-footer .footer__logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}
.site-footer .footer__desc {
  color: #e3ede8;
  opacity: 0.9;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.site-footer .footer__desc--heading {
  padding-top: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}
.site-footer .footer__company-desc {
  margin-bottom: 0;
  line-height: 2;
}
.site-footer .footer__socials {
  display: flex;
  gap: 1rem;
}
.site-footer .footer__contacts {
  font-style: normal;
}
.site-footer .footer__social-link {
  width: 2.75rem;
  height: 2.75rem;
  background: #1c4e38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(227, 237, 232, 0.1);
}
.site-footer .footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}
.site-footer .footer__social-link svg[stroke] {
  fill: none;
  stroke: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer .footer__social-link:hover {
    background: #2c7252;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
}
.site-footer .footer__title {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: 0.1em;
}
.site-footer .footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #e3ede8;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.site-footer .footer__links li {
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer .footer__links li:hover {
    opacity: 1;
  }
}
.site-footer .footer__links a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer .footer__links a:hover {
    color: #fff;
  }
}
.site-footer .footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(227, 237, 232, 0.1);
  text-align: center;
  color: #a5c4b4;
  font-size: 0.8125rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, #fff 0%, #e8f3ee 100%), radial-gradient(circle at 90% 90%, #fff 0%, #dcfce7 100%);
  background-blend-mode: multiply;
  overflow-anchor: none;
}
.hero__leaves-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  perspective: 1500px;
}
.hero__container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  padding: 0 1.5rem;
  text-align: center;
}
.hero__content > * {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  animation: heroContentShow 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.hero__badge {
  display: none;
  padding: 0.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  color: #1c4e38;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation-delay: 0.2s;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
  animation-delay: 0.4s;
}
.hero__title span {
  background: linear-gradient(135deg, #2c7252, #a5c4b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__description {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #133e2b;
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.5;
  animation-delay: 0.6s;
}
.hero__user-actions {
  display: flex;
  flex-direction: column;
  animation-delay: 0.8s;
}
.hero__btn {
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  justify-content: center;
}
.hero__btn--primary {
  background: #1e7246;
  color: #fff;
  margin-bottom: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .hero__btn--primary:hover {
    transform: translateY(-2px);
    background: #2c7252;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
.hero__btn--secondary {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 0;
}
@media (hover: hover) and (pointer: fine) {
  .hero__btn--secondary:hover {
    background: #f2fcf5;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
@media (min-width: 768px) {
  .hero__btn--secondary {
    margin-left: 10px;
  }
}
.hero__leaf-item {
  position: absolute;
  width: 18px;
  height: 18px;
  will-change: transform, opacity;
}
@media (min-width: 768px) {
  .hero__leaf-item {
    width: 32px;
    height: 32px;
  }
}
.hero__leaf-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(20%) sepia(80%) saturate(1200%) hue-rotate(100deg) brightness(0.6);
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
  }
  .hero__badge {
    display: inline-block;
  }
  .hero__user-actions {
    flex-direction: row;
    gap: 1rem;
  }
  .hero__btn--primary {
    margin-bottom: 0;
  }
}

@keyframes heroContentShow {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.pop-cats__header {
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.js-scroll-reveal._is-visible .pop-cats__header {
  opacity: 1;
  transform: translateY(0);
}
.pop-cats__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pop-cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pop-cats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-card {
  display: block;
  text-decoration: none;
  opacity: 0;
}
.js-scroll-reveal._is-visible .cat-card {
  animation: catRevealUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: var(--card-delay);
}
.cat-card__wrapper {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -5px rgba(19, 62, 43, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .cat-card__wrapper:hover {
    box-shadow: 0 25px 50px -12px rgba(19, 62, 43, 0.15);
  }
  .cat-card__wrapper:hover .cat-card__img {
    transform: scale(1.1);
  }
  .cat-card__wrapper:hover .cat-card__overlay {
    opacity: 0.9;
  }
  .cat-card__wrapper:hover .cat-card__icon {
    transform: translateX(6px);
  }
  .cat-card__wrapper:hover .cat-card__name, .cat-card__wrapper:hover .cat-card__link-text {
    color: #fff;
  }
}
.cat-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 62, 43, 0.8) 0%, rgba(19, 62, 43, 0.2) 50%, transparent 100%);
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
}
.cat-card__name {
  color: #e3ede8;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.cat-card__action {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-card__link-text {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a5c4b4;
  transition: color 0.3s ease;
}
.cat-card__icon {
  color: #a5c4b4;
  transition: transform 0.3s ease;
}

@keyframes catRevealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.faq__icon-box {
  width: 64px;
  height: 64px;
  background: #e3ede8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c7252;
  margin: 0 auto 20px;
}
.faq__footer {
  margin-top: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ffffff;
  padding: 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(19, 62, 43, 0.05);
}
.faq__footer p {
  color: #1e7246;
  margin-bottom: 16px;
}
.faq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1e7246;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .faq__btn:hover {
    transform: translateY(-2px);
    background: #2c7252;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
.faq__btn:active {
  background-color: #1e7246;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ffffff;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.faq-item__trigger {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}
.faq-item__trigger:hover {
  background-color: rgba(242, 252, 245, 0.3);
}
.faq-item__question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #133e2b;
  line-height: 1.4;
}
.faq-item__arrow {
  color: #2c7252;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.faq-item__inner {
  overflow: hidden;
}
.faq-item__answer {
  padding: 0 24px 24px;
  color: #1c4e38;
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open {
  border-color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(19, 62, 43, 0.08);
}
.faq-item.open .faq-item__content {
  grid-template-rows: 1fr;
  visibility: visible;
}
.faq-item.open .faq-item__trigger {
  border-bottom: 1px solid #ffffff;
}
.faq-item.open .faq-item__answer {
  opacity: 1;
  padding-top: 8px;
}
.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
}

.testimonials__slider-wrapper {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials__slider-wrapper {
    padding: 0 64px;
  }
}
.testimonials__slider {
  padding: 0 10px !important;
  height: auto;
}
.testimonials__nav-btn {
  display: none;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f2fcf5;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  color: #637181;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__nav-btn:hover {
    color: #2c7252;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.15);
  }
}
.testimonials__nav-btn i, .testimonials__nav-btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}
.testimonials__nav-btn--prev {
  left: 0;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__nav-btn--prev:hover i {
    transform: translateX(-2px);
  }
}
.testimonials__nav-btn--next {
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__nav-btn--next:hover i {
    transform: translateX(2px);
  }
}
.testimonials__pagination {
  position: relative !important;
  margin-top: 48px !important;
  justify-content: center;
  gap: 12px;
  display: none;
}
@media (min-width: 768px) {
  .testimonials__pagination {
    display: flex;
  }
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #e3ede8;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 999px;
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__pagination .swiper-pagination-bullet:hover {
    background: #ffffff;
  }
}
.testimonials__pagination .swiper-pagination-bullet-active {
  width: 40px;
  background: #2c7252 !important;
}
.testimonials__badge-wrapper {
  margin-top: 40px;
  text-align: center;
}
.testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 1px solid #e3ede8;
  box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .testimonials__badge:hover {
    transform: scale(1.05);
  }
}
@media (min-width: 768px) {
  .testimonials__badge {
    padding: 20px 40px;
  }
}
.testimonials__badge-icon {
  background-color: #facc15;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__badge-icon i, .testimonials__badge-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.testimonials__badge-text {
  color: #133e2b;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonials__badge-text {
    font-size: 20px;
  }
}
.testimonials__badge-accent {
  color: #2c7252;
  font-size: 24px;
}
@media (min-width: 768px) {
  .testimonials__badge-accent {
    font-size: 30px;
  }
}

.testimonial-card {
  background: linear-gradient(135deg, #f2fcf5 0%, #ffffff 100%);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid #f2fcf5;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: grab;
}
.testimonial-card:active {
  cursor: grabbing;
}
@media (min-width: 768px) {
  .testimonial-card {
    padding: 48px;
  }
}
.testimonial-card__quote-icon {
  position: absolute;
  top: -16px;
  right: -16px;
  color: #e3ede8;
  opacity: 0.3;
  z-index: 0;
}
.testimonial-card__quote-icon i, .testimonial-card__quote-icon svg {
  width: 120px;
  height: 120px;
}
@media (min-width: 768px) {
  .testimonial-card__quote-icon i, .testimonial-card__quote-icon svg {
    width: 160px;
    height: 160px;
  }
}
.testimonial-card__content {
  position: relative;
  z-index: 1;
}
.testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}
.testimonial-card__star {
  color: #facc15;
  fill: #facc15;
  width: 24px;
  height: 24px;
}
.testimonial-card__text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #111827;
  font-weight: 500;
}
@media (min-width: 768px) {
  .testimonial-card__text {
    font-size: 22px;
  }
}
.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid #f2fcf5;
}
@media (min-width: 480px) {
  .testimonial-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.testimonial-card__user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e3ede8;
  color: #1e7246;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-card__author {
  font-weight: 700;
  color: #111827;
  font-size: 18px;
  display: block;
  font-style: normal;
}
.testimonial-card__location {
  color: #637181;
  font-size: 14px;
  font-weight: 500;
}
.testimonial-card__date {
  align-self: flex-start;
  background: #f2fcf5;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: #1e7246;
  font-weight: 500;
}
@media (min-width: 480px) {
  .testimonial-card__date {
    align-self: center;
  }
}

.shop-page {
  padding: 30px 0;
  background-color: #f2fcf5;
}
@media (min-width: 768px) {
  .shop-page {
    padding: 50px 0;
  }
}
.shop-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.shop-page__header {
  text-align: center;
  margin-bottom: 25px;
}
.shop-page__header .shop-page__title {
  font-size: 3rem;
  font-weight: 700;
  color: #133e2b;
  margin-bottom: 15px;
}
.shop-page__header .shop-page__subtitle {
  color: #1e7246;
  font-size: 1.1rem;
}
.shop-page__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  gap: 20px;
}
@media (max-width: 767px) {
  .shop-page__controls {
    flex-direction: column;
  }
}
.shop-page__categories {
  flex-wrap: wrap;
  gap: 12px;
  display: none;
}
@media (min-width: 768px) {
  .shop-page__categories {
    display: flex;
  }
}
.shop-page__categories .shop-page__category-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: #f5f5f5;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .shop-page__categories .shop-page__category-btn:hover {
    background: #eee;
  }
}
.shop-page__categories .shop-page__category-btn.is-active {
  background: #1e7246;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 128, 96, 0.2);
}
.shop-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .shop-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .shop-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .shop-page__grid {
    grid-template-columns: 1fr;
  }
}
.shop-page__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(23, 75, 49, 0.08);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(23, 75, 49, 0.06);
}
@media (max-width: 767px) {
  .shop-page__meta {
    flex-direction: column;
    align-items: stretch;
  }
}
.shop-page__meta .woocommerce-notices-wrapper {
  display: none !important;
}
.shop-page__meta .woocommerce-result-count {
  margin: 0;
  color: #133e2b;
  font-size: 1.1rem;
  text-align: center;
}
.shop-page__meta .woocommerce-ordering {
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .shop-page__meta .woocommerce-ordering {
    width: auto;
    min-width: 260px;
  }
}
.shop-page__meta .woocommerce-ordering select {
  width: 100%;
  height: 46px;
  padding: 0 48px 0 18px;
  background: #f8fbf9 url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22%23238F56%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E") no-repeat right 16px center;
  background-size: 16px;
  border: 1px solid rgba(35, 143, 86, 0.22);
  border-radius: 100px;
  color: #133e2b;
  font-size: 0.95rem;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (min-width: 767px) {
  .shop-page__meta .woocommerce-ordering select {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .shop-page__meta .woocommerce-ordering select:hover {
    background-color: #ffffff;
    border-color: rgba(35, 143, 86, 0.38);
  }
}
.shop-page__meta .woocommerce-ordering select:focus {
  background-color: #ffffff;
  border-color: #1e7246;
  box-shadow: 0 0 0 4px rgba(35, 143, 86, 0.12);
}

.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    box-shadow: 0 10px 25px rgba(35, 143, 86, 0.4);
  }
  .product-card:hover .product-card__btn {
    background-color: #1e7246;
    color: white;
    box-shadow: 0 15px 30px rgba(35, 143, 86, 0.3);
  }
}
.product-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
}
.product-card__content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: 1rem;
  color: #1e7246;
  margin-bottom: 8px;
}
.product-card__title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #0c291b;
  font-weight: 700;
  line-height: 1.2;
}
.product-card__price {
  font-weight: 700;
  color: #1e7246;
  margin-bottom: 15px;
}
.product-card__price del {
  opacity: 0.5;
  font-weight: 400;
  margin-right: 5px;
  color: #0c291b;
}
.product-card__price ins {
  text-decoration: none;
}
.product-card__btn {
  margin-top: auto;
  display: block;
  padding: 14px;
  background: #f5f5f5;
  border-radius: 100px;
  text-decoration: none;
  color: #0c291b;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-form {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .search-form {
    width: 12rem;
  }
}
.search-form__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.search-form__input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.search-form__input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 1px #32af6d;
}
.search-form__input::placeholder {
  color: #9ca3af;
}

.shop-page__load-more {
  padding-top: 40px;
}
.shop-page__load-more .load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  background-color: #1e7246;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .shop-page__load-more .load-more-btn:hover:not(:disabled) {
    background-color: #2c7252;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
.shop-page__load-more .load-more-btn:active:not(:disabled) {
  transform: translateY(0);
}
.shop-page__load-more .load-more-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
}
.shop-page__load-more .load-more-btn.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.shop-page__load-more .load-more-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.75rem;
  margin-left: -0.75rem;
  border: 2px solid rgba(0, 128, 96, 0.2);
  border-top: 2px solid #e3ede8;
  border-radius: 50%;
  display: block;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.product-page {
  background-color: #f2fcf5;
  padding: 30px 0;
  min-height: 100vh;
}
@media (min-width: 767px) {
  .product-page {
    padding: 60px 0;
  }
}
.product-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.product-single {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.product-single .product-placeholder {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-single .product-placeholder {
    margin-bottom: 0;
  }
}
.product-single .product-placeholder img {
  border-radius: 24px;
}
@media (min-width: 768px) {
  .product-single {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 0;
  }
}
.product-single__desktop-info {
  display: none;
}
@media (min-width: 768px) {
  .product-single__desktop-info {
    display: block;
  }
}
.product-single__mobile-info {
  display: block;
}
@media (min-width: 768px) {
  .product-single__mobile-info {
    display: none;
  }
}
.product-single .product-single__gallery {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .product-single .product-single__gallery {
    margin-bottom: 0;
  }
}
.product-single .product-single__main-image {
  position: relative;
  aspect-ratio: 1/1;
}
.product-single .product-single__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-single .product-single__zoom-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: zoom-in;
}
.product-single .product-single__zoom-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
@media (min-width: 768px) {
  .product-single .product-single__zoom-btn {
    display: flex;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-single .product-single__zoom-btn:hover {
    background-color: #f8faf9;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
}
.product-single .product-single__zoom-btn svg {
  width: 20px;
  height: 20px;
}
.product-single .product-single__main-slider {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.product-single .product-single__main-slider .swiper-slide {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-single .product-single__main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-single .product-single__thumbnails {
  margin-top: 16px;
}
.product-single .product-single__thumbnails .swiper-slide {
  width: auto !important;
  height: 80px;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.product-single .product-single__thumbnails .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-single .product-single__thumbnails .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #1e7246;
  transform: translateY(-2px);
}
.product-single__thumb {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(23, 75, 49, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__thumb.is-active, .product-single__thumb:hover {
    border-color: #1e7246;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35, 143, 86, 0.15);
  }
}
.product-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-single__breadcrumbs {
  font-size: 0.9rem;
  color: #1e7246;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}
.product-single__breadcrumbs a {
  color: #1e7246;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__breadcrumbs a:hover {
    color: #1e7246;
  }
}
.product-single__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c291b;
  margin-bottom: 1rem;
}
.product-single__title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .product-single__title {
    margin-bottom: 12px;
  }
}
.product-single__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e7246;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .product-single__price {
    margin-bottom: 12px;
    font-size: 2rem;
  }
}
.product-single__price ins {
  text-decoration: none;
}
.product-single .variations {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .product-single .variations {
    margin-bottom: 20px;
  }
}
.product-single .variations td, .product-single .variations th {
  padding: 0;
  vertical-align: middle !important;
  border: none;
}
.product-single .variations th {
  text-align: left;
  font-weight: 600;
  color: #0c291b;
  padding-right: 20px;
  width: 120px;
}
.product-single .variations .label label {
  width: 138px;
  margin-bottom: 0;
}
.product-single .variations .reset_variations {
  display: inline-block;
  margin-top: 0;
  font-size: 1rem;
  color: #1e7246;
  text-decoration: underline;
}
.product-single .variations select {
  width: 100%;
  height: 54px;
  padding: 0 40px 0 20px;
  background: #ffffff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20stroke%3D%22%23238F56%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%2F%3E%3C%2Fsvg%3E") no-repeat right 16px center !important;
  border: 1px solid #32af6d;
  border-radius: 100px;
  color: #0c291b !important;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.product-single .variations select:focus {
  border-color: #1e7246;
  box-shadow: 0 0 0 3px rgba(35, 143, 86, 0.1);
}
.product-single .woocommerce-variation-price {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e7246;
}
.product-single__action-group, .product-single .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.product-single__qty-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e3ede8;
  border-radius: 100px;
  height: 56px;
  padding: 0 10px;
  transition: border-color 0.3s;
}
.product-single__qty-wrapper:focus-within {
  border-color: #1e7246;
}
.product-single__qty {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c291b;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product-single__qty::-webkit-outer-spin-button, .product-single__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-single__qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #0c291b;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__qty-btn:hover {
    background: #e3ede8;
    color: #1e7246;
  }
}
.product-single__add-btn, .product-single__var-form .single_add_to_cart_button, .product-single .woocommerce-variation-add-to-cart .button, .product-single .single_add_to_cart_button {
  flex-grow: 1;
  height: 56px;
  background-color: #0c291b;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (hover: hover) and (pointer: fine) {
  .product-single__add-btn:hover, .product-single__var-form .single_add_to_cart_button:hover, .product-single .woocommerce-variation-add-to-cart .button:hover, .product-single .single_add_to_cart_button:hover {
    background-color: #1e7246;
    box-shadow: 0 15px 30px rgba(35, 143, 86, 0.3);
  }
}
.product-single__add-btn svg, .product-single__var-form .single_add_to_cart_button svg, .product-single .woocommerce-variation-add-to-cart .button svg, .product-single .single_add_to_cart_button svg {
  margin-bottom: 2px;
}
.product-single__meta {
  margin-top: 30px;
  border-top: 1px solid rgb(225, 248, 232);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-single__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #637181;
}
.product-single__meta-item svg {
  color: #1e7246;
}
.product-single__meta-item strong {
  color: #0c291b;
  font-weight: 600;
  margin-left: 4px;
}
.product-single__meta-item a {
  color: #0c291b;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__meta-item a:hover {
    color: #1e7246;
  }
}
.product-single__tabs {
  grid-column: 1/-1;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .product-single__tabs {
    margin-top: 40px;
  }
}
.product-single__tabs-nav {
  display: flex;
  gap: 32px;
  border-bottom: 2px solid #e3ede8;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .product-single__tabs-nav {
    margin-bottom: 40px;
  }
}
.product-single__tab-btn {
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #637181;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.product-single__tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1e7246;
  transform: scaleX(0);
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__tab-btn:hover, .product-single__tab-btn.is-active {
    color: #0c291b;
  }
}
.product-single__tab-btn.is-active::after {
  transform: scaleX(1);
}
.product-single__tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.product-single__tab-content.is-active {
  display: block;
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner h2 {
  display: none;
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes {
  width: 100%;
  border-collapse: collapse;
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes tr {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  border-bottom: 1px solid rgba(35, 143, 86, 0.1);
}
@media (min-width: 768px) {
  .product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes tr {
    flex-direction: row;
    align-items: flex-start;
  }
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes th {
  font-weight: 800;
  color: #0c291b;
  font-size: 1.1rem;
  margin-bottom: 10px;
  min-width: 200px;
}
@media (min-width: 768px) {
  .product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes th {
    margin-bottom: 0;
  }
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes td {
  padding: 0;
}
.product-single__tab-content#tab-additional_information .product-single__tab-inner .shop_attributes td p {
  margin: 0;
  line-height: 1.8;
  color: #111827;
  font-size: 1rem;
  word-spacing: 4px;
  text-align: justify;
  display: block;
  background: #f8faf9;
  padding: 15px 20px;
  border-radius: 16px;
  border: 1px solid rgba(35, 143, 86, 0.05);
}
.product-single .woocommerce-product-attributes-item__label {
  border: 0 !important;
}
.product-single .woocommerce-product-attributes-item__value p {
  column-count: 2;
  column-gap: 30px;
}
@media (max-width: 767px) {
  .product-single .woocommerce-product-attributes-item__value p {
    column-count: 1;
  }
}
.product-single__tab-inner {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #111827;
}
.product-single__tab-inner p {
  margin-bottom: 1rem;
}
.product-single__tab-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.product-single__tab-inner h2, .product-single__tab-inner h3 {
  color: #0c291b;
  margin-bottom: 1rem;
  font-weight: 700;
}
.product-single #reviews {
  margin-top: 10px;
}
.product-single #reviews .star-rating {
  display: block;
  font-family: "star";
  font-size: 16px;
  height: 16px;
  line-height: 16px;
  position: relative;
  width: 80px;
  color: #fbbf24;
}
.product-single #reviews .star-rating::before {
  content: "sssss";
  color: #e2e8f0;
  position: absolute;
  top: 0;
  left: 0;
}
.product-single #reviews .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-top: 1.5em;
}
.product-single #reviews .star-rating span::before {
  content: "SSSSS";
  color: #fbbf24;
  position: absolute;
  top: 0;
  left: 0;
}
.product-single__var-form .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}
.product-single__var-form .variations_form {
  position: relative;
}
.product-single__var-form .variations_form .blockUI.blockMsg {
  display: none !important;
}
.product-single__var-form .variations_form .blockUI.blockMsg::before {
  display: none !important;
}
.product-single__var-form .variations_form .blockUI.blockOverlay {
  display: block !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 15px !important;
  inset: 0 !important;
  z-index: 20 !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.4);
  border: none !important;
}
.product-single__var-form .variations_form .blockUI.blockOverlay::before {
  display: none !important;
  content: none !important;
}
.product-single__var-form .variations_form .blockUI.blockOverlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #1e7246;
  border-radius: 50%;
  animation: spin-spiral 0.8s linear infinite;
  z-index: 9999;
}
@keyframes spin-spiral {
  to {
    transform: rotate(360deg);
  }
}
.product-single__var-form .single_add_to_cart_button {
  background-color: #0c291b !important;
  display: none;
  width: auto;
}
.product-single__var-form .single_add_to_cart_button.disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.product-single__var-form .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 100px;
  height: 56px;
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: none;
}
@media (min-width: 768px) {
  .product-single__var-form .quantity {
    width: 136px;
  }
}
.product-single__var-form .quantity .minus,
.product-single__var-form .quantity .plus,
.product-single__var-form .quantity button.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2 !important;
  border-radius: 50% !important;
  border: none !important;
  color: #1e7246;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .product-single__var-form .quantity .minus:hover,
  .product-single__var-form .quantity .plus:hover,
  .product-single__var-form .quantity button.qty-btn:hover {
    background: #e3ede8 !important;
  }
}
.product-single__var-form .quantity input.qty {
  width: 35px;
  border: none !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  color: #1a3020;
  outline: none !important;
  box-shadow: none !important;
  appearance: none;
  -moz-appearance: textfield;
}
.product-single__var-form .quantity input.qty::-webkit-outer-spin-button, .product-single__var-form .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-single__var-form .woocommerce-variation-add-to-cart {
  display: flex !important;
  align-items: center;
  gap: 15px;
  transition: opacity 0.2s ease-in-out;
}
.product-single__var-form .woocommerce-variation-add-to-cart-disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}
.product-single__var-form .reset_variations,
.product-single__var-form .woocommerce-variation-description:empty {
  display: none !important;
}
.product-single__var-form .woocommerce-variation-price span {
  color: #1e7246 !important;
}
.product-single__var-form .woocommerce-variation-price {
  margin: 0 0 12px 0;
}
.product-single__var-form .single_variation_wrap {
  display: flex;
  flex-direction: column;
  min-height: auto;
}
.product-single__var-form .stock.out-of-stock {
  line-height: 14px;
  color: #e53e3e;
  font-weight: 700;
}
.product-single .product-single__rating .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px !important;
  line-height: 1;
}
.product-single .product-single__rating .woocommerce-product-rating .star-rating {
  overflow: hidden;
  position: relative;
  margin: 0;
  height: 1.2em;
  line-height: 1;
  letter-spacing: 0.8px;
  font-size: 1rem;
  width: 5.4em;
  font-family: "star";
  color: #fbbf24;
  display: inline-block;
}
.product-single .product-single__rating .woocommerce-product-rating .star-rating::before {
  content: "sssss";
  color: #95aab8;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
.product-single .product-single__rating .woocommerce-product-rating .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.product-single .product-single__rating .woocommerce-product-rating .star-rating span::before {
  content: "SSSSS";
  top: 0;
  left: 0;
  position: absolute;
  color: #fbbf24;
}
.product-single .product-single__rating .woocommerce-product-rating .woocommerce-review-link {
  font-size: 0.9rem;
  color: #637181;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .product-single .product-single__rating .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #1e7246;
  }
}
.product-single .product-single__rating .woocommerce-product-rating .woocommerce-review-link .count {
  color: #0c291b;
  font-weight: 600;
}

.woocommerce-Tabs-panel--description {
  max-width: 900px;
  line-height: 1.8;
  color: #334155;
  font-size: 1.1rem;
}
.woocommerce-Tabs-panel--description h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.woocommerce-Tabs-panel--description p {
  margin-bottom: 20px;
}
.woocommerce-Tabs-panel--description p:last-child {
  margin-bottom: 0;
}
.woocommerce-Tabs-panel--description ul, .woocommerce-Tabs-panel--description ol {
  margin-bottom: 24px;
  padding-left: 20px;
}
.woocommerce-Tabs-panel--description ul li, .woocommerce-Tabs-panel--description ol li {
  margin-bottom: 12px;
  position: relative;
  list-style: none;
  padding-left: 28px;
}
.woocommerce-Tabs-panel--description blockquote {
  margin: 30px 0;
  padding: 24px 32px;
  background: #e3ede8;
  border-left: 4px solid #1e7246;
  border-radius: 0 24px 24px 0;
  font-style: italic;
  color: #0c291b;
  font-weight: 500;
}
.woocommerce-Tabs-panel--description table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
}
.woocommerce-Tabs-panel--description table tr:nth-child(even) {
  background: #f8fafc;
}
.woocommerce-Tabs-panel--description table tr td, .woocommerce-Tabs-panel--description table tr th {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}
.woocommerce-Tabs-panel--description table tr:last-child td {
  border-bottom: none;
}
.woocommerce-Tabs-panel--description table tr th {
  font-weight: 700;
  color: #0c291b;
  width: 30%;
}
.woocommerce-Tabs-panel--description img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .woocommerce-Tabs-panel--description {
    font-size: 1rem;
  }
  .woocommerce-Tabs-panel--description table {
    display: block;
    overflow-x: auto;
  }
  .woocommerce-Tabs-panel--description table th {
    width: 40%;
  }
}
.woocommerce-Tabs-panel--reviews {
  max-width: 800px;
}
.woocommerce-Tabs-panel--reviews h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 24px;
}

.commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.commentlist li.review {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.commentlist li.review .comment_container {
  display: flex;
  gap: 20px;
}
.commentlist li.review .comment_container img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f1f5f9;
}
.commentlist li.review .comment-text {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px !important;
  border: none !important;
}
.commentlist li.review .comment-text .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  width: 90px;
  font-family: "star";
  color: #fbbf24;
}
.commentlist li.review .comment-text .star-rating::before {
  content: "sssss";
  color: #e2e8f0;
  position: absolute;
  letter-spacing: 1.8px;
  top: 0;
  left: 0;
}
.commentlist li.review .comment-text .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.commentlist li.review .comment-text .star-rating span::before {
  content: "SSSSS";
  top: 0;
  left: 0;
  position: absolute;
  color: #fbbf24;
}
.commentlist li.review .comment-text .meta {
  margin-bottom: 8px;
}
.commentlist li.review .comment-text .meta strong {
  font-weight: 700;
  color: #0c291b;
}
.commentlist li.review .comment-text .meta time {
  color: #637181;
  font-size: 0.9rem;
  margin-left: 10px;
}
.commentlist li.review .comment-text .description {
  line-height: 1.6;
  color: #334155;
}

#review_form_wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(23, 75, 49, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
#review_form_wrapper #respond p {
  margin: 0 0 5px !important;
}
#review_form_wrapper .comment-reply-title {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
#review_form_wrapper .comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#review_form_wrapper .comment-form-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review_form_wrapper .comment-form-rating label {
  margin: 0 !important;
  font-weight: 700;
  color: #0c291b;
}
#review_form_wrapper .comment-form-rating .stars span {
  display: flex;
  flex-direction: row-reverse;
}
#review_form_wrapper .comment-form-rating .stars span a {
  color: #e2e8f0;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.2s ease;
}
#review_form_wrapper .comment-form-rating .stars span a::before {
  content: "★";
}
@media (hover: hover) and (pointer: fine) {
  #review_form_wrapper .comment-form-rating .stars span a:hover, #review_form_wrapper .comment-form-rating .stars span a:hover ~ a, #review_form_wrapper .comment-form-rating .stars span a.active, #review_form_wrapper .comment-form-rating .stars span a.active ~ a {
    color: #fbbf24 !important;
  }
}
#review_form_wrapper .comment-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(35, 143, 86, 0.2);
  background: #fcfdfc;
  font-size: 1rem;
  transition: all 0.3s;
}
#review_form_wrapper .comment-form textarea:focus {
  outline: none;
  border-color: #32af6d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 143, 86, 0.08);
}
#review_form_wrapper .comment-form .comment-form-author,
#review_form_wrapper .comment-form .comment-form-email {
  margin-bottom: 20px;
}
#review_form_wrapper .comment-form .comment-form-author label,
#review_form_wrapper .comment-form .comment-form-email label {
  margin-right: 12px;
}
#review_form_wrapper .comment-form .comment-form-author input,
#review_form_wrapper .comment-form .comment-form-email input {
  width: 100%;
  max-width: 400px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(35, 143, 86, 0.2);
  background: #fcfdfc;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#review_form_wrapper .comment-form .comment-form-author input:focus,
#review_form_wrapper .comment-form .comment-form-email input:focus {
  outline: none;
  border-color: #32af6d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 143, 86, 0.08);
}
#review_form_wrapper .comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 12px;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 30px;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #f1f8f4;
  border: 1px solid rgba(35, 143, 86, 0.2);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: -1px;
  transition: all 0.2s ease;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent input[type=checkbox]:checked {
  background-color: #1e7246;
  border-color: #1e7246;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent input[type=checkbox]:focus {
  outline: none;
}
#review_form_wrapper .comment-form .comment-form-cookies-consent label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #637181;
  cursor: pointer;
  margin: 0 !important;
  user-select: none;
}
#review_form_wrapper .comment-form .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1e7246 !important;
  color: #ffffff !important;
  padding: 14px 40px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  #review_form_wrapper .comment-form .form-submit .submit:hover {
    background-color: #2c7252 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 143, 86, 0.2);
  }
}

@media (max-width: 640px) {
  #review_form_wrapper {
    padding: 20px;
  }
  #review_form_wrapper .submit {
    width: 100%;
  }
  .commentlist li.review .comment_container {
    flex-direction: column;
  }
  .commentlist li.review .comment_container img.avatar {
    width: 40px;
    height: 40px;
  }
}
.fancybox__container {
  --fancybox-bg: rgba(240, 253, 244, 0.95);
  --fancybox-color: #1a1a1a;
}
.fancybox__container .fancybox__toolbar {
  padding: 20px;
}
.fancybox__container .fancybox__button--close {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fancybox__container .fancybox__caption {
  display: none;
}

.product-related {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(35, 143, 86, 0.14);
}
.product-related__header {
  margin-bottom: 32px;
}
.product-related__title {
  margin-bottom: 10px;
  color: #111827;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
}
.product-related__subtitle {
  margin: 0;
  color: #637181;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .product-related {
    margin-top: 56px;
    padding-top: 24px;
  }
  .product-related__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .product-related__subtitle {
    max-width: none;
    text-align: left;
  }
}
.cart-page {
  background-color: #f2fcf5;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .cart-page {
    min-height: calc(100vh - 80px);
  }
}
.cart-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cart-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 30px;
}
.cart-page__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 1024px) {
  .cart-page__content {
    grid-template-columns: 2fr 1fr;
  }
}
.cart-page__empty {
  padding: 40px;
  color: #0c291b;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 24px;
  background-color: #ffffff;
}
.cart-page__empty .cart-page__title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cart-page__empty .cart-page__title {
    font-size: 1.75rem;
  }
}
.cart-page__cart-empty-icon {
  height: 80px;
  display: block;
  margin: 0 auto;
  width: 80px;
}
@media (max-width: 768px) {
  .cart-page__cart-empty-icon {
    width: 60px;
    height: 60px;
  }
}
.cart-page__empty-text {
  margin-bottom: 1.3rem;
}
@media (max-width: 768px) {
  .cart-page__empty-text {
    font-size: 0.9rem;
  }
}
.cart-page__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #133e2b;
  color: #ffffff;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 20px rgba(19, 62, 43, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .cart-page__empty-link:hover {
    background-color: #1e7246;
    box-shadow: 0 12px 25px rgba(30, 114, 70, 0.3);
    color: #ffffff;
  }
}
.cart-page__empty-link:active {
  box-shadow: 0 5px 10px rgba(30, 114, 70, 0.2);
}
@media (max-width: 768px) {
  .cart-page__empty-link {
    font-size: 15px;
    padding: 16px 20px;
  }
}

.cart-item {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 24px;
  margin-bottom: 16px;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .cart-item {
    flex-direction: row;
  }
}
.cart-item:last-child {
  margin-bottom: 0;
}
.cart-item__image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .cart-item__image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  flex-grow: 1;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .cart-item__info {
    margin-bottom: 0;
  }
}
.cart-item__name {
  font-weight: 700;
  color: #0c291b;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .cart-item__name {
    font-size: 1.1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cart-item__name:hover {
    color: #1e7246;
  }
}
.cart-item__price {
  color: #1e7246;
}
.cart-item__stock {
  margin-top: 6px;
  font-size: 0.9rem;
}
.cart-item__stock .stock {
  margin: 0;
  font-weight: 600;
}
.cart-item__stock .in-stock {
  color: #958e09;
}
.cart-item__stock .out-of-stock {
  color: #e53e3e;
}
.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (min-width: 640px) {
  .cart-item__actions {
    justify-content: flex-end;
  }
}
.cart-item__remove {
  color: #e53e3e;
  font-size: 0.85rem;
  cursor: pointer;
}
@media (max-width: 639px) {
  .cart-item__remove {
    position: absolute;
    top: 24px;
    right: 24px;
  }
}

.cart-totals {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  padding: 16px 20px;
  border-radius: 24px 24px 0 0;
  z-index: 49;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.cart-totals__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .cart-totals__mobile-header {
    display: none;
  }
}
.cart-totals__mobile-info {
  display: flex;
  flex-direction: column;
}
.cart-totals__mobile-info .cart-totals__mobile-label {
  font-size: 0.8rem;
  color: #637181;
}
.cart-totals__mobile-info strong {
  font-size: 1.2rem;
  color: #0c291b;
}
.cart-totals__mobile-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #0c291b;
}
.cart-totals__mobile-toggle svg {
  transition: transform 0.3s;
}
.cart-totals__expandable-content {
  display: none;
}
@media (min-width: 1024px) {
  .cart-totals__expandable-content {
    display: block;
  }
}
.cart-totals.is-open .cart-totals__expandable-content {
  display: block;
}
.cart-totals.is-open .cart-totals__mobile-toggle svg {
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .cart-totals {
    position: sticky;
    top: 110px;
    width: auto;
    border-radius: 32px;
    padding: 30px;
    margin-bottom: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
}
.cart-totals__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #637181;
}
.cart-totals__total {
  border-top: 2px solid #e3ede8;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0c291b;
}
.cart-totals__btn, .cart-totals__update-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  background: #0c291b;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .cart-totals__btn:hover, .cart-totals__update-btn:hover {
    background: #1e7246;
  }
}
.cart-totals__update-btn {
  background: #ffffff;
  color: #0c291b;
  border: 1px solid #0c291b;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .cart-totals__update-btn:hover {
    background: #e3ede8;
  }
}

.quantity-controls {
  display: flex;
  align-items: center;
  background: #f8faf9;
  border-radius: 100px;
  padding: 4px;
}
.quantity-controls__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .quantity-controls__btn:hover {
    background: #e3ede8;
  }
}
.quantity-controls__input {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
  -moz-appearance: textfield;
}
.quantity-controls__input::-webkit-outer-spin-button, .quantity-controls__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-controls__input:focus {
  outline: none;
}

.mini-cart {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  transition: visibility 0.4s;
}
.mini-cart--open {
  visibility: visible;
}
.mini-cart--open .mini-cart__overlay {
  opacity: 1;
}
.mini-cart--open .mini-cart__content {
  transform: translateX(0);
}
.mini-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}
.mini-cart__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
@media (max-width: 767px) {
  .mini-cart__content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .mini-cart__content {
    padding: 20px;
  }
}
.mini-cart__header {
  flex-shrink: 0;
  position: relative;
  margin-bottom: 30px;
}
.mini-cart__title {
  font-size: 32px;
  font-weight: 700;
  color: #0c291b;
  margin: 0;
}
.mini-cart__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 3px;
  color: #0c291b;
  transition: transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .mini-cart__close:hover {
    transform: scale(1.1);
  }
}
.mini-cart__body {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  margin-right: -10px;
  padding-right: 10px;
}
.mini-cart__body::-webkit-scrollbar {
  width: 4px;
}
.mini-cart__body::-webkit-scrollbar-thumb {
  background: #1e7246;
  border-radius: 10px;
}
.mini-cart__footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #1e7246;
  background: #fff;
}
.mini-cart__subtotal {
  margin-bottom: 20px;
  text-align: center;
}
.mini-cart__subtotal span {
  display: block;
  color: #0c291b;
  font-size: 16px;
  margin-bottom: 8px;
}
.mini-cart__subtotal strong {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #0c291b;
}
.mini-cart .woocommerce-Price-amount {
  margin-bottom: 0;
  color: #0c291b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-cart .woocommerce-Price-amount bdi {
  margin-bottom: 0;
  display: flex;
}
.mini-cart .woocommerce-Price-amount bdi span {
  margin-bottom: 0;
}
.mini-cart__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-cart__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
  color: #133e2b;
  font-size: 16px;
}
.mini-cart__empty svg {
  color: #0c291b;
}

.btn {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--primary {
  background: #0c291b;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    opacity: 0.9;
  }
}
.btn--outline {
  border: 1px solid #1e7246;
  color: #0c291b;
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background: #e3ede8;
  }
}

.mini-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e7246;
  position: relative;
}
.mini-cart-item__img img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.mini-cart-item__info {
  flex: 1;
  padding-right: 25px;
}
.mini-cart-item__name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0c291b;
  line-height: 1.4;
  margin-bottom: 8px;
}
.mini-cart-item__meta {
  font-size: 15px;
  color: #666;
}
.mini-cart-item__meta-text {
  margin-right: -17px;
  display: flex;
  justify-content: space-between;
}
.mini-cart-item__remove {
  position: absolute;
  top: -2;
  right: 2px;
  height: 20px;
  width: 20px;
  font-size: 24px;
  line-height: 1;
  color: #ccc;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .mini-cart-item__remove:hover {
    color: #0c291b;
  }
}

.checkout-page {
  background-color: #e3ede8;
  padding: 40px 0;
  min-height: 100vh;
}
.checkout-page__form .variations_form .blockUI.blockOverlay,
.checkout-page__form .variations_form .blockUI.blockMsg {
  display: none !important;
}
.checkout-page__form .variations_form .blockUI.blockOverlay::before,
.checkout-page__form .variations_form .blockUI.blockMsg::before {
  display: none !important;
}
.checkout-page__form .blockUI.blockOverlay {
  display: block !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 15px !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.4);
  border: none !important;
}
.checkout-page__form .blockUI.blockOverlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #1e7246;
  border-radius: 50%;
  animation: spin-spiral 0.8s linear infinite;
  z-index: 9999;
}
@keyframes spin-spiral {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .checkout-page {
    padding: 60px 0;
  }
}
.checkout-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.checkout-page__title {
  font-size: 36px;
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 40px;
}
.checkout-page__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .checkout-page__grid {
    grid-template-columns: 1fr;
  }
}

.checkout-section {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.checkout-section:last-child {
  display: none;
}
.checkout-section:nth-last-child(2) {
  margin-bottom: 0;
}
.checkout-section h3 {
  color: #0c291b;
  margin-bottom: 15px;
}
.checkout-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #0c291b;
  margin-bottom: 25px;
  border-bottom: 1px solid #32af6d;
  padding-bottom: 15px;
}
.checkout-section .form-row {
  margin-bottom: 20px;
}
.checkout-section .form-row label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.checkout-section .form-row input, .checkout-section .form-row select, .checkout-section .form-row textarea {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #32af6d;
  padding: 0 15px;
  background: #ffffff;
  transition: border-color 0.3s;
}
.checkout-section .form-row input:focus, .checkout-section .form-row select:focus, .checkout-section .form-row textarea:focus {
  border-color: #0c291b;
  outline: none;
}
.checkout-section .form-row textarea {
  height: 100px;
  padding: 15px;
}

.zen-ui-select__value {
  background-color: #ffffff !important;
  border: 1px solid #32af6d !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 15px !important;
  color: #0c291b !important;
  transition: border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}
.zen-ui-select__value.disabled {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.zen-ui-select__value svg {
  display: none;
}
.zen-ui-select__value::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSJub25lIiBzdHJva2U9IiMzMkFGNkQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSIvPjwvc3ZnPg==");
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.zen-ui-select--opened .zen-ui-select__value {
  border-color: #003d2b !important;
}
.zen-ui-select--opened .zen-ui-select__value::after {
  transform: translateY(-50%) rotate(180deg);
}
.zen-ui-select__dropdown-container {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
.zen-ui-select__dropdown {
  background: #ffffff !important;
  width: calc(100% + 2px) !important;
  border: 1px solid #eef1f0 !important;
  padding: 0 !important;
  margin-left: -1px;
  margin-right: -1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
.zen-ui-select__options {
  border-color: #32af6d !important;
  border-top: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
.zen-ui-select__search {
  border-top: 0;
  border-color: #32af6d !important;
}
.zen-ui-select__search input {
  outline: none;
  padding: 0 12px !important;
  font-size: 14px !important;
  color: #0c291b !important;
  border-color: transparent !important;
}
.zen-ui-select__option {
  padding: 12px 20px !important;
  font-size: 15px !important;
  color: #0b2318 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent !important;
}
@media (hover: hover) and (pointer: fine) {
  .zen-ui-select__option:hover, .zen-ui-select__option--highlighted, .zen-ui-select__option--focused {
    background-color: #e3ede8 !important;
    color: #0b2318 !important;
  }
}
.zen-ui-select__option--selected {
  background-color: #0b2318 !important;
  color: #ffffff !important;
}

.order-review {
  background: #0c291b;
  color: #ffffff;
  padding: 35px;
  padding-bottom: 5px;
  border-radius: 24px;
  position: sticky;
  top: 100px;
}
@media (min-width: 767px) {
  .order-review {
    padding: 35px;
  }
}
.order-review__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.order-review .shop_table {
  width: 100%;
  border-collapse: collapse;
  font-weight: 400;
}
.order-review .shop_table tr td, .order-review .shop_table tr th {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.order-review .shop_table .product-name {
  font-size: 15px;
  text-align: left;
  opacity: 0.9;
}
.order-review .shop_table .product-total {
  text-align: right;
}
.order-review .shop_table .cart-subtotal th {
  text-align: left;
}
.order-review .shop_table .cart-subtotal td {
  text-align: right;
}
.order-review .shop_table .order-total th, .order-review .shop_table .order-total td {
  border-bottom: none;
  padding-bottom: 25px;
}
.order-review .shop_table .order-total th {
  font-size: 24px;
  text-align: left;
}
.order-review .shop_table .order-total td {
  text-align: right;
}
.order-review .shop_table .order-total span {
  font-size: 24px;
  text-align: right;
}
.order-review .shop_table .woocommerce-shipping-totals th {
  text-align: left;
}
.order-review .shop_table .woocommerce-shipping-totals td {
  text-align: right;
}
.order-review #place_order {
  width: 100%;
  height: 60px;
  background: #ffffff;
  color: #0c291b;
  border: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .order-review #place_order:hover {
    background: #e3ede8;
  }
}

.woocommerce-form__label-for-checkbox[data-automation-id=woo-commerce-subscription-opt-in],
.woocommerce-form-coupon-toggle {
  display: none !important;
}

.wc_payment_methods li {
  display: flex !important;
  align-items: flex-start !important;
  flex-wrap: wrap;
  margin-bottom: 10px !important;
}
.wc_payment_methods li label {
  cursor: pointer !important;
}
.wc_payment_methods li {
  cursor: pointer !important;
}
.wc_payment_methods li:last-child {
  margin-bottom: 0 !important;
}

.wc_payment_methods li input[type=radio] {
  margin-top: 0 !important;
  flex-shrink: 0;
}

.wc_payment_methods li label {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
  line-height: 1.4;
}

.wc_payment_methods li .payment_box {
  width: 100%;
}

.woocommerce-form__label-for-checkbox,
.cr-customer-consent,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  display: flex !important;
  align-items: flex-start !important;
  line-height: 24px;
  font-size: 15px;
  font-weight: 300;
  color: #0c291b;
  cursor: pointer;
  margin-bottom: 15px;
}
.woocommerce-form__label-for-checkbox span,
.woocommerce-form__label-for-checkbox .woocommerce-terms-and-conditions-checkbox-text,
.cr-customer-consent span,
.cr-customer-consent .woocommerce-terms-and-conditions-checkbox-text,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label span,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text {
  font-weight: 300;
  line-height: 20px;
}
.woocommerce-form__label-for-checkbox span .woocommerce-checkout-payment p,
.woocommerce-form__label-for-checkbox .woocommerce-terms-and-conditions-checkbox-text .woocommerce-checkout-payment p,
.cr-customer-consent span .woocommerce-checkout-payment p,
.cr-customer-consent .woocommerce-terms-and-conditions-checkbox-text .woocommerce-checkout-payment p,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label span .woocommerce-checkout-payment p,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label .woocommerce-terms-and-conditions-checkbox-text .woocommerce-checkout-payment p {
  color: #e3ede8 !important;
  background-color: #ffffff;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  font-size: 14px;
}

.input-checkbox,
.cr-customer-consent-checkbox,
.cr-customer-consent input[type=checkbox],
input[type=checkbox].input-checkbox {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #eef1f0 !important;
  border-radius: 4px !important;
  margin: 0 12px 0 0 !important;
  position: relative !important;
  cursor: pointer;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.input-checkbox:checked,
.cr-customer-consent-checkbox:checked,
.cr-customer-consent input[type=checkbox]:checked,
input[type=checkbox].input-checkbox:checked {
  background-color: #1e7246 !important;
  border-color: #1e7246 !important;
}
.input-checkbox:checked::after,
.cr-customer-consent-checkbox:checked::after,
.cr-customer-consent input[type=checkbox]:checked::after,
input[type=checkbox].input-checkbox:checked::after {
  content: "" !important;
  position: absolute;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 3px;
  left: 2px;
}

.input-radio,
input[type=radio].input-radio {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #eef1f0 !important;
  border-radius: 50% !important;
  margin: 4px 12px 0 0 !important;
  position: relative !important;
  cursor: pointer;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.input-radio:checked,
input[type=radio].input-radio:checked {
  background-color: #1e7246 !important;
  border-color: #1e7246 !important;
}
.input-radio:checked::after,
input[type=radio].input-radio:checked::after {
  content: "" !important;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff !important;
  border-radius: 50% !important;
  border: none !important;
  transform: none !important;
}

.woocommerce-privacy-policy-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 25px;
}
.woocommerce-privacy-policy-text p {
  margin: 0;
}
.woocommerce-privacy-policy-text a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce-privacy-policy-text a:hover {
    opacity: 1;
  }
}

.order-review {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.order-review::-webkit-scrollbar {
  width: 4px;
}
.order-review::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.order-review tr.woocommerce-shipping-totals,
.order-review tr.shipping {
  display: table-row !important;
  height: 54px;
}
.order-review tr.woocommerce-shipping-totals td,
.order-review .woocommerce-shipping-totals th {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  line-height: 1.5 !important;
}
.order-review .woocommerce-checkout-review-order-table {
  transition: height 0.2s ease-in-out;
}
.order-review .woocommerce-checkout-review-order .blockOverlay {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(4px) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
.order-review .woocommerce-checkout-review-order .blockUI.blockOverlay {
  background: transparent !important;
}
.order-review .woocommerce-checkout-review-order .blockUI.blockOverlay::after {
  display: none !important;
}

#order_comments_field textarea {
  background: #fff;
  border: 1.5px solid #eef1f0;
  border-radius: 15px;
  min-height: 120px;
  padding: 15px 20px;
}
#order_comments_field textarea:focus {
  border-color: #0c291b;
}

#order_comments_field textarea {
  border: 1px solid #32af6d !important;
}

.cr-customer-consent,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  font-size: 14px;
  line-height: 20px;
}
.cr-customer-consent span, .cr-customer-consent a,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label span,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label a {
  font-weight: 300;
  color: #e3ede8;
}
.cr-customer-consent a,
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label a {
  color: #94e0b3;
}

.woocommerce-checkout-payment {
  background-color: #0c291b !important;
}

.checkout-inline-error-message {
  color: #e74c3c !important;
  margin-top: 8px;
  font-size: 14px !important;
}
.checkout-inline-error-message#terms_description {
  margin-bottom: 15px;
}

.thwcfd-field-wrapper.thwcfd-field-textarea {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .thwcfd-field-text {
    float: none !important;
    width: 100% !important;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 96px;
  min-height: calc(100vh - 80px);
  background: radial-gradient(circle at top, rgba(88, 164, 120, 0.18), transparent 34%), linear-gradient(180deg, #f6fbf7 0%, #edf6ef 100%);
}
.error-page__container {
  max-width: 760px;
  text-align: center;
}
.error-page__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e7246;
}
.error-page__title {
  margin: 0;
  font-size: clamp(88px, 16vw, 180px);
  line-height: 0.92;
  color: #0c291b;
}
.error-page__text {
  max-width: 520px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: #1e7246;
}
.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.error-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.error-page__button--primary {
  background-color: #1e7246;
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 42, 30, 0.18);
}
@media (hover: hover) and (pointer: fine) {
  .error-page__button--primary:hover {
    background: #2c7252;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
.error-page__button--secondary {
  background-color: rgba(255, 255, 255, 0.8);
  color: #0c291b;
  border: 1px solid rgba(10, 42, 30, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .error-page__button--secondary:hover {
    background: #f2fcf5;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
@media (max-width: 767px) {
  .error-page {
    min-height: calc(100vh - 64px);
    padding: 40px 24px;
  }
  .error-page__text {
    font-size: 18px;
  }
  .error-page__button {
    width: 100%;
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  outline: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 30px;
  margin: 0 0 30px 0;
  background: #fff5f5;
  position: relative;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  list-style: none !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNFNzRDM0NGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PGxpbmUgeDE9IjEyIiB4Mj0iMTIiIHkxPSI4IiB5Mj0iMTIiLz48bGluZSB4MT0iMTIiIHgyPSIxMi4wMSIgeTE9IjE2IiB5Mj0iMTYiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.woocommerce-message .button.wc-forward,
.woocommerce-message .restore-item,
.woocommerce-message .button,
.woocommerce-info .button.wc-forward,
.woocommerce-info .restore-item,
.woocommerce-info .button,
.woocommerce-error .button.wc-forward,
.woocommerce-error .restore-item,
.woocommerce-error .button {
  background-color: #111827 !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  display: inline-flex !important;
  align-items: center;
  margin-left: 10px;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce-message .button.wc-forward:hover,
  .woocommerce-message .restore-item:hover,
  .woocommerce-message .button:hover,
  .woocommerce-info .button.wc-forward:hover,
  .woocommerce-info .restore-item:hover,
  .woocommerce-info .button:hover,
  .woocommerce-error .button.wc-forward:hover,
  .woocommerce-error .restore-item:hover,
  .woocommerce-error .button:hover {
    background-color: rgb(24.7410714286, 34.9285714286, 56.7589285714) !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.3);
  }
}
.woocommerce-message .button.wc-forward:active,
.woocommerce-message .restore-item:active,
.woocommerce-message .button:active,
.woocommerce-info .button.wc-forward:active,
.woocommerce-info .restore-item:active,
.woocommerce-info .button:active,
.woocommerce-error .button.wc-forward:active,
.woocommerce-error .restore-item:active,
.woocommerce-error .button:active {
  box-shadow: 0 2px 5px rgba(17, 24, 39, 0.2);
}
.woocommerce-message .restore-item,
.woocommerce-info .restore-item,
.woocommerce-error .restore-item {
  background-color: #1e7246 !important;
  box-shadow: 0 4px 10px rgba(30, 114, 70, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce-message .restore-item:hover,
  .woocommerce-info .restore-item:hover,
  .woocommerce-error .restore-item:hover {
    background-color: rgb(35.3125, 134.1875, 82.3958333333) !important;
    box-shadow: 0 8px 18px rgba(30, 114, 70, 0.3);
  }
}
.woocommerce-message .restore-item:active,
.woocommerce-info .restore-item:active,
.woocommerce-error .restore-item:active {
  box-shadow: 0 2px 5px rgba(30, 114, 70, 0.2);
}
.woocommerce-message li,
.woocommerce-info li,
.woocommerce-error li {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 35px !important;
  color: #e74c3c;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.woocommerce-message li[data-id=terms] a,
.woocommerce-info li[data-id=terms] a,
.woocommerce-error li[data-id=terms] a {
  color: #e74c3c;
}
.woocommerce-message li[data-id=billing_phone], .woocommerce-message li[data-id=billing_last_name], .woocommerce-message li[data-id=billing_first_name], .woocommerce-message li[data-id=billing_email],
.woocommerce-info li[data-id=billing_phone],
.woocommerce-info li[data-id=billing_last_name],
.woocommerce-info li[data-id=billing_first_name],
.woocommerce-info li[data-id=billing_email],
.woocommerce-error li[data-id=billing_phone],
.woocommerce-error li[data-id=billing_last_name],
.woocommerce-error li[data-id=billing_first_name],
.woocommerce-error li[data-id=billing_email] {
  display: none !important;
}
.woocommerce-message li strong, .woocommerce-message li b,
.woocommerce-info li strong,
.woocommerce-info li b,
.woocommerce-error li strong,
.woocommerce-error li b {
  color: #e74c3c;
  font-weight: 600;
}
.woocommerce-message li:not(:last-child),
.woocommerce-info li:not(:last-child),
.woocommerce-error li:not(:last-child) {
  padding-right: 25px !important;
}
.woocommerce-message li:not(:last-child)::after,
.woocommerce-info li:not(:last-child)::after,
.woocommerce-error li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 12px;
  top: 50%;
  translate: -50%;
}

.woocommerce-NoticeGroup-checkout {
  width: 100%;
}

.woocommerce-message {
  border: 1px solid #32af6d;
  background: #ffffff;
  padding-left: 60px;
  color: #1e7246;
}
.woocommerce-message::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMzMkFGNkRGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0ibTkgMTIgMiAyIDQtNCIvPjwvc3ZnPg==");
}

.woocommerce-info {
  background: #F9F5E8;
  border: 1px solid #E6D5B8;
  color: #AF8B35;
  padding-left: 60px;
}
.woocommerce-info::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNBRjhCMzUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iaHVjaWRlIGx1Y2lkZS1pbmZvLWljb24gbHVjaWRlLWluZm8iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0iTTEyIDE2di00Ii8+PHBhdGggZD0iTTEyIDhoLjAxIi8+PC9zdmc+");
}

@media screen and (max-width: 768px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    display: grid !important;
    grid-template-columns: 48px 1fr;
    grid-template-areas: "icon text" "button button";
    padding: 24px 20px !important;
    column-gap: 20px !important;
    row-gap: 0 !important;
    border-radius: 20px !important;
    align-items: center !important;
    position: relative !important;
  }
  .woocommerce-message::before,
  .woocommerce-error::before,
  .woocommerce-info::before {
    grid-area: icon;
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-position: center !important;
  }
  .woocommerce-message li,
  .woocommerce-error li,
  .woocommerce-info li {
    grid-area: text;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    color: #e74c3c;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }
  .woocommerce-message li::after,
  .woocommerce-error li::after,
  .woocommerce-info li::after {
    display: none !important;
  }
  .woocommerce-message li strong, .woocommerce-message li b,
  .woocommerce-error li strong,
  .woocommerce-error li b,
  .woocommerce-info li strong,
  .woocommerce-info li b {
    color: #e74c3c;
    font-weight: 600;
  }
  .woocommerce-message .button,
  .woocommerce-message .restore-item,
  .woocommerce-error .button {
    grid-area: button;
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px 0 0 0 !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    order: 2;
  }
}
.contacts-page {
  padding: 40px 0;
  background: #f2fcf5;
}
.contacts-page__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contacts-page__header {
  text-align: center;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
.contacts-page__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #0c291b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contacts-page__subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #2c7252;
  margin-bottom: 15px;
}
.contacts-page__description {
  font-size: 16px;
  line-height: 1.6;
  color: #1e7246;
  text-wrap: balance;
}
.contacts-page__qr-wrapper {
  padding: 60px 20px 40px 20px;
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 143, 86, 0.12);
  border-radius: 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.contacts-page__qr-wrapper .logo-badge__logo-wrapper {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}
@media (max-width: 720px) {
  .contacts-page__qr-wrapper {
    max-width: 320px;
    grid-template-columns: 1fr;
    margin: 0 auto 40px auto;
  }
}
.contacts-page__qr-item {
  height: auto;
  width: 100%;
}
.contacts-page__qr-link {
  color: #1e7246;
  text-decoration: none;
  text-align: center;
  display: block;
}
.contacts-page__qr-image {
  max-width: 200px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .contacts-page__qr-image {
    max-width: 300px;
  }
}
.contacts-page__qr-text {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contacts-page__qr-text {
    font-size: 25px;
  }
}
.contacts-page__maps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 767px) {
  .contacts-page__maps {
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
}
.contacts-page__maps {
  margin-bottom: 40px;
}
.contacts-page__map-card {
  padding: 22px;
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 143, 86, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(12, 41, 27, 0.08);
}
.contacts-page__map-header {
  margin-bottom: 18px;
}
.contacts-page__map-title {
  margin: 0 0 8px;
  color: #0c291b;
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 767px) {
  .contacts-page__map-title {
    font-size: 24px;
  }
}
.contacts-page__map-text {
  font-size: 16px;
  line-height: 1.6;
  color: #32af6d;
}
.contacts-page__map-text b {
  color: #1e7246;
}
.contacts-page__map-text a {
  color: #32af6d;
  text-decoration: none;
}
@media (min-width: 767px) {
  .contacts-page__map-text {
    font-size: 18px;
  }
}
.contacts-page__map-wrapper {
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(35, 143, 86, 0.14);
  box-shadow: 0 10px 30px rgba(12, 41, 27, 0.08);
  mask-image: radial-gradient(white, black);
}
.contacts-page__map-wrapper .kapteka-custom-marker {
  background: none;
  border: none;
}
.contacts-page__map-wrapper .kapteka-custom-marker .marker-inner {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: 2px solid #1e7246;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.contacts-page__map-wrapper .kapteka-custom-marker .marker-inner img {
  width: 85%;
  height: auto;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .contacts-page__map-wrapper .kapteka-custom-marker .marker-inner:hover {
    transform: scale(1.1);
  }
}
.contacts-page__map-wrapper .leaflet-popup-content-wrapper {
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contacts-page__map-wrapper .leaflet-popup-content {
  font-size: 14px;
  color: #1c4e38;
  line-height: 1.4;
}
.contacts-page__map-wrapper .leaflet-popup-content strong {
  color: #1e7246;
  font-size: 16px;
}
.contacts-page__map-wrapper .leaflet-popup-tip {
  background: white;
}
.contacts-page__map {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.contacts-page__feedback {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 32px;
}

.logo-badge__logo-wrapper {
  width: 120px;
  height: 120px;
  background-color: #111111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
}
.logo-badge__logo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
}
.logo-badge__logo-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
}
.logo-badge__logo-wrapper::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #111111;
}
.logo-badge__logo-icon {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  display: block;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  -webkit-mask: url("../../assets/images/logo.svg") no-repeat center/contain;
  mask: url("../../assets/images/logo.svg") no-repeat center/contain;
}

.feedback-form__feedback {
  padding: 40px 1.5rem;
  background-color: #f2fcf5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feedback-form--no-padding .feedback-form__feedback {
  padding: 0;
}
.feedback-form__card {
  background-color: #ffffff;
  width: 100%;
  max-width: 650px;
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
@media (min-width: 768px) {
  .feedback-form__card {
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  }
}
.feedback-form__header {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .feedback-form__header {
    margin-bottom: 40px;
  }
}
.feedback-form__title {
  font-size: 24px;
  font-weight: 700;
  color: #0c291b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .feedback-form__title {
    font-size: 32px;
  }
}
.feedback-form__text {
  font-size: 14px;
  line-height: 1.6;
  color: #1e7246;
  max-width: 450px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .feedback-form__text {
    font-size: 16px;
  }
}
.feedback-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .feedback-form__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
}
.feedback-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback-form__field--full {
  grid-column: 1/-1;
}
.feedback-form__field-label {
  font-size: 13px;
  color: #133e2b;
  margin-left: 2px;
}
@media (min-width: 768px) {
  .feedback-form__field-label {
    font-size: 14px;
  }
}
.feedback-form__input, .feedback-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #32af6d;
  border-radius: 12px;
  font-size: 15px;
  color: #133e2b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
}
.feedback-form__input::placeholder, .feedback-form__textarea::placeholder {
  color: #a1a1aa;
  font-size: 15px;
}
.feedback-form__input:hover, .feedback-form__textarea:hover {
  border-color: #1e7246;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 114, 70, 0.05);
}
@media (hover: hover) and (pointer: fine) {
  .feedback-form__input:focus, .feedback-form__textarea:focus {
    border-color: #1e7246;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(30, 114, 70, 0.12), 0 4px 8px rgba(30, 114, 70, 0.06);
    outline: none;
  }
}
.feedback-form__textarea {
  resize: none;
  min-height: 120px;
}
@media (min-width: 768px) {
  .feedback-form__textarea {
    min-height: 150px;
    resize: vertical;
  }
}
.feedback-form__submit {
  width: 100%;
  height: 52px;
  background-color: #1e7246;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .feedback-form__submit {
    width: fit-content;
    padding: 0 48px;
    margin: 0 auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .feedback-form__submit:hover {
    background-color: rgb(24.6875, 93.8125, 57.6041666667);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(30, 114, 70, 0.3);
  }
}
.feedback-form__submit:active {
  transform: translateY(0);
}
.feedback-form__notice {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}
.feedback-form__notice--success {
  background: #f2fcf5;
  color: #1e7246;
}
.feedback-form__notice--error {
  background: #fff5f5;
  color: #e74c3c;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 767px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how-it-works__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.how-it-works__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f4f4f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .how-it-works__item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .how-it-works__item:hover .how-it-works__item-img {
    transform: scale(1.05);
  }
  .how-it-works__item:hover .how-it-works__item-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.how-it-works__item-wrapper {
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
}
.how-it-works__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.how-it-works__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}
.how-it-works__item-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  max-width: 80%;
  margin: 0;
}
.how-it-works__item-quality {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d4d4d8;
}
.how-it-works__item-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: transparent;
  border: 2px solid #32af6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 767px) {
  .how-it-works__item-play-btn {
    width: 54px;
    height: 54px;
    border-width: 3px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .how-it-works__item-play-btn:hover {
    background-color: rgba(30, 114, 70, 0.1);
    box-shadow: 0 0 15px rgba(30, 114, 70, 0.3);
  }
}
.how-it-works__item-play-icon {
  width: 20px;
  height: 20px;
  color: #32af6d;
  margin-left: 4px;
}
@media (min-width: 768px) {
  .how-it-works__item-play-icon {
    width: 24px;
    height: 24px;
  }
}
.how-it-works__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cbd-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .cbd-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cbd-info__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.cbd-info__card {
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cbd-info__card:hover {
    border-color: rgba(30, 114, 70, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  .cbd-info__card:hover .cbd-info__card-icon {
    background-color: #1e7246;
  }
  .cbd-info__card:hover .cbd-info__card-icon::before, .cbd-info__card:hover .cbd-info__card-icon::after {
    background-color: #ffffff;
  }
}
.cbd-info__card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cbd-info__card-number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e7246;
  margin-bottom: 12px;
}
.cbd-info__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.cbd-info__card-short {
  font-size: 14px;
  color: #637181;
  line-height: 1.5;
}
.cbd-info__card-toggle {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.cbd-info__card-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #1e7246;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.cbd-info__card-icon::before, .cbd-info__card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1e7246;
}
.cbd-info__card-icon::before {
  width: 12px;
  height: 2px;
}
.cbd-info__card-icon::after {
  width: 2px;
  height: 12px;
}

.cbd-modal {
  max-width: 900px !important;
  width: calc(100% - 40px);
  margin: 20px auto;
  padding: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cbd-modal {
    border-radius: 24px;
    width: 100%;
  }
}
.cbd-modal__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cbd-modal__wrapper {
    flex-direction: row;
    min-height: 450px;
  }
}
.cbd-modal__image-box {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 180px;
}
@media (min-width: 768px) {
  .cbd-modal__image-box {
    flex: 0 0 40%;
    height: auto;
  }
}
.cbd-modal__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cbd-modal__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .cbd-modal__content {
    padding: 40px;
    flex: 0 0 60%;
  }
}
.cbd-modal__number {
  font-size: 13px;
  font-weight: 700;
  color: #1e7246;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cbd-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin: 8px 0 12px;
}
@media (min-width: 768px) {
  .cbd-modal__title {
    font-size: 28px;
    margin: 8px 0 16px;
  }
}
.cbd-modal__divider {
  width: 40px;
  height: 3px;
  background-color: #1e7246;
  margin-bottom: 20px;
  border-radius: 2px;
}
.cbd-modal__text {
  font-size: 14px;
  color: #637181;
  line-height: 1.6;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .cbd-modal__text {
    font-size: 16px;
  }
}
.cbd-modal .cbd-modal__btn {
  width: 100%;
  height: 48px;
  background-color: #1e7246;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 8px rgba(30, 114, 70, 0.15);
}
@media (min-width: 640px) {
  .cbd-modal .cbd-modal__btn {
    width: auto;
    padding: 0 40px;
    align-self: flex-start;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cbd-modal .cbd-modal__btn:hover, .cbd-modal .cbd-modal__btn:focus {
    background-color: rgb(33.1875, 126.1125, 77.4375);
    box-shadow: 0 10px 16px rgba(30, 114, 70, 0.2);
    outline: none;
  }
}
.cbd-modal .cbd-modal__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(30, 114, 70, 0.25);
}

.fancybox__nav .f-button {
  background: transparent !important;
  color: #1e7246 !important;
  opacity: 1 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  transition: opacity 0.2s ease !important;
}
@media (hover: hover) and (pointer: fine) {
  .fancybox__nav .f-button:hover, .fancybox__nav .f-button:focus, .fancybox__nav .f-button:active {
    background: transparent !important;
    color: #1e7246 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: none !important;
  }
}
.fancybox__nav .f-button.is-prev {
  left: 4px !important;
}
.fancybox__nav .f-button.is-next {
  right: 4px !important;
}
.fancybox__nav .f-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 3;
}

.fancybox__content > .carousel__button.is-close {
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 8px;
  z-index: 10;
}
@media (min-width: 767px) {
  .fancybox__content > .carousel__button.is-close {
    background: transparent !important;
    color: #111827 !important;
  }
}

.kapteka-thanks {
  padding: 40px 20px;
  width: 100%;
  background: #f2fcf5;
  margin: 0 auto;
}
.kapteka-thanks__content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.kapteka-thanks__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.kapteka-thanks__status--success {
  background-color: #ffffff;
  color: #1e7246;
  border: 1px solid rgba(50, 175, 109, 0.2);
}
.kapteka-thanks__status--failed {
  background-color: #fff5f5;
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
}
.kapteka-thanks__heading {
  font-size: 36px;
  font-weight: 800;
  color: #133e2b;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}
.kapteka-thanks__text {
  font-size: 18px;
  color: #111827;
  margin-bottom: 30px;
}
.kapteka-thanks__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1e7246;
  color: #ffffff;
  padding: 17px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (hover: hover) {
  .kapteka-thanks__back-btn:hover {
    transform: translateY(-2px);
    background: #2c7252;
    box-shadow: 0 20px 40px rgba(44, 114, 82, 0.3);
  }
}
.kapteka-thanks__actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.kapteka-thanks__actions .btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kapteka-thanks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  text-align: left;
  margin-bottom: 40px;
}
.kapteka-thanks__panel {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(19, 62, 43, 0.05);
}
.kapteka-thanks__panel h2, .kapteka-thanks__panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #133e2b;
  margin-top: 0;
  border-bottom: 2px solid rgba(30, 114, 70, 0.1);
  padding-bottom: 15px;
}
.kapteka-thanks__panel table {
  width: 100%;
  border-collapse: collapse;
}
.kapteka-thanks__panel table th, .kapteka-thanks__panel table td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #0c291b;
}
.kapteka-thanks__panel table th a, .kapteka-thanks__panel table td a {
  text-decoration: none;
  color: #0c291b;
}
.kapteka-thanks__panel table th {
  font-weight: 600;
  color: #133e2b;
}
.kapteka-thanks__panel table tfoot th, .kapteka-thanks__panel table tfoot td {
  font-weight: 700;
}
.kapteka-thanks__panel table tfoot tr:last-child th, .kapteka-thanks__panel table tfoot tr:last-child td {
  border-bottom: none;
  font-size: 18px;
  color: #133e2b;
}
.kapteka-thanks__panel .woocommerce-customer-details {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .kapteka-thanks__panel .woocommerce-customer-details {
    margin-top: 0;
  }
}
.kapteka-thanks__panel .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.kapteka-thanks__panel .woocommerce-customer-details .woocommerce-columns::before, .kapteka-thanks__panel .woocommerce-customer-details .woocommerce-columns::after {
  display: none;
}
.kapteka-thanks__panel .woocommerce-customer-details .woocommerce-column {
  width: 100%;
  float: none;
}
.kapteka-thanks__panel .woocommerce-customer-details .woocommerce-column__title {
  font-size: 20px;
  font-weight: 700;
  color: #133e2b;
  margin-bottom: 5px;
  border-bottom: 2px solid rgba(30, 114, 70, 0.1);
  padding-bottom: 10px;
}
.kapteka-thanks__panel .woocommerce-customer-details address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
}
.kapteka-thanks__panel .woocommerce-customer-details address p {
  margin: 10px 0;
  border-top: 1px solid rgba(30, 114, 70, 0.1);
  color: #1e7246;
  font-weight: 500;
  padding-top: 7px;
}
@media screen and (max-width: 768px) {
  .kapteka-thanks__panel .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .kapteka-thanks {
    padding: 40px 15px;
  }
  .kapteka-thanks__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .kapteka-thanks__status {
    font-size: 14px;
    padding: 12px 20px;
    text-align: center;
    line-height: 1.4;
  }
  .kapteka-thanks__actions {
    flex-direction: column;
    width: 100%;
  }
  .kapteka-thanks__actions .btn {
    width: 100%;
  }
  .kapteka-thanks__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kapteka-thanks__panel {
    padding: 25px 20px;
    border-radius: 20px;
  }
  .kapteka-thanks__panel h2, .kapteka-thanks__panel h3 {
    font-size: 20px;
  }
  .kapteka-thanks__panel table {
    font-size: 14px;
  }
}

.delivery {
  padding: 2.5rem 0;
  background: #f2fcf5;
  font-family: inherit;
  min-height: 100vh;
  color: #1e7246;
}
.delivery__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.delivery__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
  color: #133e2b;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 767px) {
  .delivery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .delivery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.delivery__card {
  background: #ffffff;
  border: 1px solid rgba(12, 41, 27, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(12, 41, 27, 0.03);
}
@media (hover: hover) and (pointer: fine) {
  .delivery__card:hover {
    box-shadow: 0 10px 25px rgba(12, 41, 27, 0.08);
  }
}
@media (min-width: 767px) {
  .delivery__card--hero .delivery__card-body {
    padding-left: 4rem;
  }
}
@media (min-width: 767px) {
  .delivery__card--hero {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
  }
}
.delivery__card--warning {
  border: 1px solid rgba(231, 76, 60, 0.2);
  background: linear-gradient(135deg, #ffffff, rgba(231, 76, 60, 0.02));
}
.delivery__card--warning .delivery__title {
  color: #e74c3c;
}
@media (min-width: 767px) {
  .delivery__card--full {
    grid-column: 1/-1;
  }
}
.delivery__hero-figure {
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(242, 252, 245, 0.3);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media (min-width: 767px) {
  .delivery__hero-figure {
    width: 35%;
  }
}
.delivery__hero-img {
  max-width: 100%;
  height: auto;
}
.delivery__card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.delivery__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #133e2b;
  line-height: 1.2;
}
.delivery__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}
.delivery__icon svg {
  width: 100%;
  height: 100%;
}
.delivery__text-content, .delivery__description {
  color: #1e7246;
  line-height: 1.6;
  font-size: 0.95rem;
}
.delivery__text-content strong, .delivery__description strong {
  color: #958e09;
  font-weight: 600;
}
.delivery__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.delivery__list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.4;
  color: #1e7246;
  font-size: 0.9rem;
}
.delivery__list li strong {
  color: #958e09;
  font-weight: 600;
}
.delivery__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwZmZhMyIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBvbHlsaW5lIHBvaW50cz0iMjAgNiA5IDE3IDQgMTIiPjwvcG9seWxpbmU+PC9zdmc+");
  background-repeat: no-repeat;
}

.about {
  min-height: 100vh;
  background-image: linear-gradient(to right, rgba(12, 41, 27, 0.85) 0%, rgba(12, 41, 27, 0.4) 100%), url("../../assets/images/about-bg.jpg");
  background-size: cover;
  background-position: 30% 30%;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .about {
    background-position: center;
  }
}
.about__hero {
  position: relative;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  min-height: 80vh;
  color: #ffffff;
}
.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.about__content {
  max-width: 800px;
}
.about__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #32af6d;
  margin-bottom: 1.5rem;
  display: block;
}
.about__subtitle {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: #ffffff;
}
.about__description p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.about__description p strong {
  color: #32af6d;
}

.legal-page {
  background-color: #f2fcf5;
  color: #111827;
  line-height: 1.6;
  padding-bottom: 30px;
}
.legal-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-page__header {
  background-color: #ffffff;
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.legal-page__badge {
  display: inline-block;
  background-color: #e3ede8;
  color: #2c7252;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.legal-page__title {
  font-size: 2.5rem;
  color: #111827;
  font-weight: 700;
  margin-bottom: 10px;
}
.legal-page__subtitle {
  font-size: 1.1rem;
  color: #637181;
  max-width: 600px;
  margin: 0 auto;
}
.legal-page__content {
  margin-top: 40px;
}
.legal-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}
.legal-page__footer {
  text-align: center;
  margin-top: 40px;
  color: #637181;
  font-size: 0.9rem;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-color: #94e0b3;
  }
}
.legal-card__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #32af6d;
  opacity: 0.7;
  font-family: monospace;
}
.legal-card__body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  margin-top: 2px;
}
.legal-card__body p {
  font-size: 0.95rem;
  color: #637181;
}
.legal-card__body ul {
  margin-top: 10px;
  padding-left: 20px;
}
.legal-card__body ul li {
  font-size: 0.95rem;
  color: #637181;
  margin-bottom: 4px;
  position: relative;
}
.legal-card__body ul li::before {
  content: "•";
  color: #32af6d;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media (max-width: 768px) {
  .legal-page__header {
    padding: 40px 0 30px;
  }
  .legal-page__title {
    font-size: 1.8rem;
  }
  .legal-page__grid {
    grid-template-columns: 1fr;
  }
  .legal-card {
    padding: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
