*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #1A2E1F;
  background-color: #FAFBF8;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: #A8C5AB;
  color: #1A3D28;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2B5F3F;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #2B5F3F;
  opacity: 0.5;
}
.section-label--center {
  justify-content: center;
}
.section-label--center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #2B5F3F;
  opacity: 0.5;
}
.section-label--light {
  color: rgba(255, 255, 255, 0.8);
}
.section-label--light::before, .section-label--light::after {
  background: rgba(255, 255, 255, 0.4);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 31, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 300;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate][data-animate=fade-up] {
  transform: translateY(40px);
}
[data-animate][data-animate=fade-right] {
  transform: translateX(-40px);
}
[data-animate][data-animate=fade-left] {
  transform: translateX(40px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}

.section {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.woocommerce-page .site-main > .container,
.woocommerce-page .woocommerce-main > .wc-container {
  padding-top: 8rem;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.woocommerce-page .page-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A2E1F;
  margin-bottom: 3rem;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  border: 1px solid #E8EDE9;
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #2B5F3F;
  border-color: #2B5F3F;
  background: #F0F5F1;
}
.woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
}

.woocommerce-MyAccount-content {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.woocommerce-MyAccount-content a {
  color: #2B5F3F;
}
.woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}
.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.woocommerce-MyAccount-content table th, .woocommerce-MyAccount-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid #E8EDE9;
}
.woocommerce-MyAccount-content table th {
  color: #1A2E1F;
  font-weight: 600;
}
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.woocommerce-MyAccount-content .woocommerce-Button svg,
.woocommerce-MyAccount-content .button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
  font-size: 0.875rem;
  margin-top: 1rem;
}
.woocommerce-MyAccount-content .woocommerce-form-row,
.woocommerce-MyAccount-content .form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-MyAccount-content .woocommerce-form-row label,
.woocommerce-MyAccount-content .form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.woocommerce-MyAccount-content .woocommerce-form-row input[type=text],
.woocommerce-MyAccount-content .woocommerce-form-row input[type=email],
.woocommerce-MyAccount-content .woocommerce-form-row input[type=tel],
.woocommerce-MyAccount-content .woocommerce-form-row input[type=password],
.woocommerce-MyAccount-content .form-row input[type=text],
.woocommerce-MyAccount-content .form-row input[type=email],
.woocommerce-MyAccount-content .form-row input[type=tel],
.woocommerce-MyAccount-content .form-row input[type=password] {
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A2E1F;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.woocommerce-MyAccount-content .woocommerce-form-row input[type=text]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input[type=email]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input[type=tel]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input[type=password]:focus,
.woocommerce-MyAccount-content .form-row input[type=text]:focus,
.woocommerce-MyAccount-content .form-row input[type=email]:focus,
.woocommerce-MyAccount-content .form-row input[type=tel]:focus,
.woocommerce-MyAccount-content .form-row input[type=password]:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}

.woocommerce-cart .woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E8EDE9;
}
.woocommerce-cart .woocommerce table.shop_table th, .woocommerce-cart .woocommerce table.shop_table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid #E8EDE9;
  vertical-align: middle;
}
.woocommerce-cart .woocommerce table.shop_table th {
  background: #F0F5F1;
  font-weight: 600;
  color: #1A2E1F;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.woocommerce-cart .woocommerce table.shop_table .product-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
}
.woocommerce-cart .woocommerce table.shop_table .product-name a {
  color: #1A2E1F;
  font-weight: 500;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.woocommerce-cart .woocommerce table.shop_table .product-name a:hover {
  color: #2B5F3F;
}
.woocommerce-cart .woocommerce table.shop_table .product-quantity .quantity {
  display: flex;
  align-items: center;
}
.woocommerce-cart .woocommerce table.shop_table .product-quantity .quantity input.qty {
  width: 60px;
  text-align: center;
  padding: 0.4rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  -moz-appearance: textfield;
}
.woocommerce-cart .woocommerce table.shop_table .product-quantity .quantity input.qty::-webkit-inner-spin-button, .woocommerce-cart .woocommerce table.shop_table .product-quantity .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.woocommerce-cart .woocommerce table.shop_table .product-remove a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #7A8B7E;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.25rem;
}
.woocommerce-cart .woocommerce table.shop_table .product-remove a:hover {
  background: rgba(214, 69, 69, 0.08);
  color: #D64545;
}
.woocommerce-cart .woocommerce table.shop_table td.actions .coupon {
  display: flex;
  gap: 0.5rem;
}
.woocommerce-cart .woocommerce table.shop_table td.actions .coupon input {
  padding: 0.5rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
}
.woocommerce-cart .woocommerce table.shop_table td.actions .coupon input:focus {
  outline: none;
  border-color: #2B5F3F;
}
.woocommerce-cart .woocommerce table.shop_table td.actions button[type=submit],
.woocommerce-cart .woocommerce table.shop_table td.actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.woocommerce-cart .woocommerce table.shop_table td.actions button[type=submit] svg,
.woocommerce-cart .woocommerce table.shop_table td.actions .button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.woocommerce-cart .woocommerce table.shop_table td.actions button[type=submit]:hover,
.woocommerce-cart .woocommerce table.shop_table td.actions .button:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.woocommerce-cart .woocommerce table.shop_table td.actions button[type=submit],
.woocommerce-cart .woocommerce table.shop_table td.actions .button {
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
}
.woocommerce-cart .woocommerce .cart-collaterals {
  margin-top: 3rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  max-width: 480px;
  margin-left: auto;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E8EDE9;
  padding: 2rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table th, .woocommerce-cart .woocommerce .cart-collaterals .cart_totals table td {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #E8EDE9;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table th {
  color: #7A8B7E;
  font-weight: 500;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table td {
  text-align: right;
  color: #1A2E1F;
  font-weight: 600;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table .order-total td {
  font-size: 1.25rem;
  color: #2B5F3F;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 2rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 251, 248, 0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(214, 222, 216, 0.4);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header.is-scrolled::before {
  opacity: 1;
}
.is-front-page .header:not(.is-scrolled)::before {
  opacity: 0;
}
.header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transition: padding 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header.is-scrolled .header__inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.header__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A3D28;
  letter-spacing: -0.01em;
}
.header__logo-text svg {
  width: 22px;
  height: 22px;
  color: #2B5F3F;
}
.header__logo-text span {
  color: #7A9E7E;
}
.is-front-page .header:not(.is-scrolled) .header__logo-text {
  color: #FFFFFF;
}
.is-front-page .header:not(.is-scrolled) .header__logo-text svg {
  color: #A8C5AB;
}
.is-front-page .header:not(.is-scrolled) .header__logo-text span {
  color: #A8C5AB;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  padding: 0.25rem 0;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B5F3F;
  border-radius: 1px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__nav-link:hover, .header__nav-link.is-active {
  color: #2B5F3F;
}
.header__nav-link:hover::after, .header__nav-link.is-active::after {
  width: 100%;
}
.is-front-page .header:not(.is-scrolled) .header__nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.is-front-page .header:not(.is-scrolled) .header__nav-link::after {
  background: #FFFFFF;
}
.is-front-page .header:not(.is-scrolled) .header__nav-link:hover, .is-front-page .header:not(.is-scrolled) .header__nav-link.is-active {
  color: #FFFFFF;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__icon-btn:hover {
  background: rgba(43, 95, 63, 0.08);
}
.header__icon-btn svg {
  width: 20px;
  height: 20px;
  color: #4A5E4F;
}
.header__icon-btn svg.dgwt-wcas-ico-magnifier {
  fill: #4A5E4F;
}
.is-front-page .header:not(.is-scrolled) .header__icon-btn svg {
  color: rgba(255, 255, 255, 0.85);
}
.is-front-page .header:not(.is-scrolled) .header__icon-btn svg.dgwt-wcas-ico-magnifier {
  fill: rgba(255, 255, 255, 0.85);
}
.is-front-page .header:not(.is-scrolled) .header__icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2B5F3F;
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 50%;
}
.header__cta {
  display: none;
}
@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}
.header__cta {
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.header__cta:hover {
  background: #1A3D28;
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.is-front-page .header:not(.is-scrolled) .header__cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(27, 63, 40, 0.12);
}
.is-front-page .header:not(.is-scrolled) .header__cta:hover {
  background: rgba(255, 255, 255, 0.25);
}
.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger:hover {
  background: rgba(43, 95, 63, 0.08);
}
.is-front-page .header:not(.is-scrolled) .header__hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
}
.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.header__hamburger-lines span {
  display: block;
  height: 2px;
  background: #1A2E1F;
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__hamburger-lines span:nth-child(2) {
  width: 14px;
}
.is-front-page .header:not(.is-scrolled) .header__hamburger-lines span {
  background: #FFFFFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A3D28 0%, #2B5F3F 40%, #3A7B54 70%, #2B5F3F 100%);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
}
@keyframes heroGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 61, 40, 0.55) 0%, rgba(26, 61, 40, 0.35) 35%, rgba(26, 61, 40, 0.45) 65%, rgba(26, 61, 40, 0.8) 100%);
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.hero__content {
  max-width: 680px;
}
.hero__subtag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #A8C5AB;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.hero__subtag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #A8C5AB;
}
.hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
}
.hero__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s forwards;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.hero__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero__btn--primary {
  background: #FFFFFF;
  color: #1A3D28;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero__btn--primary:hover {
  background: #F0F5F1;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.hero__btn--outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}
.hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.85s forwards;
}
@media (max-width: 767px) {
  .hero__badges {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: fit-content;
}
.hero__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.hero__badge-icon {
  display: flex;
  width: 18px;
  height: 18px;
}
.hero__badge-icon svg {
  width: 100%;
  height: 100%;
  color: #A8C5AB;
}
.hero__badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(2rem, 4vw, 3.5rem);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}
@media (min-width: 1024px) {
  .hero__scroll {
    display: flex;
  }
}
.hero__scroll span {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
  position: relative;
  overflow: hidden;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}
.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1.5rem;
  height: min-content;
}
@media (max-width: 767px) {
  .about__gallery {
    max-width: 400px;
    margin: 0 auto;
  }
}
.about__img {
  border-radius: 28px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__img:hover img {
  transform: scale(1.04);
}
.about__img--main {
  border-radius: 40px;
  aspect-ratio: 3/4;
}
.about__img--secondary {
  border-radius: 28px;
  aspect-ratio: 3/4;
  margin-top: 4rem;
}
.about__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #E4EDE6;
  color: #7A9E7E;
}
.about__img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}
.about__img-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.6;
}
.about__exp-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #2B5F3F;
  color: #FFFFFF;
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
  text-align: center;
}
@media (max-width: 767px) {
  .about__exp-badge {
    width: 100px;
    height: 100px;
  }
}
.about__exp-number {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .about__exp-number {
    font-size: 1.5rem;
  }
}
.about__exp-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 0.25rem;
  max-width: 80px;
  line-height: 1.3;
}
.about__deco-ring {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid #E8EDE9;
  opacity: 0.5;
  pointer-events: none;
}
.about__content {
  max-width: 540px;
}
@media (min-width: 1024px) {
  .about__content {
    padding-left: 2rem;
  }
}
.about__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about__text {
  color: #4A5E4F;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.about__text p + p {
  margin-top: 1rem;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: #F0F5F1;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__feature:hover {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}
.about__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #2B5F3F;
  color: #FFFFFF;
}
.about__feature-icon svg {
  width: 20px;
  height: 20px;
}
.about__feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.25rem;
}
.about__feature-text {
  font-size: 0.875rem;
  color: #7A8B7E;
  line-height: 1.65;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.about__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.about__btn:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.about__btn svg {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__btn:hover svg {
  transform: translateX(3px);
}

.services {
  position: relative;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
  overflow: hidden;
}
.services__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.services__bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.services__bg-circle--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, #A8C5AB 0%, transparent 70%);
}
.services__bg-circle--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, #E4EDE6 0%, transparent 70%);
}
.services__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}
.services__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.services__desc {
  font-size: 1.125rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.services__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services__card:hover {
  transform: translateY(-6px);
}
.services__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(168, 197, 171, 0.3) 100%);
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services__card:hover .services__card-glow {
  opacity: 0.9;
}
.services__card-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services__card:hover .services__card-inner {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}
.services__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #2B5F3F;
  color: #FFFFFF;
  margin-bottom: 2rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(43, 95, 63, 0.2);
}
.services__card-icon svg {
  width: 24px;
  height: 24px;
}
.services__card:hover .services__card-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(43, 95, 63, 0.3);
}
.services__card-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.625rem;
}
.services__card-text {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
  flex-grow: 1;
}
.services__card-number {
  display: block;
  margin-top: 2rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: #D6DED8;
  line-height: 1;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services__card:hover .services__card-number {
  color: #A8C5AB;
}

.process {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
  position: relative;
}
.process__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}
.process__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process__grid {
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 3rem 2rem 2rem;
  border-radius: 28px;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: #A8C5AB;
}
.process__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #E4EDE6;
  color: #2B5F3F;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.process__step:hover .process__step-number {
  background: #2B5F3F;
  color: #FFFFFF;
}
.process__step-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.process__step-text {
  font-size: 0.875rem;
  color: #7A8B7E;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.5rem;
    right: -2rem;
    width: 2rem;
    height: 1px;
    background: #D6DED8;
    z-index: 1;
  }
}

.featured-products {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.featured-products__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.featured-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.featured-products__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
}
.featured-products__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  transition: gap 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-products__link svg {
  width: 16px;
  height: 16px;
}
.featured-products__link:hover {
  gap: 0.75rem;
}
.featured-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .featured-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .featured-products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 575px) {
  .featured-products__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .featured-products__grid::-webkit-scrollbar {
    display: none;
  }
  .featured-products__grid .product-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
.featured-products .products__slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .featured-products .products__slider-controls {
    display: flex;
  }
}
.featured-products .products__slider-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E8EDE9;
  background: #FFFFFF;
  color: #4A5E4F;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.featured-products .products__slider-btn svg {
  width: 18px;
  height: 18px;
}
.featured-products .products__slider-btn:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
  background: #F0F5F1;
}
.featured-products .products__slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.featured-products .products__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6DED8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-products .products__slider-dot.is-active {
  background: #2B5F3F;
  width: 24px;
  border-radius: 4px;
}

.product-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:first-child {
  border: 1px solid red;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #2B5F3F;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-card__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #F0F5F1;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card__body {
  padding: 1.5rem;
}
.product-card__category {
  font-size: 0.75rem;
  color: #4A5E4F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card__title {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.product-card__title a {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card__title a:hover {
  color: #2B5F3F;
}
.product-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  margin-bottom: 1rem;
}
.product-card__price del {
  color: #7A8B7E;
  font-weight: 400;
  margin-right: 0.25rem;
}
.product-card__price ins {
  text-decoration: none;
  color: #D64545;
}
.product-card__add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: #E4EDE6;
  color: #2B5F3F;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card__add-to-cart svg {
  width: 14px;
  height: 14px;
}
.product-card__add-to-cart:hover {
  background: #2B5F3F;
  color: #FFFFFF;
}

.testimonials {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
}
.testimonials__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.testimonials__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.testimonials__slider {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials__track::-webkit-scrollbar {
  display: none;
}
.testimonials__slide {
  flex: 0 0 calc(33.333% - 1rem * 2 / 3);
  scroll-snap-align: start;
}
@media (max-width: 1023px) {
  .testimonials__slide {
    flex: 0 0 calc(50% - 1rem / 2);
  }
}
@media (max-width: 767px) {
  .testimonials__slide {
    flex: 0 0 100%;
  }
}
.testimonials__slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonials__slider-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E8EDE9;
  background: #FFFFFF;
  color: #4A5E4F;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.testimonials__slider-btn svg {
  width: 18px;
  height: 18px;
}
.testimonials__slider-btn:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
  background: #F0F5F1;
}
.testimonials__slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.testimonials__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6DED8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonials__slider-dot.is-active {
  background: #2B5F3F;
  width: 24px;
  border-radius: 4px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__card {
  padding: 3rem;
  border-radius: 28px;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
}
.testimonials__stars svg {
  width: 16px;
  height: 16px;
  color: #C4A962;
}
.testimonials__text {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}
.testimonials__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: #A8C5AB;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E4EDE6;
  color: #2B5F3F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.testimonials__author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
}
.testimonials__author-info span {
  font-size: 0.75rem;
  color: #7A8B7E;
}

.faq {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.faq__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .faq__inner {
    grid-template-columns: 0.45fr 1fr;
    gap: 6rem;
  }
}
.faq__image {
  border-radius: 40px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
@media (max-width: 1023px) {
  .faq__image {
    display: none;
  }
}
.faq__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.faq__content {
  max-width: 720px;
}
.faq__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  overflow: hidden;
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq__item.is-active {
  border-color: #A8C5AB;
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: none;
  border: none;
}
.faq__question:hover {
  color: #2B5F3F;
}
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq__icon svg {
  width: 16px;
  height: 16px;
}
.is-active .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq__answer-inner {
  padding: 0 2rem 2rem;
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.faq__answer-inner p + p {
  margin-top: 1rem;
}

.blog-section {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
  overflow: hidden;
}
.blog-section__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.blog-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.blog-section__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
}
.blog-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  transition: gap 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-section__link svg {
  width: 16px;
  height: 16px;
}
.blog-section__link:hover {
  gap: 0.75rem;
}
.blog-section__slider {
  position: relative;
}
.blog-section__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.blog-section__track::-webkit-scrollbar {
  display: none;
}
.blog-section__slide {
  flex: 0 0 calc(33.333% - 1rem * 2 / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 1023px) {
  .blog-section__slide {
    flex: 0 0 calc(50% - 1rem / 2);
  }
}
@media (max-width: 767px) {
  .blog-section__slide {
    flex: 0 0 85%;
  }
}
.blog-section__slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-section__slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #D6DED8;
  background: #FFFFFF;
  color: #4A5E4F;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.blog-section__slider-btn svg {
  width: 18px;
  height: 18px;
}
.blog-section__slider-btn:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
  background: #F0F5F1;
}
.blog-section__slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.blog-section__slider-btn:disabled:hover {
  border-color: #D6DED8;
  color: #4A5E4F;
  background: #FFFFFF;
}
.blog-section__slider-dots {
  display: flex;
  gap: 0.375rem;
}
.blog-section__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6DED8;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.blog-section__slider-dot.is-active {
  background: #2B5F3F;
  width: 24px;
  border-radius: 4px;
}
.blog-section__slider-dot:hover {
  background: #7A9E7E;
}

.blog-card {
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.blog-card__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #7A8B7E;
}
.blog-card__category {
  color: #2B5F3F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card__title {
  margin-bottom: 1rem;
}
.blog-card__title a {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  line-height: 1.3;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card__title a:hover {
  color: #2B5F3F;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #7A8B7E;
  line-height: 1.8;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  transition: gap 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card__read-more svg {
  width: 14px;
  height: 14px;
}
.blog-card__read-more:hover {
  gap: 0.75rem;
}

.cta-banner {
  padding: 6rem 0;
  background: #FAFBF8;
}
@media (max-width: 767px) {
  .cta-banner {
    padding: 3rem 0;
  }
}
.cta-banner__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 1280px;
  text-align: center;
  padding: 6rem 4rem;
  border-radius: 40px;
  background: #2B5F3F;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .cta-banner__inner {
    padding: 4rem 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 28px;
  }
}
.cta-banner__title {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta-banner__text {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.cta-banner__actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-banner__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #FFFFFF;
  color: #1A3D28;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-banner__btn-primary svg {
  width: 18px;
  height: 18px;
}
.cta-banner__btn-primary:hover {
  background: #F0F5F1;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}
.cta-banner__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-banner__btn-secondary svg {
  width: 18px;
  height: 18px;
}
.cta-banner__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer {
  background: #1A3D28;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 6rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
}
.footer__logo-text svg {
  width: 20px;
  height: 20px;
  color: #A8C5AB;
}
.footer__logo-text span {
  color: #A8C5AB;
}
.footer__col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}
.footer__col a:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}
.footer__col:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__col:last-child {
    display: block;
  }
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__contact-item:hover {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer__contact-item {
    margin-bottom: 0.75rem;
  }
}
.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.footer__social-link:hover svg {
  opacity: 1;
}
.footer__disclaimer {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bottom {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__legal a:hover {
  color: #FFFFFF;
}
.footer__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1rem clamp(1.25rem, 3vw, 2rem) 1.5rem;
}
.footer__credit a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__credit a:hover {
  color: #FFFFFF;
}

.minicart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart.is-active {
  transform: translateX(0);
}
.minicart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #E8EDE9;
}
.minicart__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
}
.minicart__title span {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #7A8B7E;
  font-weight: 400;
  margin-left: 0.25rem;
}
.minicart__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart__close svg {
  width: 20px;
  height: 20px;
  color: #4A5E4F;
}
.minicart__close:hover {
  background: #F0F5F1;
}
.minicart__empty {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #4A5E4F;
}
.minicart__empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.minicart__empty p {
  font-size: 0.875rem;
}
.minicart__items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.minicart__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 2rem;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart__item:hover {
  background: #F0F5F1;
}
.minicart__item-image {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F0F5F1;
}
.minicart__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.minicart__item-info {
  flex-grow: 1;
  min-width: 0;
}
.minicart__item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.minicart__item-variant {
  font-size: 0.75rem;
  color: #7A8B7E;
}
.minicart__item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  margin-top: 0.125rem;
}
.minicart__item-price del {
  color: #7A8B7E;
  font-weight: 400;
}
.minicart__item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 0.5rem;
  border: 1px solid #E8EDE9;
  border-radius: 8px;
  overflow: hidden;
}
.minicart__item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart__item-qty button svg {
  width: 12px;
  height: 12px;
}
.minicart__item-qty button:hover {
  background: #F0F5F1;
}
.minicart__item-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.minicart__item-remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart__item-remove svg {
  width: 14px;
  height: 14px;
  color: #7A8B7E;
}
.minicart__item-remove:hover {
  background: rgba(214, 69, 69, 0.08);
}
.minicart__item-remove:hover svg {
  color: #D64545;
}
.minicart__footer {
  padding: 2rem;
  border-top: 1px solid #E8EDE9;
}
.minicart__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.minicart__subtotal span {
  font-size: 0.875rem;
  color: #4A5E4F;
}
.minicart__subtotal strong {
  font-size: 1.125rem;
  color: #1A2E1F;
}
.minicart__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.minicart__checkout svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.minicart__checkout:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.minicart__checkout {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.minicart__checkout svg {
  width: 16px;
  height: 16px;
}
.minicart__continue {
  width: 100%;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.minicart__continue:hover {
  color: #2B5F3F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
.mobile-menu__logo {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A3D28;
}
.mobile-menu__logo span {
  color: #2B5F3F;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu__close svg {
  width: 20px;
  height: 20px;
}
.mobile-menu__close:hover {
  background: #F0F5F1;
}
.mobile-menu__nav {
  flex-grow: 1;
  padding: 0 1rem;
}
.mobile-menu__nav-list {
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1A2E1F;
  border-bottom: 1px solid #E8EDE9;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu__nav-link svg {
  width: 16px;
  height: 16px;
  color: #4A5E4F;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu__nav-link:hover {
  color: #2B5F3F;
  padding-left: 1.5rem;
}
.mobile-menu__nav-link:hover svg {
  transform: translateX(2px);
  color: #2B5F3F;
}
.mobile-menu__nav-link.is-active {
  color: #2B5F3F;
}
.mobile-menu__footer {
  padding: 2rem;
}
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.mobile-menu__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-menu__cta:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4A5E4F;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu__contact a svg {
  width: 16px;
  height: 16px;
}
.mobile-menu__contact a:hover {
  color: #2B5F3F;
}

.shop-hero {
  padding: 8rem 0 4rem;
  background: #1A3D28;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.shop-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.shop-hero__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.shop-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-hero__breadcrumbs a:hover {
  color: #FFFFFF;
}
.shop-hero__breadcrumb-sep {
  opacity: 0.3;
}
.shop-hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.shop-hero__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 560px;
}

.shop {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
}
.shop__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .shop__inner {
    grid-template-columns: 240px 1fr;
    gap: 6rem;
  }
}
.shop__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.shop__sidebar-section {
  margin-bottom: 3rem;
}
.shop__sidebar-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E8EDE9;
}
.shop__category-list {
  display: flex;
  flex-direction: column;
}
.shop__category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.875rem;
  color: #4A5E4F;
  border-bottom: 1px solid #E8EDE9;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop__category-link:hover {
  color: #2B5F3F;
  padding-left: 0.25rem;
}
.shop__category-link.is-active {
  color: #2B5F3F;
  font-weight: 600;
}
.shop__category-count {
  font-size: 0.75rem;
  color: #7A8B7E;
  background: #F0F5F1;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E8EDE9;
}
.shop__result-count {
  font-size: 0.875rem;
  color: #7A8B7E;
}
.shop__result-count p {
  margin: 0;
}
.shop__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.shop__filter-toggle {
  display: flex;
}
@media (min-width: 1024px) {
  .shop__filter-toggle {
    display: none;
  }
}
.shop__filter-toggle {
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  border: 1px solid #D6DED8;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop__filter-toggle svg {
  width: 16px;
  height: 16px;
}
.shop__filter-toggle:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
}
.shop__ordering .orderby {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #4A5E4F;
  border: 1px solid #D6DED8;
  border-radius: 9999px;
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8B7E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop__ordering .orderby:hover {
  border-color: #2B5F3F;
}
.shop__ordering .orderby:focus {
  outline: 2px solid #A8C5AB;
  outline-offset: 2px;
}
.shop__content ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .shop__content ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .shop__content ul.products {
    grid-template-columns: 1fr;
  }
}
.shop__pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.shop__pagination .woocommerce-pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.shop__pagination .woocommerce-pagination ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop__pagination .woocommerce-pagination li a, .shop__pagination .woocommerce-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop__pagination .woocommerce-pagination li a:hover {
  color: #2B5F3F;
  border-color: #2B5F3F;
}
.shop__pagination .woocommerce-pagination li span.current {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
}
.shop__empty {
  text-align: center;
  padding: 6rem 2rem;
}
.shop__empty svg {
  width: 48px;
  height: 48px;
  color: #A0ADA3;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.shop__empty h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.shop__empty p {
  font-size: 0.875rem;
  color: #7A8B7E;
  margin-bottom: 2rem;
}
.shop__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.shop__empty-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.shop__empty-btn:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}

.shop-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  list-style: none;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.shop-card__badge {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.shop-card__badge--sale {
  left: 1rem;
  background: #D64545;
  color: #FFFFFF;
}
.shop-card__badge--featured {
  right: 1rem;
  background: #C4A962;
  color: #FFFFFF;
}
.shop-card__image-link {
  display: block;
}
.shop-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #F0F5F1;
}
.shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shop-card:hover .shop-card__image img {
  transform: scale(1.06);
}
.shop-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F5F1;
}
.shop-card__image-placeholder svg {
  width: 40px;
  height: 40px;
  color: #7A9E7E;
  opacity: 0.4;
}
.shop-card__body {
  padding: 1.5rem;
}
.shop-card__category {
  display: block;
  font-size: 0.75rem;
  color: #7A8B7E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.shop-card__title {
  margin-bottom: 0.5rem;
}
.shop-card__title a {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  line-height: 1.3;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card__title a:hover {
  color: #2B5F3F;
}
.shop-card__excerpt {
  font-size: 0.75rem;
  color: #7A8B7E;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.shop-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
}
.shop-card__price del {
  color: #7A8B7E;
  font-weight: 400;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}
.shop-card__price ins {
  text-decoration: none;
  color: #D64545;
}
.shop-card__cart-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E4EDE6;
  color: #2B5F3F;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.shop-card__cart-btn svg {
  width: 18px;
  height: 18px;
}
.shop-card__cart-btn:hover {
  background: #2B5F3F;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}

.single-product {
  background: #FAFBF8;
}
.single-product__breadcrumbs {
  padding: 6.5rem 0 0;
  background: #FAFBF8;
}
.single-product__breadcrumbs-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #7A8B7E;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E8EDE9;
}
.single-product__breadcrumbs-inner a {
  color: #4A5E4F;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__breadcrumbs-inner a:hover {
  color: #2B5F3F;
}
.single-product__breadcrumbs-inner span:not([aria-current]) {
  opacity: 0.4;
}
.single-product__main {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .single-product__main {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}
.single-product__gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 1023px) {
  .single-product__gallery {
    position: static;
  }
}
.single-product__image-main {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: #F0F5F1;
  margin-bottom: 1.5rem;
}
.single-product__image-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__image-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.single-product__image-trigger:hover img {
  transform: scale(1.04);
}
.single-product__image-trigger:hover .single-product__zoom-hint {
  opacity: 1;
  transform: translateY(0);
}
.single-product__image-trigger:focus-visible {
  outline: 2px solid #2B5F3F;
  outline-offset: -2px;
}
.single-product__zoom-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #2B5F3F;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  opacity: 0.85;
  transform: translateY(4px);
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.single-product__zoom-hint svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .single-product__zoom-hint {
    opacity: 1;
    transform: none;
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
  }
}
.single-product__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #7A9E7E;
}
.single-product__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}
.single-product__image-placeholder span {
  font-size: 0.875rem;
  opacity: 0.5;
}
.single-product__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: #D64545;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.single-product__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.single-product__thumbs::-webkit-scrollbar {
  height: 4px;
}
.single-product__thumbs::-webkit-scrollbar-track {
  background: #E8EDE9;
  border-radius: 2px;
}
.single-product__thumbs::-webkit-scrollbar-thumb {
  background: #A8C5AB;
  border-radius: 2px;
}
.single-product__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: none;
  padding: 0;
}
.single-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product__thumb:hover {
  border-color: #A8C5AB;
}
.single-product__thumb.is-active {
  border-color: #2B5F3F;
}
@media (min-width: 1024px) {
  .single-product__info {
    padding-top: 1rem;
  }
}
.single-product__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2B5F3F;
  margin-bottom: 1rem;
}
.single-product__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.single-product__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2B5F3F;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E8EDE9;
}
.single-product__price del {
  color: #7A8B7E;
  font-weight: 400;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.single-product__price ins {
  text-decoration: none;
  color: #D64545;
}
.single-product__price .woocommerce-Price-currencySymbol {
  font-size: 0.8em;
}
.single-product__short-desc {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.single-product__short-desc p + p {
  margin-top: 1rem;
}
.single-product__short-desc ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-top: 0.5rem;
}
.single-product__short-desc li {
  margin-bottom: 0.25rem;
}
.single-product__add-to-cart {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E8EDE9;
}
.single-product__add-to-cart .cart {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
}
.single-product__add-to-cart .quantity {
  display: flex;
  align-items: center;
  border: 2px solid #D6DED8;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__add-to-cart .quantity:focus-within {
  border-color: #2B5F3F;
}
.single-product__add-to-cart .quantity .qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #4A5E4F;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.single-product__add-to-cart .quantity .qty-btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.single-product__add-to-cart .quantity .qty-btn:hover {
  background: #F0F5F1;
  color: #2B5F3F;
}
.single-product__add-to-cart .quantity .qty-btn:active {
  background: #E4EDE6;
}
.single-product__add-to-cart .quantity .qty {
  width: 52px;
  height: 48px;
  text-align: center;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-left: 1px solid #E8EDE9;
  border-right: 1px solid #E8EDE9;
  background: #FFFFFF;
  color: #1A2E1F;
  -moz-appearance: textfield;
}
.single-product__add-to-cart .quantity .qty::-webkit-inner-spin-button, .single-product__add-to-cart .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product__add-to-cart .quantity .qty:focus {
  outline: none;
}
.single-product__add-to-cart .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.single-product__add-to-cart .single_add_to_cart_button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.single-product__add-to-cart .single_add_to_cart_button:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.single-product__add-to-cart .single_add_to_cart_button {
  flex-grow: 1;
  justify-content: center;
  min-height: 48px;
  font-size: 0.875rem;
}
.single-product__add-to-cart .variations {
  width: 100%;
  margin-bottom: 2rem;
  border: none;
  border-collapse: collapse;
}
.single-product__add-to-cart .variations tr {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.single-product__add-to-cart .variations tr:last-child {
  margin-bottom: 0;
}
.single-product__add-to-cart .variations td, .single-product__add-to-cart .variations th {
  padding: 0;
  border: none;
  vertical-align: middle;
  display: block;
  text-align: left;
}
.single-product__add-to-cart .variations .label {
  text-align: left;
}
.single-product__add-to-cart .variations .label label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  letter-spacing: 0.02em;
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  width: 100%;
}
.single-product__add-to-cart .variations .value {
  position: relative;
  text-align: left;
}
.single-product__add-to-cart .variations .value select {
  width: 100%;
  max-width: 220px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #D6DED8;
  border-radius: 20px;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232B5F3F' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  color: #1A2E1F;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__add-to-cart .variations .value select:hover {
  border-color: #7A9E7E;
}
.single-product__add-to-cart .variations .value select:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
.single-product__add-to-cart .reset_variations {
  font-size: 0.75rem;
  color: #7A8B7E;
  margin-top: 0.5rem;
  display: inline-block;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__add-to-cart .reset_variations:hover {
  color: #2B5F3F;
}
.single-product__add-to-cart .woocommerce-variation-price,
.single-product__add-to-cart .woocommerce-variation-description,
.single-product__add-to-cart .single_variation .price,
.single-product__add-to-cart .single_variation > .price {
  display: none !important;
}
.single-product__add-to-cart .woocommerce-variation-description {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.single-product__add-to-cart .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
}
.single-product__meta {
  margin-bottom: 2rem;
}
.single-product__meta-row {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #E8EDE9;
}
.single-product__meta-row span:first-child {
  color: #7A8B7E;
  min-width: 80px;
  flex-shrink: 0;
}
.single-product__meta-row span:last-child {
  color: #4A5E4F;
}
.single-product__meta-row a {
  color: #2B5F3F;
}
.single-product__meta-row a:hover {
  text-decoration: underline;
}
.single-product__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  background: #F0F5F1;
  border-radius: 20px;
  border: 1px solid #E8EDE9;
}
.single-product__trust:not(:last-child) {
  margin-bottom: 2rem;
}
.single-product__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-product__trust-item svg {
  width: 18px;
  height: 18px;
  color: #2B5F3F;
  flex-shrink: 0;
}
.single-product__trust-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4A5E4F;
}
.single-product__fastest-delivery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background: #F0F5F1;
  border-radius: 20px;
  border: 1px solid #E8EDE9;
  color: #4A5E4F;
  font-size: 0.875rem;
}
.single-product__tabs {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.single-product__tabs .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  border-bottom: 2px solid #E8EDE9;
  overflow-x: auto;
}
.single-product__tabs .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7A8B7E;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  /* margin-bottom: -2px; */
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__tabs .woocommerce-tabs ul.tabs li a:hover {
  color: #1A2E1F;
}
.single-product__tabs .woocommerce-tabs ul.tabs li.active a {
  color: #2B5F3F;
  border-bottom-color: #2B5F3F;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel p + p {
  margin-top: 1rem;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel ul, .single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel ol {
  padding-left: 1.25rem;
  margin: 1rem 0;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel li {
  margin-bottom: 0.25rem;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th, .single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid #E8EDE9;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th {
  color: #1A2E1F;
  font-weight: 600;
  width: 200px;
}
.single-product__tabs .woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes td {
  color: #4A5E4F;
}
.single-product__related {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.single-product__related-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.single-product__related-slider {
  position: relative;
  overflow: hidden;
}
.single-product__related-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.single-product__related-track::-webkit-scrollbar {
  display: none;
}
.single-product__related-track .product-card {
  flex: 0 0 calc(25% - 1rem * 3 / 4);
  scroll-snap-align: start;
}
@media (max-width: 1023px) {
  .single-product__related-track .product-card {
    flex: 0 0 calc(50% - 1rem / 2);
  }
}
@media (max-width: 575px) {
  .single-product__related-track .product-card {
    flex: 0 0 85%;
  }
}
.single-product__related-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.single-product__related-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E8EDE9;
  background: #FFFFFF;
  color: #4A5E4F;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.single-product__related-btn svg {
  width: 18px;
  height: 18px;
}
.single-product__related-btn:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
  background: #F0F5F1;
}
.single-product__related-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.single-product__related-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6DED8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-product__related-dot.is-active {
  background: #2B5F3F;
  width: 24px;
  border-radius: 4px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1.5rem 2rem;
  border-radius: 14px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.woocommerce-message a.button svg,
.woocommerce-info a.button svg,
.woocommerce-error a.button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.woocommerce-message {
  background: rgba(43, 95, 63, 0.06);
  border: 1px solid rgba(43, 95, 63, 0.15);
  color: #1A3D28;
}

.woocommerce-info {
  background: rgba(122, 158, 126, 0.08);
  border: 1px solid rgba(122, 158, 126, 0.2);
  color: #4A5E4F;
}

.woocommerce-error {
  background: rgba(214, 69, 69, 0.06);
  border: 1px solid rgba(214, 69, 69, 0.15);
  color: #D64545;
  list-style: none;
  padding-left: 2rem;
}

#reviews .comment-respond {
  margin-top: 3rem;
}
#reviews .comment-respond .comment-form-rating {
  margin-bottom: 1.5rem;
}
#reviews .comment-respond .comment-form-rating label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  display: block;
  margin-bottom: 0.5rem;
}
#reviews .comment-respond .comment-form p {
  margin-bottom: 1.5rem;
}
#reviews .comment-respond .comment-form p label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  display: block;
  margin-bottom: 0.5rem;
}
#reviews .comment-respond .comment-form p input[type=text],
#reviews .comment-respond .comment-form p input[type=email],
#reviews .comment-respond .comment-form p textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A2E1F;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#reviews .comment-respond .comment-form p input[type=text]:focus,
#reviews .comment-respond .comment-form p input[type=email]:focus,
#reviews .comment-respond .comment-form p textarea:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
#reviews .comment-respond .comment-form p textarea {
  min-height: 120px;
  resize: vertical;
}
#reviews .comment-respond .comment-form .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
#reviews .comment-respond .comment-form .form-submit .submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#reviews .comment-respond .comment-form .form-submit .submit:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
#reviews .commentlist {
  list-style: none;
  padding: 0;
}
#reviews .commentlist .comment_container {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #E8EDE9;
}
#reviews .commentlist img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
#reviews .commentlist .star-rating {
  margin-bottom: 0.5rem;
}
#reviews .commentlist .meta {
  font-size: 0.75rem;
  color: #7A8B7E;
  margin-bottom: 0.5rem;
}
#reviews .commentlist .meta strong {
  color: #1A2E1F;
  font-weight: 600;
}
#reviews .commentlist .description p {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 46, 31, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-lightbox[hidden] {
  display: none;
}
.product-lightbox.is-active {
  opacity: 1;
}
.product-lightbox__inner {
  position: relative;
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-lightbox__inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.product-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50%;
  color: #1A2E1F;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.product-lightbox__close svg {
  width: 22px;
  height: 22px;
}
.product-lightbox__close:hover {
  background: #FFFFFF;
  transform: scale(1.05) rotate(90deg);
}
.product-lightbox__close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

body.lightbox-open {
  overflow: hidden;
}

.blog-archive__hero {
  padding: 8rem 0 4rem;
  background: #1A3D28;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.blog-archive__hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-archive__hero-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.blog-archive__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.blog-archive__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-archive__breadcrumbs a:hover {
  color: #FFFFFF;
}
.blog-archive__breadcrumbs .sep {
  opacity: 0.3;
}
.blog-archive__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.blog-archive__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 560px;
}
.blog-archive__content {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
}
.blog-archive__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .blog-archive__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-archive__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-archive__pagination {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  display: flex;
  justify-content: center;
}
.blog-archive__pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-archive__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5E4F;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-archive__pagination .page-numbers:hover {
  color: #2B5F3F;
  border-color: #2B5F3F;
}
.blog-archive__pagination .page-numbers.current {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
}
.blog-archive__categories {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: -2rem;
}
.blog-archive__cat-link {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4A5E4F;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-archive__cat-link:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
}
.blog-archive__cat-link.is-active {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
}

.single-post-page {
  background: #FAFBF8;
}
.single-post-page__hero {
  padding: 7rem 0 4rem;
  background: #1A3D28;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.single-post-page__hero-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 860px;
  position: relative;
  text-align: center;
}
.single-post-page__meta-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.single-post-page__category-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A8C5AB;
}
.single-post-page__post-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.single-post-page__author-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
}
.single-post-page__author-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.single-post-page__featured-image {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 960px;
  margin-top: -2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.single-post-page__featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.single-post-page__content {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 760px;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.single-post-page__content h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.single-post-page__content h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.single-post-page__content p {
  font-size: 1.125rem;
  color: #4A5E4F;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.single-post-page__content ul, .single-post-page__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-post-page__content ul li, .single-post-page__content ol li {
  font-size: 1.125rem;
  color: #4A5E4F;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.single-post-page__content blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  border-left: 4px solid #2B5F3F;
  background: #F0F5F1;
  border-radius: 0 20px 20px 0;
}
.single-post-page__content blockquote p {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #1A2E1F;
  margin-bottom: 0;
}
.single-post-page__content img {
  border-radius: 20px;
  margin: 2rem 0;
}
.single-post-page__content a {
  color: #2B5F3F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-post-page__content a:hover {
  color: #1A3D28;
}
.single-post-page__content .wp-caption {
  font-size: 0.75rem;
  color: #7A8B7E;
  text-align: center;
  margin-top: -1rem;
}
.single-post-page__nav {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 760px;
  padding-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid #E8EDE9;
  padding-top: 3rem;
}
.single-post-page__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 45%;
}
.single-post-page__nav-link span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A8B7E;
}
.single-post-page__nav-link strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A2E1F;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-post-page__nav-link:hover strong {
  color: #2B5F3F;
}
.single-post-page__nav-link--next {
  text-align: right;
  align-items: flex-end;
}
.single-post-page__author-box {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 760px;
  padding-bottom: 4rem;
}
.single-post-page__author-card {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: #F0F5F1;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
}
@media (max-width: 767px) {
  .single-post-page__author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.single-post-page__author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2B5F3F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.single-post-page__author-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.25rem;
}
.single-post-page__author-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2B5F3F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.single-post-page__author-bio {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}

.contact-hero {
  padding: 8rem 0 4rem;
  background: #1A3D28;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.contact-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.contact-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-hero__breadcrumbs a:hover {
  color: #FFFFFF;
}
.contact-hero__breadcrumbs span:not([aria-current]) {
  opacity: 0.3;
}
.contact-hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-hero__desc {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 560px;
}

.contact-cards {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.contact-cards__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .contact-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #E4EDE6;
  color: #2B5F3F;
  margin-bottom: 1.5rem;
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A8B7E;
  margin-bottom: 0.5rem;
}
.contact-card__value {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
  word-break: break-word;
}
.contact-card__label {
  font-size: 0.75rem;
  color: #2B5F3F;
  font-weight: 500;
}

.contact-main {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.contact-main__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-main__inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.contact-main__form-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.contact-main__form-desc {
  font-size: 0.875rem;
  color: #7A8B7E;
  margin-bottom: 3rem;
}
.contact-main__form-wrap input[type=text],
.contact-main__form-wrap input[type=email],
.contact-main__form-wrap input[type=tel],
.contact-main__form-wrap input[type=url],
.contact-main__form-wrap textarea,
.contact-main__form-wrap select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A2E1F;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 1.5rem;
}
.contact-main__form-wrap input[type=text]:focus,
.contact-main__form-wrap input[type=email]:focus,
.contact-main__form-wrap input[type=tel]:focus,
.contact-main__form-wrap input[type=url]:focus,
.contact-main__form-wrap textarea:focus,
.contact-main__form-wrap select:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
.contact-main__form-wrap input[type=text]::placeholder,
.contact-main__form-wrap input[type=email]::placeholder,
.contact-main__form-wrap input[type=tel]::placeholder,
.contact-main__form-wrap input[type=url]::placeholder,
.contact-main__form-wrap textarea::placeholder,
.contact-main__form-wrap select::placeholder {
  color: #A0ADA3;
}
.contact-main__form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-main__form-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.contact-main__form-wrap input[type=submit],
.contact-main__form-wrap button[type=submit],
.contact-main__form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.contact-main__form-wrap input[type=submit] svg,
.contact-main__form-wrap button[type=submit] svg,
.contact-main__form-wrap .wpcf7-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact-main__form-wrap input[type=submit]:hover,
.contact-main__form-wrap button[type=submit]:hover,
.contact-main__form-wrap .wpcf7-submit:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.contact-main__form-wrap input[type=submit],
.contact-main__form-wrap button[type=submit],
.contact-main__form-wrap .wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.contact-main__form-placeholder {
  padding: 3rem;
  background: #FFFFFF;
  border: 2px dashed #D6DED8;
  border-radius: 20px;
  text-align: center;
  color: #7A8B7E;
  font-size: 0.875rem;
}
.contact-main__form-placeholder code {
  background: #F0F5F1;
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
}
.contact-main__map {
  border-radius: 40px;
  overflow: hidden;
  min-height: 300px;
  background: #E4EDE6;
}
.contact-main__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}
.contact-main__map--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #7A8B7E;
  text-align: center;
  padding: 3rem;
}
.contact-main__map--placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}
.contact-main__map--placeholder span {
  font-size: 0.875rem;
}
.contact-main__map--placeholder code {
  background: #FFFFFF;
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
}
.contact-main__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-main__detail-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #E8EDE9;
  font-size: 0.875rem;
}
.contact-main__detail-row span {
  color: #7A8B7E;
}
.contact-main__detail-row strong {
  color: #1A2E1F;
  text-align: right;
}
.contact-main__detail-row a {
  color: #2B5F3F;
}
.contact-main__detail-row a:hover {
  text-decoration: underline;
}

.fitomed-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .fitomed-contact-form__row {
    grid-template-columns: 1fr;
  }
}
.fitomed-contact-form__field {
  margin-bottom: 1.5rem;
}
.fitomed-contact-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.fitomed-contact-form__field label .required {
  color: #D64545;
}
.fitomed-contact-form__field input[type=text],
.fitomed-contact-form__field input[type=email],
.fitomed-contact-form__field input[type=tel],
.fitomed-contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A2E1F;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fitomed-contact-form__field input[type=text]:focus,
.fitomed-contact-form__field input[type=email]:focus,
.fitomed-contact-form__field input[type=tel]:focus,
.fitomed-contact-form__field textarea:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
.fitomed-contact-form__field input[type=text]::placeholder,
.fitomed-contact-form__field input[type=email]::placeholder,
.fitomed-contact-form__field input[type=tel]::placeholder,
.fitomed-contact-form__field textarea::placeholder {
  color: #A0ADA3;
}
.fitomed-contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.fitomed-contact-form__rodo {
  margin-bottom: 1.5rem;
}
.fitomed-contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #4A5E4F;
  line-height: 1.65;
  cursor: pointer;
}
.fitomed-contact-form__checkbox-label input[type=checkbox] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #2B5F3F;
  cursor: pointer;
}
.fitomed-contact-form__checkbox-label a {
  color: #2B5F3F;
  text-decoration: underline;
}
.fitomed-contact-form__checkbox-label a:hover {
  color: #1A3D28;
}
.fitomed-contact-form__checkbox-label .required {
  color: #D64545;
}
.fitomed-contact-form__status {
  margin-bottom: 1.5rem;
  padding: 0;
  font-size: 0.875rem;
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fitomed-contact-form__status:empty {
  display: none;
}
.fitomed-contact-form__status--success {
  display: block;
  padding: 1rem 1.5rem;
  background: rgba(43, 95, 63, 0.06);
  border: 1px solid rgba(43, 95, 63, 0.15);
  color: #1A3D28;
}
.fitomed-contact-form__status--error {
  display: block;
  padding: 1rem 1.5rem;
  background: rgba(214, 69, 69, 0.06);
  border: 1px solid rgba(214, 69, 69, 0.15);
  color: #D64545;
}
.fitomed-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.fitomed-contact-form__submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.fitomed-contact-form__submit:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.fitomed-contact-form__submit {
  width: 100%;
  justify-content: center;
}
.fitomed-contact-form__submit svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}
.fitomed-contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.about-page-hero {
  padding: 7rem 0 1.5rem;
  background: #1A3D28;
  color: #FFFFFF;
}
.about-page-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.about-page-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.about-page-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-page-hero__breadcrumbs a:hover {
  color: #FFFFFF;
}
.about-page-hero__breadcrumbs span:not([aria-current]) {
  opacity: 0.3;
}

.about-page-intro {
  padding: 4rem 0 clamp(5rem, 8vw, 8rem);
  background: #1A3D28;
  color: #FFFFFF;
}
.about-page-intro__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-page-intro__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}
.about-page-intro__image {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-page-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .about-page-intro__image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.about-page-intro__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
}
.about-page-intro__image-placeholder svg {
  width: 48px;
  height: 48px;
}
.about-page-intro__image-placeholder span {
  font-size: 0.875rem;
}
.about-page-intro .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.about-page-intro .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}
.about-page-intro__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.about-page-intro__subtitle {
  font-size: 1.125rem;
  color: #A8C5AB;
  font-weight: 500;
  margin-bottom: 2rem;
}
.about-page-intro__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
}
.about-page-intro__text p + p {
  margin-top: 1rem;
}
.about-page-intro__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-page-intro__stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.about-page-intro__stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}

.about-page-mission {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: #FAFBF8;
}
.about-page-mission__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 760px;
  text-align: center;
}
.about-page-mission__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E4EDE6;
  color: #2B5F3F;
}
.about-page-mission__icon svg {
  width: 28px;
  height: 28px;
}
.about-page-mission__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.about-page-mission__text {
  font-size: 1.125rem;
  color: #4A5E4F;
  line-height: 1.8;
}

.about-page-edu {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.about-page-edu__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.about-page-edu__header {
  margin-bottom: 4rem;
}
.about-page-edu__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
}
.about-page-edu__timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
}
.about-page-edu__item {
  display: grid;
  grid-template-columns: 70px 1px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 575px) {
  .about-page-edu__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.about-page-edu__year {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2B5F3F;
  padding-top: 1.5rem;
  text-align: right;
}
@media (max-width: 575px) {
  .about-page-edu__year {
    text-align: left;
    padding-top: 0;
  }
}
.about-page-edu__line {
  width: 1px;
  background: #D6DED8;
  position: relative;
  min-height: 100%;
}
@media (max-width: 575px) {
  .about-page-edu__line {
    display: none;
  }
}
.about-page-edu__line::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2B5F3F;
}
.about-page-edu__card {
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-page-edu__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}
.about-page-edu__card-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.25rem;
}
.about-page-edu__card-institution {
  font-size: 0.875rem;
  color: #2B5F3F;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.about-page-edu__card-desc {
  font-size: 0.875rem;
  color: #7A8B7E;
}

.about-page-spec {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
}
.about-page-spec__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.about-page-spec__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.about-page-spec__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
}
.about-page-spec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .about-page-spec__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-page-spec__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-page-spec__card {
  padding: 3rem 2rem;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-page-spec__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.about-page-spec__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #2B5F3F;
  color: #FFFFFF;
}
.about-page-spec__card-icon svg {
  width: 22px;
  height: 22px;
}
.about-page-spec__card-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.about-page-spec__card-text {
  font-size: 0.875rem;
  color: #7A8B7E;
  line-height: 1.8;
}

.about-page-refs {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.about-page-refs__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.about-page-refs__header {
  margin-bottom: 4rem;
}
.about-page-refs__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
}
.about-page-refs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-page-refs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-page-refs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-page-refs__card {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-page-refs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.about-page-refs__card-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #E8D9A8;
  color: #C4A962;
  margin-bottom: 1.5rem;
}
.about-page-refs__card-badge svg {
  width: 22px;
  height: 22px;
}
.about-page-refs__card-body {
  flex-grow: 1;
}
.about-page-refs__card-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2B5F3F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.about-page-refs__card-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.about-page-refs__card-desc {
  font-size: 0.875rem;
  color: #7A8B7E;
  line-height: 1.65;
}
.about-page-refs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  transition: gap 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-page-refs__card-link svg {
  width: 14px;
  height: 14px;
}
.about-page-refs__card-link:hover {
  gap: 0.625rem;
}

.privacy-policy__hero {
  background: linear-gradient(135deg, #1A3D28 0%, #2B5F3F 100%);
  color: #FFFFFF;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.privacy-policy__hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .privacy-policy__hero {
    padding: 4rem 0 3rem;
  }
}
.privacy-policy__hero-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 960px;
  position: relative;
  z-index: 1;
}
.privacy-policy__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.privacy-policy__subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .privacy-policy__subtitle {
    font-size: 1.125rem;
  }
}
.privacy-policy__content {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .privacy-policy__content {
    padding: 4rem 0;
  }
}
.privacy-policy__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 960px;
}
.privacy-policy__content h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1A3D28;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.privacy-policy__content h2:first-child {
  margin-top: 0;
}
.privacy-policy__content h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #2B5F3F;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.privacy-policy__content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-policy__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A5E4F;
  margin-bottom: 1.5rem;
}
.privacy-policy__content p:last-child {
  margin-bottom: 0;
}
.privacy-policy__content ul, .privacy-policy__content ol {
  margin: 1.5rem 0;
  padding-left: 3rem;
  color: #4A5E4F;
}
.privacy-policy__content ul li, .privacy-policy__content ol li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.privacy-policy__content ul li::marker, .privacy-policy__content ol li::marker {
  color: #7A9E7E;
}
.privacy-policy__content ul {
  list-style-type: disc;
}
.privacy-policy__content ol {
  list-style-type: decimal;
}
.privacy-policy__content strong {
  font-weight: 600;
  color: #1A2E1F;
}
.privacy-policy__content a {
  color: #2B5F3F;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.privacy-policy__content a:hover {
  color: #1A3D28;
}
.privacy-policy__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #7A9E7E;
  background: #FAFBF8;
  border-radius: 14px;
}
.privacy-policy__content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}
.privacy-policy__footer {
  padding: 3rem 0;
  background: #FAFBF8;
  border-top: 1px solid #E8EDE9;
}
.privacy-policy__updated {
  font-size: 0.875rem;
  color: #7A8B7E;
  text-align: center;
  font-style: italic;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2B5F3F;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #1A3D28;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

.booking-hero {
  padding: 8rem 0 4rem;
  background: #1A3D28;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.booking-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 197, 171, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.booking-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.booking-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.booking-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-hero__breadcrumbs a:hover {
  color: #FFFFFF;
}
.booking-hero__breadcrumbs span:not([aria-current]) {
  opacity: 0.3;
}
.booking-hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.booking-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 560px;
}

.booking-cancel-notice {
  padding: 2rem 0;
}
.booking-cancel-notice__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}
.booking-cancel-notice__box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 20px;
}
.booking-cancel-notice__box svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-cancel-notice__box strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.booking-cancel-notice__box p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.85;
}
.booking-cancel-notice__box--success {
  background: rgba(43, 95, 63, 0.06);
  border: 1px solid rgba(43, 95, 63, 0.15);
  color: #1A3D28;
}
.booking-cancel-notice__box--success svg {
  color: #2B5F3F;
}
.booking-cancel-notice__box--info {
  background: rgba(122, 158, 126, 0.08);
  border: 1px solid rgba(122, 158, 126, 0.2);
  color: #4A5E4F;
}
.booking-cancel-notice__box--error {
  background: rgba(214, 69, 69, 0.06);
  border: 1px solid rgba(214, 69, 69, 0.15);
  color: #D64545;
}

.booking-wizard {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #FAFBF8;
}
.booking-wizard__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  max-width: 960px;
}
.booking-wizard__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
}
.booking-wizard__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.booking-wizard__step-indicator span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #A0ADA3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 575px) {
  .booking-wizard__step-indicator span {
    display: none;
  }
}
.booking-wizard__step-indicator.is-active span {
  color: #2B5F3F;
  font-weight: 600;
}
.booking-wizard__step-indicator.is-completed span {
  color: #4A5E4F;
}
.booking-wizard__step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  background: #F0F5F1;
  color: #A0ADA3;
  border: 2px solid #E8EDE9;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.is-active .booking-wizard__step-number {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 4px rgba(43, 95, 63, 0.15);
}
.is-completed .booking-wizard__step-number {
  background: #E4EDE6;
  color: #2B5F3F;
  border-color: #A8C5AB;
}
.booking-wizard__step-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: #E8EDE9;
  margin: 0 1rem;
  margin-bottom: 1.5rem;
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-wizard__step-line.is-completed {
  background: #A8C5AB;
}
@media (max-width: 575px) {
  .booking-wizard__step-line {
    margin-bottom: 0;
  }
}
.booking-wizard__panel {
  display: none;
  animation: fadeInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-wizard__panel.is-active {
  display: block;
}
.booking-wizard__panel-header {
  margin-bottom: 3rem;
}
.booking-wizard__panel-header h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1A2E1F;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.booking-wizard__panel-header p {
  font-size: 0.875rem;
  color: #7A8B7E;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .booking-form__row {
    grid-template-columns: 1fr;
  }
}
.booking-form__field {
  margin-bottom: 1.5rem;
}
.booking-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 0.5rem;
}
.booking-form__field label .required {
  color: #D64545;
}
.booking-form__field label .optional {
  color: #A0ADA3;
  font-weight: 400;
  font-size: 0.75rem;
}
.booking-form__field input[type=text],
.booking-form__field input[type=email],
.booking-form__field input[type=tel],
.booking-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 2px solid #D6DED8;
  border-radius: 14px;
  background: #FFFFFF;
  color: #1A2E1F;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-form__field input[type=text]:focus,
.booking-form__field input[type=email]:focus,
.booking-form__field input[type=tel]:focus,
.booking-form__field textarea:focus {
  outline: none;
  border-color: #2B5F3F;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
.booking-form__field input[type=text]::placeholder,
.booking-form__field input[type=email]::placeholder,
.booking-form__field input[type=tel]::placeholder,
.booking-form__field textarea::placeholder {
  color: #A0ADA3;
}
.booking-form__field textarea {
  min-height: 120px;
  resize: vertical;
}
.booking-form__rodo {
  margin-bottom: 1.5rem;
}
.booking-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #4A5E4F;
  line-height: 1.65;
  cursor: pointer;
}
.booking-form__checkbox-label input[type=checkbox] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #2B5F3F;
  cursor: pointer;
}
.booking-form__checkbox-label a {
  color: #2B5F3F;
  text-decoration: underline;
}
.booking-form__checkbox-label a:hover {
  color: #1A3D28;
}
.booking-form__checkbox-label .required {
  color: #D64545;
}
.booking-form__status {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  border-radius: 14px;
}
.booking-form__status:empty {
  display: none;
}
.booking-form__status--success {
  display: block;
  padding: 1rem 1.5rem;
  background: rgba(43, 95, 63, 0.06);
  border: 1px solid rgba(43, 95, 63, 0.15);
  color: #1A3D28;
}
.booking-form__status--error {
  display: block;
  padding: 1rem 1.5rem;
  background: rgba(214, 69, 69, 0.06);
  border: 1px solid rgba(214, 69, 69, 0.15);
  color: #D64545;
}
.booking-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.booking-form__btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.booking-form__btn-next svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.booking-form__btn-next:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.booking-form__btn-next {
  margin-left: auto;
}
.booking-form__btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.booking-form__btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #2B5F3F;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.booking-form__btn-back svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.booking-form__btn-back:hover {
  background: #2B5F3F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.booking-form__btn-back svg {
  transform: rotate(180deg);
}
.booking-form__btn-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.booking-form__btn-confirm svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.booking-form__btn-confirm:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.booking-form__btn-confirm {
  background: #2B5F3F;
  margin-left: auto;
}
.booking-form__btn-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-calendar {
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  padding: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .booking-calendar {
    padding: 1.5rem;
  }
}
.booking-calendar__loading {
  text-align: center;
  padding: 4rem;
  color: #7A8B7E;
}
.booking-calendar__loading p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.booking-calendar__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E8EDE9;
  border-top-color: #2B5F3F;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.booking-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.booking-calendar__month-label {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A2E1F;
}
.booking-calendar__nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #E8EDE9;
  background: #FFFFFF;
  color: #4A5E4F;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-calendar__nav-btn svg {
  width: 18px;
  height: 18px;
}
.booking-calendar__nav-btn:hover {
  border-color: #2B5F3F;
  color: #2B5F3F;
  background: #F0F5F1;
}
.booking-calendar__nav-btn--prev svg {
  transform: rotate(180deg);
}
.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}
.booking-calendar__weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7A8B7E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}
.booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.booking-calendar__day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-calendar__day span {
  line-height: 1;
}
.booking-calendar__day small {
  font-size: 0.6rem;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.7;
}
.booking-calendar__day--empty {
  visibility: hidden;
}
.booking-calendar__day--past {
  color: #A0ADA3;
  opacity: 0.4;
}
.booking-calendar__day--unavailable {
  color: #A0ADA3;
}
.booking-calendar__day--available {
  background: #F0F5F1;
  color: #2B5F3F;
  cursor: pointer;
  border: 2px solid transparent;
}
.booking-calendar__day--available:hover {
  background: #E4EDE6;
  border-color: #A8C5AB;
  transform: scale(1.05);
}
.booking-calendar__day--available small {
  color: #2B5F3F;
}
.booking-calendar__day--selected {
  background: #2B5F3F !important;
  color: #FFFFFF !important;
  border-color: #2B5F3F !important;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.2);
}
.booking-calendar__day--selected small {
  color: #FFFFFF !important;
}
.booking-calendar__times {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E8EDE9;
}
.booking-calendar__times-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
}
.booking-calendar__times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
}
.booking-calendar__time-slot {
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2B5F3F;
  background: #F0F5F1;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-calendar__time-slot:hover {
  background: #E4EDE6;
  border-color: #A8C5AB;
  transform: translateY(-2px);
}
.booking-calendar__time-slot.is-selected {
  background: #2B5F3F;
  color: #FFFFFF;
  border-color: #2B5F3F;
  box-shadow: 0 4px 12px rgba(43, 95, 63, 0.25);
}
.booking-calendar__no-slots {
  text-align: center;
  color: #7A8B7E;
  font-size: 0.875rem;
  padding: 2rem;
}
.booking-calendar__empty {
  text-align: center;
  padding: 3rem;
  color: #7A8B7E;
}
.booking-calendar__empty svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
  margin: 0 auto 1rem;
  display: block;
}
.booking-calendar__empty p {
  font-size: 0.875rem;
}

.booking-summary {
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  overflow: hidden;
}
.booking-summary__section {
  padding: 2rem 3rem;
  border-bottom: 1px solid #E8EDE9;
}
.booking-summary__section:last-child {
  border-bottom: none;
}
.booking-summary__section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1.5rem;
}
.booking-summary__section h3 svg {
  width: 20px;
  height: 20px;
  color: #2B5F3F;
}
@media (max-width: 575px) {
  .booking-summary__section {
    padding: 1.5rem;
  }
}
.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1.5rem;
}
.booking-summary__row span {
  font-size: 0.875rem;
  color: #7A8B7E;
  flex-shrink: 0;
}
.booking-summary__row strong {
  font-size: 0.875rem;
  color: #1A2E1F;
  text-align: right;
  word-break: break-word;
}
.booking-summary__row + .booking-summary__row {
  border-top: 1px solid #E8EDE9;
}
.booking-summary__address {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}

.booking-success {
  text-align: center;
  padding: 3rem 0;
}
.booking-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 95, 63, 0.08);
}
.booking-success__icon svg {
  width: 40px;
  height: 40px;
  color: #2B5F3F;
}
.booking-success__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1A2E1F;
  margin-bottom: 1rem;
}
.booking-success__text {
  font-size: 0.875rem;
  color: #7A8B7E;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.booking-success__details {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #F0F5F1;
  border-radius: 20px;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  text-align: left;
}
.booking-success__detail {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.booking-success__detail span {
  color: #7A8B7E;
  min-width: 80px;
}
.booking-success__detail strong {
  color: #1A2E1F;
}
.booking-success__actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.booking-info {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  background: #F0F5F1;
}
.booking-info__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .booking-info__inner {
    grid-template-columns: 1fr;
  }
}
.booking-info__card {
  background: #FFFFFF;
  border: 1px solid #E8EDE9;
  border-radius: 28px;
  padding: 3rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-info__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.booking-info__card h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A2E1F;
  margin-bottom: 1rem;
}
.booking-info__card p {
  font-size: 0.875rem;
  color: #4A5E4F;
  line-height: 1.8;
}
.booking-info__card p a {
  color: #2B5F3F;
  font-weight: 500;
}
.booking-info__card p a:hover {
  text-decoration: underline;
}
.booking-info__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #E4EDE6;
  color: #2B5F3F;
  margin-bottom: 1.5rem;
}
.booking-info__card-icon svg {
  width: 24px;
  height: 24px;
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem clamp(1.25rem, 3vw, 2rem) 6rem;
  background: #FAFBF8;
  text-align: center;
}
.page-404__container {
  max-width: 560px;
}
.page-404__number {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: #E4EDE6;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #A8C5AB 0%, #E4EDE6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-404__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: #1A2E1F;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-404__text {
  font-size: 1.125rem;
  color: #4A5E4F;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.page-404__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-404__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2B5F3F;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.page-404__btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.page-404__btn-primary:hover {
  background: #1A3D28;
  border-color: #1A3D28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}
.page-404__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #2B5F3F;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2B5F3F;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.page-404__btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.page-404__btn-outline:hover {
  background: #2B5F3F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}

.woocommerce #customer_login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .woocommerce #customer_login {
    grid-template-columns: 1fr;
  }
}
.woocommerce #customer_login form {
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.5rem;
}
.woocommerce #customer_login .form-row {
  flex-basis: 100%;
}
.woocommerce #customer_login .form-row-wide {
  flex-basis: calc(50% - 1.5rem);
  flex-shrink: 1;
  flex-grow: 1;
}
@media (max-width: 1024px) {
  .woocommerce #customer_login .form-row-wide {
    flex-basis: 100%;
  }
}
.woocommerce #customer_login h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1a2e1f;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.woocommerce #customer_login label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2e1f;
  margin-bottom: 0.5rem;
}
.woocommerce #customer_login label .required {
  color: #d64545;
}
.woocommerce #customer_login a, .woocommerce #customer_login p {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2e1f;
}
.woocommerce #customer_login .woocommerce-LostPassword {
  margin-top: 1rem;
}
.woocommerce #customer_login input.input-text {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #d6ded8;
  border-radius: 14px;
  background: #fff;
  color: #1a2e1f;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 1.5rem;
}
.woocommerce #customer_login input.input-text:focus {
  outline: none;
  border-color: #2b5f3f;
  box-shadow: 0 0 0 3px rgba(43, 95, 63, 0.1);
}
.woocommerce #customer_login .woocommerce-button {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  background: #2b5f3f;
  color: #fff;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #2b5f3f;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(43, 95, 63, 0.15);
}
.woocommerce #customer_login .woocommerce-button:hover {
  background: #1a3d28;
  border-color: #1a3d28;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(43, 95, 63, 0.2);
}

#ecom-search-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  z-index: 1000;
  width: clamp(300px, 90%, 600px);
}
#ecom-search-modal.open {
  display: block;
}
#ecom-search-modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
}
#ecom-search-modal-bg .open {
  display: block;
}

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