/** Shopify CDN: Minification failed

Line 103:0 Unexpected "`"

**/

.benefits-section {
  padding: 0px 20px;
  text-align: center;
}

.benefits-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Subheading */
.benefits-subheading {
  margin-bottom: 12px;
  font-size: 28px;
  color: #FF2796;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Main heading */
.benefits-heading {
  margin: 0 auto 30px;
  max-width: 700px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
}

/* Tick list */
.benefits-list {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 auto 45px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
}

/* Green tick */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22a447;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* Centered image */
.benefits-image {
  display: flex;
  justify-content: center;
  margin-bottom:30px;
}

.benefits-image img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 600px) {
  .benefits-section {
    padding: 0px 20px;
  }

  .benefits-heading {
    font-size: 32px;
  }

  .benefits-list li {
    font-size: 15px;
  }

  .benefits-image img {
    max-width: 100%;
  }
}
```css
/* =========================================
   FREE AIR FRESHENER PAGE
   ========================================= */

.free-offer-page {
  --fo-max-width: 1100px;
  --fo-green: #39a852;
  --fo-dark: #171717;
  --fo-muted: #555;
  --fo-light: #f8f8f6;

  color: var(--fo-dark);
  font-family: inherit;
  line-height: 1.5;
}

.free-offer-page *,
.free-offer-page *::before,
.free-offer-page *::after {
  box-sizing: border-box;
}

.fo-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================
   TYPOGRAPHY
   ========================================= */

.free-offer-page h1,
.free-offer-page h2,
.free-offer-page h3,
.free-offer-page p {
  margin-top: 0;
}

.free-offer-page h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.free-offer-page h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.free-offer-page p {
  font-size: 17px;
}


/* =========================================
   HERO
   ========================================= */

.fo-hero {
  padding: 60px 0 70px;
  text-align: center;
}

.fo-hero h1 {
  max-width: 800px;
  margin: 0 auto 35px;
}

.fo-hero-image {
  max-width: 1000px;
  margin: 0 auto;
}

.fo-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}


/* =========================================
   PROBLEM SECTION
   ========================================= */

.fo-problem {
  padding: 65px 0;
  background: var(--fo-light);
}

.fo-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;

  max-width: 900px;
  margin: 0 auto;
}

.fo-problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.fo-problem-icon {
  width: 130px;
  height: 130px;

  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fo-problem-icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.fo-problem-item h2 {
  max-width: 380px;
  margin: 0 auto 14px;

  font-size: clamp(25px, 2.5vw, 34px);
}

.fo-problem-item p {
  max-width: 390px;
  margin: 0 auto;

  color: var(--fo-muted);
}


/* =========================================
   FREE OFFER
   ========================================= */

.fo-offer {
  padding: 70px 0 80px;
  text-align: center;
}

.fo-eyebrow {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.fo-offer > .fo-container > h2 {
  max-width: 750px;
  margin: 0 auto 30px;
}


/* =========================================
   CHECK LIST
   ========================================= */

.fo-check-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: fit-content;
  max-width: 100%;

  margin: 0 auto 45px;
  padding: 0;

  gap: 13px;

  list-style: none;
  text-align: left;
}

.fo-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 17px;
}

.fo-check {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  flex: 0 0 26px;

  border-radius: 50%;

  background: var(--fo-green);
  color: #fff;

  font-size: 15px;
  font-weight: 800;
}


/* =========================================
   PRODUCT IMAGE
   ========================================= */

.fo-product-image {
  max-width: 650px;
  margin: 0 auto;
}

.fo-product-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================
   WHY YOU'LL LOVE IT
   ========================================= */

.fo-love {
  padding: 70px 0;
  background: var(--fo-light);
  text-align: center;
}

.fo-love h2 {
  margin: 0 0 30px;
}

.fo-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  max-width: 850px;

  margin: 0 auto;
  padding: 0;

  gap: 15px 45px;

  list-style: none;
  text-align: left;
}

.fo-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  font-size: 16px;
}

.fo-benefit-icon {
  flex-shrink: 0;
}


/* =========================================
   WHAT YOU GET
   ========================================= */

.fo-get {
  padding: 70px 0;
  text-align: center;
}

.fo-get > .fo-container > h2 {
  margin: 0 0 40px;
}

.fo-get-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.fo-get-item {
  padding: 10px;
}

.fo-get-icon {
  margin-bottom: 10px;
  font-size: 32px;
}

.fo-get-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.fo-get-item p {
  margin: 0;
  color: var(--fo-muted);
  font-size: 15px;
}


/* =========================================
   GALLERY
   ========================================= */

.fo-gallery {
  padding: 0 0 70px;
}

.fo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fo-gallery-item img {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 14px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .fo-problem-grid {
    gap: 40px;
  }

  .fo-get-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 650px) {

  .fo-container {
    width: min(100% - 30px, 1100px);
  }

  .fo-hero {
    padding: 40px 0 45px;
  }

  .fo-hero h1 {
    margin-bottom: 25px;
  }


  /* Keep the two problem items stacked on mobile */

  .fo-problem {
    padding: 45px 0;
  }

  .fo-problem-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .fo-problem-icon {
    width: 105px;
    height: 105px;
    margin-bottom: 16px;
  }

  .fo-problem-item h2 {
    margin-bottom: 10px;
  }


  /* Offer */

  .fo-offer {
    padding: 50px 0 55px;
  }

  .fo-check-list {
    margin-bottom: 35px;
  }


  /* Benefits */

  .fo-love {
    padding: 50px 0;
  }

  .fo-benefit-list {
    grid-template-columns: 1fr;
    gap: 13px;
  }


  /* Get */

  .fo-get {
    padding: 50px 0;
  }

  .fo-get-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }


  /* Gallery */

  .fo-gallery {
    padding-bottom: 50px;
  }

  .fo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  .free-offer-page h1 {
    font-size: 38px;
  }

  .free-offer-page h2 {
    font-size: 29px;
  }

  .fo-problem-item p {
    font-size: 16px;
  }

}

/* =========================================
   PRODUCT SELECTOR
   ========================================= */


   .free-af-scent-selection {
    max-width: 500px;
    margin-inline: auto;
   }

.variant-metafield-cart {
  width: 100%;
  max-width: 380px;
  margin: 25px auto;
  padding: 22px;

  background: #fff;
  border-radius: 16px;

  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);

  text-align: center;
  box-sizing: border-box;
}


/* =========================================
   LABEL
   ========================================= */

.free-af-scent-selection label {
  display: block;

  margin-bottom: 9px;

  font-size: 17px;
  font-weight: 700;

  color: #222;
}

.rewards-list li{ 
    line-height: 1.6rem;
}


/* =========================================
   SELECT
   ========================================= */

#variant-product-name {
  width: 100%;
  height: 52px;

  padding: 0 42px 0 15px;

  box-sizing: border-box;

  border: 2px solid #ddd;
  border-radius: 10px;

  background-color: #fff;

  color: #222;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  outline: none;

  appearance: none;
  -webkit-appearance: none;

  /* Dropdown arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, #333 50%),
    linear-gradient(135deg, #333 50%, transparent 50%);

  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;

  background-size:
    6px 6px,
    6px 6px;

  background-repeat: no-repeat;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#variant-product-name:hover {
  border-color: #999;
}

#variant-product-name:focus {
  border-color: #111;

  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.08);
}


/* =========================================
   ADD TO CART BUTTON
   ========================================= */

#add-static-variant {
  width: 100%;
  min-height: 56px;

  margin-top: 14px;
  padding: 14px 20px;

  border: none;
  border-radius: 10px;

  background: #30a614;
  color: #fff;

  font-size: 17px;
  font-weight: 800;

  letter-spacing: 0.2px;

  cursor: pointer;

  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.20);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


/* =========================================
   BUTTON HOVER
   ========================================= */

#add-static-variant:hover {
  background: #000;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================================
   BUTTON CLICK
   ========================================= */

#add-static-variant:active {
  transform: translateY(1px);
}


/* =========================================
   VERTICAL SHAKE / BOUNCE
   ========================================= */

@keyframes verticalAttention {

  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-4px);
  }

  20% {
    transform: translateY(4px);
  }

  30% {
    transform: translateY(-4px);
  }

  40% {
    transform: translateY(4px);
  }

  50% {
    transform: translateY(-2px);
  }

  60% {
    transform: translateY(2px);
  }

  70% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}


/*
 * Vertical attention animation.
 *
 * Shake for 0.7 seconds,
 * then wait 3 seconds before repeating.
 */

#add-static-variant {
  animation:
    verticalAttention 0.7s ease-in-out 3s infinite;
}


/* =========================================
   DISABLED
   ========================================= */

#add-static-variant:disabled {
  opacity: 0.65;
  cursor: not-allowed;

  animation: none;
  transform: none;
}


/* =========================================
   MESSAGE
   ========================================= */

#variant-cart-message {
  margin-top: 10px;

  font-size: 14px;
  font-weight: 600;

  color: #c62828;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .variant-metafield-cart {
    max-width: 340px;
    padding: 18px;
  }

  #variant-product-name {
    height: 50px;
  }

  #add-static-variant {
    min-height: 54px;
    font-size: 16px;
  }
}