@font-face {
  font-family: "Kendamil Serif";
  src: url("../fonts/Kendamil_Serif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("../fonts/Elza-Condensed.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elza";
  src: url("../fonts/Elza-CondensedBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

:root {
  --mobile-shell-max: 430px;
  --mobile-side-pad: clamp(15px, 4vw, 18px);
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  background: #f8f3ec;
}

.mobile-announcement-bar {
  background: #071f60;
  color: #fff;
}

.mobile-announcement-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  text-align: center;
}

.mobile-announcement-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.mobile-header {
  background: #fff;
}

.mobile-header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-icon {
  width: 32px;
  height: 24px;
  fill: none;
  stroke: #071f60;
  stroke-width: 4;
  stroke-linecap: square;
}

.mobile-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo {
  display: block;
  width: auto;
  height: 50px;
  max-width: 42vw;
  object-fit: contain;
}

.formula-text-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.formula-text-logo--footer {
  color: inherit;
  font-size: 28px;
  margin-bottom: 20px;
}

.mobile-cart {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #071f60;
  font-size: 16px;
}

.mobile-cart-icon {
  width: 35px;
  height: 27px;
  display: block;
  flex: 0 0 auto;
}

.mobile-cart-count {
  line-height: 1;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 31, 96, 0.34);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-menu-drawer {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 10px;
  z-index: 100;
  width: min(390px, 88vw);
  max-width: var(--mobile-shell-max);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  background: #f8f3ec;
  color: #071f60;
  box-shadow: 0 18px 50px rgba(7, 31, 96, 0.22);
  transform: translateX(calc(-100% - 12px));
  transition: transform 0.24s ease;
}

.mobile-menu-overlay[hidden],
.mobile-menu-drawer[hidden] {
  display: none;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
}

body.mobile-menu-open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-drawer__header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--mobile-side-pad);
  border-bottom: 1px solid rgba(7, 31, 96, 0.16);
}

.mobile-menu-drawer__logo {
  display: flex;
  align-items: center;
}

.mobile-menu-drawer__logo img {
  width: 150px;
  height: auto;
}

.mobile-menu-drawer__logo .formula-text-logo {
  font-size: 22px;
}

.mobile-menu-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #071f60;
}

.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-drawer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px var(--mobile-side-pad) 6px;
}

.mobile-menu-drawer__nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid rgba(7, 31, 96, 0.16);
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.mobile-menu-drawer__nav a:last-child {
  border-bottom: 1px solid rgba(7, 31, 96, 0.16);
}

.mobile-menu-products {
  padding: 18px var(--mobile-side-pad) 32px;
}

.mobile-menu-products h2 {
  margin: 0 0 18px;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
}

.mobile-menu-group {
  border-top: 1px solid rgba(7, 31, 96, 0.16);
}

.mobile-menu-group:last-child {
  border-bottom: 1px solid rgba(7, 31, 96, 0.16);
}

.mobile-menu-group summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.mobile-menu-group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-group summary::after {
  content: "+";
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.mobile-menu-group[open] summary::after {
  content: "-";
}

.mobile-menu-group ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
}

.mobile-menu-group a {
  color: #071f60;
  font-size: 15px;
  line-height: 1.18;
  text-decoration: none;
}

.mobile-page {
  background: #f8f3ec;
}

.mobile-hero {
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  position: relative;
  width: 100%;
  max-width: var(--mobile-shell-max);
  height: 450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 31px 0;
  overflow: hidden;
  color: #fff;
  background-image: url("../images/kendamil-lake-district-banner-mobile.png");
  background-size: cover;
  background-position: calc(50% + var(--hero-image-x)) calc(50% + var(--hero-image-y));
  background-repeat: no-repeat;
}

.mobile-hero::before {
  display: none;
}

.mobile-hero::after {
  display: none;
}

.mobile-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--mobile-shell-max) - 5px));
  min-height: 189px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  text-align: center;
  transform: translateY(-48px);
}

.mobile-hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-hero h1 {
  margin: 0 0 10px;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
}

.mobile-hero p {
  font-family: "Elza", Arial, Helvetica, sans-serif;
  width: 100%;
  margin: 0;
  font-size: 18px;
  line-height: 21px;
}

.mobile-hero-button {
  width: 218px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 22px;
  padding: 16px 50px;
  border-radius: 8px;
  border: 1px solid #071f60;
  background: #f6f2eb;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-hero-products {
  position: relative;
  z-index: 1;
  width: min(100%, var(--mobile-shell-max));
  height: 222px;
  margin-top: 22px;
}

.mobile-hero-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(7, 31, 96, 0.16));
}

.mobile-hero-product--kendamil {
  left: 50%;
  bottom: 10px;
  width: 136px;
  transform: translateX(-50%);
  z-index: 2;
}

.mobile-hero-product--bobbie {
  left: 24px;
  bottom: 26px;
  width: 104px;
  z-index: 1;
}

.mobile-hero-product--enfamil {
  right: 8px;
  bottom: 0;
  width: 150px;
  z-index: 1;
}

.trustpilot-home {
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: min(386px, calc(100% - 28px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 31, 96, 0.13);
  border-radius: 8px;
  background: #fffdf9;
  color: #071f60;
  box-shadow: 0 12px 20px rgba(7, 31, 96, 0.08);
  transform: translateX(-50%);
  z-index: 3;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.trustpilot-home span {
  white-space: nowrap;
}

.mobile-trust-strip {
  position: relative;
  z-index: 3;
  width: min(386px, calc(100% - 28px));
  max-width: var(--mobile-shell-max);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: -28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 96, 0.13);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 12px 22px rgba(7, 31, 96, 0.12);
  color: #071f60;
}

.mobile-trust-strip__since {
  grid-column: 1 / -1;
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 11px 16px 12px;
  background: #071f60;
  color: #fff;
}

.mobile-trust-strip__since span {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-trust-strip__since strong {
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.mobile-trust-strip > div:not(.mobile-trust-strip__since) {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-top: 1px solid rgba(7, 31, 96, 0.13);
  font-size: 15px;
  line-height: 1.08;
  font-weight: 700;
  text-align: center;
}

.mobile-trust-strip > div:nth-child(2n + 3) {
  border-left: 1px solid rgba(7, 31, 96, 0.13);
}

.mobile-restock-note {
  width: min(386px, calc(100% - 28px));
  max-width: var(--mobile-shell-max);
  margin: 12px auto 0;
  color: #071f60;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 700;
  text-align: center;
}

.mobile-trust-ledger {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 34px var(--mobile-side-pad) 32px;
}

.mobile-trust-ledger .trust-ledger__intro {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 16px;
}

.mobile-trust-ledger .trust-ledger__intro p {
  margin: 0;
  color: #d84f45;
  font-size: 12px;
}

.mobile-trust-ledger .trust-ledger__intro h2 {
  font-size: 33px;
}

.mobile-trust-ledger .trust-ledger__intro span {
  font-size: 15px;
  line-height: 1.4;
}

.mobile-trust-ledger .trust-ledger__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-trust-ledger .trust-ledger__grid article {
  min-height: 0;
  gap: 8px;
  padding: 17px 16px;
}

.mobile-trust-ledger .trust-ledger__grid h3 {
  font-size: 19px;
}

.mobile-trust-ledger .trust-ledger__grid p {
  font-size: 14px;
  line-height: 1.42;
}

.instagram-trust {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 26px var(--mobile-side-pad) 24px;
  color: #071f60;
  background: #f8f3ec;
}

.instagram-trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.instagram-trust__profile {
  border: 1px solid rgba(7, 31, 96, 0.13);
  border-radius: 8px;
  background: #fffdf9;
}

.instagram-trust__profile {
  padding: 22px 18px 20px;
}

.instagram-trust__eyebrow {
  margin: 0 0 15px;
  color: #d84f45;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.instagram-trust__account {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.instagram-trust__avatar {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(7, 31, 96, 0.12);
  border-radius: 50%;
  object-fit: cover;
  background: #f8f3ec;
}

.instagram-trust__account h2 {
  margin: 0 0 6px;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.instagram-trust__account p {
  margin: 0;
  color: #071f60;
  font-size: 16px;
  line-height: 1.2;
}

.instagram-trust__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 20px 0 0;
  padding: 15px 0;
  border-top: 1px solid rgba(7, 31, 96, 0.13);
  border-bottom: 1px solid rgba(7, 31, 96, 0.13);
}

.instagram-trust__stats div {
  text-align: center;
}

.instagram-trust__stats div:not(:last-child) {
  border-right: 1px solid rgba(7, 31, 96, 0.13);
}

.instagram-trust__stats dt {
  margin: 0 0 6px;
  color: #60719a;
  font-size: 13px;
  line-height: 1;
}

.instagram-trust__stats dd {
  margin: 0;
  color: #071f60;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
}

.instagram-trust__bio {
  margin: 18px 0 0;
  color: #071f60;
  font-size: 18px;
  line-height: 1.26;
}

.instagram-trust__link {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  background: #071f60;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.instagram-trust__link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-trust__feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.instagram-trust__post {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 96, 0.12);
  border-radius: 8px;
  background: #fffdf9;
  color: #fff;
  text-decoration: none;
}

.instagram-trust__post--lead {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.instagram-trust__post img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.instagram-trust__post span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 6px;
  background: rgba(7, 31, 96, 0.88);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 360px) {
  .instagram-trust__account {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .instagram-trust__avatar {
    width: 64px;
    height: 64px;
  }

  .instagram-trust__account h2 {
    font-size: 27px;
  }

  .instagram-trust__stats dt {
    font-size: 12px;
  }

  .instagram-trust__stats dd {
    font-size: 21px;
  }
}

.features-wrapper {
  --card-width: clamp(150px, 50vw, 196px);
  --feature-gap: 0px;
  --visible-cards: 2;
  --viewport-width: calc(
    (var(--card-width) * var(--visible-cards)) +
    (var(--feature-gap) * (var(--visible-cards) - 1))
  );
  --step: calc(var(--card-width) + var(--feature-gap));

  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 63px 0 30px;
  background: #f8f3ec;
  overflow: hidden;
}

.features-viewport {
  width: var(--viewport-width);
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--feature-gap);
  width: max-content;
  animation: mobileFeatureSlide 18s infinite;
}

.feature-card {
  flex: 0 0 var(--card-width);
  min-height: 210px;
  color: #071f60;
  text-align: center;
}

.feature-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid rgba(7, 31, 96, 0.12);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-icon--contain {
  padding: 10px;
}

.feature-icon--contain img {
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 15px;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
}

.feature-card p {
  width: 142px;
  min-height: 72px;
  margin: 0 auto;
  color: #071f60;
  font-size: 18px;
  line-height: 22px;
}

.mobile-ranges {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 26px 0 38px;
  color: #071f60;
  background: #f8f3ec;
  overflow: hidden;
}

.mobile-ranges-title {
  margin: 0 0 18px;
  padding: 0 var(--mobile-side-pad);
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 37px;
  line-height: 1.05;
  font-weight: 400;
  text-align: center;
}

.mobile-ranges-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 0 var(--mobile-side-pad);
  background: #f8f3ec;
  scroll-padding-left: var(--mobile-side-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
}

.mobile-ranges-viewport::-webkit-scrollbar {
  display: none;
}

.mobile-ranges-track {
  display: flex;
  width: max-content;
  gap: 6px;
  background: #f8f3ec;
}

.mobile-range-card {
  flex: 0 0 clamp(248px, 73vw, 290px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.mobile-range-card:last-child {
  scroll-snap-align: end;
}

.mobile-range-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mobile-range-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0c6f20;
}

.mobile-range-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.mobile-range-info {
  padding-top: 28px;
}

.mobile-range-info h3 {
  margin: 0 0 13px;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  text-decoration: underline;
}

.mobile-range-info p {
  margin: 0;
  color: #071f60;
  font-size: 17px;
  line-height: 1.25;
}

.mobile-story-slider {
  --story-card-width: clamp(278px, 76vw, 306px);

  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 24px 0 46px var(--mobile-side-pad);
  color: #4f88bb;
  background: #f8f3ec;
  overflow: hidden;
}

.mobile-story-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.mobile-story-viewport::-webkit-scrollbar {
  display: none;
}

.mobile-story-track {
  display: flex;
  width: max-content;
  gap: 10px;
}

.mobile-story-slide {
  flex: 0 0 var(--story-card-width);
  min-width: 0;
  scroll-snap-align: start;
}

.mobile-story-slide:last-child {
  scroll-snap-align: end;
}

.mobile-story-eyebrow {
  margin: 0 0 12px;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.mobile-story-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d8edf3;
}

.mobile-story-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-story-image--contain {
  object-fit: contain;
  background: #fff;
  padding: 24px;
}

.mobile-story-copy {
  padding-top: 28px;
  color: #071f60;
}

.mobile-story-title {
  margin: 0 0 18px;
  color: inherit;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 400;
}

.mobile-story-text {
  margin: 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.22;
}

.mobile-story-button {
  min-width: 111px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 18px;
  background: #071f60;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.textbar-wrapper {
  --textbar-gap: clamp(56px, 17vw, 82px);

  width: 100%;
  max-width: var(--mobile-shell-max);
  height: 57px;
  margin: 0 auto;
  padding: 15px 0;
  background: #071f60;
  overflow: hidden;
}

.textbar-window {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.textbar-slider {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: textbarMove 34s linear infinite;
}

.textbar-name {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(var(--textbar-gap) / 2);
  color: #fff;
}

.textbar-name h6 {
  width: auto;
  margin: 0;
  color: inherit;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

@font-face {
  font-family: "JudgemeStar";
  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAScAA0AAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEgAAAABoAAAAcbyQ+3kdERUYAAARgAAAAHgAAACAAMwAGT1MvMgAAAZgAAABGAAAAVi+vS9xjbWFwAAAB8AAAAEAAAAFKwBMjvmdhc3AAAARYAAAACAAAAAj//wADZ2x5ZgAAAkAAAAEJAAABdH33LXtoZWFkAAABMAAAAC0AAAA2BroQKWhoZWEAAAFgAAAAHAAAACQD5QHQaG10eAAAAeAAAAAPAAAAFAYAAABsb2NhAAACMAAAAA4AAAAOAO4AeG1heHAAAAF8AAAAHAAAACAASgAvbmFtZQAAA0wAAADeAAABkorWfVZwb3N0AAAELAAAACkAAABEp3ubLXgBY2BkYADhPPP4OfH8Nl8ZuJkYQODS2fRrCPr/aSYGxq1ALgcDWBoAO60LkwAAAHgBY2BkYGDc+v80gx4TAwgASaAICmABAFB+Arl4AWNgZGBgYGPQYWBiAAIwyQgWc2AAAwAHVQB6eAFjYGRiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbByMsCBAAMCBKS5pjA4PGB4wMR44P8BBj3GrQymQGFGkBwAjtgK/gAAeAFjYoAAEA1jAwAAZAAHAHgB3crBCcAwDEPRZydkih567CDdf4ZskmLwFBV8xBfCaC4BXkOUmx4sU0h2ngNb9V0vQCxaRKIAevT7fGWuBrEAAAAAAAAAAAA0AHgAugAAeAF9z79Kw1AUx/FzTm7un6QmJtwmQ5Bg1abgEGr/BAqlU6Gju+Cgg1MkQ/sA7Vj7BOnmO/gUvo2Lo14NqIO6/IazfD8HEODtmQCfoANwNsyp2/GJt3WKQrd1NLiYYWx2PBqOsmJMEOznPOTzfSCrhAtbbLdmeFLJV9eKd63WLrZcIcuaEVdssWCKM6pLCfTVOYbz/0pNSMSZKLIZpvh78sAUH6PlMrreTCabP9r+Z/puPZ2ur/RqpQHgh+MIegCnXeM4MRAPjYN//5tj4ZtTjkFqEdmeMShlEJ7tVAly2TAkx6R68Fl4E/aVvn8JqHFQ4JS1434gXKcuL31dDhzs3YbsEOAd/IU88gAAAHgBfY4xTgMxEEVfkk0AgRCioKFxQYd2ZRtpixxgRU2RfhU5q5VWseQ4JdfgAJyBlmNwAM7ABRhZQ0ORwp7nr+eZAa54YwYg9zm3ynPOeFRe8MCrciXOh/KSS76UV5L/iDmrLiS5AeU519wrL3jmSbkS5115yR2fyivJv9kx0ZMZ2RLZw27q87iNQi8EBo5FSPIMw3HqBboi5lKTGAGDp8FKXWP+t9TU01Lj5His1Ba6uM9dTEMwvrFmbf5GC/q2drW3ruXUhhsCiQOjznFlCzYhHUZp4xp76vsvQh89CQAAeAFjYGJABowM6IANLMrEyMTIzMjCXpyRWJBqZshWXJJYBKOMAFHFBucAAAAAAAAB//8AAngBY2BkYGDgA2IJBhBgAvKZGViBJAuYxwAABJsAOgAAeAFjYGBgZACCk535hiD60tn0azAaAEqpB6wAAA==") format("woff");
  font-weight: normal;
  font-style: normal;
}

.mobile-family-section {
  --family-card-width: clamp(270px, 76vw, 300px);

  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  background: #f8f3ec;
  color: #071f60;
  overflow: hidden;
}

.mobile-bobbie-section {
  background: #fff;
}

.mobile-family-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 0 32px var(--mobile-side-pad);
}

.mobile-family-heading {
  margin-left: calc(-1 * var(--mobile-side-pad));
  padding: 0 var(--mobile-side-pad);
  text-align: center;
}

.mobile-family-heading h2 {
  margin: 0 0 10px;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.mobile-family-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.mobile-family-heading h2 a:focus-visible {
  outline: 2px solid #071f60;
  outline-offset: 4px;
}

.mobile-family-heading p {
  max-width: 345px;
  margin: 0 auto;
  color: #071f60;
  font-size: 18px;
  line-height: 1.2;
}

.mobile-family-swiper {
  overflow: hidden;
}

.mobile-family-track {
  min-height: 465.617px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.mobile-family-track::-webkit-scrollbar {
  display: none;
}

.mobile-family-full-card {
  flex: 0 0 var(--family-card-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: inset 0 0 0 1px rgba(7, 31, 96, 0.08);
  cursor: pointer;
}

.mobile-family-full-card:last-child {
  scroll-snap-align: end;
}

.mobile-family-medium-card {
  width: 100%;
  background: #fff;
}

.mobile-family-image-box {
  position: relative;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mobile-family-image-box--pink {
  background: #ffd4e0;
}

.mobile-family-image-box--green {
  background: #00752a;
}

.mobile-family-image-box--cream {
  background: #efe3cf;
}

.mobile-family-image-box--bobbie {
  background: #fff;
}

.mobile-family-image-box--enfamil {
  background: #eef5fb;
}

.mobile-family-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 14px;
  border-radius: 5px;
  background: #dcd4f2;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-family-badge[data-deal-tone="low"] {
  background: #ffe0dc;
  color: #8a2118;
}

.mobile-family-badge[data-deal-tone="restock"] {
  background: #dbeee6;
  color: #0f5d3f;
}

.mobile-family-stock {
  position: absolute;
  left: 9px;
  bottom: 9px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 5px;
  background: rgba(255, 253, 249, 0.94);
  color: #071f60;
  box-shadow: 0 6px 16px rgba(7, 31, 96, 0.12);
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-family-stock[data-stock-tone="low"] {
  color: #8a2118;
}

.mobile-family-image-link {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}

.mobile-family-product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
}

.mobile-family-product-image--contain {
  padding: 22px;
  object-fit: contain;
  box-sizing: border-box;
}

.mobile-family-info-button {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #071f60;
  border-radius: 50%;
  background: transparent;
  color: #071f60;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.mobile-family-detail-box {
  min-height: 132px;
  padding: 13px 6px 0;
  text-align: center;
  border-top: 1px solid rgba(7, 31, 96, 0.08);
}

.mobile-family-rating-box {
  display: flex;
  width: 100%;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  color: #D0AF71;
  line-height: 1;
}

.mobile-family-stars {
  display: flex;
  justify-content: center;
  gap: 0;
}

.mobile-family-star {
  width: 29.5167px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-family-star::before {
  content: "\e000";
  font-family: "JudgemeStar", sans-serif;
  font-size: 25px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobile-family-product-name {
  min-height: 45px;
  margin: 0 0 4px;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 700;
}

.mobile-family-product-name a {
  color: inherit;
  text-decoration: none;
}

.mobile-family-product-name a:focus-visible {
  outline: 2px solid #071f60;
  outline-offset: 3px;
}

.mobile-family-product-price {
  margin: 0;
  color: #071f60;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
}

.mobile-family-shop-box {
  width: 100%;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 6px;
  padding: 0 6px 11px;
  background: #fff;
}

.mobile-family-quantity {
  min-width: 0;
  min-height: 45px;
  display: grid;
  grid-template-columns: 30px minmax(28px, 1fr) 30px;
  overflow: hidden;
  border: 1px solid #071f60;
  border-radius: 6px;
  background: #fff;
  color: #071f60;
}

.mobile-family-quantity button {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #071f60;
  font-size: 16px;
  cursor: pointer;
}

.mobile-family-quantity button[aria-disabled="true"] {
  color: #8d96b2;
  cursor: default;
}

.mobile-family-quantity span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #071f60;
  font-size: 17px;
  line-height: 1;
}

.mobile-family-shop-box a {
  width: 100%;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #071f60;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-polaroid-section {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 66px 15px;
  background: #fed6e1;
  color: #071f60;
  overflow: hidden;
}

.mobile-polaroid-items {
  position: relative;
  height: 350px;
  margin: 0 auto 45px;
}

.mobile-polaroid-card {
  position: absolute;
  right: 0;
  left: 0;
  width: 284px;
  margin: 0 auto;
  transition: left 0.7s ease;
}

.mobile-polaroid-card.is-swiped-away {
  left: -1000px;
}

.mobile-polaroid-card:nth-child(1) {
  z-index: 5;
  transform: rotate(-8deg);
}

.mobile-polaroid-card:nth-child(2) {
  z-index: 4;
  transform: rotate(-1deg);
}

.mobile-polaroid-card:nth-child(3) {
  z-index: 3;
  transform: rotate(-4deg);
}

.mobile-polaroid-card:nth-child(4) {
  z-index: 2;
  transform: rotate(4deg);
}

.mobile-polaroid-card:nth-child(5) {
  z-index: 1;
  transform: rotate(-4deg);
}

.mobile-polaroid-frame {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow:
    0 5px 4px rgba(203, 77, 106, 0.08),
    0 8px 11px rgba(203, 77, 106, 0.1);
}

.mobile-polaroid-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.mobile-polaroid-frame p {
  margin: 20px 0 0;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.mobile-polaroid-content {
  text-align: left;
}

.mobile-polaroid-review {
  display: none;
}

.mobile-polaroid-review.is-active {
  display: block;
}

.mobile-polaroid-rating {
  margin: 0 0 15px;
  color: #c47e2c;
}

.mobile-polaroid-stars {
  width: 184px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.mobile-polaroid-review h2 {
  margin: 0 0 10px;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
}

.mobile-polaroid-review p {
  margin: 0;
  color: #071f60;
  font-size: 18px;
  line-height: 1.28;
}

.mobile-polaroid-link {
  display: inline-block;
  margin-top: 30px;
  color: #071f60;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
}

.mobile-polaroid-link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-polaroid-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.mobile-polaroid-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f5b2c3;
}

.mobile-polaroid-dot.is-active {
  background: #cb4d6a;
}

.mobile-video-feature {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 0;
}

.mobile-video-feature__media {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #f8f3ec;
}

.mobile-video-feature__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-brand-showcase-wrapper {
  --mobile-brand-item-width: clamp(128px, 42vw, 170px);

  width: 100%;
  max-width: var(--mobile-shell-max);
  height: 90px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  background: #f7dadf;
  overflow: hidden;
}

.mobile-brand-showcase-window {
  width: 100%;
  overflow: hidden;
}

.mobile-brand-showcase-slider {
  display: flex;
  align-items: center;
  width: max-content;
  animation: mobileBrandShowcaseMove 34s linear infinite;
}

.mobile-brand-showcase-names {
  flex: 0 0 var(--mobile-brand-item-width);
  width: var(--mobile-brand-item-width);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-decoration: none;
}

.mobile-brand-showcase-names img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 32px;
}

.mobile-support-hub {
  --mobile-support-card-width: clamp(235px, 64vw, 252px);

  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 30px 0;
  background: #bfe5f2;
  color: #071f60;
  overflow: hidden;
}

.mobile-support-hub__inner {
  width: 100%;
  padding-left: var(--mobile-side-pad);
}

.mobile-support-hub__header {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 27px;
}

.mobile-support-hub__header h2 {
  margin: 0;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.mobile-support-hub__tabs {
  display: flex;
  gap: 30px;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 var(--mobile-side-pad) 7px 0;
  scrollbar-width: none;
}

.mobile-support-hub__tabs::-webkit-scrollbar,
.mobile-support-hub__panel::-webkit-scrollbar {
  display: none;
}

.mobile-support-hub__tabs button {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  opacity: 0.4;
}

.mobile-support-hub__tabs button.is-active {
  opacity: 1;
}

.mobile-support-hub__panel {
  display: flex;
  flex-direction: column;
  gap: 34px;
  overflow: visible;
  padding-right: var(--mobile-side-pad);
}

.mobile-support-hub__panel[hidden] {
  display: none;
}

.mobile-support-card {
  width: 100%;
}

.mobile-support-card__image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 30px;
  overflow: hidden;
  color: inherit;
}

.mobile-support-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-support-card__copy {
  display: flex;
  flex-direction: column;
}

.mobile-support-card time {
  display: block;
  margin-bottom: 15px;
  color: #071f60;
  font-size: 12px;
  line-height: 1;
  opacity: 0.4;
}

.mobile-support-card h3 {
  margin: 0 0 10px;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.mobile-support-card p {
  max-height: 45px;
  margin: 0 0 30px;
  overflow: hidden;
  color: #071f60;
  font-size: 16px;
  line-height: 1.4;
}

.mobile-support-card__copy a {
  margin-top: auto;
  color: #071f60;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-support-hub__all-posts {
  display: flex;
  width: max-content;
  min-width: 162px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  padding: 0 24px;
  background: #071f60;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.mobile-before-buy {
  padding: 40px 0 42px;
  background: #fffaf3;
  color: #071f60;
  overflow: visible;
  border-top: 1px solid rgba(6, 36, 102, 0.08);
  border-bottom: 1px solid rgba(6, 36, 102, 0.08);
}

.mobile-before-buy__inner {
  padding: 0 var(--mobile-side-pad);
}

.mobile-before-buy__header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-before-buy__eyebrow {
  margin: 0;
  color: #d89212;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-before-buy__header h2 {
  font-size: 36px;
}

.mobile-before-buy__header p:not(.mobile-before-buy__eyebrow) {
  margin: 0;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.mobile-before-buy__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(6, 36, 102, 0.18);
}

.mobile-before-buy-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 19px 0 20px;
  border-bottom: 1px solid rgba(6, 36, 102, 0.18);
  background: transparent;
}

.mobile-before-buy-card__number {
  color: #d89212;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.mobile-before-buy-card h3 {
  margin: 0;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
}

.mobile-before-buy-card p {
  grid-column: 2;
  margin: 0;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.42;
}

.mobile-trust-faq {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 42px var(--mobile-side-pad) 44px;
  background: #f8f3ec;
  color: #071f60;
}

.mobile-trust-faq__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-trust-faq__intro p {
  margin: 0;
  color: #d89212;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-trust-faq__intro h2 {
  margin: 0;
  color: #071f60;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.mobile-trust-faq__intro span {
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.42;
}

.mobile-trust-faq__grid {
  display: grid;
  gap: 10px;
}

.mobile-trust-faq__grid article {
  display: grid;
  gap: 8px;
  padding: 17px 16px;
  border: 1px solid rgba(7, 31, 96, 0.14);
  border-radius: 8px;
  background: #fffdf9;
}

.mobile-trust-faq__grid h3 {
  margin: 0;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.14;
}

.mobile-trust-faq__grid p {
  margin: 0;
  color: #071f60;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
}

.mobile-footer {
  width: 100%;
  max-width: var(--mobile-shell-max);
  margin: 0 auto;
  padding: 41px 0 44px;
  background: #fff;
  color: #071f60;
}

.mobile-footer__inner {
  width: 100%;
  padding: 0 var(--mobile-side-pad);
}

.mobile-footer a {
  color: inherit;
  text-decoration: none;
}

.mobile-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-footer__logo-link img {
  display: block;
  width: 195px;
  height: auto;
  filter: none;
}

.mobile-footer__brand p {
  margin: 20px 0 25px;
  color: inherit;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 300;
}

.mobile-footer__socials,
.mobile-footer-menu ul,
.mobile-footer__payments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-footer__socials {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-footer__socials a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-footer__socials svg {
  display: block;
  width: 22px;
  height: 22px;
}

.mobile-footer__socials a[aria-label="Instagram"] svg,
.mobile-footer__whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 30px;
  font-size: 12px;
  line-height: 1;
}

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

.mobile-footer__menus {
  margin-bottom: 20px;
}

.mobile-footer-menu {
  border-bottom: 1px solid rgba(7, 31, 96, 0.16);
  padding: 20px 0;
}

.mobile-footer-menu:first-child {
  border-top: 1px solid rgba(7, 31, 96, 0.16);
}

.mobile-footer-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
}

.mobile-footer-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-footer-menu summary::after {
  content: "+";
  font-family: "Elza", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.mobile-footer-menu[open] summary::after {
  content: "-";
}

.mobile-footer-menu ul {
  display: grid;
  gap: 15px;
  padding-top: 15px;
}

.mobile-footer-menu a {
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}

.mobile-footer__newsletter h2 {
  margin: 0 0 15px;
  color: inherit;
  font-family: "Kendamil Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.mobile-footer__newsletter p {
  margin: 0 0 25px;
  color: inherit;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 300;
}

.mobile-footer__email-form {
  display: flex;
  width: 100%;
  height: 44px;
  border: 1px solid rgba(7, 31, 96, 0.18);
  background: #fff;
}

.mobile-footer__email-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 15px;
  background: transparent;
  color: #071f60;
  font: 400 16px "Elza", Arial, Helvetica, sans-serif;
  outline: 0;
}

.mobile-footer__email-form input::placeholder {
  color: #071f60;
  opacity: 1;
}

.mobile-footer__email-form button {
  width: 52px;
  border: 0;
  background: transparent;
  color: #071f60;
  font-size: 18px;
  line-height: 1;
}

.mobile-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 30px 0;
  color: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}

.mobile-footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 7px;
}

.mobile-footer__payments li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-footer__payments svg {
  display: block;
  width: 38px;
  height: 24px;
}

@keyframes mobileBrandShowcaseMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes textbarMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mobileFeatureSlide {
  0%, 10% {
    transform: translateX(0);
  }

  14%, 24% {
    transform: translateX(calc(-1 * var(--step)));
  }

  28%, 38% {
    transform: translateX(calc(-2 * var(--step)));
  }

  42%, 52% {
    transform: translateX(calc(-3 * var(--step)));
  }

  56%, 66% {
    transform: translateX(calc(-4 * var(--step)));
  }

  70%, 80% {
    transform: translateX(calc(-5 * var(--step)));
  }

  84%, 100% {
    transform: translateX(calc(-6 * var(--step)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider,
  .mobile-brand-showcase-slider,
  .textbar-slider {
    animation: none;
  }
}
