html {
  margin: 0;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
}

@media screen and (max-width: 750px) {
  .desktop {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .desktop_tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .tablet {
    display: none !important;
  }
}

.marilyn .top-bar-banner {
  background-color: #d2ecc2;
  padding: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
}
@media screen and (max-width: 550px) {
  .marilyn .top-bar-banner {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .marilyn .top-bar-banner {
    font-size: 1.3rem;
  }
}
.marilyn .top-bar-banner {
  justify-content: center;
}
.marilyn .top-bar-banner-pre {
  text-align: center;
}
.marilyn .top-bar-banner-after {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.marilyn .top-bar-banner-after-black-box {
  background-color: black;
  color: white;
  padding: 0.5rem 2.4rem;
  font-weight: bold;
  border-radius: 0.8rem;
  margin: 0 0.8rem;
}
.marilyn .top-bar-text {
  font-size: 1.6rem;
  color: white;
  background-color: #002f28;
  text-align: center;
  line-height: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 350px) {
  .marilyn .top-bar-text {
    font-size: 1.2rem;
  }
}
.marilyn .menu {
  padding: 1.2rem 0;
  background-color: white;
  box-shadow: 0 0.3rem 0.8rem 0 #bbbbbb;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 15;
}
.marilyn .menu-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.marilyn .menu-container-logo img {
  /* Height-capped (like sp_1) so an uploaded logo can't dominate the header.
     Operator feedback 2026-06-17. */
  height: 4.4rem;
  width: auto;
  max-width: 24rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .marilyn .menu-container-logo img {
    height: 3.6rem;
    max-width: 18rem;
  }
}
/* Text-logo fallback (site name) when no image logo is uploaded. */
.marilyn .menu-container-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: #002f28;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .marilyn .menu-container-logo-text {
    font-size: 1.7rem;
  }
}
.marilyn .menu-container-selection {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10rem;
  margin-right: 2rem;
}
.marilyn .menu-container-selection-static {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.5rem;
  gap: 4rem;
}
.marilyn .menu-container-selection-static a {
  color: #002f28;
  text-decoration: none;
}
.marilyn .menu-container-selection-button {
  border-radius: 4rem;
  border: 1px solid;
}
.marilyn .menu-container-selection-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  line-height: 2.1rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .menu-container-selection-button a svg {
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .marilyn .menu-container-selection-button {
    display: none;
  }
}
.marilyn .menu-container-burger button {
  border: none;
  background-color: white;
}
.marilyn .menu-container-dropdown {
  transform: translate(0, -100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
}
.marilyn .menu-container-dropdown-static {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: white;
}
.marilyn .menu-container-dropdown-static-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #002e27;
  padding: 1rem 2.5rem;
}
.marilyn .menu-container-dropdown-static-logo img {
  max-width: 19.6rem;
}
.marilyn .menu-container-dropdown-static-logo button {
  background-color: #002e27;
  border: none;
}
.marilyn .menu-container-dropdown-static-logo button svg {
  color: white !important;
}
.marilyn .menu-container-dropdown-static-features a {
  color: rgb(0, 47, 40);
  text-decoration: none;
}
.marilyn .menu-container-dropdown-static-features {
  border-bottom: 1px solid rgb(214, 214, 214);
  padding: 2rem 2.5rem;
}
.marilyn .menu-container-dropdown-static-reviews a {
  color: rgb(0, 47, 40);
  text-decoration: none;
}
.marilyn .menu-container-dropdown-static-reviews {
  border-bottom: 1px solid rgb(214, 214, 214);
  padding: 2rem 2.5rem;
}
.marilyn .mobile-menu.open ~ .menu-container-dropdown {
  transform: translate(0);
}
.marilyn .hero-container {
  background-color: #fbfbfa;
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 7.2rem 3rem 4.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .hero-container-left {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left {
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-stars {
    display: none;
  }
}
.marilyn .hero-container-left-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.marilyn .hero-container-left-stars p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-title {
    display: none;
  }
}
.marilyn .hero-container-left-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: rgb(0, 47, 40);
  margin: 0 0 2rem;
  padding-right: 3rem;
  line-height: 5.7rem;
}
.marilyn .hero-container-left-checkmarks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-checkmarks {
    margin-top: 2rem;
  }
}
.marilyn .hero-container-left-checkmarks-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.3rem;
  padding: 0 0 1.5rem;
}
.marilyn .hero-container-left-checkmarks-text p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .marilyn .hero-container-left-checkmarks-text p {
    font-size: 1.5rem;
  }
}
.marilyn .hero-container-left-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .hero-container-left-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .hero-container-left-button a svg {
  border-radius: 50%;
}
.marilyn .hero-container-left-button {
  margin-top: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-button {
    display: none;
  }
}
.marilyn .hero-container-left-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-stock {
    display: none;
  }
}
.marilyn .hero-container-left-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .hero-container-left-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .hero-container-left-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .hero-container-left-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .hero-container-left-review {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 1.6rem;
  gap: 2.2rem;
}
.marilyn .hero-container-left-review-image img {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
}
.marilyn .hero-container-left-review-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marilyn .hero-container-left-review-text-article {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.marilyn .hero-container-left-review-text-article p {
  margin: 0.7rem 0;
}
.marilyn .hero-container-left-review-text-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.marilyn .hero-container-left-review-text-name p.verified {
  color: #1bba86;
  margin: 0;
}
.marilyn .hero-container-slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 1.7rem auto;
  width: 54rem;
  margin-right: 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow {
    width: 100%;
    margin: 0;
  }
}
.marilyn .hero-container-slideshow:before {
  content: "";
  position: absolute;
  background-color: #d2ecc2;
  border-radius: 35px;
  width: calc(100% - 16px);
  height: calc(100% - 120px);
  top: -12px;
  right: -15px;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow:before {
    display: none;
  }
}
.marilyn .hero-container-slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-container {
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-container {
    border-radius: 0.6rem;
  }
}
.marilyn .hero-container-slideshow-container .slides {
  display: none;
  width: 100%;
  height: auto;
}
.marilyn .hero-container-slideshow-container img {
  max-width: 100%;
  height: auto;
  border: 1px solid #5b7d45;
  border-radius: 1.2rem;
}
@media screen and (min-width: 1001px) {
  .marilyn .hero-container-slideshow-container img {
    min-width: 54rem;
    width: 54rem;
    height: 54rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-container img {
    border-radius: 0.8rem;
    aspect-ratio: 1;
  }
}
.marilyn .hero-container-slideshow-thumbnails {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails {
    margin-top: 0.6rem;
    padding: 0 0.5rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails img {
  max-width: 5.5rem;
  height: 5.5rem;
  border: 1px solid #5b7d45;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 4.5rem;
    height: 4.5rem;
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 3.5rem;
    height: 3.5rem;
    border-radius: 4px;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 3rem;
    height: 3rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .active {
  opacity: 1;
  border-color: #5b7d45;
}
.marilyn .hero-container-slideshow-thumbnails-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.4rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .prev,
.marilyn .hero-container-slideshow-thumbnails .next {
  cursor: pointer;
  font-size: 2rem;
  user-select: none;
  z-index: 10;
  margin: 0 1rem;
  height: 3.6rem;
  width: 3.6rem;
  border-radius: 50%;
  color: #5b7d45;
  border: 1px solid #5b7d45;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.8rem;
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.6rem;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.4rem;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 0.3rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .prev:hover,
.marilyn .hero-container-slideshow-thumbnails .next:hover {
  color: #fff;
  background-color: #5b7d45;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails .prev:active,
  .marilyn .hero-container-slideshow-thumbnails .next:active {
    transform: scale(0.95);
  }
}
.marilyn .hero-container-slideshow .guarantee {
  position: absolute;
  top: -2rem;
  right: 47rem;
  max-width: 12rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: -1.5rem;
    right: 89%;
  }
}
@media screen and (max-width: 800px) {
  .marilyn .hero-container-slideshow .guarantee {
    max-width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: -1.5rem;
    right: 87%;
    max-width: 8rem;
  }
}
@media screen and (max-width: 440px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: 0.5rem;
    right: 80%;
    max-width: 6rem;
  }
}
.marilyn .hero-container-slideshow .recommended-by {
  position: absolute;
  bottom: 10rem;
  left: 40rem;
  max-width: 12rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 10%;
    left: 86%;
  }
}
@media screen and (max-width: 800px) {
  .marilyn .hero-container-slideshow .recommended-by {
    max-width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 14%;
    left: 80%;
    max-width: 8rem;
  }
}
@media screen and (max-width: 440px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 12%;
    left: 78%;
    max-width: 6rem;
  }
}
/* Corner badges (guarantee seal + recommended-by) live inside the slideshow
   container, so the generic `.hero-container-slideshow-container img` rule was
   forcing them to min-width/height 54rem with a green border, and WP's
   hardcoded right:47rem/left:40rem offsets (with top:-2rem clipped by the
   container's overflow:hidden) put them off-position. Reset size/border and
   pin them to the visible corners. Scoped to -container (the real parent) and
   placed last so it wins the cascade. */
.marilyn .hero-container-slideshow-container .guarantee,
.marilyn .hero-container-slideshow-container .recommended-by {
  position: absolute;
  min-width: 0;
  /* Bumped from 8rem — the seal read as a tiny corner sticker; operators
     want it prominent (feedback 2026-06-16). */
  width: 11rem;
  max-width: 12rem;
  height: auto;
  border: none;
  border-radius: 0;
  object-fit: contain;
  z-index: 3;
}
.marilyn .hero-container-slideshow-container .guarantee {
  top: 1rem;
  right: 1rem;
  bottom: auto;
  left: auto;
}
.marilyn .hero-container-slideshow-container .recommended-by {
  top: 1rem;
  left: 1rem;
  bottom: auto;
  right: auto;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-container .guarantee,
  .marilyn .hero-container-slideshow-container .recommended-by {
    width: 8rem;
  }
}

.marilyn .hero-container-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1001px) {
  .marilyn .hero-container-mobile {
    display: none;
  }
}
.marilyn .hero-container-mobile-left {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-mobile-left {
    padding-right: 0;
  }
}
.marilyn .hero-container-mobile-left-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
}
.marilyn .hero-container-mobile-left-stars img {
  max-width: 9rem;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars img {
    max-width: 7rem;
  }
}
.marilyn .hero-container-mobile-left-stars p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars p {
    font-size: 1.2rem;
  }
}
.marilyn .hero-container-mobile-left-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: rgb(0, 47, 40);
  margin: 0 0 2rem;
  line-height: 5.7rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-mobile-left-title h1 {
    text-align: center;
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .hero-container-mobile-left-title h1 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-title h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-mobile-left-title h1 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.marilyn .highlights {
  background-color: white;
}
.marilyn .highlights-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding: 4rem 3rem 6rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: white;
  justify-content: center;
  gap: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .highlights-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .highlights-container-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.marilyn .highlights-container-item-icon img {
  max-width: 8rem;
}
.marilyn .highlights-container-item-text {
  text-align: center;
  line-height: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #002f28;
}
.marilyn .infinite_scroll_gallery {
  background-color: white;
  padding: 4rem 0 6rem;
}
@media screen and (max-width: 750px) {
  .marilyn .infinite_scroll_gallery {
    padding-bottom: 4rem;
  }
}
.marilyn .infinite_scroll_gallery-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .infinite_scroll_gallery-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .infinite_scroll_gallery-container-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 1.6rem 0 4rem;
}
@media screen and (max-width: 750px) {
  .marilyn .infinite_scroll_gallery-container-title h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin-bottom: 1.7rem;
  }
}
.marilyn .infinite_scroll_gallery-container-scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.marilyn .infinite_scroll_gallery-container-scroller-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}
.marilyn .infinite_scroll_gallery-container-scroller-track img {
  height: 30rem;
  width: 22rem;
  margin-right: 20px;
  border-radius: 8px;
}
.marilyn .main_content {
  background-color: white;
}
.marilyn .main_content-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container {
    padding: 0 2rem;
  }
}
.marilyn .main_content-container-title_article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3.5rem;
}
.marilyn .main_content-container-title_article-title {
  text-align: center;
}
.marilyn .main_content-container-title_article-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-title_article-title h2 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .main_content-container-title_article-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
  max-width: 61.5rem;
  margin: auto;
  text-align: center;
}
.marilyn .main_content-container-title_article-image {
  max-width: 61.5rem;
  margin: 2.4rem auto 0;
}
.marilyn .main_content-container-title_article-image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  object-fit: cover;
}
.marilyn .main_content-container-main_content {
  display: flex;
  align-items: center;
  max-width: 952px;
  margin: 1rem auto 4.5rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container-main_content {
    flex-direction: column-reverse !important;
  }
}
.marilyn .main_content-container-main_content .highlight::before {
  content: "";
  position: absolute;
  background-color: #d2ecc2;
  border-radius: 2rem;
  width: calc(100% - 100px);
  height: calc(100% - 200px);
  top: 215px;
  right: -15px;
  z-index: 0;
}
.marilyn .main_content-container-main_content-image {
  position: relative;
}
.marilyn .main_content-container-main_content-image img {
  width: 49rem;
  height: 50rem;
  border-radius: 2rem;
  border: 1px solid #5b7d45;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  /* The image had a fixed width:49rem/height:50rem; max-width:100% was
     ineffective because the parent shrink-wraps to the image, so it overflowed
     the viewport and clipped on the right. Make it fluid + auto height so the
     full image shows (operator feedback 2026-06-17). */
  .marilyn .main_content-container-main_content-image {
    width: 100%;
  }
  .marilyn .main_content-container-main_content-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  /* The desktop offset green backdrop is tuned for the fixed 500px image; on a
     fluid mobile image its absolute offsets overflowed the right edge. Anchor
     it as a contained bottom peek instead. */
  .marilyn .main_content-container-main_content .highlight::before {
    top: auto;
    bottom: -1rem;
    left: 1.2rem;
    right: 0;
    width: auto;
    height: 55%;
  }
}
.marilyn .main_content-container-main_content-wrapper {
  padding: 0 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container-main_content-wrapper {
    padding: 0;
  }
}
.marilyn .main_content-container-main_content-wrapper-title h3 {
  font-size: 3.6rem;
  line-height: 4rem;
  color: #002f28;
  margin: 0;
}
.marilyn .main_content-container-main_content-wrapper-article {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .main_content-container-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .main_content-container-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .main_content-container-button a svg {
  border-radius: 50%;
}
.marilyn .main_content-container-button {
  margin-top: 1.6rem;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-button {
    margin-top: 0;
  }
}
.marilyn .main_content-container-button {
  width: fit-content;
}
.marilyn .main_content-container-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.marilyn .main_content-container-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .main_content-container-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .main_content-container-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .main_content-container-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .main_content-container-centralized_box {
  margin-bottom: 4.5rem;
}
.marilyn .main_content-container-centralized_box-container {
  max-width: 87.4rem;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
}
.marilyn .main_content-container-centralized_box-container {
  gap: 5.5rem;
  border: 2px solid #000000;
}
.marilyn .main_content-container-centralized_box-container-image {
  position: relative;
  flex: 1;
}
.marilyn .main_content-container-centralized_box-container-image img {
  border-radius: 0.8rem;
  max-width: 100%;
}
.marilyn .main_content-container-centralized_box-container-wrapper {
  flex: 1.2;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container-wrapper {
    margin-bottom: 0;
  }
}
.marilyn .main_content-container-centralized_box-container-wrapper p {
  margin-top: 0;
}
.marilyn .main_content-container-centralized_box-container-wrapper p:last-child {
  margin-bottom: 0;
}
.marilyn .main_content-container-centralized_box-container-wrapper h3 {
  font-size: 2.6rem;
  line-height: 4rem;
  margin-bottom: 0.6rem;
  color: rgb(0, 47, 40);
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container-wrapper h3 {
    margin-top: 0;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
.marilyn .main_content-container-centralized_box-container .recommended-by {
  position: absolute;
  top: 65%;
  left: 75%;
  max-width: 12rem;
}
@media screen and (max-width: 550px) {
  .marilyn .main_content-container-centralized_box-container .recommended-by {
    top: 75%;
    left: 85%;
    max-width: 6rem;
  }
}
.marilyn .key_features {
  background-color: white;
}
.marilyn .key_features-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container {
    padding: 0 2rem;
  }
}
.marilyn .key_features-container-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  text-align: center;
  margin: 0 0 4.4rem;
  padding-top: 1rem;
}
@media screen and (max-width: 750px) {
  .marilyn .key_features-container-title h2 {
    font-size: 2.6rem;
    line-height: 3.4rem;
    margin-bottom: 1rem;
  }
}
.marilyn .key_features-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-left {
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-left {
  flex: 1;
}
.marilyn .key_features-container-wrapper-left-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-left-item {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.marilyn .key_features-container-wrapper-left-item-icon img {
  max-width: 7rem;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-left-item-icon img {
    max-width: 10rem;
  }
}
.marilyn .key_features-container-wrapper-left-item-title h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
}
.marilyn .key_features-container-wrapper-left-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .key_features-container-wrapper-left-item-article p:first-child {
  margin-top: 1.4rem;
}
.marilyn .key_features-container-wrapper-left-item-article p:last-child {
  margin-bottom: 0;
}
.marilyn .key_features-container-wrapper-centralized_image {
  padding: 0 4rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-centralized_image {
    padding: 0rem;
  }
}
.marilyn .key_features-container-wrapper-centralized_image {
  flex: 0.8;
}
.marilyn .key_features-container-wrapper-centralized_image img {
  max-width: 100%;
}
.marilyn .key_features-container-wrapper-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-right {
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-right {
  flex: 1;
}
.marilyn .key_features-container-wrapper-right-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-right-item {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.marilyn .key_features-container-wrapper-right-item-icon img {
  max-width: 7rem;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-right-item-icon img {
    max-width: 10rem;
  }
}
.marilyn .key_features-container-wrapper-right-item-title h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
}
.marilyn .key_features-container-wrapper-right-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .key_features-container-wrapper-right-item-article p:first-child {
  margin-top: 1.4rem;
}
.marilyn .key_features-container-wrapper-right-item-article p:last-child {
  margin-bottom: 0;
}
.marilyn .full_width_images {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 9rem;
  background-color: white;
}
@media screen and (max-width: 750px) {
  .marilyn .full_width_images {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
  }
}
.marilyn .full_width_images {
  width: 100%;
}
.marilyn .full_width_images img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .marilyn .full_width_images img {
    width: 100%;
  }
}
.marilyn .colored_section {
  background-color: #d2ecc2;
  padding: 4.4rem 0 4.8rem;
  /* Breathing room above the green guarantee band so it doesn't sit flush
     against the section above it (operator feedback 2026-06-16). */
  margin-top: 4rem;
}
/* NB: a literal position:sticky/fixed on this full-width green guarantee
   band pins a ~290px section at the top of the viewport for the rest of the
   page (its sticky parent is the whole page), covering the testimonials +
   FAQ below — verified broken. So the guarantee stays a normal prominent
   in-flow section. If persistent guarantee visibility is wanted, the right
   pattern is a slim sticky badge, not the whole section. */
@media screen and (max-width: 750px) {
  .marilyn .colored_section {
    padding: 4rem 2.5rem 2rem;
  }
}
.marilyn .colored_section-container {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container {
    flex-direction: column;
    justify-content: center;
  }
}
.marilyn .colored_section-container {
  gap: 1.8rem;
}
.marilyn .colored_section-container-wrapper {
  flex: 1;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper-title {
    text-align: center;
  }
}
.marilyn .colored_section-container-wrapper-title h3 {
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper-title h3 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.marilyn .colored_section-container-wrapper-article {
  font-size: 1.6rem;
  margin-top: 1.2rem;
  /* Honor operator-entered line breaks (\n) — the article is plain text from
     the chrome editor and a <p> otherwise collapses them to one run
     (operator feedback 2026-06-17). */
  white-space: pre-line;
}
.marilyn .colored_section-container-wrapper-article p:first-child {
  margin-top: 0;
}
.marilyn .colored_section-container-wrapper-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .colored_section-container-wrapper-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .colored_section-container-wrapper-button a svg {
  border-radius: 50%;
}
.marilyn .colored_section-container-wrapper-button {
  width: fit-content;
}
.marilyn .colored_section-container-wrapper-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.marilyn .colored_section-container-wrapper-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .colored_section-container-wrapper-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .colored_section-container-wrapper-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .colored_section-container-wrapper-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .colored_section-container-image {
  max-width: 15rem;
}
.marilyn .colored_section-container-image img {
  max-width: 100%;
}
.marilyn .testimonials {
  background-color: white;
}
.marilyn .testimonials-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.marilyn .testimonials-container-title h3 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-title h3 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .testimonials-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 93rem;
  margin: 3.4rem auto 0;
  gap: 1.6rem;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .testimonials-container-wrapper {
    gap: 4.4rem;
    margin: 2.8rem auto 0;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-wrapper {
    flex-direction: column;
  }
}
.marilyn .testimonials-container-wrapper {
  flex-wrap: wrap;
}
.marilyn .testimonials-container-wrapper-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 calc(33.333% - 1.6rem);
}
@media screen and (max-width: 1000px) {
  .marilyn .testimonials-container-wrapper-item {
    flex: 0 0 calc(49% - 5.5rem);
  }
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-wrapper-item {
    max-width: 29rem;
  }
}
.marilyn .testimonials-container-wrapper-item-image {
  text-align: center;
  width: 100%;
}
.marilyn .testimonials-container-wrapper-item-image img {
  max-width: 100%;
  border-radius: 0.8rem;
}
.marilyn .testimonials-container-wrapper-item-trustpilot img {
  max-width: 8rem;
}
.marilyn .testimonials-container-wrapper-item-trustpilot {
  margin: 1.8rem 0 0.8rem;
}
.marilyn .testimonials-container-wrapper-item-title h4 {
  margin: 0.4rem 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .testimonials-container-wrapper-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .testimonials-container-wrapper-item-article p {
  margin: 0.4rem 0;
}
.marilyn .testimonials-container-wrapper-item-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.marilyn .testimonials-container-wrapper-item-name p.verified {
  color: #1bba86;
  margin: 0;
}
.marilyn .offer_banner {
  position: relative;
  background-color: white;
}
.marilyn .offer_banner-container {
  min-height: 49rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  justify-content: center;
  padding: 0 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container {
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .offer_banner-container {
    padding: 0 2.5rem;
  }
}
.marilyn .offer_banner-container-image img {
  position: absolute;
  left: 50%;
  width: 50%;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-image img {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
  }
}
.marilyn .offer_banner-container-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.marilyn .offer_banner-container-stars p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.marilyn .offer_banner-container-title {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-title {
    max-width: 100%;
  }
}
.marilyn .offer_banner-container-title h4 {
  margin: 0;
  padding-right: 0.5rem;
  font-size: 4.8rem;
  line-height: 5.7rem;
  color: #002f28;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-title h4 {
    font-size: 4.6rem;
    line-height: 5.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .offer_banner-container-title h4 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    text-align: center;
  }
}
.marilyn .offer_banner-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }
}
.marilyn .offer_banner-container-wrapper-checkmarks {
  width: 100%;
}
.marilyn .offer_banner-container-wrapper-checkmarks-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.3rem;
  padding: 0 0 1.5rem;
}
.marilyn .offer_banner-container-wrapper-checkmarks-item p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.marilyn .offer_banner-container-wrapper-button_low_column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button a svg {
  border-radius: 50%;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button {
  margin-top: 1.6rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .faqs {
  background-color: #fbfbfa;
}
.marilyn .faqs-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 4.4rem;
}
.marilyn .faqs-container-title {
  text-align: center;
}
.marilyn .faqs-container-title h3 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  margin: 0;
  color: #002f28;
}
@media screen and (max-width: 750px) {
  .marilyn .faqs-container-title h3 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .faqs-container-faqs {
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
}
.marilyn .faqs-container-faqs-row {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background-color: #fff;
}
.marilyn .faqs-container-faqs-row:last-child {
  border-bottom: none;
}
.marilyn .faqs-container-faqs-row-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  cursor: pointer;
  transition: background-color 0.4s;
  font-size: 1.8rem;
}
@media screen and (max-width: 1100px) {
  .marilyn .faqs-container-faqs-row-question {
    font-size: 1.8rem;
  }
}
.marilyn .faqs-container-faqs-row-question {
  font-weight: 600;
}
/* Keep the question text (incl. any <strong> brand spans from md_bold) on
   one inline run so flex space-between only splits text vs. arrow — without
   this wrap the text + each <strong> became separate flex items spread into
   3 columns (operator feedback 2026-06-16). */
.marilyn .faqs-container-faqs-row-question-text {
  flex: 1;
  min-width: 0;
  margin-right: 1.5rem;
}
.marilyn .faqs-container-faqs-row-question .faq-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.marilyn .faqs-container-faqs-row-question .faq-arrow.rotated {
  transform: rotate(180deg);
}
.marilyn .faqs-container-faqs-row-answer {
  max-height: 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .marilyn .faqs-container-faqs-row-answer {
    font-size: 1.8rem;
  }
}
.marilyn .faqs-container-faqs-row-answer {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
}
.marilyn .faqs-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.marilyn .faqs-container-wrapper-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .faqs-container-wrapper-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .faqs-container-wrapper-button a svg {
  border-radius: 50%;
}
.marilyn .faqs-container-wrapper-button {
  margin-top: 1.6rem;
  width: fit-content;
}
.marilyn .faqs-container-wrapper-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
.marilyn .faqs-container-wrapper-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .faqs-container-wrapper-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .faqs-container-wrapper-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .faqs-container-wrapper-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .sticky_cta {
  box-shadow: 0px -3px 8px 0px #bbbbbb;
  background-color: #ffffff;
  position: fixed;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 15;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.marilyn .sticky_cta-container-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
}
.marilyn .sticky_cta-container-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .sticky_cta-container-button a svg {
  border-radius: 50%;
}
.marilyn .sticky_cta-container-button {
  margin: 1.6rem 0;
}
@media screen and (min-width: 1000px) {
  .marilyn .sticky_cta-container-button {
    display: none;
  }
}
.marilyn .sticky_cta-container-button {
  width: fit-content;
}
.marilyn .sticky_cta-container-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0;
}
@media screen and (min-width: 1000px) {
  .marilyn .sticky_cta-container-stock {
    display: none;
  }
}
.marilyn .sticky_cta-container-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .sticky_cta-container-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .sticky_cta-container-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .sticky_cta-container-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}

@keyframes pulseCTAButton {
  50% {
    transform: scale(1);
  }
}
@keyframes pulseCtaShip {
  45% {
    box-shadow: 0 0 0 5px #adf4a1;
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}/*# sourceMappingURL=marilyn.css.map */
/* ── lpgen port additions (not in the WP original) ─────────────────── */
/* M8: single real h1 — the WP mobile duplicate renders as a styled <p>. */
.hero-container-mobile .mrl-h1-dup {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #002f28;
  margin: 0.8rem 0;
  text-align: center;
}
/* Smooth show/hide for the sticky CTA (the WP version snapped). */
.sticky_cta { transition: transform 0.3s ease, opacity 0.3s ease; }

/* ── lpgen shared chrome: site footer + exit-intent modal ──────────────
   Copied from static/editorial/editorial.css so the shared partials
   (_footer_menu/_footer_below_menu, editorial exit_intent) render
   identically across all website templates. */
.site-footer {
  background: #1e1e1e;
  color: #aaaaaa;
  padding: 4.8rem 2rem 3.2rem;
  font-family: "Open Sans", "Inter", sans-serif;
  font-size: 1.25rem; line-height: 1.85;
  margin-top: 6rem;
}
.site-footer .footer-inner {
  max-width: 80rem; margin: 0 auto; text-align: center;
}
.site-footer .footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.6rem 2rem; margin-bottom: 2rem;
}
.site-footer .footer-links a {
  color: #cccccc; font-weight: 600; font-size: 1.3rem;
  text-decoration: none; transition: color 0.15s ease;
}
.site-footer .footer-links a:hover { color: #ffffff; }
.site-footer .footer-disclaimer {
  color: #777777; font-size: 1.2rem; margin-top: 1.2rem; line-height: 1.6;
}
.site-footer .footer-disclaimer a { color: #cccccc; }
.site-footer .footer-disclaimer strong { color: #cccccc; }
.exit-intent {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 9999;
  align-items: center; justify-content: center; padding: 2rem;
}
.exit-intent--open { display: flex; }
.exit-intent-card {
  background: #fff; max-width: 56rem; width: 100%;
  border-radius: 0.6rem; padding: 0; overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  display: flex; flex-direction: row; position: relative;
}
.exit-intent-close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  background: rgba(0,0,0,0.06); border: none;
  color: #1f2937; width: 2.8rem; height: 2.8rem;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  border-radius: 50%;
}
.exit-intent-image { flex: 1; min-width: 0; }
.exit-intent-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exit-intent-body  { flex: 1.2; padding: 2.4rem 2.2rem; }
.exit-intent-heading {
  font-family: "Open Sans", "Inter", sans-serif;
  font-size: 3rem; font-weight: 800; color: #1f2937;
  margin: 0 0 0.8rem; text-decoration: underline;
}
.exit-intent-subheading { font-family: "Open Sans", "Inter", sans-serif; font-size: 1.6rem; line-height: 1.5; color: #4b5563; margin: 0 0 1.4rem; }
.exit-intent-offer { font-family: "Open Sans", "Inter", sans-serif; font-weight: 700; font-size: 2.2rem; line-height: 1.3; color: #1f2937; margin: 0 0 1.4rem; }
.exit-intent-cta {
  display: block; text-align: center; padding: 1.4rem 1.6rem;
  background-color: #ffd230; color: #1f2937;
  font-family: "Open Sans", "Inter", sans-serif; font-size: 1.7rem; font-weight: 800;
  text-decoration: none; border-radius: 0.4rem;
}
.exit-intent-fineprint { font-family: "Open Sans", "Inter", sans-serif; font-size: 1.1rem; color: #6b7280; text-align: center; margin-top: 0.8rem; }

/* ───────────────────────────────────────────────────────────────────
   2026-06-17 mobile feedback (operator)
   ─────────────────────────────────────────────────────────────────── */

/* #1 + #2  Sticky CTA: the button + low-stock sat in one row, so the long
   CTA wrapped to 3 lines and the stock text was cramped. Stack them
   (button on top, full width + centered text; stock below) on mobile. */
@media screen and (max-width: 1000px) {
  .marilyn .sticky_cta {
    flex-direction: column;
    gap: 0;
    padding: 0.3rem 1rem;
  }
  .marilyn .sticky_cta-container-button {
    margin: 0.6rem 0 0.2rem;
    width: auto;
    max-width: 94%;
  }
  .marilyn .sticky_cta-container-button a {
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.9rem;
    padding: 0.9rem 1.4rem;
  }
  .marilyn .sticky_cta-container-stock {
    margin: 0.1rem 0 0.5rem;
  }
}

/* #6  Center the CTA text (and its arrow) on mobile so multi-line button
   labels read centered instead of left-aligned. */
@media screen and (max-width: 768px) {
  .marilyn .hero-container-left-button a,
  .marilyn .main_content-container-button a,
  .marilyn .colored_section-container-wrapper-button a,
  .marilyn .menu-container-selection-button a,
  .marilyn .sticky_cta-container-button a {
    justify-content: center;
    text-align: center;
  }
}

/* #4  Top bar: keep the banner content centered on mobile (the after-text
   beside the black box was reading left-aligned). */
@media screen and (max-width: 768px) {
  .marilyn .top-bar-banner-after {
    justify-content: center;
    flex-wrap: wrap;
  }
  .marilyn .top-bar-banner-after-text,
  .marilyn .top-bar-text { text-align: center; }
}

/* #3  Benefits (key features): the column gaps left a large void between the
   heading, the centralized image, and the benefit list on mobile. Tighten
   the gaps and cap the image height so it doesn't dominate. */
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container { gap: 1rem; }
  .marilyn .key_features-container-wrapper { gap: 1.2rem; }
  .marilyn .key_features-container-wrapper-centralized_image img {
    max-height: 24rem;
    width: auto;
    max-width: 100%;
  }
}
/* Exit-intent modal — stack image over text on mobile so the offer copy is not
   crammed into a narrow column (operator mobile feedback 2026-06-24). */
@media screen and (max-width: 768px) {
  .exit-intent-card { flex-direction: column; }
  .exit-intent-image { max-height: 20rem; }
  .exit-intent-image img { height: 100%; max-height: 20rem; }
  .exit-intent-body { padding: 1.8rem 1.6rem; text-align: center; }
  .exit-intent-heading { font-size: 2.4rem; }
}
