@charset "UTF-8";
/*
Theme Name: Essential Wellness Pharmacy
Author: Central States Marketing
Author URI:
Description: This site was built by Central States Marketing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ew
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
      - Reset
      - Colors
      - Sizing
      - Typography
02 - UTILITIES
      - Variables
      - Helpers
03 - COMPONENTS
      - Buttons
      - Icons
      - Animations
04 - LAYOUT
      - Layout
      - Header
      - Footer
05 - PAGES
      - Home
      - Inside Pages
06 - PLUGINS

***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/* ----- RESET ----- */
/*
  HTML / Body
*/
html {
  word-break: break-word;
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}


* {
  box-sizing: border-box;
/*   list-style: none; */
  text-decoration: none;
  margin: 0;
  padding: 0;
}

:after,
:before {
  box-sizing: border-box;
}

button {
  border: none;
  box-shadow: none;
  background: none;
}

/*
  Global focus-visible ring for keyboard navigation
*/
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

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

hr {
  height: 1px;
  margin: 2rem 0;
  border: none;
  background: var(--black-60);
}

/*
  Reduced motion — disable transitions, animations, and smooth scroll
*/
@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;
  }
}
/* ----- COLORS ----- */
/*
 Colors / Typography @ root
*/
:root {
  /*
    Neutral Colors
  */
  --black-dk: #242424;
  --black: #333;
  --black-20: #4f4f4f;
  --black-40: #828282;
  --black-60: #bdbdbd;
  --white-60: #e0e0e0;
  --white-40: #f2f2f2;
  --white-20: #f5f4f6;
  --white: #fff;
  /*
    Site Specific Color Palette (OKLCH)
  */
  --brown-dark: oklch(0.2796 0.05 81.98);
  --green-dark: oklch(0.5594 0.1004 130.38);
  --green: oklch(0.7542 0.163 124.46);
  --green-light: oklch(0.9229 0.0628 118.34);
  --grey: oklch(0.9653 0.0054 117.92);
  --white: oklch(1 0 0);
  --black: oklch(0 0 0);
  --primary-font-color: var(--brown-dark);
  /*
    Global Font Colors
  */
  --primary-color: var(--primary-font-color);
  --h-color: var(--primary-font-color);
  --btn-color: var(--primary-color);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
  --accent-color: var(--primary-font-color);
}

/* ----- SIZING ----- */
/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width--lg: 1550px;
  --wrapper-max-width: 1400px;
  --wrapper-max-width--med: 1200px;
  --wrapper-max-width--sm: 1000px;
  --wrapper-max-width--x-sm: 800px;
}

html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
  html {
    --gap-fluid: 2rem;
    --neg-gap-fluid: -2rem;
  }
}
@media (min-width: 2000px) {
  html {
    --gap-fluid: 10vw;
    --neg-gap-fluid: -10vw;
  }
}
@media (min-width: 3000px) {
  html {
    --gap-fluid: 15vw;
    --neg-gap-fluid: -15vw;
  }
}
@media (min-width: 3500px) {
  html {
    --gap-fluid: 20vw;
    --neg-gap-fluid: -20vw;
  }
}

/* ----- TYPOGRAPHY ----- */
/*
  Responsive font sizing
*/
html {
  font-size: 16px;
}

/*
    Global Font Sizing

    IMPORTANT: When changing the type scale, also update:
    - inc/kadence-setup.php (Kadence variable font sizes)
    - editor-style.css (editor type scale)
*/
:root {
  /* Fluid type scale */
  --fs-xs: clamp(0.73rem, 0.11vi + 0.7rem, 0.8rem);
  --fs-sm: clamp(0.81rem, 0.21vi + 0.75rem, 0.93rem);
  --fs-base: clamp(0.88rem, 0.29vi + 0.8rem, 1.06rem);
  --fs-md: clamp(1.05rem, 0.56vi + 0.91rem, 1.41rem);
  --fs-lg: clamp(1.26rem, 0.95vi + 1.02rem, 1.88rem);
  --fs-xl: clamp(1.51rem, 1.52vi + 1.13rem, 2.5rem);
  --fs-xxl: clamp(1.81rem, 2.32vi + 1.23rem, 3.32rem);
  --fs-xxxl: clamp(2.18rem, 3.45vi + 1.31rem, 4.42rem);
}

/*
    Global Font Styles
*/
:root {
  --primary-font: "DM Sans", sans-serif;
  --h-font: "Outfit", sans-serif;
  --btn-font: "DM Sans", sans-serif;
  --p-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
  --accent-font: "DM Sans", sans-serif;
}

/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1.1;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--fs-xxl);
  text-rendering: optimizeLegibility;
  font-weight: 500;
  color: var(--h-color);
}

h2,
.h2 {
  font-size: var(--fs-xl);
  font-weight: 500;
}

h3,
.h3 {
  font-size: var(--fs-lg);
  font-weight: 500;
}

h4,
.h4 {
  font-size: var(--fs-md);
  font-weight: 500;
}

h5,
.h5 {
  font-size: var(--fs-base);
  font-weight: 500;
}

h6,
.h6 {
  font-size: var(--fs-sm);
  font-weight: 500;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  opacity: 0.65;
}

.content h1 {
  text-transform: unset;
}

.content h2 {
  text-transform: unset;
}

.content h3 {
  text-transform: unset;
}

.content h4 {
  text-transform: unset;
}

.content h5 {
  text-transform: unset;
}

.content h6 {
  text-transform: unset;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
  color: inherit;
  text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
  opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
  font-family: var(--primary-font);
  font-size: inherit;
  color: inherit;
}
a:hover, a:focus {
  opacity: 0.65;
}

.content a:not(.btn, .button) {
  color: var(--primary-font-color);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
}

.content a:hover:not(.btn, .button),
.content a:focus:not(.btn, .button) {
  opacity: 0.65;
}

/*
  Basic title link usually on block title
*/
.title-link {
  text-transform: uppercase;
  border-bottom: 2px solid var(--black-20);
  transition: color 0.25s ease-in-out;
}
.title-link:hover {
  color: var(--black-60);
}

/*
  Text --------------------
*/
/*
  Content class global styles
*/
.content {
  font-family: var(--p-font);
  font-style: normal;
  font-size: var(--fs-base);
  color: var(--p-color);
}

/*
  Paragraph text
*/
p {
  -webkit-margin-after: 0.75rem;
          margin-block-end: 0.75rem;
}

p:not(.content *) {
  font-family: var(--p-font);
  color: var(--p-color);
  font-size: var(--fs-base);
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
p:not(.content *)::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p:not(.content *)::selection {
  background-color: var(--black-60);
  color: white;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: var(--fs-base);
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}

.content ul,
.post-content ul,
.content ol,
.post-content ol {
  padding: 0 0 1.5rem 2rem;
}

.content ul li:not(.kb-query-item):not(.type-product)
.post-content ul li:not(.kb-query-item):not(.type-product) {
  list-style: disc;
  list-style-position: inside;
}
.shop-filter-menu > ul > li {
  list-style: none;
  list-style-position: initial;
}

.content ol li,
.post-content ol li {
  list-style: decimal;
  list-style-position: inside;
}

/*
  Span
*/
span {
  font-family: inherit;
  font-size: inherit;
}

/*
  Bold Text
*/
b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  display: inline-block;
  color: var(--accent-color);
  background: var(--green-light);
  border-radius: var(--radius);
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  padding: 0.5rem 1.2rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-transform: uppercase;
  font-family: var(--accent-font);
  font-size: var(--fs-sm);
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/* ----- VARIABLES ----- */
/*
  Random Custom Properties
*/
:root {
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  /* Border-radius */
  --radius: 30px;
}

/* ----- HELPERS ----- */
/*
  Helper classes
*/
/*
  Remove / Show content
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Margin / Padding Resets
*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none;
}

/*
  Shadows
*/
.header-shadow {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*
  PAGINATION STYLES for WP
*/
.page-numbers {
	background: var(--green-light);
}
.page-numbers.current {
	background: var(--green-dark) !important;
	color: var(--white) !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
  font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
  margin: 0;
  list-style: none;
  border-radius: 4px;
}

#breadcrumbs a {
  color: var(--black-20);
  text-decoration: none;
}
#breadcrumbs a:hover {
  color: var(--white-60);
}

/*
  Screen-reader only — visually hidden but accessible
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.5rem;
  overflow: visible;
  -webkit-clip-path: none;
          clip-path: none;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: normal;
}

/* ----- SITE-SPECIFIC UTILITIES ----- */
/*
  Leaf BG
*/
:where(.intro, .inside-leaf) {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}
:where(.intro, .inside-leaf)::before {
  content: "";
  position: absolute;
  inset-block-start: clamp(-5rem, -7vw, -2rem);
  inset-inline-start: clamp(-2rem, -3vw, 1rem);
  z-index: -1;
  width: clamp(34rem, 58vw, 58rem);
  aspect-ratio: 936/1010;
  background: url("img/leaf.svg") center/contain no-repeat;
  pointer-events: none;
}

@media (max-width: 800px) {
  :where(.intro, .inside-leaf)::before {
    inset-block-start: -3rem;
    inset-inline-start: -4rem;
    width: 40rem;
  }
}
/*-------------------------------------
  03 - COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/* ----- BUTTONS ----- */
/*
  Buttons
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button,
.kb-button,
.kt-btn-inner-text {
  position: relative;
  display: inline-block;
  background: var(--green-light);
  color: var(--primary-color);
  border-radius: var(--radius);
  border: none;
  padding: 1rem 1.8rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--btn-font);
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  cursor: pointer;
}
.btn::before,
a.btn::before,
.wp-block-button__link::before,
input[type=submit] :not(.search-form)::before,
.gform_button::before,
.kb-button::before,
.kt-btn-inner-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  z-index: -1;
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type=submit] :not(.search-form):hover,
input[type=submit] :not(.search-form):focus,
.gform_button:hover,
.gform_button:focus,
.kb-button:hover,
.kb-button:focus,
.kt-btn-inner-text:hover,
.kt-btn-inner-text:focus {
  opacity: 1;
}
.btn:hover::before, .btn:focus::before,
a.btn:hover::before,
a.btn:focus::before,
.wp-block-button__link:hover::before,
.wp-block-button__link:focus::before,
input[type=submit] :not(.search-form):hover::before,
input[type=submit] :not(.search-form):focus::before,
.gform_button:hover::before,
.gform_button:focus::before,
.kb-button:hover::before,
.kb-button:focus::before,
.kt-btn-inner-text:hover::before,
.kt-btn-inner-text:focus::before {
  transform: translateX(0);
}

.btn.btn--secondary {
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn.btn--secondary::before {
  content: none;
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  border-color: var(--green-light);
  color: var(--green-light);
}

.btn-full {
  width: 100%;
  margin: 0 0 10px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/*
  Links - Text links similar to buttons
*/
/*
  Basic text link usually inline
*/
.link {
  display: inline-block;
  color: var(--black-20);
  text-align: center;
}
.link:hover, .link:focus {
  color: var(--black-60);
}

/* ----- ICONS ----- */
/*
  Icons
*/
/*
  Icon before text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Icon after text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Social Icons
*/
/* ----- ANIMATIONS ----- */
/*
  Animations
*/
/*-------------------------------------
  04 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/* ----- LAYOUT ----- */
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: var(--wrapper-max-width);
}

.wrapper.wrapper--lg {
  max-width: var(--wrapper-max-width--lg);
}

.wrapper.wrapper--med {
  max-width: var(--wrapper-max-width--med);
}

.wrapper.wrapper--sm {
  max-width: var(--wrapper-max-width--sm);
}

.wrapper.wrapper--x-sm {
  max-width: var(--wrapper-max-width--x-sm);
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
  margin: 0 auto;
  padding: 0 var(--gap-fluid);
}

/*
  Grid Layouts
*/
.grid-auto-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .grid-auto-1 {
    grid-template-columns: 1fr;
  }
}
/*
  Flex Layouts
*/
.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/*
  Sections  - generally affect vertical spacing
*/
/* used for normal section to create space between */
.section {
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}

.section-sm {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}

/* used for section within another block or section */
.section-block {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
  -webkit-padding-before: 4rem;
          padding-block-start: 4rem;
  -webkit-padding-after: 4rem;
          padding-block-end: 4rem;
}

.section-spacer-sm {
  -webkit-padding-before: 3rem;
          padding-block-start: 3rem;
  -webkit-padding-after: 3rem;
          padding-block-end: 3rem;
}

.section-spacer-lg {
  -webkit-padding-before: 6rem;
          padding-block-start: 6rem;
  -webkit-padding-after: 6rem;
          padding-block-end: 6rem;
}

.section-spacer-top {
  -webkit-padding-before: 4rem;
          padding-block-start: 4rem;
}

.section-spacer-bottom {
  -webkit-padding-before: 4rem;
          padding-block-start: 4rem;
}

/* used to center section inside parent element as well as center align the text */
.section-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-prefooter {
  -webkit-margin-after: 7rem;
          margin-block-end: 7rem;
}

.section-title {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}

.section-subtitle {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  font-size: 1.2rem;
}

/*
  Section Headers
*/
.header {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
  text-align: center;
}

/*
  Alignment
*/
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/*
  Text Blocks
*/
.text-block {
  margin: 0 0 3rem;
}

.text-block-narrow {
  margin: 0 0 3rem;
  /* Adjust max-width as needed */
  max-width: 43rem;
}

.text-block-center {
  margin: 0 auto 3rem;
  /* Adjust max-width as needed or eliminate if already in a parent container */
  max-width: 43rem;
}

/*
  Full Width
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  padding: 0;
}

body:has(.full-width) {
  overflow-x: clip;
}

/* Kadence Blocks - adds back the 2rem inline pad needed */
.full-width .kt-row-column-wrap .kt-row-column-wrap {
  padding-inline: 2rem;
}

/* Kadence Blocks - when using the full-width class this fixes extra padding */
.full-width.kt-row-has-bg > .kt-row-column-wrap {
  padding-inline: 0;
}

.full-width-fluid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 var(--gap-fluid);
}

/* ----- SITE HEADER ----- */
/*
  Site Header
*/
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brown-dark);
}
.site-header .inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 clamp(12px, 2vw, 24px);
  align-items: center;
}
.site-header .inner .main-logo {
  justify-self: start;
  padding-block: 1rem;
}
.site-header .inner .main-logo img {
  width: clamp(160px, 16vw, 200px);
}

.home .site-header {
  position: fixed;
  background: transparent;
}

.site-header .right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header .contact-btn {
  padding: clamp(0.55rem, 1vw, 0.8rem) clamp(0.85rem, 1.4vw, 1.4rem);
  font-size: clamp(0.78rem, 0.9vw, var(--fs-base));
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink {
  background: var(--brown-dark);
}

/*
  Main Navigation
*/
.main-nav {
  justify-self: stretch;
  height: 100%;
}
.main-nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style: none;
}
.main-nav > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.main-nav > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: clamp(0.85rem, 0.95vw, var(--fs-base));
  color: var(--nav-color);
  padding: 0.8rem clamp(0.7rem, 1.2vw, 1.6rem);
  -webkit-margin-after: 0;
          margin-block-end: 0;
  position: relative;
  text-transform: uppercase;
}
.main-nav > ul > li:not(.current-menu-item):not(.current_page_item):not(.current-menu-ancestor) > a:hover, .main-nav > ul > li:not(.current-menu-item):not(.current_page_item):not(.current-menu-ancestor) > a:focus {
  color: var(--green-light);
  opacity: 1;
}
.main-nav > ul > li:not(.current-menu-item):not(.current_page_item):not(.current-menu-ancestor).menu-item-has-children:hover > a {
  color: var(--green-light);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  margin: 0;
  position: absolute;
  padding: 0.4rem;
  top: 85%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 13rem;
  height: auto;
  border: 1px solid oklch(from var(--green-light) l c h/0.22);
  border-radius: var(--radius);
  background: oklch(from var(--green-dark) calc(l - 0.06) c h);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
  z-index: 99999 !important;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transform-origin: top center;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav ul ul li {
  margin: 0;
  height: auto;
}

.main-nav ul ul li.menu-item-has-children:hover > a {
  color: var(--green-light);
}

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 0.65rem 1rem;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.main-nav ul ul li a:hover, .main-nav ul ul li a:focus {
  background: oklch(from var(--green-light) l c h/0.12);
  color: var(--green-light);
  opacity: 1;
}

.main-nav ul ul li:first-of-type {
  position: relative;
}

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  transform: translateX(-3px);
  transform-origin: left center;
}

.main-nav ul ul li:hover > ul,
.main-nav ul ul li:focus-within > ul {
  transform: translateX(0);
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON
*/
/*
  Search Trigger Icon / Cart Icon
*/
.search-trigger,
.site-header .cart {
  display: inline-grid;
  place-items: center;
  position: relative;
  padding: 5px;
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  color: var(--primary-color);
  cursor: pointer;
}
.search-trigger img,
.site-header .cart img {
  width: 100%;
  height: 100%;
}
.site-header .cart-count {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  display: grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding-inline: 0.3rem;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--primary-color);
  font-family: var(--btn-font);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  translate: 25% -25%;
}

/*
  Mobile Menu Icon
*/
.menu-icon {
  cursor: pointer;
  display: none;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 40px;
  height: 3px;
  margin-block: 9px;
  background: var(--white);
  transition: var(--transition);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
  background: var(--green-light);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
  transform: translate(0, 12px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
  opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
  transform: translate(0, -12px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 2rem 2rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 5000;
  background: var(--green-dark);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
}

.mobile-nav .exit {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  background: url("img/close.svg") center/100% no-repeat;
}

.mobile-nav nav {
  width: 100%;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.mobile-nav ul li {
  text-align: center;
  -webkit-margin-after: 15px;
          margin-block-end: 15px;
  width: 100%;
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--white);
  padding: 8px 15px;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  opacity: 0.65;
}

.mobile-nav .menu-item-has-children {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.mobile-nav .menu-item-has-children > a {
  grid-column: 2;
  justify-self: center;
}
.mobile-nav .menu-item-has-children > .submenu-wrap {
  grid-column: 1/-1;
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  overflow: hidden;
  transition: grid-template-rows 0.28s ease;
}

.mobile-nav .submenu-toggle {
  grid-column: 3;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  border: 1px solid oklch(from var(--green-light) l c h/0.35);
  border-radius: 50%;
  cursor: pointer;
}
.mobile-nav .submenu-toggle::before {
  content: "";
  width: 0.55rem;
  aspect-ratio: 1;
  border-right: 2px solid var(--green-light);
  border-bottom: 2px solid var(--green-light);
  rotate: 45deg;
  translate: 0 -0.1rem;
}

.mobile-nav .submenu-open > a {
  color: var(--green-light);
  opacity: 1;
}
.mobile-nav .submenu-open > .submenu-toggle::before {
  rotate: 225deg;
  translate: 0 0.1rem;
}
.mobile-nav .submenu-open > .submenu-wrap {
  grid-template-rows: minmax(0, 1fr);
}

.mobile-nav .mobile-logo {
  justify-self: center;
}
.mobile-nav .mobile-logo img {
  width: 300px;
}

/*
  Mobile DropDown
*/
.mobile-nav ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border: 1px solid oklch(from var(--green-light) l c h/0.18);
  border-radius: var(--radius);
  background: oklch(from var(--green-dark) calc(l - 0.05) c h);
  min-height: 0;
  overflow: hidden;
}
.mobile-nav ul.sub-menu li {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  border-bottom: none;
  opacity: 0;
  translate: 0 -0.35rem;
  transition: opacity 0.12s ease, translate 0.12s ease;
}

.mobile-nav .submenu-open > .submenu-wrap .sub-menu li {
  opacity: 1;
  translate: 0;
  transition: opacity 0.25s ease, translate 0.25s ease;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(1) {
  transition-delay: 0.16s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(3) {
  transition-delay: 0.24s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(4) {
  transition-delay: 0.28s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(5) {
  transition-delay: 0.32s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(6) {
  transition-delay: 0.36s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(7) {
  transition-delay: 0.4s;
}
.mobile-nav .submenu-open > .submenu-wrap .sub-menu li:nth-child(8) {
  transition-delay: 0.44s;
}

.mobile-nav ul ul li {
  display: block;
}

.mobile-nav ul ul li a {
  font-size: 0.95rem;
  font-weight: 400;
  border-bottom: none;
  padding-block: 0.45rem;
}

.mobile-nav .btn {
  border: none;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}
.mobile-nav .btn:hover, .mobile-nav .btn:focus {
  opacity: 0.65;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds accent-style pill to active top-level nav links */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  padding: 0.5rem 1.2rem;
  background: var(--green-light);
  color: var(--accent-color);
  border-radius: var(--radius);
  opacity: 1;
}
.main-nav .current-menu-item > a:hover, .main-nav .current-menu-item > a:focus,
.main-nav .current_page_item > a:hover,
.main-nav .current_page_item > a:focus,
.main-nav .current-menu-ancestor > a:hover,
.main-nav .current-menu-ancestor > a:focus {
  background: var(--green-light);
  color: var(--accent-color);
  opacity: 1;
}

/*
  Search Form
*/
.search-wrap {
  position: absolute;
  inset: 0;
  z-index: 7000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0 var(--gap-fluid);
  background: var(--brown-dark);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.search-wrap.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-wrap .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  width: min(100%, 54rem);
  justify-self: center;
  border: 1px solid oklch(from var(--green-light) l c h/0.45);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.search-wrap .search-form .search-icon {
  width: 3.75rem;
  min-height: 3.75rem;
  background: url("img/icons/icon-search.svg") center/55% no-repeat;
  cursor: pointer;
  border: none;
}
.search-wrap .search-form .search-box {
  border: 0;
  grid-column: 1/span 1;
  grid-row: 1;
  min-width: 0;
  padding: 0.9rem 1.25rem;
  background: var(--white);
}

input.search-box {
  color: var(--primary-font-color);
  font-size: var(--fs-base);
}

.search-exit {
  position: relative;
  flex-shrink: 0;
  width: clamp(48px, 5vw, 58px);
  height: clamp(48px, 5vw, 58px);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.search-exit::before, .search-exit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 2px;
  background: var(--white);
  translate: -50% -50%;
}
.search-exit::before {
  rotate: 45deg;
}
.search-exit::after {
  rotate: -45deg;
}
.search-exit:hover, .search-exit:focus {
  opacity: 0.65;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1100px) {
  .site-header .inner {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    display: none;
  }
  .site-header .right {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
}
@media (min-width: 1100px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
}
/* ----- SITE FOOTER ----- */
/*
  Site Footer
*/
/* Why Choose Us */
.why-choose {
  text-align: center;
}
.why-choose header {
  -webkit-margin-after: clamp(2.5rem, 5vw, 4rem);
          margin-block-end: clamp(2.5rem, 5vw, 4rem);
}
.why-choose .circles {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose .circle {
  display: grid;
  place-items: center;
  width: clamp(12rem, 19vw, 15rem);
  aspect-ratio: 1;
  border: 1px solid rgba(53, 38, 7, 0.45);
  border-radius: 50%;
  color: var(--primary-font-color);
  position: relative;
  z-index: 2;
}
.why-choose .circle + .circle {
  margin-left: clamp(-2.25rem, -3.5vw, -1.25rem);
}
.why-choose .circle-green {
  border-color: var(--green);
  background: var(--green);
  translate: 0 -1.75rem;
  z-index: 1;
}
.why-choose .circle-light {
  border-color: var(--green-light);
  background: var(--green-light);
  translate: 0 -1.75rem;
  z-index: 1;
}
.why-choose .circle-content {
  max-width: 10rem;
  padding: 1.5rem;
}
.why-choose .circle-content h3,
.why-choose .circle-content p {
  margin: 0;
}
.why-choose .circle-content p {
  -webkit-margin-before: 0.55rem;
          margin-block-start: 0.55rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}

@media (max-width: 800px) {
  .why-choose .circles {
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 1rem 0;
  }
  .why-choose .circle {
    width: clamp(9.5rem, 42vw, 12rem);
  }
  .why-choose .circle + .circle {
    margin-left: 0;
  }
  .why-choose .circle:nth-child(even) {
    margin-left: clamp(-2.25rem, -3.5vw, -1.25rem);
  }
  .why-choose .circle-green, .why-choose .circle-light {
    translate: 0;
  }
}
/* Testimonials */
.testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.testimonials .inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  height: 100%;
  background: var(--grey);
}
.testimonials .inner .reviews {
  -webkit-margin-before: -2rem;
          margin-block-start: -2rem;
}
.testimonials .inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(30rem, 42vw, 40rem);
  aspect-ratio: 735/522;
  background: url("img/Leaf 2.png") left bottom/100% 100% no-repeat;
  pointer-events: none;
}
@media (max-width: 800px) {
  .testimonials .inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .testimonials .inner .reviews {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

/* Main Footer Area */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding-block: 4rem 2rem;
}
.site-footer .inner h2,
.site-footer .inner h3,
.site-footer .inner p,
.site-footer .inner a {
  margin: 0;
  color: var(--white);
}
.site-footer .inner .top,
.site-footer .inner .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
.site-footer .inner .top {
  -webkit-padding-after: 4rem;
          padding-block-end: 4rem;
  -webkit-border-after: 1px solid oklch(from var(--green-light) l c h/0.3);
          border-block-end: 1px solid oklch(from var(--green-light) l c h/0.3);
}
.site-footer .inner .top .footer-cta {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}
.site-footer .inner .top .footer-cta .btn {
  color: var(--primary-font-color);
}
.site-footer .inner .top .newsletter {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 1.25rem;
  min-width: min(100%, 28rem);
}
.site-footer .inner .top .newsletter .newsletter-form {
  border: 1px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_wrapper {
  margin: 0;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_heading,
.site-footer .inner .top .newsletter .newsletter-form .gform_required_legend {
/*   display: none; */
}
.site-footer .inner .top .newsletter .newsletter-form form {
  display: flex;
  align-items: stretch;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_body {
  flex: 1;
  min-width: 0;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_fields {
/*   display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0; */
}
.site-footer .inner .top .newsletter .newsletter-form .gfield {
/*   margin: 0;
  padding: 0;
  width: 100%;
  border: 0; */
}
.site-footer .inner .top .newsletter .newsletter-form .gfield_label,
.site-footer .inner .top .newsletter .newsletter-form .gform-field-label {
/*   position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; */
}
.site-footer .inner .top .newsletter .newsletter-form .ginput_container {
/*   margin: 0; */
}
.site-footer .inner .top .newsletter .newsletter-form input[type="email"],
.site-footer .inner .top .newsletter .newsletter-form input[type="text"],
.site-footer .inner .top .newsletter .newsletter-form input.large,
.site-footer .inner .top .newsletter .newsletter-form select,
.site-footer .inner .top .newsletter .newsletter-form textarea {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 0.8rem 1.4rem;
  font: inherit;
  box-shadow: none;
}

.site-footer .inner .top .newsletter .newsletter-form input[type="email"]::-moz-placeholder,
.site-footer .inner .top .newsletter .newsletter-form input[type="text"]::-moz-placeholder,
.site-footer .inner .top .newsletter .newsletter-form input.large::-moz-placeholder,
.site-footer .inner .top .newsletter .newsletter-form select::-moz-placeholder,
.site-footer .inner .top .newsletter .newsletter-form textarea::-moz-placeholder {
/*   color: var(--white);
  opacity: 0.85; */
}

.site-footer .inner .top .newsletter .newsletter-form input[type="email"]::placeholder,
.site-footer .inner .top .newsletter .newsletter-form input[type="text"]::placeholder,
.site-footer .inner .top .newsletter .newsletter-form input.large::placeholder,
.site-footer .inner .top .newsletter .newsletter-form select::placeholder,
.site-footer .inner .top .newsletter .newsletter-form textarea::placeholder {
  color: var(--white);
  opacity: 0.85;
}
.site-footer .inner .top .newsletter .newsletter-form input[type="email"]:focus,
.site-footer .inner .top .newsletter .newsletter-form input[type="text"]:focus,
.site-footer .inner .top .newsletter .newsletter-form input.large:focus,
.site-footer .inner .top .newsletter .newsletter-form select:focus,
.site-footer .inner .top .newsletter .newsletter-form textarea:focus {
/*   outline: none;
  box-shadow: inset 0 0 0 1px var(--white); */
}
.site-footer .inner .top .newsletter .newsletter-form .gform_footer,
.site-footer .inner .top .newsletter .newsletter-form .gform-footer {
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--white);
}
.site-footer .inner .top .newsletter .newsletter-form .gform_button,
.site-footer .inner .top .newsletter .newsletter-form input[type="submit"].gform_button,
.site-footer .inner .top .newsletter .newsletter-form button.gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  height: 100%;
  margin: 0;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--white) !important;
  box-shadow: none;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  cursor: pointer;
  max-width: none;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_button::before,
.site-footer .inner .top .newsletter .newsletter-form input[type="submit"].gform_button::before,
.site-footer .inner .top .newsletter .newsletter-form button.gform_button::before {
  content: none;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_button:hover,
.site-footer .inner .top .newsletter .newsletter-form .gform_button:focus,
.site-footer .inner .top .newsletter .newsletter-form input[type="submit"].gform_button:hover,
.site-footer .inner .top .newsletter .newsletter-form input[type="submit"].gform_button:focus,
.site-footer .inner .top .newsletter .newsletter-form button.gform_button:hover,
.site-footer .inner .top .newsletter .newsletter-form button.gform_button:focus {
  background: rgb(255 255 255 / 0.08) !important;
  color: var(--white) !important;
  opacity: 1;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_ajax_spinner {
  position: absolute;
  inset-inline-end: 0.75rem;
  inset-block-start: 50%;
  translate: 0 -50%;
}
.site-footer .inner .top .newsletter .newsletter-form .gform_confirmation_message {
  margin: 0;
  padding: 0.8rem 1.4rem;
  color: var(--white);
  font-size: var(--fs-sm);
}
.site-footer .inner .top .newsletter .newsletter-form .gform_validation_errors,
.site-footer .inner .top .newsletter .newsletter-form .gfield_validation_message,
.site-footer .inner .top .newsletter .newsletter-form .validation_message {
/*   margin: 0.5rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  font-size: var(--fs-sm);
  box-shadow: none; */
}

.site-footer .inner .top .newsletter .newsletter-form.gform_validation_error {
  border-color: var(--white);
}

.site-footer .inner .bottom {
  -webkit-padding-after: 4rem;
          padding-block-end: 4rem;
  -webkit-border-after: 1px solid oklch(from var(--green-light) l c h/0.3);
          border-block-end: 1px solid oklch(from var(--green-light) l c h/0.3);
}
.site-footer .inner .bottom .brand {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 19rem;
}
.site-footer .inner .bottom .brand p {
  color: var(--white);
}
.site-footer .inner .bottom .brand .footer-logo img {
  display: block;
  width: min(100%, 14rem);
  height: auto;
}
.site-footer .inner .bottom .brand .social-links {
  display: flex;
  gap: 0.5rem;
}
.site-footer .inner .bottom .brand .social-links a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
.site-footer .inner .bottom .brand .social-links img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.site-footer .inner .bottom .footer-columns {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  -webkit-padding-before: 3rem;
          padding-block-start: 3rem;
}
.site-footer .inner .bottom .footer-columns .quick-links h3,
.site-footer .inner .bottom .footer-columns .contact h3 {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}
.site-footer .inner .bottom .footer-columns .quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .inner .bottom .footer-columns .quick-links ul li a {
  font-size: var(--fs-sm);
  text-wrap: pretty;
}
.site-footer .inner .bottom .footer-columns .contact {
  color: var(--white);
}
.site-footer .inner .bottom .footer-columns .contact address {
  font-style: normal;
}
.site-footer .inner .bottom .footer-columns .contact address,
.site-footer .inner .bottom .footer-columns .contact .phone,
.site-footer .inner .bottom .footer-columns .contact .hours {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--white);
  -webkit-margin-after: 0.9rem;
          margin-block-end: 0.9rem;
}
.site-footer .inner .bottom .footer-columns .contact address::before,
.site-footer .inner .bottom .footer-columns .contact .phone::before,
.site-footer .inner .bottom .footer-columns .contact .hours::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}
.site-footer .inner .bottom .footer-columns .contact address::before {
  background-image: url("img/icons/icon-location.svg");
}
.site-footer .inner .bottom .footer-columns .contact .phone::before {
  background-image: url("img/icons/icon-phone.svg");
}
.site-footer .inner .bottom .footer-columns .contact .hours::before {
  background-image: url("img/icons/icon-hours.svg");
  background-size: 75%;
}
.site-footer .inner .bottom .footer-columns .contact span,
.site-footer .inner .bottom .footer-columns .contact a {
  color: var(--white);
}
.site-footer .brand,
.site-footer .quick-links,
.site-footer .contact,
.site-footer .cred p {
  font-size: var(--fs-sm);
  line-height: 1.4;
}

@media (max-width: 800px) {
  .site-footer .inner {
    text-align: center;
  }
  .site-footer .inner .top,
  .site-footer .inner .bottom {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .site-footer .inner .top .footer-cta,
  .site-footer .inner .top .newsletter {
    align-items: center;
    justify-items: center;
  }
  .site-footer .inner .top .newsletter {
    align-self: center;
    justify-self: center;
  }
  .site-footer .inner .bottom .brand {
    align-items: center;
    max-width: 22rem;
  }
  .site-footer .inner .bottom .brand .footer-logo {
    display: grid;
    justify-items: center;
  }
  .site-footer .inner .bottom .brand .social-links {
    justify-content: center;
  }
  .site-footer .inner .bottom .footer-columns {
    display: none;
  }
}
/*-------------------------------------
  05 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/* ----- HOME PAGE ----- */
/*
  HERO
*/
.hero-wrapper {
  display: grid;
  position: relative;
  min-height: clamp(420px, 75vh, 760px);
  width: 100%;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}
.hero-wrapper::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1/-1;
  background: linear-gradient(rgba(12, 24, 4, 0.6), rgba(12, 24, 4, 0.6)), radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.hero-wrapper video {
  display: block;
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: 1200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 45%;
     object-position: center 45%;
  z-index: 0;
}
.hero-wrapper > *:not(video) {
  grid-column: 1/-1;
  grid-row: 1/-1;
  position: relative;
  z-index: 2;
}
.hero-wrapper .hero-content {
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-wrapper .hero-content h1 {
  color: var(--white);
  font-size: var(--fs-xxxl);
  margin: 0 0 2rem;
}
@media (max-width: 800px) {
  .hero-wrapper .hero-content {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

/*
  MAIN
*/
.home main {
  -webkit-margin-before: -10px;
          margin-block-start: -10px;
}

/*
  HOME INTRO SECTION
*/
.intro .inner {
  position: relative;
  z-index: 1;
}
.intro .inner .top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem 5rem;
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
}
.intro .inner .pharmacy {
  justify-self: start;
}
.intro .inner .pharmacy span {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.intro .inner .copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.intro .inner .bottom img {
  display: block;
  width: 100%;
  aspect-ratio: 2.25/1;
  height: auto;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 800px) {
  .intro .inner .top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .intro .inner .pharmacy {
    justify-self: center;
  }
  .intro .inner .copy {
    align-items: center;
  }
}
/*
  NEXT OFFERINGS
*/
.offerings {
  background: var(--grey);
}
.offerings .inner header {
  -webkit-margin-after: clamp(2.5rem, 5vw, 4rem);
          margin-block-end: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.offerings .inner .cards {
  border-top: 1px solid rgba(53, 38, 7, 0.12);
  visibility: visible;
}
.offerings .inner .splide__track {
  overflow: visible;
}
.offerings .inner .splide__list {
  display: block;
}
.offerings .inner .card {
  display: grid;
  grid-template-columns: auto 1fr 0.75fr 1fr auto;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 1.6rem 1rem;
  border-bottom: 1px solid rgba(53, 38, 7, 0.12);
  color: var(--primary-font-color);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.offerings .inner .card:hover, .offerings .inner .card:focus {
  background: var(--green-light);
  opacity: 1;
}
.offerings .inner .card:hover .arrow, .offerings .inner .card:focus .arrow {
  background-image: url("img/icons/icon-arrow-green.svg");
  transform: translateX(0.25rem);
}
.offerings .inner .card .number {
  font-weight: 600;
}
.offerings .inner .card h3,
.offerings .inner .card p {
  margin: 0;
}
.offerings .inner .card h3 {
  font-size: var(--fs-md);
}
.offerings .inner .card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6516/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.offerings .inner .card p {
  max-width: 15rem;
  line-height: 1.45;
}
.offerings .inner .card .arrow {
  justify-self: end;
  width: 3.3125rem;
  aspect-ratio: 1;
  background: url("img/icons/icon-arrow-white.svg") center/contain no-repeat;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

@media (max-width: 650px) {
  .offerings .inner .cards {
    border-top: 0;
  }
  .offerings .inner .splide__track {
    overflow: hidden;
  }
  .offerings .inner .splide__list {
    display: flex;
  }
  .offerings .inner .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    padding: clamp(2rem, 7vw, 3.5rem) clamp(1.5rem, 6vw, 3rem);
    border: 0;
    border-radius: 0.25rem;
    background: var(--green-light);
    text-align: center;
  }
  .offerings .inner .card img {
    order: 4;
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
  .offerings .inner .card p {
    order: 3;
    max-width: none;
  }
  .offerings .inner .card .arrow {
    display: none;
  }
  .offerings .inner .splide__arrows {
    display: none;
  }
}
/* ----- INSIDE PAGE ----- */
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  position: relative;
  isolation: isolate;
}
.feature::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 24, 4, 0.45);
}
.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 0;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
     object-position: 50% 75%;
}
.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  padding: 0 var(--gap);
  text-align: center;
  z-index: 2;
}
.feature .title span {
  color: var(--white);
  max-width: 30rem;
  line-height: 1.2;
  text-wrap: balance;
}

/*
  SHOP / PRODUCT ARCHIVE
*/
.shop-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
  border: 1px solid rgba(53, 38, 7, 0.14);
  border-radius: var(--radius);
  background: var(--green-light);
}
.shop-filters h2 {
  margin-block-end: 1rem;
}

.shop-filter-form {
  display: grid;
  gap: 1.25rem;
}
.shop-filter-form .shop-filter-group {
  display: grid;
  gap: 0.75rem;
}
.shop-filter-form .shop-filter-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  border: 1px solid rgba(53, 38, 7, 0.24);
  background-color: var(--white);
}
.shop-filter-form .shop-filter-search input[type=search] {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  background-color: transparent;
  color: var(--primary-font-color);
  font: inherit;
}
.shop-filter-form .shop-filter-search input[type=search]:focus {
  outline: none;
}
.shop-filter-form .shop-filter-search-field:focus-within {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.shop-filter-form .shop-filter-search-icon {
  width: 3rem;
  min-height: 3rem;
  padding: 0;
  border: 0;
  border-inline-start: 1px solid rgba(53, 38, 7, 0.24);
  background-color: var(--green);
  cursor: pointer;
  -webkit-mask: url("img/icons/icon-search.svg") center/55% no-repeat;
  mask: url("img/icons/icon-search.svg") center/55% no-repeat;
}
.shop-filter-form .shop-filter-search-icon:hover, .shop-filter-form .shop-filter-search-icon:focus {
  background-color: var(--green-dark);
}
.shop-filter-form .shop-filter-label {
  font-family: var(--accent-font);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
}
.shop-filter-form .shop-filter-menu {
  position: relative;
}
.shop-filter-form .shop-filter-menu summary {
  position: relative;
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 2.5rem 0.65rem 0.9rem;
  border: 1px solid rgba(53, 38, 7, 0.24);
  background-color: var(--white);
  color: var(--primary-font-color);
  font: inherit;
  cursor: pointer;
}
.shop-filter-form .shop-filter-menu summary::-webkit-details-marker {
  display: none;
}
.shop-filter-form .shop-filter-menu summary::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 1rem;
  width: 0.55rem;
  aspect-ratio: 1;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  rotate: 45deg;
  translate: 0 -65%;
}
.shop-filter-form .shop-filter-menu[open] summary::after {
  rotate: 225deg;
  translate: 0 -25%;
}
.shop-filter-form .shop-filter-menu ul {
  position: absolute;
  inset-block-start: calc(100% + 0.35rem);
  inset-inline: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  max-height: min(22rem, 55vh);
  overflow-y: auto;
  border: 1px solid rgba(53, 38, 7, 0.24);
  background: var(--white);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
  list-style: none;
}
.shop-filter-form .shop-filter-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-filter-form .shop-filter-menu a {
  display: block;
  padding: 0.35rem 0.5rem;
  color: var(--primary-font-color);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.shop-filter-form .shop-filter-menu a:hover, .shop-filter-form .shop-filter-menu a:focus, .shop-filter-form .shop-filter-menu a[aria-current=true] {
  color: var(--green);
  opacity: 1;
}
.shop-filter-form .clear-filters {
  justify-self: start;
  color: var(--primary-font-color);
  font-size: var(--fs-sm);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.shop-filter-form .clear-filters:hover, .shop-filter-form .clear-filters:focus {
  color: var(--green);
  opacity: 1;
}

@media (max-width: 800px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    position: static;
  }
}

/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}

/* Styles for WP category list */
.entry-category {
  display: inline-block;
}

.entry-category ul {
  display: inline-block;
}

.entry-category ul li {
  display: inline-block;
  margin-left: 5px;
}

/*-------------------------------------
  06 - PLUGINS PLUGINS PLUGINS PLUGINS
--------------------------------------*/
/* ----- PLUGIN STYLES ----- */
/*
  Real Testimonials
*/
.strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border: none;
}
.strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner .wpmtst-testimonial-content {
  order: 2;
  max-width: 35ch;
}
.strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner .wpmtst-testimonial-content .wpmtst-testimonial {
  border: none !important;
}
.strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner .wpmtst-testimonial-content p {
  font-size: var(--fs-base);
}
.strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner .testimonial-name {
  order: 3;
  font-weight: 700;
}

.strong-view.wpmtst-default.slider-container.slider-adaptive:not(.slider-mode-horizontal) .wpmslider-viewport {
  border: none !important;
}
.strong-view.controls-style-buttons:not(.rtl) .wpmslider-next::before,
.strong-view.controls-style-buttons:not(.rtl) .wpmslider-prev::before {
	background: #99c03b !important;
}


@media (max-width: 800px) {
  .strong-view-id-4 .strong-content .testimonial .wpmtst-testimonial-inner {
    align-items: center;
    text-align: center;
  }
}

/* ----- WOOCOMMERCE ----- */
/*
  WooCommerce buttons
  Cart/checkout use body.woocommerce-page (not .woocommerce) on modern WC pages.
*/
body.woocommerce-page a.button,
body.woocommerce-page button.button,
body.woocommerce-page input.button,
body.woocommerce-page #respond input#submit,
body.woocommerce-page #place_order,
body.woocommerce-page a.checkout-button,
body.woocommerce-page .single_add_to_cart_button,
body.woocommerce-page .added_to_cart,
body.woocommerce-page .wc-block-cart__submit-button,
body.woocommerce-page .wc-block-components-checkout-place-order-button,
body.woocommerce a.button,
body.woocommerce button.button,
body.woocommerce input.button,
body.woocommerce #respond input#submit,
body.woocommerce #place_order,
body.woocommerce a.checkout-button,
body.woocommerce .single_add_to_cart_button,
body.woocommerce .added_to_cart,
body.woocommerce .wc-block-cart__submit-button,
body.woocommerce .wc-block-components-checkout-place-order-button {
  display: inline-block;
  background: var(--green-light) !important;
  color: var(--primary-color) !important;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
  padding: .7rem 1.2rem;
  margin-block-end: .75rem;
  margin-inline: .25rem;
  max-width: -moz-max-content;
  max-width: max-content;
  font-family: var(--btn-font);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.22s ease;
}
body.woocommerce-page a.button:hover, body.woocommerce-page a.button:focus,
body.woocommerce-page button.button:hover,
body.woocommerce-page button.button:focus,
body.woocommerce-page input.button:hover,
body.woocommerce-page input.button:focus,
body.woocommerce-page #respond input#submit:hover,
body.woocommerce-page #respond input#submit:focus,
body.woocommerce-page #place_order:hover,
body.woocommerce-page #place_order:focus,
body.woocommerce-page a.checkout-button:hover,
body.woocommerce-page a.checkout-button:focus,
body.woocommerce-page .single_add_to_cart_button:hover,
body.woocommerce-page .single_add_to_cart_button:focus,
body.woocommerce-page .added_to_cart:hover,
body.woocommerce-page .added_to_cart:focus,
body.woocommerce-page .wc-block-cart__submit-button:hover,
body.woocommerce-page .wc-block-cart__submit-button:focus,
body.woocommerce-page .wc-block-components-checkout-place-order-button:hover,
body.woocommerce-page .wc-block-components-checkout-place-order-button:focus,
body.woocommerce a.button:hover,
body.woocommerce a.button:focus,
body.woocommerce button.button:hover,
body.woocommerce button.button:focus,
body.woocommerce input.button:hover,
body.woocommerce input.button:focus,
body.woocommerce #respond input#submit:hover,
body.woocommerce #respond input#submit:focus,
body.woocommerce #place_order:hover,
body.woocommerce #place_order:focus,
body.woocommerce a.checkout-button:hover,
body.woocommerce a.checkout-button:focus,
body.woocommerce .single_add_to_cart_button:hover,
body.woocommerce .single_add_to_cart_button:focus,
body.woocommerce .added_to_cart:hover,
body.woocommerce .added_to_cart:focus,
body.woocommerce .wc-block-cart__submit-button:hover,
body.woocommerce .wc-block-cart__submit-button:focus,
body.woocommerce .wc-block-components-checkout-place-order-button:hover,
body.woocommerce .wc-block-components-checkout-place-order-button:focus {
  background: var(--green) !important;
  color: var(--primary-color);
  opacity: 1;
}
body.woocommerce-page .wc-block-cart__submit-button,
body.woocommerce-page .wc-block-components-checkout-place-order-button,
body.woocommerce-page #place_order,
body.woocommerce .wc-block-cart__submit-button,
body.woocommerce .wc-block-components-checkout-place-order-button,
body.woocommerce #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  text-align: center;
}
body.woocommerce-page .wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce-page .wc-block-cart__submit-button .wc-block-components-checkout-place-order-button__text,
body.woocommerce-page .wc-block-components-checkout-place-order-button .wc-block-components-button__text,
body.woocommerce-page .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text,
body.woocommerce-page #place_order .wc-block-components-button__text,
body.woocommerce-page #place_order .wc-block-components-checkout-place-order-button__text,
body.woocommerce .wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce .wc-block-cart__submit-button .wc-block-components-checkout-place-order-button__text,
body.woocommerce .wc-block-components-checkout-place-order-button .wc-block-components-button__text,
body.woocommerce .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text,
body.woocommerce #place_order .wc-block-components-button__text,
body.woocommerce #place_order .wc-block-components-checkout-place-order-button__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
body.woocommerce-page a.button.disabled,
body.woocommerce-page a.button:disabled,
body.woocommerce-page button.button:disabled,
body.woocommerce-page input.button:disabled,
body.woocommerce-page .single_add_to_cart_button.disabled,
body.woocommerce a.button.disabled,
body.woocommerce a.button:disabled,
body.woocommerce button.button:disabled,
body.woocommerce input.button:disabled,
body.woocommerce .single_add_to_cart_button.disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

body.woocommerce-cart .cross-sells ul.products,
body.woocommerce-cart .cross-sells ul.products li.product,
body.woocommerce-cart .wp-block-woocommerce-product-collection ul,
body.woocommerce-cart .wp-block-woocommerce-product-collection li {
  margin-inline-start: 0;
  padding-inline-start: 0;
  list-style: none;
}

/*
  Shop catalog sorting
*/
body.woocommerce-page .woocommerce-ordering,
body.woocommerce-page .wc-block-catalog-sorting,
body.woocommerce .woocommerce-ordering,
body.woocommerce .wc-block-catalog-sorting {
  float: right;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 1.5rem;
}
body.woocommerce-page .woocommerce-ordering label,
body.woocommerce-page .wc-block-catalog-sorting label,
body.woocommerce .woocommerce-ordering label,
body.woocommerce .wc-block-catalog-sorting label {
  margin: 0;
  font-family: var(--accent-font);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
body.woocommerce-page .woocommerce-ordering select,
body.woocommerce-page .woocommerce-ordering select.orderby,
body.woocommerce-page .wc-block-catalog-sorting select,
body.woocommerce-page .wc-block-catalog-sorting select.orderby,
body.woocommerce .woocommerce-ordering select,
body.woocommerce .woocommerce-ordering select.orderby,
body.woocommerce .wc-block-catalog-sorting select,
body.woocommerce .wc-block-catalog-sorting select.orderby {
  width: auto;
  min-width: 9rem;
  max-width: 12rem;
  min-height: 2.25rem;
  padding: 0.35rem 1.75rem 0.35rem 0.6rem;
  border: 1px solid rgba(53, 38, 7, 0.24);
  border-radius: 0;
  background-color: var(--green-light);
  color: var(--primary-font-color);
  font-size: var(--fs-sm);
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 0.85rem) calc(50% - 0.1rem), calc(100% - 0.6rem) calc(50% - 0.1rem);
  background-size: 0.35rem 0.35rem;
  background-repeat: no-repeat;
}
body.woocommerce-page .woocommerce-result-count,
body.woocommerce .woocommerce-result-count {
  float: left;
  margin-block-end: 1.5rem;
  font-size: var(--fs-sm);
}
body.woocommerce-page ul.products,
body.woocommerce ul.products {
  clear: both;
}
body.woocommerce-page ul.products li.product a img,
body.woocommerce-page ul.products li.product .attachment-woocommerce_thumbnail,
body.woocommerce ul.products li.product a img,
body.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 16rem;
  object-fit: cover;
  object-position: center;
}

/*
  Single product page — gallery + two-column layout
*/
body.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
body.single-product div.product div.images,
body.single-product div.product div.summary {
  float: none;
  width: auto;
  max-width: 100%;
  min-width: 0;
}
body.single-product div.product div.images {
  margin-bottom: 0;
}
body.single-product div.product div.images .woocommerce-product-gallery,
body.single-product div.product div.images .woocommerce-product-gallery__wrapper,
body.single-product div.product div.images .flex-viewport,
body.single-product div.product div.images .woocommerce-product-gallery__image {
  max-width: 100%;
}
body.single-product div.product div.images .woocommerce-product-gallery__image img,
body.single-product div.product div.images .woocommerce-product-gallery__image .wp-post-image {
  width: 100%;
  max-width: 100%;
  max-height: min(32rem, 70vh);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.single-product div.product div.images .flex-control-thumbs img {
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-product div.product .woocommerce-tabs,
body.single-product div.product .related.products,
body.single-product div.product .upsells.products {
  grid-column: 1/-1;
}

@media (max-width: 800px) {
  body.single-product div.product {
    grid-template-columns: 1fr;
  }
}


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