/* ====== FONTS ====== */
@import url("https://use.typekit.net/wfm7hif.css");

/* ====== TOKENS ====== */
:root {
  --clr--navy: 35, 55, 86;
  --clr--gold: 192, 163, 97;
  --clr--white: 255, 255, 255;
  --clr--black: 0, 0, 0;
  --clr--card-bg: 245, 245, 245;
  --clr--body-txt: 74, 74, 74;

  --fnt--poppins: "Poppins", sans-serif;
  --fnt--dejanire: "dejanire-headline", serif;

  --max-width: 1320px;
  --header-h-pill: 68px;
  --header-h-full: 60px;
  --header-m-pill: 16px;

  --clr-dot-inactive: #b2bec3;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgb(var(--clr--white));
  box-shadow: inset 1px 1px 2px rgba(var(--clr--black), 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--navy));
  border-radius: 7px;
}

/* ====== BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  color: rgb(var(--clr--body-txt));
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  font-family: var(--fnt--poppins);
  line-height: 1.65;
  background: rgb(var(--clr--white));
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  line-height: 1.15;
  font-weight: 700;
  border-bottom: 0;
}

h1 {
  font-size: clamp(24px, 3.5vw, 58px);
}

h2 {
  font-size: clamp(22px, 2.2vw, 42px);
}

h3 {
  font-size: clamp(21px, 1.5vw, 30px);
}

h4 {
  font-size: clamp(18px, 1.2vw, 24px);
}

p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  font-weight: 400;
}

ul,
ol {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  font-weight: 400;
  padding-left: 24px;
}

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

a:hover {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  position: relative;
}

section {
  position: relative;
}

/* ====== UTILITIES ====== */
.desktop {
  display: inline-block !important;
}

.mobile {
  display: none !important;
}

.hidden {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.section-row {
  padding-block: clamp(48px, 5.5vw, 80px);
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(15px, 3vw, 30px);
}


/* ====== ANIMATED TITLE ====== */

.animated-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.animated-word--visible {
  animation: revealWord 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== COLOR UTILITIES ====== */
.clr--navy {
  color: rgb(var(--clr--navy)) !important;
}

.clr--gold {
  color: rgb(var(--clr--gold)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fnt--dejanire);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  padding: clamp(12px, 0.7vw, 13px) clamp(28px, 3.5vw, 52px);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--fill-white {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--white));
}

.btn--fill-white:hover,
.btn--fill-white:focus-visible {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--navy));
  outline: none;
}

.btn--navy {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--navy));
}

.btn--navy:hover,
.btn--navy:focus-visible {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--gold));
  outline: none;
}

.btn--navy_var {
  color: rgb(var(--clr--navy));
  background-color: rgb(var(--clr--white));
}

.btn--navy_var:hover,
.btn--navy_var:focus-visible {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
}


/* ============================================
   HEADER
   ============================================ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header__inner {
  width: 100%;
  padding: 20px 10px 0;
  transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.header__inner-content {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h-pill);
  background-color: rgb(var(--clr--gold));
  border-radius: 999px;
  padding: 0 clamp(24px, 3vw, 40px);
  transition: height 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease, padding 0.35s ease;
}

.header--scrolled .header__inner {
  background-color: rgb(var(--clr--navy));
  padding: 0;
  box-shadow: 0 3px 20px rgba(var(--clr--black), 0.18);
}

.header--scrolled .header__inner-content {
  border-radius: 0;
  max-width: var(--max-width);
  background-color: rgb(var(--clr--navy));
}

.header--scrolled .header__nav-link {
  color: rgb(var(--clr--white));
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  width: 250px;
  height: auto;
  position: relative;
  transition: width 0.35s ease;
}

.header--scrolled .header__logo-img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  align-items: center;
}

ul.header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: rgb(var(--clr--navy));
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  line-height: 1;
  display: block;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: rgb(var(--clr--navy));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.header--scrolled .header__nav-link::after {
  background-color: rgb(var(--clr--gold));
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  outline: none
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  width: 100%;
}

.header__nav-link--active {
  color: rgb(var(--clr--navy)) !important;
  font-weight: 700;
}

.header--scrolled .header__nav-link--active {
  color: rgb(var(--clr--white)) !important;
  font-weight: 700;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__hamburger-icon {
  background-color: rgb(var(--clr--navy));
  width: 26px;
  height: 2px;
  display: block;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}


/* ============================================
   HERO
   ============================================ */
.hero-section {
  background-color: rgb(var(--clr--navy));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: calc(var(--header-h-pill) + var(--header-m-pill));
}

.hero__container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-right: 0;
  display: flex;
  align-items: stretch;
}

.hero__content {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(14px, 1.8vw, 30px);
  padding-bottom: clamp(24px, 4vw, 50px);
  padding-right: clamp(24px, 3vw, 48px);
}

.hero__icon {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s ease 0.05s forwards;
}

.hero__icon img {
  width: 60px;
  height: 60px;
}

.hero__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  color: rgb(var(--clr--white));
}

.hero__body {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

.hero__text {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  line-height: 1.72;
  opacity: 0;
  transform: translateY(16px);
}

.hero__text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay);
}

.hero__cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(14px);
}

.hero__cta.is-visible {
  animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay);
}

.hero__image-wrap {
  width: 45%;
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.hero__image-frame {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 500px 0 0 500px;
  overflow: hidden;
  background-color: #EBEBEA;
  border: 2px solid rgb(var(--clr--gold));
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 2vw;
  object-position: right;
}

.hero__badge {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: rgb(var(--clr--gold));
  border-radius: 200px 0 0 200px;
  padding: clamp(12px, 1.5vw, 15px) clamp(12px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: -4px 4px 20px rgba(var(--clr--black), 0.20);
  opacity: 0;
  animation: slideLeft 0.55s ease 0.65s forwards;
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero__badge-icon img {
  width: 60px;
  height: 60px;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero__badge-name {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 700;
  color: rgb(var(--clr--navy));
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.hero__badge-date {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}


/* ============================================
   DID YOU KNOW
   ============================================ */
.did-you-know {
  background-color: rgb(var(--clr--white));
  padding-bottom: clamp(48px, 5vw, 80px);
}

.did-you-know__heading-wrap {
  margin-bottom: clamp(32px, 3.5vw, 56px);
  opacity: 0;
  transform: translateY(20px);
}

.did-you-know__heading-wrap.is-visible {
  animation: fadeUp 0.6s ease forwards;
}

.did-you-know__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 47px);
  color: rgb(var(--clr--navy));
  margin: 0;
}

.did-you-know__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.did-you-know__divider {
  width: 1px;
  background-color: rgba(var(--clr--navy), 0.15);
  flex-shrink: 0;
  align-self: stretch;
  margin-inline: clamp(16px, 2.5vw, 36px);
}

.did-you-know__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 3.5vw, 35px);
  opacity: 0;
  transform: translateY(28px);
}

.did-you-know__stat.is-visible {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.did-you-know__stat-top {
  min-height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.did-you-know__label {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  line-height: 1.35;
  margin: 0;
}

.did-you-know__label-highlight {
  font-family: var(--fnt--dejanire);
  color: rgb(var(--clr--gold));
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}

.did-you-know__label-main {
  font-family: var(--fnt--dejanire);
  font-size: clamp(20px, 1.8vw, 28px);
  color: rgb(var(--clr--navy));
  font-weight: 700;
  display: inline-block;
  line-height: 1.2;
}

.did-you-know__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.did-you-know_icon-text {
  position: absolute;
  top: 75% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 100px;
  font-family: var(--fnt--dejanire);
  font-size: clamp(20px, 1.8vw, 28px);
  color: rgb(var(--clr--white));
  font-weight: 500;
  line-height: 1;
  z-index: 5;
  transition: transform 0.3s ease;
}

.did-you-know__icon {
  width: clamp(100px, 13vw, 190px);
  height: auto;
  transition: transform 0.3s ease;
}

.did-you-know__icon {
  height: auto;
  transition: transform 0.3s ease;
}

.did-you-know__icon--sm {
  width: clamp(70px, 8vw, 110px);
}

.did-you-know__icon--md {
  width: clamp(100px, 13vw, 190px);
}

.did-you-know__icon--lg {
  width: clamp(120px, 16vw, 237px);
}

.did-you-know__icon--xl {
  width: clamp(160px, 20vw, 280px);
}

.did-you-know__stat:hover .did-you-know__icon {
  transform: scale(1.12);
}

.did-you-know__stat:hover .did-you-know_icon-text {
  transform: translate(-50%, -50%) scale(1.12) !important;
}

.did-you-know__caption {
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.7vw, 21px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   MONTHLY ALLERGY RELIEF BILL CALCULATOR
   ============================================ */
.bill-section__container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  gap: clamp(40px, 3vw, 80px);
  align-items: flex-start;
  margin: 0 auto;
  margin-bottom: clamp(45px, 4vw, 95px);
}

.bill-section__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
}

.bill-section__left[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  -webkit-transform: translateY(24px);
}

.bill-section__left.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
}

.bill-receipts-deck-wrapper[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  -webkit-transform: translateY(28px);
}

.bill-receipts-deck-wrapper.is-visible {
  animation: fadeUp 0.65s ease 0.15s forwards;
  -webkit-animation: fadeUp 0.65s ease 0.15s forwards;
}

.bill-section__left.is-visible {
  animation: fadeUp 0.6s ease forwards;
}

.bill-section__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 46px);
  color: rgb(var(--clr--navy));
  line-height: 1.15;
  margin: 0;
}

.bill-section__heading-highlight {
  color: rgb(var(--clr--gold)) !important;
  display: inline-block;
}

.bill-section__sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgb(var(--clr--navy));
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}

.bill-section__sub.is-visible {
  animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.bill-wrap {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
}

.bill-wrap.is-visible {
  animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.bill-wrap__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.bill-section__right {
  flex: 1;
}

.bill-receipts-deck-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.bill-receipt-helper {
  position: absolute;
  left: -200px;
  bottom: 25%;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 100;
}

.bill-receipt-helper.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.bill-receipt-helper__text {
  font-family: var(--fnt--poppins);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 500;
  color: var(--clr--navy);
  line-height: 1.4;
}

.bill-receipt-helper__arrow {
  width: 75px;
  height: auto;
}

.bill-receipts {
  position: relative;
  width: 100%;
  height: 660px;
  display: block;
  opacity: 0;
  transform: translateY(28px);
	isolation: isolate;
}

.bill-receipts * {
  cursor: default;
}

.bill-receipts .receipt-item__checkbox-label,
.bill-receipts .receipt-item__btn-minus,
.bill-receipts .receipt-item__btn-plus,
.bill-receipts .receipt-card__btn-submit,
.bill-receipts .receipt-card__btn-email,
.bill-receipts .receipt-card__email-input,
.bill-receipts .receipt-card__text-input {
  cursor: pointer;
}

.bill-receipts .receipt-card__email-input,
.bill-receipts .receipt-card__text-input {
  cursor: text;
}

.bill-receipts.is-visible {
  animation: fadeUp 0.65s ease forwards;
  animation-delay: var(--delay, 0s);
}

.receipt-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--clr--white));
  display: flex;
  flex-direction: column;
  filter: drop-shadow(1px 1px 7px rgba(0, 0, 0, 0.08));
  opacity: 0;
  transform: translateY(-80px) rotate(-15deg);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease,
    background-color 0.4s ease;
	cursor: default;
}

.receipt-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 2px;
  right: 2px;
  width: calc(100% - 4px);
  height: 15px;
  background-image: url("/wp-content/uploads/2026/06/clipart-fence-top.svg");
  background-repeat: repeat-x;
  background-size: 200px;
  z-index: 2;
}

.receipt-card::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url("/wp-content/uploads/2026/06/clipart-fence.svg");
  background-repeat: repeat-x;
  background-size: 200px;
  z-index: 2;
}

.receipt-card.placeholder {
  filter: drop-shadow(1px 1px 7px rgba(0, 0, 0, 0.08));
	pointer-events: none;
	cursor: none;
}

.receipt-card.revealed {
  background-color: rgb(var(--clr--white));
  outline: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
	pointer-events: all;
}

/* ───────────────────────────────────────────
   DECK INTERACTIVE STATES (ROTATION & DEPTH)
   ─────────────────────────────────────────── */

.bill-receipts.is-visible.state-1 #receipt-step-3 {
  opacity: 1;
  transform: translate(15px, 80px) rotate(-2deg);
  z-index: 1;
}

.bill-receipts.is-visible.state-1 #receipt-step-2 {
  opacity: 1;
  transform: translate(10px, 40px) rotate(-6deg);
  z-index: 2;
}

.bill-receipts.is-visible.state-1 #receipt-step-1 {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  z-index: 3;
}

.bill-receipts.state-2 #receipt-step-1 {
  opacity: 0 !important;
  transform: translate(-10px, -130%) rotate(-12deg) !important;
  z-index: 10 !important;
  pointer-events: none;
}

.bill-receipts.state-2 #receipt-step-3 {
  opacity: 1;
  transform: translate(10px, 15px) rotate(-3deg);
  z-index: 2;
  transition-delay: 0s !important;
}

.bill-receipts.state-2 #receipt-step-2 {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) !important;
  z-index: 3;
  transition-delay: 0s !important;
}

.bill-receipts.state-3 #receipt-step-1 {
  opacity: 0 !important;
  transform: translate(-10px, -130%) rotate(-12deg) !important;
  z-index: 10 !important;
  pointer-events: none;
}

.bill-receipts.state-3 #receipt-step-2 {
  opacity: 0 !important;
  transform: translate(10px, -130%) rotate(12deg) !important;
  z-index: 10 !important;
  pointer-events: none;
}

.bill-receipts.state-3 #receipt-step-3 {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) !important;
  z-index: 3;
  transition-delay: 0s !important;
}

.bill-receipts.state-1-ready #receipt-step-1,
.bill-receipts.state-1-ready #receipt-step-2,
.bill-receipts.state-1-ready #receipt-step-3,
.bill-receipts.state-2 #receipt-step-1,
.bill-receipts.state-2 #receipt-step-2,
.bill-receipts.state-2 #receipt-step-3,
.bill-receipts.state-3 #receipt-step-1,
.bill-receipts.state-3 #receipt-step-2,
.bill-receipts.state-3 #receipt-step-3 {
  transition-delay: 0s !important;
}

.receipt-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.receipt-card__top {
  padding: clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 24px) 0;
  flex-shrink: 0;
}

.receipt-card__middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(16px, 1.8vw, 24px);
}

.receipt-card__bottom {
  padding: 0 clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 22px);
  flex-shrink: 0;
}

.receipt-card.placeholder .receipt-card__content {
  opacity: 0 !important;
  transform: translateY(18px);
  pointer-events: none;
}

.receipt-card.placeholder.revealed .receipt-card__content {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: all;
  animation: fadeUp 0.5s ease forwards;
}

.receipt-card__footer {
  background-color: #CFD4D3;
  color: #233756;
  text-align: center;
  font-family: var(--fnt--poppins);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 0;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 5;
}

.receipt-card.placeholder .receipt-card__footer {
  opacity: 1;
}

.receipt-card.placeholder.revealed .receipt-card__footer {
  opacity: 1;
}

.receipt-card__step-num {
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 500;
  color: #233756;
  text-align: center;
  text-transform: uppercase;
}

.receipt-card__divider-dots {
  border: none;
  border-top: 1.6px dashed rgba(var(--clr--navy), 0.20);
  margin-block: clamp(10px, 1.2vw, 16px);
  width: 100%;
}

.receipt-card__title {
  font-family: var(--fnt--poppins);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  text-align: center;
  line-height: 1.3;
  margin: 0 0 clamp(10px, 1.2vw, 16px);
}

.receipt-card__title2 {
  color: rgb(var(--clr--black));
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 clamp(10px, 1.2vw, 16px);
}

.receipt-card__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.receipt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
}

.receipt-item:last-of-type {
  border-bottom: none;
}

.receipt-item__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  user-select: none;
  position: relative;
}

.receipt-item__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.receipt-item__custom-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid rgba(var(--clr--navy), 0.30);
  border-radius: 3px;
  background-color: rgb(var(--clr--white));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.receipt-item__checkbox:checked+.receipt-item__custom-check {
  background-color: rgb(var(--clr--navy));
  border-color: rgb(var(--clr--navy));
}

.receipt-item__checkbox:checked+.receipt-item__custom-check::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: rgb(var(--clr--white));
}

.receipt-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.receipt-item__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.receipt-item__name {
  font-size: clamp(11px, 1vw, 17px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.receipt-item__qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(var(--clr--navy), 0.18);
  border-radius: 20px;
  padding: 2px 6px;
  gap: 4px;
  flex-shrink: 0;
  height: 28px;
  box-sizing: border-box;
}

.receipt-item__btn-minus,
.receipt-item__btn-plus {
  background: none;
  border: none;
  width: 18px;
  height: 18px;
  font-size: 11px;
  color: rgba(var(--clr--navy), 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.receipt-item__btn-minus:hover,
.receipt-item__btn-plus:hover {
  color: rgb(var(--clr--navy));
  background-color: rgba(var(--clr--navy), 0.06);
}

.receipt-item__input-qty {
  width: 18px;
  border: none;
  background: none;
  text-align: center;
  font-family: var(--fnt--poppins);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  pointer-events: none;
  padding: 0;
  margin: 0;
  height: 100%;
  line-height: normal;
  -moz-appearance: textfield;
}

.receipt-item__input-qty::-webkit-outer-spin-button,
.receipt-item__input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.receipt-card__btn-submit {
  margin-top: clamp(13px, 1.2vw, 20px);
  margin-bottom: clamp(13px, 1.2vw, 20px);
  width: 100%;
  font-size: clamp(12px, 1vw, 16px);
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.receipt-card__btn-transition {
  margin-top: 25px !important;
}

.receipt-card__subtitle {
  font-size: clamp(1px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  font-weight: 500;
  text-align: center;
  margin: 0 0 8px;
}

.receipt-card__amount-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}

.receipt-card__amount {
  font-family: var(--fnt--poppins);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  line-height: 1.1;
}

.receipt-card__frequency {
  font-family: var(--fnt--poppins);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  color: rgb(var(--clr--black));
}

.receipt-card__subtext {
  font-size: clamp(11px, 0.95vw, 14px);
  color: #233756;
  font-weight: 500;
  text-align: center;
  margin: 0 0 8px;
}

.receipt-card__message {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  text-align: center;
  line-height: 1.5;
  margin: 0 0 4px;
  font-weight: 500
}

.receipt-card__highlight {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  text-align: center;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.receipt-card__mail-icon {
  text-align: center;
  margin-block: clamp(14px, 1.8vw, 24px);
}

.receipt-card__mail-icon-img {
  width: 85px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.receipt-card__email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.receipt-card__email-input {
  border: 1.5px solid rgba(var(--clr--black), 0.50);
  border-radius: 30px;
  padding: 11px 18px;
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  text-align: center;
  outline: none;
  transition: border-color 0.25s ease;
}

.receipt-card__email-input:focus {
  border-color: rgb(var(--clr--black));
}

.receipt-card__email-input::placeholder {
  color: rgba(var(--clr--black), 0.58);
}

.receipt-card__btn-email {
  border: none;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: clamp(13px, 1.5vw, 26px);
}

.receipt-card__btn-email:hover {
  background-color: rgb(var(--clr--gold));
}

.receipt-card__text-input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(var(--clr--black), 0.50);
  border-radius: 30px;
  padding: 11px 16px;
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  text-align: center;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-transition: border-color 0.25s ease;
}

.receipt-card__text-input:focus {
  border-color: rgb(var(--clr--navy));
}

.receipt-card__text-input::placeholder {
  color: rgba(var(--clr--black), 0.58);
}

.receipt-card__name-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.receipt-card__name-row .receipt-card__text-input {
  flex: 1 1 0%;
  min-width: 0;
  width: 0;
}

.receipt-card__name-errors {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: -6px;
}

.receipt-card__name-errors .invalid-feedback {
  flex: 1 1 0%;
  min-width: 0;
}

.invalid-feedback {
  display: none;
  align-items: center;
  gap: 5px;
  font-family: var(--fnt--poppins);
  font-size: 11px;
  font-weight: 500;
  color: #c0392b;
  padding-left: 10px;
  line-height: 1.5;
}

.invalid-feedback.is-shown {
  display: flex;
}

.invalid-feedback::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
  color: #c0392b;
	margin-right: 5px;
}

.receipt-card__text-input.is-invalid,
.receipt-card__email-input.is-invalid {
  border-color: #c0392b;
  background-color: rgba(192, 57, 43, 0.04);
}

.receipt-card__text-input.is-valid,
.receipt-card__email-input.is-valid {
  border-color: #27ae60;
  background-color: rgba(39, 174, 96, 0.04);
}

.receipt-card__return-message {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.receipt-card__return-message::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  color: #27ae60;
	margin-right: 5px;
}

.receipt-card__return-message.is-shown {
  display: flex;
}

.receipt-card__return-message--success {
  background-color: rgba(39, 174, 96, 0.08);
  border: 1.5px solid rgba(39, 174, 96, 0.30);
  color: #1e8449;
}

.receipt-card__return-message--success::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #27ae60;
  flex-shrink: 0;
}

.receipt-card__return-message--error {
  background-color: rgba(192, 57, 43, 0.06);
  border: 1.5px solid rgba(192, 57, 43, 0.28);
  color: #c0392b;
}

.receipt-card__return-message--error::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  color: #c0392b;
	flex-shrink: 0;
}

.receipt-card__return-message--warning {
  background-color: rgba(214, 158, 46, 0.08);
  border: 1.5px solid rgba(214, 158, 46, 0.35);
  color: #b7791f;
}

.receipt-card__return-message--warning::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #d69e2e;
	flex-shrink: 0;
}



/* ============================================
   CAN'T FIND HELP
   ============================================ */
.personalised-section {
  background-color: rgb(var(--clr--gold));
}

.personalised__inner {
  display: flex;
  align-items: center;
  gap: clamp(90px, 15vw, 250px);
}

.personalised__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 32px);
}

.personalised__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 44px);
  color: rgb(var(--clr--white));
  line-height: 1.1;
  margin: 0;
}

.personalised__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
}

.personalised__text {
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  color: rgb(var(--clr--white));
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
}

.personalised__text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.personalised__cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(14px);
  -webkit-transform: translateY(14px);
}

.personalised__cta.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   TELEHEALTH BANNER
   ============================================ */
.telehealth {
  width: 100%;
  overflow: hidden;
}

.telehealth__inner {
  display: flex;
  align-items: stretch;
  min-height: clamp(320px, 35vw, 480px);
}

.telehealth__image-wrap {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.telehealth__image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
}

.telehealth__image-wrap:hover .telehealth__image {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

.telehealth__content {
  flex: 1;
  background-color: rgb(var(--clr--navy));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(40px, 5vw, 60px) clamp(32px, 5vw, 60px);
}

.telehealth__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 44px);
  color: rgb(var(--clr--white));
  line-height: 1.15;
  margin: 0;
  max-width: 520px;
}

.telehealth__text {
  font-size: clamp(13px, 1.1vw, 16px);
  color: rgba(var(--clr--white), 0.88);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  opacity: 0;
  transform: translateY(16px);
  -webkit-transform: translateY(16px);
}

.telehealth__text.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.telehealth__cta {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(14px);
  -webkit-transform: translateY(14px);
}

.telehealth__cta.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   LEARN MORE ABOUT ALLERGIES
   ============================================ */
.learn-more {
  background-color: #D0D4D3;
  overflow: hidden;
}

.learn-more__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-right: 0;
  gap: clamp(20px, 2.3vw, 40px);
}

.learn-more__left {
  flex-shrink: 0;
  width: clamp(240px, 25vw, 340px);
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  gap: clamp(18px, 2.8vw, 28px);
  opacity: 0;
  transform: translateY(24px);
  -webkit-transform: translateY(24px);
}

.learn-more__left.is-visible {
  animation: fadeUp 0.6s ease forwards;
  -webkit-animation: fadeUp 0.6s ease forwards;
}

.learn-more__heading {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 44px);
  color: rgb(var(--clr--navy));
  line-height: 1.15;
  margin: 0;
}

.learn-more__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  -webkit-transform: translateY(14px);
}

.learn-more__cta.is-visible {
  animation: fadeUp 0.55s ease forwards;
  -webkit-animation: fadeUp 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
  font-size: 17px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover .arrow-circle,
.btn:focus-visible .arrow-circle {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
  transform: translateX(3px);
  -webkit-transform: translateX(3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
}

.learn-card__link:hover .link-arrow,
.learn-card__link:focus-visible .link-arrow {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--white));
}

.learn-more__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  opacity: 0;
  transform: translateY(24px);
  -webkit-transform: translateY(24px);
  margin-right: calc(((100vw - var(--max-width)) / -2) - clamp(16px, 3vw, 48px));
}

.learn-more__right.is-visible {
  animation: fadeUp 0.65s ease 0.15s forwards;
  -webkit-animation: fadeUp 0.65s ease 0.15s forwards;
}


.learn-more__track-outer {
  overflow: hidden;
}

.learn-more__track {
  display: block;
  width: 100%;
}

.learn-more__track.owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.learn-more__track.owl-carousel .owl-item {
  display: flex;
  flex-direction: column;
  height: auto;
}

.learn-more__track:active {
  cursor: grabbing;
}

.learn-more__track::-webkit-scrollbar {
  display: none;
}

.learn-card {
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--clr--white));
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(var(--clr--black), 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* margin-bottom: 25px; */
  height: 100%;
}

.learn-card:hover {
  box-shadow: 0 10px 20px rgba(var(--clr--black), 0.07);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

.learn-card__image-wrap {
  display: block;
  width: 100%;
}

.learn-card__image {
  width: 100%;
  height: clamp(160px, 17vw, 220px);
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
}

.learn-card:hover .learn-card__image {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.learn-card__body {
  display: flex;
  flex-direction: column;
  /* gap: clamp(8px, 1vw, 12px); */
  padding: clamp(16px, 1.8vw, 22px);
  flex: 1;
}

.learn-card__heading {
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  color: rgb(var(--clr--black));
  line-height: 1.3;
  margin: 0;
  padding-bottom: 10px;
}

.learn-card__text {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--black));
  line-height: 1.65;
  flex: unset;
}

.learn-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
  font-family: var(--fnt--poppins);
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  color: rgb(var(--clr--navy));
  text-decoration: none;
  margin-top: auto !important;
  padding-top: clamp(10px, 1vw, 14px);
  transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  width: fit-content;
}

.learn-card__link:hover,
.learn-card__link:focus-visible {
  color: rgb(var(--clr--gold));
  outline: none;
}

.learn-card__link:hover .link-arrow,
.learn-card__link:focus-visible .link-arrow {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--white));
}

.learn-more__dots-wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  margin-top: clamp(20px, 2.5vw, 36px);
}

/* ==========================================================================
   OWL CAROUSEL GLOBAL STYLING
   ========================================================================== */
.owl-loaded {
  width: 100%;
  position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
  display: flex;
}

.owl-item {
  padding: 0;
  vertical-align: top;
  display: flex;
  justify-content: center;
}

.owl-loaded .disabled {
  display: none;
}

.carousel-controls button.owl-prev,
.carousel-controls button.owl-next {
  font-size: 15px;
  color: rgb(var(--clr--black));
  font-weight: 700;
  background: transparent;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(210, 213, 219);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.carousel-controls button.owl-prev {
  left: -40px;
}

.carousel-controls button.owl-next {
  right: -40px;
}

.owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  background: rgb(var(--clr--white));
  border: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.owl-dots button.owl-dot.active {
  background: rgb(var(--clr--navy));
}

.learn-more .owl-dots {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 40px !important;
  gap: 0 !important;
  border: none !important;
}

.learn-more .owl-dots button.owl-dot {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  outline: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.learn-more .owl-dots button.owl-dot span {
  display: block !important;
  width: 11px !important;
  height: 11px !important;
  border-radius: 50% !important;
  background-color: rgb(var(--clr--white)) !important;
  transition: background-color 0.25s ease !important;
  -webkit-transition: background-color 0.25s ease !important;
  margin: 0 4px !important;
}

.learn-more .owl-dots button.owl-dot.active span {
  background-color: rgb(var(--clr--navy)) !important;
}

.learn-more .owl-dots button.owl-dot:hover:not(.active) span {
  background-color: rgba(var(--clr--navy), 0.45) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: rgb(var(--clr--navy));
  padding-block: clamp(36px, 4vw, 60px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  width: clamp(160px, 22vw, 360px);
  height: auto;
  position: relative;
  filter: brightness(0) invert(1);
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.5vw, 10px);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 3vw, 40px);
  height: clamp(35px, 3vw, 40px);
  border-radius: 50%;
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
  font-size: clamp(13px, 1.2vw, 18px);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  background-color: rgb(var(--clr--gold));
  color: rgb(var(--clr--navy));
  transform: translateY(-2px);
  outline: none;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__copyright {
  font-family: var(--fnt--poppins);
  font-size: 13px;
  font-weight: 400;
  color: rgb(var(--clr--white));
  margin: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer__legal-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
}

.footer__legal-sep {
  color: rgba(var(--clr--white), 0.30);
  font-size: clamp(11px, 0.85vw, 13px);
}

.footer__legal-link {
  font-family: var(--fnt--poppins);
  font-size: 13px;
  font-weight: 400;
  color: rgb(var(--clr--white));
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: rgb(var(--clr--gold));
  outline: none;
}


/* ==========================================================================
   404 VIEWPORT LAYOUT 
   ========================================================================== */
.page-404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: rgb(var(--clr--white));
}

.page-404 .header {
  position: relative;
  z-index: 10;
}

.page-404 .error-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(20px, 4vh, 60px);
}

.page-404 .error-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
}

.page-404 .error-content__icon {
  margin-bottom: clamp(10px, 2vh, 20px);
}

.page-404 .error-content__title {
  font-family: var(--fnt--poppins);
  font-size: clamp(100px, 15vh, 180px);
  font-weight: 700;
  line-height: 1;
  color: rgb(var(--clr--gold));
  margin: 0;
}

.page-404 .error-content__subtitle {
  font-size: clamp(20px, 3vh, 32px);
  color: rgb(var(--clr--navy));
  font-weight: 600;
  margin-bottom: clamp(10px, 1.5vh, 18px);
}

.page-404 .error-content__text {
  font-size: clamp(14px, 1.6vh, 16px);
  color: rgb(var(--clr--body-txt));
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: clamp(20px, 3vh, 32px);
  line-height: 1.6;
}


/* ============================================
   SINGLE POST TEMPLATE
   ============================================ */

.post-padding {
  padding-block: clamp(40px, 5vw, 60px);
}
   
.page-single {
  background-color: rgb(var(--clr--white));
}
 
/* ── POST BANNER ── */
.post-banner {
  background-color: rgb(var(--clr--navy));
  padding-top: calc(var(--header-h-pill) + var(--header-m-pill) + 25px);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
 
.post-banner__inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: clamp(340px, 42vw, 520px);
}
 
.post-banner__content {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  padding-bottom: clamp(32px, 4vw, 56px);
  padding-top: clamp(16px, 2vw, 32px);
}
 
.post-banner__back {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  color: rgb(var(--clr--gold));
  text-decoration: none;
  transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease;
  margin-bottom: 4px;
}
 
.post-banner__back:hover {
  color: rgb(var(--clr--white));
}
 
.post-banner__category {
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--clr--gold));
}
 
.post-banner__title {
  font-family: var(--fnt--poppins);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 55px);
  color: rgb(var(--clr--white));
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
 
.post-banner__meta {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-top: 4px;
}
 
.post-banner__date,
.post-banner__read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fnt--poppins);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 400;
  color: rgb(var(--clr--white));
}
 
.post-banner__date i,
.post-banner__read-time i {
  font-size: 13px;
  color: rgb(var(--clr--white));
}
 
.post-banner__image-wrap {
  flex: 1;
  min-width: 0;
  height: clamp(340px, 42vw, 520px);
  overflow: hidden;
  border-radius: 500px 0 0 500px;
  margin-right: calc(((100vw - var(--max-width)) / -2) - clamp(20px, 8vw, 100px));
  clip-path: inset(0 0 0 0);
  position: relative;
}
 
.post-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── POST BODY ── */

.post-body .post-body__gold {
  background: rgb(var(--clr--gold));
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3.5vw, 44px);
}

.post-body .post-body__blue {
  background: rgb(var(--clr--navy));
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3.5vw, 44px);
}

.post-body .post-body__blue * {
  color: rgb(var(--clr--white)) !important;
}

.post-body .post-body__gray {
  background: #eceef4 !important;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3.5vw, 44px);
}
 
.post-body p,
.post-body li {
  font-size: clamp(14px, 1.75vw, 17px);
  color: rgb(var(--clr--navy));
  line-height: 1.85;
  font-weight: 500;
}

.post-body p {
  margin: 0 0 clamp(14px, 1.5vw, 20px);
}
 
.post-body h2 {
  font-weight: 700;
  font-size: clamp(21px, 2.5vw, 32px);
  color: rgb(var(--clr--navy));
  line-height: 1.2;
  margin: clamp(32px, 4vw, 52px) 0 clamp(12px, 1.2vw, 18px);
}
 
.post-body h3 {
  font-weight: 700;
  font-size: clamp(15px, 1.15vw, 19px);
  color: rgb(var(--clr--navy));
  line-height: 1.3;
  margin: clamp(20px, 2.5vw, 32px) 0 clamp(6px, 0.8vw, 10px);
}
 
.post-body ul, .post-body ol {
  padding-left: 0;
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 0.75vw, 10px);
}
 
.post-body ul li {
  padding-left: 20px;
  position: relative;
}
 
.post-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(var(--clr--navy));
  font-weight: 700;
}

.post-body ol {
  counter-reset: post-ol;
}

.post-body ol li {
  padding-left: 24px;
  position: relative;
  counter-increment: post-ol;
}

.post-body ol li::before {
  content: counter(post-ol) ".";
  position: absolute;
  left: 0;
  color: rgb(var(--clr--gold));
  font-weight: 700;
}

.post-body strong {
  font-weight: 700;
  color: rgb(var(--clr--navy));
}

.post-body em {
  font-style: italic;
}

.post-body a {
  color: rgb(var(--clr--gold));
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.post-body a:hover {
  color: rgb(var(--clr--navy));
}

.post-body blockquote {
  font-family: var(--fnt--dejanire);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  color: rgb(var(--clr--navy));
  line-height: 1.55;
  border-left: 3px solid rgb(var(--clr--gold));
  margin: clamp(28px, 3.5vw, 48px) 0;
  padding: 8px 0 8px 24px;
}

.post-body img {
  width: 100%;
  height: auto;
  display: block;
  margin-block: clamp(20px, 2.5vw, 36px);
}

.post-body hr {
  border: none;
  border-top: 1px solid rgba(var(--clr--navy), 0.12);
  margin-block: clamp(24px, 3vw, 40px);
}
 
/* ── POST CTA BANNERS ── */
.post-cta {
  padding-bottom: clamp(40px, 5vw, 72px);
}
 
.post-cta__banner {
  display: flex;
  flex-direction: column;
  background-color: #e8eaeb;
  gap: clamp(30px, 5vw, 65px);
  padding: clamp(28px, 3.75vw, 60px);
}
 
.post-cta__card {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);

}
 
.post-cta__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-cta__icon-wrap img {
  width: clamp(50px, 8vw, 120px);
  height: auto;
  display: block;
}
 
.post-cta__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
  flex: 1;
}
 
.post-cta__heading {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 33px);
  color: rgb(var(--clr--navy));
  line-height: 1.3;
  margin: 0;
}
 
.post-cta__btn {
  align-self: flex-start;
  width: 100%;
  max-width: 350px;
}

/* ALLERGENS GRID */
.allergens__heading {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  color: rgb(var(--clr--navy));
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  text-align: center;
}

.allergens__list {
  --cols: 5;
  --gap: clamp(12px, 1.5vw, 25px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

.allergens__item {
  flex: 0 0 calc((100% / var(--cols)) - (var(--gap) * (var(--cols) - 1) / var(--cols)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  min-width: 180px;
}

.allergens__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
}

.allergens__item:hover .allergens__circle {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
}

.allergens__icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.allergens__label {
  font-size: clamp(14px, 1.85vw, 19px);
  font-weight: 500;
  color: rgb(var(--clr--navy));
  text-align: center;
}


/* POST SPLIT SECTION */
.post-split__block {
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
}

.post-split__block--image-right {
  flex-direction: row;
}

.post-split__block--image-left {
  flex-direction: row-reverse;
}

.post-split__content {
  flex: 1;
  min-width: 0;
}

.post-split__image-wrap {
  flex: 0 0 clamp(285px, 42%, 550px);
  overflow: hidden;
  align-self: stretch;
}

.post-split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* HIGHLIGHT BOX SECTION */
.post-callout__box {
  background-color: #ECEEF4;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3.5vw, 44px);
}

.post-callout__box h3 {
  margin-top: 0;
}


/* ==========================================================================
   ARCHIVE STORIES STYLING
   ========================================================================== */

.archive-hero {
  background-color: rgb(var(--clr--navy));
  padding-top: calc(var(--header-h-pill) + clamp(55px, 5.5vw, 90px));
  padding-bottom: clamp(30px, 4vw, 60px);
  color: rgb(var(--clr--white));
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(12px, 1.5vw, 18px);
}

.breadcrumb__link {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgba(var(--clr--white), 0.75);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb__link:hover {
  color: rgb(var(--clr--gold));
}

.breadcrumb__separator {
  color: rgba(var(--clr--white), 0.35);
  font-size: clamp(11px, 0.8vw, 13px);
}

.breadcrumb__current {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgb(var(--clr--white));
  font-weight: 600;
}

.archive-hero__title {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 45px);
  color: rgb(var(--clr--white));
  line-height: 1.2;
  margin: 0;
}

.archive-main {
  background-color: #D0D4D3;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.learn-card__date {
  font-size: clamp(11px, 0.8vw, 13px);
  color: rgba(var(--clr--black), 0.6);
  font-weight: 500;
  margin: 0 0 4px 0;
}

.archive-navigation {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 48px);
}

.archive-navigation__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.archive-navigation__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 50%;
  background-color: rgb(var(--clr--white));
  color: rgb(var(--clr--navy));
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
}

span.page-numbers.current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 50%;
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
}

.archive-navigation__page:hover,
span.page-numbers.current {
  background-color: rgb(var(--clr--navy));
  color: rgb(var(--clr--white));
}

.archive-navigation__page.next {
  border-radius: 20px;
  gap: 6px;
}

/* No Posts Found Styling */
.archive-no-posts {
  display: flex;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
  background-color: rgb(var(--clr--white));
  max-width: 480px;
  margin: 0 auto;
  min-height: 58dvh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.archive-no-posts__icon {
  font-size: clamp(36px, 4vw, 54px);
  color: rgb(var(--clr--gold));
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.archive-no-posts__title {
  font-family: var(--fnt--poppins);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: rgb(var(--clr--navy));
  margin: 0 0 10px 0;
}

.archive-no-posts__text {
  font-size: clamp(13px, 1vw, 15px);
  color: rgb(var(--clr--body-txt));
  margin: 0 0 24px 0;
  line-height: 1.6;
}

/* Ensure BOTH Prev and Next buttons are styled as pills */
.archive-navigation__page.prev,
.archive-navigation__page.next {
  border-radius: 20px;
  gap: 6px;
  padding-inline: 18px;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}