:root {
  --brand: #16a349;
  --overflow-y: scroll;
  --font-primary: Inter, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, sans-serif;
  --font-secondary: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif;
  --fs-mobile: 16px;
  --lh-text: 1.6;
  --lh-heading: 1.3;
  --clr-link: var(--brand);
  --clr-link-hover: #0c8738;
  --clr-body: #012d3a;
  --bg-body: #f9fafb;
  --clr-selection: #fff;
  --bg-selection: var(--brand);
  --time: 200ms;
}

/* inter-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("assets/fonts/inter-v20-latin_latin-ext-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/inter-v20-latin_latin-ext-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  box-sizing: border-box;
  overflow-y: var(--overflow-y);
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-mobile);
  line-height: var(--lh-text);
  margin: 0;
  min-height: 100vh;
  color: var(--clr-body);
  background-color: var(--bg-body);
}

::-moz-selection {
  text-shadow: none;
  color: var(--clr-selection);
  background-color: var(--bg-selection);
}

::selection {
  text-shadow: none;
  color: var(--clr-selection);
  background-color: var(--bg-selection);
}

a {
  text-decoration: none;
  color: var(--clr-link);
}
a:hover {
  text-decoration: underline;
  color: var(--clr-link-hover);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
figcaption,
input,
select,
textarea,
button {
  margin-top: 0;
  margin-bottom: 0.5em;
}

b,
strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

sup,
sub {
  font-size: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--lh-heading);
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.75em;
}

h5 {
  font-size: 1.5em;
}

h6 {
  font-size: 1.25em;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75em;
  }
  h2 {
    font-size: 1.65em;
  }
  h3 {
    font-size: 1.55em;
  }
  h4 {
    font-size: 1.45em;
  }
  h5 {
    font-size: 1.35em;
  }
  h6 {
    font-size: 1.25em;
  }
}
hr {
  width: 70%;
  margin: 5em auto;
  border-top: 0;
  border-bottom: 1px solid #ddd;
}

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

svg {
  overflow: hidden;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.wrap {
  width: 100%;
  max-width: var(--wrap, 1350px);
  margin-inline: auto;
}

.px {
  padding-inline: 20px;
}

ul {
  padding-left: 0;
}
ul:not([class]) {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul:not([class]) li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #1a1a1a;
  font-weight: 500;
}
ul:not([class]) li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

.wp-block-button__link,
.btn {
  font-size: 1em;
  gap: 4px;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  color: #fff;
  margin: 0;
  padding: 1em 2em;
  background: var(--clr-link);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}
.wp-block-button__link svg,
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.wp-block-button__link:not(.ghost):hover,
.btn:not(.ghost):hover {
  background: var(--clr-link-hover);
}
.wp-block-button__link.ghost,
.btn.ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.wp-block-button__link.ghost:hover,
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.wp-block-button__link:hover,
.btn:hover {
  text-decoration: none;
  color: #fff;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=search],
input[type=url],
textarea,
select {
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  border: 1.5px solid #ddd;
  transition: border-color 0.2s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #222;
}

.wpcf7-form {
  padding: 30px;
  background: #1b2335;
  border: 1px solid #333a4a;
  border-radius: 10px;
}
.wpcf7-form label {
  margin-bottom: 1em;
  display: block;
}
.wpcf7-form span:not(.wpcf7-spinner) {
  font-size: 14px;
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
}
.wpcf7-form input:not(.btn),
.wpcf7-form textarea:not(.btn) {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin: 0;
  padding: 0.75em 1em;
  color: #fff;
  background: #333a4a;
  border: 1px solid #5b616e;
  border-radius: 10px;
}
.wpcf7-form textarea {
  height: 140px;
}
.wpcf7-form .btn {
  width: 100%;
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  padding-block: 1em;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.site-header > .wrap {
  gap: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}
@media (min-width: 993px) {
  .site-header > .wrap {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

.site-header-brand {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 12px;
}

.site-header-logo {
  color: var(--clr-link-hover);
}
@media (min-width: 993px) {
  .site-header-logo svg {
    width: 95px;
    height: 50px;
  }
}
.site-header-logo:hover {
  color: var(--clr-body);
}

.site-header-social {
  margin-left: 8px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 4px;
}
.site-header-social a {
  padding: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.site-header-social a:hover {
  opacity: 0.85;
  text-decoration: none;
}
.site-header-social a[aria-label=Facebook] {
  background: #1877F2;
}
.site-header-social a[aria-label=Instagram] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.site-header-social svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 993px) {
  .site-header-nav {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .site-header-nav {
    display: none;
  }
  .site-header-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    z-index: 99;
  }
}
.site-header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 6px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .site-header-nav ul {
    flex-flow: column nowrap;
    align-items: stretch;
    padding: 0 16px;
    gap: 2px;
  }
}
.site-header-nav li {
  font-size: 16px;
  font-weight: 300;
  display: block;
}
.site-header-nav li:not(.menu-item-home).current-menu-item a {
  color: #fff;
  background: #65BC45;
}
.site-header-nav a {
  padding: 5px 10px;
  color: #000;
  display: block;
  border-radius: 5px;
}
.site-header-nav a:hover {
  text-decoration: none;
  color: #fff;
  background: #65BC45;
}

.site-header-actions {
  gap: 3px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.site-header-actions button,
.site-header-actions #fkcart-mini-toggler {
  margin: 0;
  padding: 4px;
  color: var(--clr-body);
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}
.site-header-actions button:hover,
.site-header-actions #fkcart-mini-toggler:hover {
  background: #f0f0f0;
}
@media (min-width: 993px) {
  .site-header-actions [data-trigger=menu] {
    display: none;
  }
}
.site-header-actions svg {
  width: 24px;
  height: 24px;
}
.site-header-actions .fkcart-shortcode-container .fkcart-shortcode-count {
  font-size: 9px;
  line-height: 0.8;
  height: 13px;
  min-width: 13px;
}
.site-header-actions .fkcart-shortcode-price {
  display: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(1, 45, 58, 0.92);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  padding: 48px 32px;
}
.search-overlay.is-open {
  display: flex;
  animation: fade-in-overlay 0.2s ease;
}

@keyframes fade-in-overlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-overlay__close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: var(--clr-link-hover);
  background: #fff;
  cursor: pointer;
  border-radius: 0 0 0 10px;
  opacity: 0.7;
  margin: 0;
  padding: 4px;
  transition: opacity 0.2s;
}
.search-overlay__close:hover {
  opacity: 1;
}

.site-main {
  padding-block: 32px 64px;
}

.products[class*=columns] {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}
@media (min-width: 601px) {
  .products[class*=columns] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 993px) {
  .products[class*=columns] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1201px) {
  .products[class*=columns] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.products[class*=columns] .product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.custom-product-image-wrapper {
  position: relative;
  margin: 0;
  padding: 12px;
}

.custom-product-image-wrapper-inner {
  background: #eaeff3;
}
.custom-product-image-wrapper-inner a {
  padding: 0.5em;
  overflow: hidden;
}
.custom-product-image-wrapper-inner img {
  transition: 0.25s ease;
}

.custom-product-sku {
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #ddd;
  border-radius: 4px;
  z-index: 1;
}

.custom-product-meta {
  padding: 0 12px 12px;
  gap: 12px;
  display: grid;
  align-items: baseline;
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-product-actions {
  position: relative;
  padding: 0 12px 12px;
}
.custom-product-actions .add_to_cart_button {
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 12px;
  color: #000;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}
.custom-product-actions .added_to_cart {
  position: absolute;
  bottom: calc(100% - 4px);
  left: 12px;
  right: 12px;
  text-align: center;
  background: #65bc45;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  white-space: nowrap;
  animation: slide-in-cart 0.2s ease;
}
.custom-product-actions .added_to_cart:hover {
  background: #52a434;
  text-decoration: none;
}

@keyframes slide-in-cart {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.woocommerce span.onsale {
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  top: 4px;
  left: 4px;
  margin: 0;
  padding: 4px 6px;
  min-width: initial;
  min-height: initial;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 4px;
  z-index: 1;
}
.woocommerce .quantity .qty {
  margin: 0;
  padding: 9px;
}
.woocommerce ul.products:before {
  display: none;
}
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.25s ease;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.woocommerce ul.products li.product .onsale {
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  top: 17px;
  right: 17px;
  margin: 0;
  padding: 4px 6px;
  min-width: initial;
  min-height: initial;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 4px;
  z-index: 1;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  line-height: 1.2;
  padding: 0;
  color: #000;
}
.woocommerce ul.products li.product .price {
  margin: 0;
  padding: 6px 9px;
  color: var(--brand);
  background: #f0fdf4;
  border-radius: 5px;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  color: #000;
}
.woocommerce ul.products li.product a img {
  margin: 0;
  mix-blend-mode: darken;
}
.woocommerce ul.products li.product .button {
  margin: 0;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.woocommerce ul.products li.product:hover .custom-product-image-wrapper img {
  transform: scale(1.1);
}
.woocommerce ul.products li.product:hover .button {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
@media (max-width: 768px) {
  .woocommerce div.product div.images {
    margin: 0;
  }
}
.woocommerce a.button {
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 12px;
  color: #000;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}
.woocommerce a.button:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.singleprod {
  gap: 40px;
  display: grid;
}
@media (min-width: 769px) {
  .singleprod {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.singleprod h1, .singleprod h2, .singleprod h3, .singleprod h4, .singleprod h5, .singleprod h6 {
  margin-top: 1em;
}
.singleprod .product_meta {
  display: flex;
  flex-flow: column;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(1, 45, 58, 0.55);
}
.singleprod .product_meta span {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.singleprod .product_meta a {
  color: var(--brand);
  text-decoration: none;
}
.singleprod .product_meta a:hover {
  text-decoration: underline;
}
.singleprod h1:not(.product_title) {
  font-size: 1.25em;
}
.singleprod h2 {
  font-size: 1.2em;
}
.singleprod h3 {
  font-size: 1.15em;
}
.singleprod h4 {
  font-size: 1.1em;
}
.singleprod h5 {
  font-size: 1.05em;
}
.singleprod h6 {
  font-size: 1em;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background-color: var(--clr-link);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: var(--clr-link-hover);
}

table.variations {
  display: block;
  width: 100%;
}
table.variations tbody,
table.variations tr {
  display: block;
  width: 100%;
}
table.variations tr {
  margin-bottom: 0.25rem;
}
table.variations th.label,
table.variations td.value {
  display: block;
  padding: 0;
  border: none;
  background: none;
}
table.variations th.label label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  color: #555;
}
table.variations td.value select {
  display: block;
  width: 100%;
  padding: 0.6rem 2.5rem 0.6rem 0.85rem;
  font-size: 0.95rem;
  color: #222;
  background-color: #fff;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
  transition: border-color 0.2s;
}
table.variations td.value select:focus {
  outline: none;
  border-color: #222;
}

a.reset_variations {
  line-height: 1;
  padding: 6px 12px;
  color: #999;
  text-decoration: none;
  border-radius: 4px;
  border: 1px dashed #ccc;
  display: none;
}
a.reset_variations[style*="visibility: visible"] {
  display: inline-block;
}
a.reset_variations:hover {
  color: #333;
  border-color: #333;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2rem;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}
.brand-header__logo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-header__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-header__info {
  flex: 1;
  min-width: 0;
}
.brand-header__name {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  line-height: var(--lh-heading);
}
.brand-header__desc {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
.brand-header__desc p:last-child {
  margin: 0;
}
.brand-header__toggle {
  display: none;
}
@media (max-width: 576px) {
  .brand-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-header__logo {
    width: 90px;
    height: 60px;
  }
  .brand-header__desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    transition: none;
  }
  .brand-header__desc.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
  }
  .brand-header__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand);
    background: none;
    border: none;
    cursor: pointer;
  }
  .brand-header__toggle-less {
    display: none;
  }
  .brand-header__toggle[aria-expanded=true] .brand-header__toggle-more {
    display: none;
  }
  .brand-header__toggle[aria-expanded=true] .brand-header__toggle-less {
    display: inline;
  }
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  border-right: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--clr-body);
  transition: background var(--time), color var(--time), border-color var(--time);
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.woocommerce-loop-product__link:has(img) {
  aspect-ratio: 1;
}
.woocommerce-loop-product__link:has(img) img {
  height: 100% !important;
  object-fit: contain;
}

.term-description {
  margin-bottom: 2em;
  padding: 1em;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.term-description p:last-of-type {
  margin: 0;
}

.shop-filter-bar {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  .shop-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}
.shop-filter-bar__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(1, 45, 58, 0.08);
  padding-right: 12px;
}
@media (max-width: 992px) {
  .shop-filter-bar__rows {
    border-right: none;
    padding-right: 0;
  }
}
.shop-filter-bar__right {
  flex-shrink: 0;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 992px) {
  .shop-filter-bar__right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(1, 45, 58, 0.08);
    padding-top: 8px;
  }
}
.shop-filter-bar__right .woocommerce-result-count {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(1, 45, 58, 0.45);
  white-space: nowrap;
  text-align: right;
}
.shop-filter-bar__right .woocommerce-ordering {
  margin: 0;
}
.shop-filter-bar__right .woocommerce-ordering select {
  font-size: 0.78rem;
  margin-bottom: 0;
  padding: 12px 28px 12px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(1, 45, 58, 0.15);
  background-color: transparent;
  color: var(--clr-body);
  cursor: pointer;
  appearance: auto;
}
@media (max-width: 992px) {
  .shop-filter-bar__right .woocommerce-ordering select {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .shop-filter-group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .shop-filter-label {
    min-width: unset;
  }
  .shop-filter-btns {
    justify-content: center;
  }
  .shop-filter-bar__right {
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .shop-filter-bar__right .woocommerce-result-count {
    text-align: center;
  }
}
.shop-filter-reset {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--time), background var(--time);
}
.shop-filter-reset:hover {
  background: #e53935;
  color: #fff;
  text-decoration: none;
  transform: scale(1.2);
}

.shop-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-filter-group + .shop-filter-group {
  padding-top: 8px;
  border-top: 1px solid rgba(1, 45, 58, 0.07);
}

.shop-filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(1, 45, 58, 0.4);
  min-width: 72px;
  flex-shrink: 0;
}

.shop-filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.shop-filter-btn {
  margin: 0;
  padding: 3px 12px;
  border-radius: 30px;
  border: 1.5px solid rgba(1, 45, 58, 0.15);
  background: transparent;
  color: var(--clr-body);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color var(--time), color var(--time), background var(--time);
}
.shop-filter-btn:hover:not(.is-active) {
  border-color: var(--brand);
  color: var(--brand);
}
.shop-filter-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.woocommerce-breadcrumb {
  display: none;
}

.woocommerce-store-notice,
p.demo_store {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.price-container {
  position: relative;
}
.price-container:has(p.price) {
  margin-bottom: 1em;
}
.price-container small {
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  width: 70px;
  margin: 0;
  display: block;
  padding: 4px 6px;
  color: #184729;
  background: rgba(77, 186, 117, 0.4509803922);
  border-radius: 4px;
}
.price-container span.price + small {
  margin-inline: auto 0;
}
.price-container p.price {
  margin-bottom: 0;
}

.woocommerce-order {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.woocommerce-order .woocommerce-notice--success.woocommerce-thankyou-order-received {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 1.75rem 2rem;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #166534;
  line-height: 1.5;
}
.woocommerce-order .woocommerce-notice--success.woocommerce-thankyou-order-received::before {
  content: "";
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16a349;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-order .woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  float: none !important;
}
.woocommerce-order .woocommerce-order-overview::before, .woocommerce-order .woocommerce-order-overview::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 600px) {
  .woocommerce-order .woocommerce-order-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce-order .woocommerce-order-overview li {
  display: flex !important;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.25rem !important;
  padding-left: 1.25rem !important;
  font-size: 0.78rem;
  color: rgba(1, 45, 58, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  float: none !important;
  margin: 0 !important;
}
.woocommerce-order .woocommerce-order-overview li:last-child {
  border-right: none;
}
.woocommerce-order .woocommerce-order-overview li strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  hyphens: auto;
  word-break: break-word;
}
.woocommerce-order .woocommerce-order-overview.woocommerce-order-overview__payment-method strong {
  font-size: 0.8rem;
}
.woocommerce-order .woocommerce-order-details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}
.woocommerce-order .woocommerce-order-details__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(1, 45, 58, 0.45);
  padding: 1rem 1.5rem 0.75rem;
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead tr {
  background: #f9fafb;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead tr th {
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(1, 45, 58, 0.45);
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead tr th.product-total {
  text-align: right;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr {
  border-bottom: 1px solid #f3f4f6;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr:last-child {
  border-bottom: none;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr td {
  padding: 0.85rem 1.5rem;
  vertical-align: middle;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tbody tr td.product-total {
  text-align: right;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th, .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
  border-top: 1px solid #f3f4f6;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th {
  font-weight: 600;
  color: rgba(1, 45, 58, 0.6);
  text-align: left;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  text-align: right;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child th, .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-body);
  border-top: 2px solid #e5e7eb;
  padding-block: 1rem;
}
.woocommerce-order .woocommerce-bacs-bank-details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(1, 45, 58, 0.45);
  margin: 0 0 1rem;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-body);
  margin: 1rem 0 0.5rem;
  clear: both;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name:first-of-type {
  margin-top: 0;
}
.woocommerce-order .woocommerce-bacs-bank-details ul.wc-bacs-bank-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
  margin: 0 0 0.5rem !important;
  padding: 0 !important;
  float: none !important;
}
.woocommerce-order .woocommerce-bacs-bank-details ul.wc-bacs-bank-details::before, .woocommerce-order .woocommerce-bacs-bank-details ul.wc-bacs-bank-details::after {
  content: none !important;
  display: none !important;
}
.woocommerce-order .woocommerce-bacs-bank-details ul.wc-bacs-bank-details li {
  float: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0.8rem;
  color: rgba(1, 45, 58, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.woocommerce-order .woocommerce-bacs-bank-details ul.wc-bacs-bank-details li strong {
  display: inline;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-body);
  text-transform: none;
  letter-spacing: 0;
}
.woocommerce-order .woocommerce-customer-details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(1, 45, 58, 0.45);
  padding: 1rem 1.5rem 0.75rem;
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
}
.woocommerce-order .woocommerce-customer-details address {
  display: block;
  padding: 1rem 1.5rem 1.25rem;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-body);
  border: none !important;
}
.woocommerce-order .woocommerce-customer-details .col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  float: none !important;
}
.woocommerce-order .woocommerce-customer-details .col2-set::before, .woocommerce-order .woocommerce-customer-details .col2-set::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 600px) {
  .woocommerce-order .woocommerce-customer-details .col2-set {
    grid-template-columns: 1fr;
  }
}
.woocommerce-order .woocommerce-customer-details .col2-set .col-1,
.woocommerce-order .woocommerce-customer-details .col2-set .col-2 {
  float: none !important;
  width: auto !important;
}
.woocommerce-order .woocommerce-customer-details .col2-set .col-1 {
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 600px) {
  .woocommerce-order .woocommerce-customer-details .col2-set .col-1 {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

.marquee {
  --size: 200px;
  --gap: calc(var(--size) / 15);
  --duration: 60s;
  --scroll-end: calc(-100% - var(--gap));
  mix-blend-mode: darken;
  padding-block: calc(var(--gap) * 3);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 10%, hsl(0, 0%, 0%) 90%, hsla(0, 0%, 0%, 0));
}
.marquee a {
  display: grid;
  place-items: center;
  padding: calc(var(--size) / 16);
}
.marquee img {
  width: auto;
  height: calc(var(--size) / 3);
  max-width: unset;
  max-height: 100%;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.site-footer {
  font-size: 1em;
  color: #fff;
  background: #0f172a;
  padding-block: 64px;
}

.site-footer-columns {
  gap: 44px;
  display: grid;
  align-items: start;
}
@media (min-width: 769px) {
  .site-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-footer-column {
  gap: 36px;
  display: grid;
}

.site-footer-options {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 24px;
  display: grid;
}
.site-footer-options li {
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.5q;
}
.site-footer-options li a, .site-footer-options li:not(:has(a)) {
  color: currentColor;
  gap: 16px;
  display: grid;
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr);
}
.site-footer-options a:hover {
  text-decoration: none;
}
.site-footer-options a:hover span {
  opacity: 0.8;
}
.site-footer-options strong {
  font-weight: 500;
  display: block;
}
.site-footer-options span {
  opacity: 0.5;
  display: block;
}
.site-footer-options svg {
  padding: 14px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.site-copyright {
  text-align: center;
  color: #fff;
  background: #070b17;
  padding-block: 20px;
}

.custom-hero {
  position: relative;
  background: var(--bg-body);
  margin-bottom: 3em;
  overflow: hidden;
}
.custom-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.custom-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.72);
}
.custom-hero-bg-wave {
  display: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.custom-hero-bg-wave svg {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .custom-hero-bg {
    position: relative;
    height: 280px;
    display: block;
    flex-shrink: 0;
  }
  .custom-hero-bg-wave {
    display: block;
  }
}
.custom-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.custom-hero-wave svg {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .custom-hero-wave {
    display: none;
  }
}
.custom-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .custom-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 32px 20px 40px;
    background: #0d1b2a;
    gap: 28px;
  }
}
.custom-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 15, 36, 0.48);
  backdrop-filter: blur(0.4rem);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  color: #4caf50;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.custom-hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.custom-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.custom-hero-title span {
  color: #4caf50;
}
@media (max-width: 768px) {
  .custom-hero-title {
    font-size: 2rem;
  }
}
.custom-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.custom-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.custom-hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 32px;
  color: #fff;
}
@media (max-width: 768px) {
  .custom-hero-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
.custom-hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.custom-hero-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}
.custom-hero-card ul li svg {
  width: 18px;
  height: 18px;
  color: #4caf50;
  flex-shrink: 0;
}
.custom-hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.custom-hero-card-header svg {
  width: 28px;
  height: 28px;
  color: #4caf50;
  flex-shrink: 0;
}
.custom-hero-card-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}
.custom-hero-card-header span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.custom-about-section {
  background: #fff;
  padding-block: 48px;
}
@media (min-width: 769px) {
  .custom-about-section {
    padding-block: 96px;
  }
}
.custom-about-section > .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .custom-about-section > .wrap {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 20px;
    gap: 28px;
  }
}
.custom-about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.custom-about-img-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.custom-about-content p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
.custom-about-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.custom-about-heading h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.custom-about-icon-wrap {
  width: 44px;
  height: 44px;
  background: #e8f5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.custom-about-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.custom-about-bullets {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.custom-about-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: #1a1a1a;
  font-weight: 500;
}
.custom-about-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

[tooltip] {
  position: relative;
}
[tooltip]:before, [tooltip]:after {
  position: absolute;
  top: -6px;
  left: 50%;
  opacity: 0;
  z-index: 99;
}
[tooltip]:before {
  transform: translateX(-50%);
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  content: "";
}
[tooltip]:after {
  font-size: 12px;
  text-align: center;
  transform: translateX(-50%) translateY(-100%);
  padding: 4px;
  min-width: 80px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  pointer-events: none;
  content: attr(tooltip);
}
[tooltip]:hover:before, [tooltip]:hover:after {
  opacity: 1;
}

[tooltip-position=top]:before {
  left: 50%;
}
[tooltip-position=top]:after {
  left: 50%;
}

[tooltip-position=left]:before {
  top: 50%;
  left: 0;
  margin-left: -12px;
  transform: translatey(-50%) rotate(-90deg);
}
[tooltip-position=left]:after {
  left: 0;
  top: 50%;
  margin-left: -8px;
  transform: translateX(-100%) translateY(-50%);
}

[tooltip-position=bottom]:before {
  top: 100%;
  margin-top: 8px;
  transform: translateX(-50%) translatey(-100%) rotate(-180deg);
}
[tooltip-position=bottom]:after {
  top: 100%;
  margin-top: 8px;
  transform: translateX(-50%) translateY(0%);
}

[tooltip-position=right]:before {
  top: 50%;
  left: 100%;
  margin-left: 1px;
  transform: translatey(-50%) rotate(90deg);
}
[tooltip-position=right]:after {
  top: 50%;
  left: 100%;
  margin-left: 8px;
  transform: translateX(0%) translateY(-50%);
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

body.home .site-main {
  padding-block: 0;
}

.entry-title:not(.product_title) {
  text-align: center;
  margin-bottom: 0.5em;
}

/* Checkout totals: hide duplicate subtotal row and "includes tax" note on total */
.woocommerce-checkout-review-order-table .cart-subtotal,
.cart_totals .cart-subtotal {
    display: none;
}
.woocommerce-checkout-review-order-table .order-total .includes_tax,
.cart_totals .order-total .includes_tax {
    display: none;
}

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