/* ============================================
   DESIGN TOKENS - Online Pharmacy Theme
   ============================================ */

:root {
  /* Colors - Primary Palette */
  --color-primary-dark: #2e3f3b;
  --color-primary: #345144;
  --color-secondary: #69a3a8;
  --color-accent: #3f7756;
  --color-accent-light: #7dc183;

  /* Colors - Backgrounds */
  --bg-white: #ffffff;
  --bg-light-gray: #f7f7f7;
  --bg-light-green: #ebf8f2;
  --bg-mint: #dbedeb;
  --bg-input: #f4f4f4;
  --bg-input-hover: #fbfbfb;

  /* Colors - Text */
  --text-primary: #2e3f3b;
  --text-secondary: #555555;
  --text-muted: #696969;
  --text-light: #d3d5de;
  --text-white: #ffffff;

  /* Colors - UI States */
  --color-error: #b22234;
  --color-success: #69a3a8;
  --color-border: #e0e0e0;
  --color-border-light: #d3d5de;

  /* Gradients */
  --gradient-hero: linear-gradient(171.47deg,
      rgba(255, 255, 255, 0.1) 6.11%,
      rgba(219, 237, 235, 0.1) 23.71%,
      rgba(105, 163, 168, 0.1) 93.07%);
  --gradient-newsletter: linear-gradient(-89.48deg,
      #69a3a8 0.23%,
      #2e3f3b 118.96%);
  --gradient-card-hover: linear-gradient(90.52deg,
      #69a3a8 0.23%,
      #2e3f3b 118.96%);

  /* Spacing Scale */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 100px;

  /* Component-Specific Spacing */
  --gap-products: 24px;
  --gap-section: 93px;

  /* Border Radius */
  --radius-sm: 15px;
  --radius-md: 30px;
  --radius-lg: 50px;
  --radius-full: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.35s ease;

  /* Breakpoints (for reference in media queries) */
  --breakpoint-mobile: 480px;
  --breakpoint-tablet-small: 800px;
  --breakpoint-tablet-large: 1280px;
  --breakpoint-desktop: 1920px;
}

/* ============================================
   BASE STYLES
   ============================================ */

body,
main {
  background-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  white-space: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  color: #2e3f3b;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h1 {
  font-size: 72px;
  line-height: 82px;
}

h2 {
  font-size: 64px;
  line-height: 74px;
}

h3 {
  font-size: 48px;
  line-height: 58px;
}

h4 {
  font-size: 40px;
  line-height: 50px;
}

h5 {
  font-size: 36px;
  line-height: 46px;
}

h6 {
  font-size: 32px;
  line-height: 42px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 36px;
    line-height: 46px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }
}

.rich-text {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-xl);
  }

  p {
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-md);
  }

  ul {
    list-style-position: inside;
  }

  @media (min-width: 1440px) {
    width: 78%;
  }
}

/* Remove extra spacing on the first heading */
.rich-text :first-child {
  margin-top: 0;
}

.rich-text {

  h1+p,
  h2+p,
  h3+p,
  h4+p,
  h5+p,
  h6+p {
    margin-top: 0;
  }
}

.legal-page__page-content.rich-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #2e3f3b;
}

.legal-page__page-content.rich-text a {
  color: #2e3f3b;
  font-weight: 500;
  text-decoration: none;
}

.legal-page.section-padding.contact-us-page {
  text-align: center;
  padding-top: 20px;
  background-color: #F1F6F7;
}

.legal-page.section-padding.contact-us-page .legal-page__page-content.rich-text {
  width: 100%;
}

.titles-l {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0;
  vertical-align: middle;
}

.titles-m {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
}

.titles-s {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}

.label-s {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}

.label-m {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}

.paragraph-l {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
}

.paragraph-m {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}

.paragraph-s {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

.main-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 50px;
  gap: 9px;
  text-decoration: none;
  height: 69px;
  background: #2e3f3b;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  color: #ffffff;
}

.main-button.create-account {
  padding: 12px 16px;
}

.main-button svg {
  color: #ffffff;
}

.main-button:hover {
  background: #69a3a8;
}

.main-button:active {
  background: #3f7756;
}

.main-button:disabled {
  background: #696969;
  cursor: not-allowed;
  opacity: 0.7;
}

.secondary-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 9px;
  text-decoration: none;
  height: 69px;
  background: transparent;
  border: 1px solid #2e3f3b;
  border-radius: 50px;
  color: #2e3f3b;
  cursor: pointer;
}

.secondary-button:hover {
  border-color: #69a3a8;
  color: #69a3a8;
  background: #ffffff;
}

.secondary-button:active {
  border-color: #3f7756;
  color: #3f7756;
}

.secondary-button:disabled {
  color: #696969;
  border: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.tertiary-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 9px;
  text-decoration: none;
  height: 69px;
  background: #ffffff;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  color: #2e3f3b;

  width: 259px;
  font-size: 16px;
  font-weight: 600;
}

.tertiary-button:hover {
  background: #3f7756;
  color: #ffffff;
}

.tertiary-button:active {
  background: #dbedeb;
}

.tertiary-button:disabled {
  background: #f4f4f4;
  color: #696969;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.qty-plus svg,
.cart-item-quantity .qty-plus svg,
.single-product-form__quantity-selector .qty-plus svg {
  color: #2e3f3b;
}

.page-checkout .main-button svg {
  color: #ffffff !important;
}

.subscribe-input {
  width: 376px;
  height: 69px;
  border-radius: 50px;
  padding: 12px 8px 12px 24px;
  gap: 10px;
  border: 1px solid #e0e0e0;
  font-weight: 400;
  font-size: 16px;
  background: transparent;
  color: #dbedeb;
}

.subscribe-input::placeholder {
  color: #dbedeb;
  font-weight: 400;
  font-size: 16px;
}

.subscribe-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #dbedeb;
}

.input-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .password-toggle {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.password-input-wrapper .password-toggle svg {
  width: 20px;
  height: 20px;
}

.password-input-wrapper .login-input {
  padding-right: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
}

.site-header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  z-index: 10000;
  padding: 25px 15px;

  @media (min-width: 800px) {
    padding: 25px 40px;
  }
}

.site-header .header-main__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.site-header .header-main__actions__cart {
  display: flex;
}

.site-header .header-main__actions__cart__button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.site-header .header-main__actions__cart__counter {
  width: 23px;
  height: 23px;
  background-color: #69a3a8;
  border-radius: 50px;
  position: absolute;
  right: 24px;
  top: -16px;
  color: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.site-header .header-main__actions__userButton {
  background: none;
  border: none;
  color: #2e3f3b;
  cursor: pointer;
}

.site-header .header-main__actions__userTooltip {
  position: absolute;
  top: 40px;
  right: 0;
  background: #ffffff;
  border: 1px solid #f4f4f4;
  padding: 24px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  border-radius: 15px;
  width: 242px;
  z-index: 1000;
  flex-direction: column;
  gap: 16px;
}

.site-header .header-main__actions__userTooltip__separator {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}

.site-header .header-main__actions__userTooltip__rowWithIcon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.site-header .header-main__actions__userTooltip__rowWithIcon img {
  transform: rotate(-90deg);
  width: 20px;
  height: 20px;
}

.site-header .header-main__actions__userTooltip p {
  color: #2e3f3b;
}

.site-header .header-main__actions__userTooltip a {
  color: #69a3a8;
  text-decoration: none;
}

.site-header .header-main__tabs {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.site-header .header-main__tabs__tab {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 16px;
  color: #2e3f3b;
  cursor: pointer;
}

.site-header .header-main__tabs__allProductsTab {
  font-weight: 600;
  color: #2e3f3b;
  background-color: #dbedeb;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
}

.site-header .header-info {
  background-color: #2e3f3b;
  width: 100%;
  padding: 12px 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .header-info__text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

.site-header .header-info__email,
.site-header .header-info__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-header .header-info__email:hover,
.site-header .header-info__phone:hover {
  opacity: 0.8;
}

.site-header .header-info__email svg,
.site-header .header-info__phone svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

@media (max-width: 768px) {

  .site-header .header-info__email,
  .site-header .header-info__phone {
    font-size: 0;
  }

  .site-header .header-info__email svg,
  .site-header .header-info__phone svg {
    width: 18px;
    height: 18px;
  }
}

.header-main__tabs__tab.active {
  background-color: #69a3a8;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
}

.header-main__tabs__allProductsTab.active {
  background-color: #2e3f3b;
  color: white;
}

.header-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  background-color: #ffffff;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  z-index: 999;
}

.header-dropdown__content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.header-dropdown__label {
  color: #345144;
  flex-shrink: 0;
  min-width: 120px;
  margin-right: 60px;
}

.header-dropdown__tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px 80px;
  margin-top: 16px;
  flex: 1;
}

.header-dropdown__tag {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: 0.2s ease;
  color: #2e3f3b;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  min-height: 40px;
  flex: 1;
  cursor: pointer;
  text-decoration: none;
}

.header-dropdown__tag svg {
  transform: rotate(-90deg);
}

.header-dropdown__tag__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.header-dropdown__buttonSeeAll {
  width: 216px;
  height: 48px;
  text-decoration: none;
  cursor: pointer;
}

.header-dropdown.is-hidden {
  display: none !important;
}

.header-dropdown-all-products {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 700px;
  overflow-y: auto;
  background-color: #ffffff;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  z-index: 999;
  padding: 50px 92px;
}

.header-dropdown-all-products.is-hidden {
  display: none !important;
}

.header-dropdown-all-products:empty {
  display: none !important;
}

.header-dropdown-all-products .dropdown-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 12px;
}

.header-dropdown-all-products .group-card {
  padding: 24px;
  border-radius: 15px;
  background-color: #ebf8f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-dropdown-all-products .group-card h6 {
  color: #2e3f3b;
  margin-bottom: 16px;
}

.header-dropdown-all-products .treat-section {
  margin-top: 0.5rem;
}

.header-dropdown-all-products .treat-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}

.header-dropdown-all-products .treat-toggle.open>.arrow-icon {
  transform: rotate(180deg);
}

.header-dropdown-all-products .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  pointer-events: none;
}

.header-dropdown-all-products .treat-label {
  pointer-events: none;
  text-align: left;
  color: #2e3f3b;
}

.header-dropdown-all-products .headerMedicationsList {
  display: none;
  flex-direction: column;
  margin-left: 12px;
  margin-top: 16px;
  gap: 12px;
}

.header-dropdown-all-products .headerMedicationsList.show {
  display: flex !important;
}

.header-dropdown-all-products .headerMedicationItem {
  color: #696969;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.header-dropdown-all-products .headerMedicationItem a {
  color: #696969;
  text-decoration: none;
}

.header-dropdown-all-products .headerMedicationItem a:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  flex-direction: column;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 100px;
  background-color: #ffffff;
  color: #2e3f3b;
}

.site-footer .footer-bottom__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-footer .footer-bottom__links a {
  text-decoration: none;
  color: #2e3f3b;
}

.site-footer .footer-main {
  display: flex;
  padding: 50px 100px;
  background-color: #2e3f3b;
  justify-content: space-between;
  gap: 64px;
}

.site-footer .footer-main__leftSide {
  display: flex;
  flex-direction: column;
  gap: 62px;
  max-width: 460px;
}

@media (max-width: 1600px) {
  .site-footer .footer-main__leftSide {
    max-width: 300px;
  }
}

.site-footer .footer-main__leftSide__text {
  color: #ffffff;
  font-weight: 400;
}

.site-footer .footer-main__leftSide__logo {
  width: 299px;
  height: 76px;
}

.site-footer .footer-main__leftSide__socials {
  display: flex;
  gap: 16px;
}

.site-footer .footer-main__leftSide__socials__link {
  display: flex;
  text-decoration: none;
  padding: 8px;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  background-color: #ffffff;
}

.site-footer .footer-main__leftSide__socials__link img {
  width: 100%;
  height: 100%;
}

.site-footer .footer-main__rightSide {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.site-footer .footer-main__rightSide__column {
  min-width: 149px;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  gap: 0px;
}

.site-footer .footer-main__rightSide__column ul.top-categories-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer .footer-main__rightSide__column__title {
  font-weight: 600;
  color: #ffffff;
}

.site-footer .footer-main__rightSide__column__text {
  font-weight: 400;
  color: #d3d5de;
  font-size: 16px;
  line-height: 26px;
}

.site-footer .footer-main__rightSide__column__text a {
  font-weight: 400;
  color: #d3d5de;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}

.site-footer .footer-main__rightSide__column__text a:hover {
  text-decoration: underline;
}

.site-footer .footer-subscribe {
  display: flex;
  background: linear-gradient(-89.48deg, #69a3a8 0.23%, #2e3f3b 118.96%);
  padding: 45px 100px 61px 100px;
  justify-content: space-between;
}

.site-footer .footer-subscribe__leftSide {
  display: flex;
  flex-direction: column;
  gap: 17px;

  @media (min-width: 800px) {
    max-width: 50%;
  }
}

.site-footer .footer-subscribe__leftSide h3 {
  line-height: 64px;
  color: #ffffff;

  font-size: 32px;
  line-height: 42px;

  @media (min-width: 800px) {
    font-size: 36px;
    line-height: 46px;
  }

  @media (min-width: 1440px) {
    font-size: 48px;
    line-height: 64px;
  }
}

.site-footer .footer-subscribe__leftSide span {
  font-weight: 400;
  color: #ffffff;
}

.site-footer .footer-subscribe__rightSide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.site-footer .footer-subscribe__rightSide__inputs {
  display: flex;
  gap: 24px;
  flex-direction: column;

  @media (min-width: 1600px) {
    flex-direction: row;
  }
}

.site-footer .footer-subscribe__rightSide__inputs__inputBox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-subscribe__rightSide__inputs__inputBox span {
  color: #ffffff;
}

.site-footer .footer-subscribe__rightSide__inputs__inputBox span.wpcf7-not-valid-tip {
  color: #ff6565;
  font-size: 0.8em;
  margin-top: 10px;
}

.site-footer .footer-subscribe__rightSide button,
.site-footer .footer-subscribe__rightSide input[type='submit'] {
  width: 376px;
  font-size: 16px;
  font-weight: 600;
}

.site-footer .footer-subscribe__rightSide .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.site-footer .footer-subscribe .wpcf7 form.invalid .wpcf7-response-output,
.site-footer .footer-subscribe .wpcf7 form.unaccepted .wpcf7-response-output,
.site-footer .footer-subscribe .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 20px 0px 0px 0px;
  border-color: #ff6565;
  color: #fff;
  font-size: 0.8em;
  line-height: 1.2em;
}

.site-footer .footer-speak-to-us {
  display: flex;
}

.site-footer .footer-speak-to-us__leftSide {
  background-color: #dbedeb;
  display: flex;
  flex-direction: column;
  padding: 100px;
  width: 40%;
}

.site-footer .footer-speak-to-us__leftSide__title {
  font-size: 64px;
  font-weight: 300;
  color: #2e3f3b;
  line-height: 64px;
  margin-bottom: 26px;
}

.site-footer .footer-speak-to-us__leftSide__title strong {
  font-weight: 500;
}

.site-footer .footer-speak-to-us__leftSide p {
  color: #345144;
  margin-bottom: 67px;
}

.site-footer .footer-speak-to-us__leftSide__contactBox {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 58px;
}

.site-footer .footer-speak-to-us__leftSide__contactBox__row {
  display: flex;
  gap: 12px;
  align-items: start;
}

.site-footer .footer-speak-to-us__leftSide__contactBox__row__column {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.site-footer .footer-speak-to-us__leftSide__contactBox__row__column__label {
  color: #2e3f3b;
  line-height: 100%;
  height: 24px;
  display: flex;
  align-items: center;
}

.site-footer .footer-speak-to-us__leftSide__contactBox__row__column__field {
  color: #696969;
}

.site-footer .footer-speak-to-us__leftSide button {
  width: 259px;
  font-size: 16px;
  font-weight: 600;
}

.site-footer .footer-speak-to-us__rightSide {
  width: 60%;
  padding: 98px 95px 56px 95px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.accordion-item {
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.accordion-icon {
  font-size: 40px;
  font-weight: 100;
  transition: transform 0.3s ease;
  color: #3f7756;
}

.accordion-question {
  flex: 1;
  text-align: left;
  color: #2e3f3b;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: #555555;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
  padding-top: 24px;
}

.cart-success-alert {
  position: fixed;
  bottom: 63px;
  left: 43px;
  z-index: 10000;
  background: #ffffff;
  border: 1px solid #d3d5de;
  border-radius: 15px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 24px;
  width: 460px;
  transform: translateX(-120%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  height: 68px;
  display: flex;
  align-items: center;
}

.cart-success-alert.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-success-alert__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-success-alert__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #3f7756;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-success-alert__icon svg {
  width: 16px;
  height: 16px;
}

.cart-success-alert__text {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cart-success-alert__message {
  font-size: 20px;
  color: #2e3f3b;
  font-weight: 500;
}

.cart-success-alert__cart-link {
  color: #3f7756;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 500;
}

.cart-success-alert__close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-success-alert__close svg {
  width: 24px;
  height: 24px;
}

#drawer-wrapper {
  z-index: 99999;
}

#drawer-wrapper.drawer-open .add-to-cart-drawer,
#drawer-wrapper.drawer-open .drawer-overlay {
  visibility: visible;
}

#drawer-wrapper.drawer-visible .add-to-cart-drawer {
  transform: translateX(0);
}

#drawer-wrapper.drawer-visible .drawer-overlay {
  opacity: 1;
}

#drawer-wrapper .drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9998;
}

#drawer-wrapper .add-to-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 592px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #d3d5de;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
  z-index: 9999999;
}

#drawer-wrapper .add-to-cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
}

#drawer-wrapper .add-to-cart-drawer__content {
  padding: 24px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#drawer-wrapper .add-to-cart-drawer__content__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #dbedeb;
}

#drawer-wrapper .add-to-cart-drawer__content__footer {
  width: 100%;
}

#drawer-wrapper .add-to-cart-drawer__content__footer a {
  height: 69px;
  text-decoration: none;
}

#drawer-wrapper .add-to-cart-drawer__content__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 48px;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description__category {
  font-size: 16px;
  font-weight: 600;
  color: #69a3a8;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description__name {
  color: #555555;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description__priceRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description__priceRow__price {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #555555;
}

#drawer-wrapper .add-to-cart-drawer__content__body__description__priceRow__inStock {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #69a3a8;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__dropdownRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbedeb;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__dropdownRow label {
  font-size: 16px;
  font-weight: 600;
  color: #2e3f3b;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__dropdownRow select {
  width: 302px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  padding: 15px 16px;
  font-size: 16px;
  background-color: transparent;
  appearance: none;
  background-image: url('../icons/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__quantityRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__quantityRow__button {
  height: 69px;
  width: 283px;
  font-size: 16px;
  font-weight: 600;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__quantityRow__quantitySelector {
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 17px 24px;
  flex: 1;
  height: 69px;
  background: #ebf8f2;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__quantityRow__quantitySelector button {
  background: none;
  border: none;
  cursor: pointer;
}

#drawer-wrapper .add-to-cart-drawer__content__body__form__quantityRow__quantitySelector span {
  display: flex;
  justify-content: center;
  flex: 1;
  border: none;
  background: transparent;
  color: #2e3f3b;
  font-size: 24px;
}

#drawer-stock {
  display: flex;
  align-items: center;
  gap: 12px;
}

#drawer-stock .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

#drawer-stock.in-stock {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #69a3a8;
}

#drawer-stock.in-stock .dot {
  background-color: #69a3a8;
}

#drawer-stock.out-of-stock {
  color: #b22234;
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}

#drawer-stock.out-of-stock .dot {
  background-color: #b22234;
}

#quick-cart-wrapper {
  z-index: 99999;
}

#quick-cart-wrapper.drawer-open .quick-cart-drawer,
#quick-cart-wrapper.drawer-open .drawer-overlay {
  visibility: visible;
}

#quick-cart-wrapper.drawer-visible .quick-cart-drawer {
  transform: translateX(0);
}

#quick-cart-wrapper.drawer-visible .drawer-overlay {
  opacity: 1;
}

#quick-cart-wrapper .drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9998;
}

#quick-cart-wrapper .quick-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 592px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #d3d5de;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.0509803922);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
  z-index: 9999999;
}

#quick-cart-wrapper .quick-cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
}

#quick-cart-wrapper .quick-cart-drawer__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

#quick-cart-wrapper .quick-cart-drawer__content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbedeb;
  padding-bottom: 32px;
}

#quick-cart-wrapper .quick-cart-drawer__content__header h4 {
  color: #2e3f3b;
}

#quick-cart-wrapper .quick-cart-drawer__content__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

#quick-cart-wrapper .quick-cart-drawer__content__close:hover {
  background-color: #f4f4f4;
}

#quick-cart-wrapper .quick-cart-drawer__content__close svg {
  width: 20px;
  height: 20px;
  fill: #696969;
}

#quick-cart-wrapper .quick-cart-drawer__content__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 0;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0px;
  border-bottom: 1px solid #dbedeb;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__remove {
  height: min-content;
  margin-top: 4px;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__remove .remove-cart-item {
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__remove .remove-cart-item:hover {
  background-color: #f4f4f4;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__remove .remove-cart-item svg {
  width: 16px;
  height: 16px;
  fill: #696969;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__name {
  color: #555555;
  cursor: pointer;
  text-decoration: none;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__name:hover {
  text-decoration: underline;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__group {
  color: #69a3a8;
  font-size: 16px;
  font-weight: 600;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__attributes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__attributes .attribute-item.attribute-second,
#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__attributes .attribute-item.attribute-third {
  border-left: 1px solid #d3d5de;
  padding-left: 12px;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__attributes .attribute-label {
  color: #696969;
  font-weight: 400;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__attributes .attribute-value {
  color: #2e3f3b;
  font-weight: 500;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__price {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #555555;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-item__quantity {
  color: #2e3f3b;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-empty {
  text-align: center;
  padding: 40px 24px;
  color: #696969;
}

#quick-cart-wrapper .quick-cart-drawer__content__body .quick-cart-empty p {
  margin: 0;
  font-size: 14px;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__checkout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 13px;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__checkout__separator {
  height: 1px;
  width: 100%;
  background-color: #dbdee7;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__checkout__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__checkout__row__label {
  color: #2e3f3b;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__checkout__row__price {
  color: #2e3f3b;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer__cartButton svg {
  color: #ffffff;
}

#quick-cart-wrapper .quick-cart-drawer__content__footer a {
  height: 69px;
  text-decoration: none;
}

.tabs {
  display: flex;
  gap: 17px;
}

.tabs__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 135px;
  border-radius: 50px;
  padding: 12px 16px;
  background-color: #F4F4F4;
  color: #2e3f3b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.tabs__tab--active {
  background-color: #69a3a8;
  color: #ffffff;
}

.horizontal-card {
  display: flex;
  width: 100%;
  flex: 1;
  //max-width: 558px;
}

.horizontal-card__leftSide {
  border-radius: 15px 0 0 15px;
  width: 40%;
  min-width: 191px;
  background-color: #345144;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.horizontal-card__leftSide span {
  color: #ffffff;
  text-align: center;
}

.horizontal-card__rightSide {
  border-radius: 0 15px 15px 0;
  flex: 1;
  min-width: 0;
  background-color: #ffffff;
  display: flex;
  padding: 20px;
  border: 1px solid #d3d5de;
  gap: 13px;
  justify-content: space-between;

  @media (max-width: 1024px) {
    flex-direction: column;
  }
}

.horizontal-card__rightSide__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  color: #696969;
  flex: 1;
}

.horizontal-card__rightSide__info__priceRow {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.horizontal-card__rightSide__info__priceRow__price {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #555555;
}

.horizontal-card__rightSide__info__priceRow .stock-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background-color: #69a3a8;
}

.horizontal-card__rightSide__info__priceRow .stock-indicator.out-of-stock {
  background-color: #b22234;
}

.horizontal-card__rightSide__info__priceRow__stock {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #69a3a8;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.horizontal-card__rightSide__info__priceRow .out-of-stock {
  color: #b22234;
}

.horizontal-card__rightSide__cartButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid #d3d5de;
  cursor: pointer;

  @media (min-width: 1023px) {
    width: 50px;
  }
}

.product-item {
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  width: 100%;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  scroll-snap-align: start;
  margin: auto;
}

@media (min-width: 786px) {
  .product-item {
    flex-direction: column;
    height: 100%; //456px;
    max-width: 456px;
  }
}

.product-item:hover__body__info h6,
.product-item:hover__body__info__first-word,
.product-item:hover__body__info__rest-words {
  color: #69a3a8;
}

.product-item__header {
  background-color: #345144;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 191px;
  width: 45%;
  flex-shrink: 0;

  .product-item:hover & {
    background-color: var(--color-primary-dark);
  }
}

@media (min-width: 785px) {
  .product-item__header {
    height: 179px;
    width: 100%;
  }
}

.product-item__header__first-word,
.product-item__header h6 {
  font-weight: 500;
  color: #ffffff;
}

.product-item__header__rest-words {
  font-weight: 300;
  color: #ffffff;
}

.product-item__body {
  background-color: #ffffff;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: space-between;
}

.product-item__body__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-item__body__info__first-word,
.product-item__body__info h6 {
  font-weight: 500;
  color: #2e3f3b;
}

.product-item__body__info__rest-words {
  font-weight: 300;
  color: #2e3f3b;
}

.product-item__body__tags {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product-item__body__tags__tag {
  height: 44px;
  padding: 12px 16px;
  background-color: #ebf8f2;
  color: #2e3f3b;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
}

.product-item__body__description {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #6b7280;

  @media (min-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (min-width:768px) {
  .horizontal-card__rightSide__info__priceRow__price {
    font-size: 24px;
    line-height: 32px;
  }

}

.product-item__body__priceStockRow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.product-item__body__priceStockRow__price {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #555555;

  @media (min-width: 768px) {
    font-size: 24px;
    line-height: 32px;
  }
}

.product-item__body__priceStockRow__stock {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #69a3a8;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-item__body__priceStockRow .out-of-stock {
  color: #b22234;
}

.product-item__body__priceStockRow__stock.in-stock .stock-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background-color: #69a3a8;
}

.product-item__body__priceStockRow__stock.out-of-stock .stock-indicator {
  background-color: #b22234;
}

.breadcrumbs {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 6px 4px 11px 0px rgba(0, 0, 0, 0.0392156863);
  height: 76px;
  padding: 25px 15px;

  @media (min-width: 800px) {
    padding: 25px 40px;
  }
}

.breadcrumbs__container {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 16px;
  color: #696969;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumbs__item.breadcrumbs__link {
  color: #696969;
  transition: color 0.2s ease;
  cursor: pointer;
}

.breadcrumbs__item.breadcrumbs__link:hover {
  color: #2e3f3b;
}

.breadcrumbs__item.breadcrumbs__current {
  color: #696969;
  font-weight: 400;
}

.breadcrumbs__separator {
  color: #696969;
  font-size: 0.875rem;
  margin: 0 0.25rem;
  user-select: none;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ======================================== */

/* Default: hide mobile-specific controls until breakpoint overrides them */
.header-main__mobile-all-products {
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #d3d5de;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-hidden {
  display: none;
}

.mobile-menu__content {
  padding: 16px 20px;
}

/* Mobile menu header (close X) */
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px 0 12px;
}

.mobile-menu-close {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-close:focus {
  outline: 2px solid #69a3a8;
}

/* Mobile menu wrapper */
.mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile group section */
.mobile-group-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ebf8f2;
  border-radius: 15px;
  padding: 15px;
}

.mobile-group-section:first-child {
  padding-top: 0;
}

/* Mobile group toggle button - header with chevron on the right, title on the left */
.mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  color: #2e3f3b;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-group-toggle:hover {
  color: #69a3a8;
}

.mobile-group-title {
  color: #2e3f3b;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  text-align: left;
}

/* Mobile chevron icon - positioned on the right, rotates 180deg when open */
.mobile-group-toggle .mobile-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.mobile-group-toggle[aria-expanded='true'] .mobile-chevron {
  transform: rotate(180deg);
}

/* Mobile group content - collapsible container */
.mobile-group-content {
  display: none;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.3s ease, padding-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-group-section.open .mobile-group-content {
  gap: 12px;
  max-height: 3000px;
  opacity: 1;
  margin-left: 20px;
}

/* Mobile treat row (each treat + its medications) */
.mobile-treat-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

/* Mobile treat label - clickable button to toggle medications list */
.mobile-treat-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: none;
  border: none;
  padding: 6px 0;
  color: #555555;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-treat-label:hover {
  color: #69a3a8;
}

/* Chevron icon for treat label - rotates when expanded */
.mobile-treat-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.mobile-treat-label[aria-expanded='true'] .mobile-treat-chevron {
  transform: rotate(180deg);
}

/* Mobile medications list */
.mobile-medications-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-left 0.3s ease;
}

.mobile-medications-list[style*='display: flex'] {
  display: flex;
  max-height: 2000px;
  padding-left: 16px;
}

/* Mobile medication item */
.mobile-medication-item {
  padding: 4px 0;
}

.mobile-medication-link {
  color: #696969;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.mobile-medication-link:hover {
  color: #2e3f3b;
  text-decoration: underline;
}

/* Tablet & Mobile - Hide desktop tabs */
@media (max-width: 1024px) {

  /* Hide desktop tabs on smaller screens (use higher specificity to override earlier rules) */
  .site-header .header-main__tabs,
  .header-main__tabs {
    display: none !important;
  }

  .header-main__mobile-all-products {
    display: block;
    background: none;
    border: none;
    padding: 8px 16px;
    color: #2e3f3b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu:not(.is-hidden) {
    display: block;
  }

  .site-footer .footer-main__rightSide {
    flex-direction: column;
  }
}

/* Desktop - Show tabs and hide mobile button */
@media (min-width: 1025px) {
  .header-main__mobile-all-products {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 800px) {

  .site-footer .footer-main,
  .site-footer .footer-subscribe,
  .home-info__topSection,
  .site-footer .footer-subscribe__rightSide__inputs,
  .site-footer .footer-speak-to-us {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer .footer-subscribe {
    padding: 20px;
  }

  .subscribe-input,
  .site-footer .footer-subscribe__rightSide button,
  .site-footer .footer-subscribe__rightSide input[type='submit'] {
    width: 100% !important;
  }

  .home .home-about__content__tabs {
    flex-direction: row !important;
  }

  .home .home-about__content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    flex-direction: column !important;
  }

  .home .home-about__content__textBox__title {
    width: 100% !important;
    min-height: 120px !important;
    padding: 0 !important;
  }

  .home .home-about__content__textBox__subtitle {
    width: 100% !important;
    padding: 0 !important;
    margin-top: 0px !important;
  }

  .home .home-about__image {
    position: relative !important;
    width: 100% !important;
  }

  .home .home-about {
    background-color: #fff !important;
  }

  .site-footer .footer-speak-to-us__leftSide,
  .site-footer .footer-speak-to-us__rightSide,
  .site-footer .footer-main {
    width: 100% !important;
    padding: 50px 20px !important;
  }

  div#faqAccordion {
    gap: 30px !important;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 20px !important;
    gap: 20px;
  }
}

/* ============================================
   PRODUCT LIST COMPONENTS
   ============================================ */

/* Base container for all product list sections */
.product-list__container {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md);
  gap: var(--gap-section);

  @media (min-width: 800px) {
    padding: var(--spacing-4xl);
  }
}

/* Product list header - contains title and optional buttons/tabs */
.product-list__header {
  display: flex;
  justify-content: space-between;

  @media (max-width: 1023px) {
    overflow: scroll;
  }
}

.product-list__header .main-button {
  @media (max-width: 1023px) {
    display: none;
  }
}

.product-list__container .other-products__button-footer {
  display: none;

  @media (max-width: 1023px) {
    display: flex;
    width: fit-content;
  }
}

/* Product list title - unified styling across all pages */
.product-list__title {
  font-size: 64px;
  line-height: 64px;
  font-weight: 500;
  color: var(--text-primary);

  span {
    font-weight: 300;
    color: var(--color-secondary);
  }

  @media (max-width: 768px) {
    font-size: 48px;
    line-height: 48px;
  }

  @media (max-width: 785px) {
    font-size: 36px;
    line-height: 36px;
  }
}

/* Product grid - responsive layout for product items */
.product-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-products);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-self: center;

  /* Tablet Small: 480px - 1279px = 2 columns */
  @media (min-width: 800px) {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tablet Large: 1280px - 1919px = 3 columns */
  @media (min-width: 1280px) {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Desktop: >= 1920px = 4 columns */
  @media (min-width: 1920px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pagination - Dots variant (for homepage popular products) */
.product-list__pagination--dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-2xl);
}

.pagination-dot {
  border-radius: 100px;
  width: 17px;
  height: 17px;
  background-color: #69a3a8;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;

  &:hover {
    opacity: 0.8;
  }

  &.active {
    width: 28px;
    background-color: #3f7756;
  }
}

/* Pagination - Numbers variant (for shop/category pages) */
.product-list__pagination--numbers {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;

  .page-numbers {
    background-color: var(--bg-mint);
    width: 48px;
    height: 48px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);

    &:hover {
      background-color: var(--color-secondary);
      color: var(--text-white);
    }

    &.current {
      color: var(--text-white);
      background-color: var(--color-primary-dark);
    }

    &.next,
    &.prev {
      background-color: transparent;
      color: var(--text-primary);
      cursor: pointer;
      width: fit-content;
      border: none;

      &:hover {
        color: var(--color-secondary);
      }
    }
  }
}

/* Add to Cart Button - Global Styles */
.add-to-cart-button button {
  height: 48px;
  border: 1px solid #d3d5de;
  margin-top: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  background-color: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);

  &:hover {
    background-color: var(--color-primary-dark);
    color: var(--text-white);
    border-color: var(--color-primary-dark);
  }
}

@media (max-width: 768px) {
  .add-to-cart-button__text {
    display: none;
  }
}

/* ============================================
   BENEFITS COMPONENT
   ============================================ */

/* Benefits Section - Reusable component for displaying key benefits */
.benefits {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 100px;
  background-repeat: no-repeat;
  background-size: cover;

  @media (min-width: 1280px) {
    padding: 100px;
  }
}

.benefits__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;

  @media (min-width: 800px) {
    flex-direction: row;
    gap: 48px;
  }
}

.benefits__top__content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.benefits__top__content h2 {
  color: #69a3a8;
  font-size: 64px;
  line-height: 64px;

  @media (max-width: 1024px) {
    font-size: 48px;
    line-height: 48px;
  }

  @media (max-width: 785px) {
    font-size: 36px;
    line-height: 36px;
  }
}

.benefits__top__content h2 span {
  color: #2e3f3b;
  font-weight: 300;
  font-size: 64px;
  line-height: 64px;

  @media (max-width: 1024px) {
    font-size: 48px;
    line-height: 48px;
  }

  @media (max-width: 785px) {
    font-size: 36px;
    line-height: 36px;
  }
}

.benefits__top__content__description {
  max-width: 557px;
  color: #2e3f3b;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.benefits__top a {
  width: fit-content;
  min-width: 231px;
  font-weight: 600;
  font-size: 16px;
  align-self: flex-start;

  @media (min-width: 800px) {
    align-self: center;
  }
}

.benefits__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;

  @media (min-width: 1280px) {
    flex-direction: row;
  }
}

.benefits__list__item {
  border-top: 1px solid #2e3f3b;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  flex: 1;
}

.benefits__list__item h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
}

.benefits__list__item span {
  color: #696969;
}



.section-padding {
  padding: var(--spacing-md);
}

@media (min-width: 1024px) {
  .section-padding {
    padding: var(--spacing-4xl);
  }
}

/* ============================================
   404 PAGE
   ============================================ */

.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(235, 248, 242, 0.2);
  padding-top: 173px;
  padding-bottom: 220px;
  gap: 32px;
}

.page-404__image {
  max-width: 100%;
  height: auto;
}

.page-404__buttonBox {
  display: flex;
  gap: 24px;
}

.page-404__buttonBox a {
  font-size: 16px;
  font-weight: 600;
  min-width: 194px;
  text-decoration: none;
}

/* ============================================
   RESPONSIVE: 404 PAGE
   ============================================ */

@media (max-width: 768px) {
  .page-404 {
    padding: 80px 20px 100px;
  }

  .page-404__buttonBox {
    flex-direction: column;
    width: 100%;
  }

  .page-404__buttonBox a {
    width: 100%;
    min-width: auto;
  }
}

.paragraph-m.footer-speak-to-us__leftSide__contactBox__row__column__field a {
  color: #345144;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.site-footer p.footer-main__rightSide__column__text.speak-to-us-phone {
  margin: 0;
}

.paragraph-m.footer-speak-to-us__leftSide__contactBox__row__column__field .footer-main__rightSide__column.speak-to-us-address {
  gap: 0;
  max-width: 260px;
}

.paragraph-m.footer-speak-to-us__leftSide__contactBox__row__column__field .footer-main__rightSide__column.speak-to-us-address p {
  margin: 0;
}

.product-item__body #meta-origin,
.product-item__body #meta-origin span,
.product-item__body #meta-origin p,
.product-item__body #meta-origin p span {
  font-weight: 400;
  color: #6b7280;
  font-size: 16px !important;
  text-align: unset;
}

.site-footer .footer-main__rightSide__column__text a.paragraph-s {
  vertical-align: unset;
}

@media screen and (min-width:1024px) and (max-width:1536px) {
  .site-footer .footer-main {
    padding: 50px 40px;
    gap: 20px;
  }

  .site-footer .footer-bottom {
    padding: 24px 40px;
  }

  .footer-main__rightSide__column__text.breakline-email {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* ============================================
   CONTACT US FORM (CF7)
   ============================================ */

.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 600px;
  width: 100%;
  padding: 30px 0;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 9;
}

.contact-us-form .side-by-side {
  display: flex;
  gap: var(--spacing-md);
  width: 100%;
}

.contact-us-form .side-by-side label {
  flex: 1;
  min-width: 0;
}

.contact-us-form .single-line {
  width: 100%;
}

.contact-us-form label {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
}

.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 58px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 0 var(--spacing-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: var(--transition-fast);
}

.contact-us-form input[type="text"]:focus,
.contact-us-form input[type="email"]:focus,
.contact-us-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--bg-input-hover);
}

.contact-us-form input[type="text"]::placeholder,
.contact-us-form input[type="email"]::placeholder,
.contact-us-form textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.contact-us-form textarea {
  min-height: 150px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-white);
  resize: vertical;
  transition: var(--transition-fast);
}

.contact-us-form input[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  padding: 12px 50px;
  background: var(--color-primary-dark);
  border: none;
  border-radius: var(--radius-lg);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
  width: fit-content;
}

.contact-us-form input[type="submit"]:hover {
  background: var(--color-secondary);
}

.contact-us-form input[type="submit"]:active {
  background: var(--color-accent);
}

.contact-us-form .wpcf7-spinner {
  display: none;
}

.contact-us-form .wpcf7-not-valid {
  border-color: var(--color-error);
}

.contact-us-form .wpcf7-not-valid-tip {
  color: var(--color-error);
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

.contact-us-form .wpcf7-response-output {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 14px;
  margin: 0;
}

.contact-us-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-us-form .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: var(--color-error);
  color: var(--color-error);
}

.contact-us-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-success);
  color: var(--color-success);
}

.background-op img {
  position: absolute;
  right: 0;
  top: 270px;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {

  .horizontal-card__rightSide__info__priceRow,
  .product-item__body__priceStockRow {
    flex-direction: column;
  }


  .product-item__body__priceStockRow .product-item__body__priceStockRow__price,
  .product-item__body__priceStockRow .product-item__body__priceStockRow__stock in-stock,
  .product-item__body__priceStockRow__stock.in-stock {
    width: 100%;
  }

  .contact-us-form .side-by-side {
    flex-direction: column;
  }

  .contact-us-form input[type="submit"] {
    width: 100%;
  }

  .horizontal-card__leftSide {
    min-width: 45%;
  }
}