/* Color Variables */
:root {
  --color-black: #1f1f1f;
  --color-green: #a9f134;
  --color-off-white: #f7f4f1;
  --color-red: #ff543d;
  --color-purple: #6e60c6;
  --color-yellow: #ffdf2c;
}

/* Form Loading and Message Styles */
.rewards__loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rewards__loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.free-shot-success-message {
  background-color: var(--color-green);
  color: var(--color-black);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

.free-shot-error-message {
  background-color: var(--color-red);
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}
body {
  background-color: var(--color-off-white);
  color: var(--color-black);
}
.clear {
  clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "RightGrotesk", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  font-size: 75px;
  line-height: 0.9;
}
h2 {
  font-size: 59px;
  line-height: 0.9;
}
h3 {
  font-size: 40px;
  line-height: 0.9;
}
h4 {
  font-size: 35px;
  line-height: 0.9;
}
h5 {
  font-size: 26px;
  line-height: 1.2;
}
h6 {
  font-size: 22px;
  line-height: 24px;
}
p,
ol,
ul {
  font-family: "RightGrotesk", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
}
p.xs {
  font-size: 14px;
  line-height: 1.5;
}
p.sm {
  font-size: 16px;
  line-height: 1.2;
}
p.lg {
  font-size: 20px;
  line-height: 1.4;
}
p.xl {
  font-size: 26px;
  line-height: 1.3;
}
p.script {
  font-size: 30px;
  line-height: 1.2;
  font-family: "BeverlyDrive", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    text-align: center;
  }
  h2 {
    font-size: 6.667vw;
    line-height: 6vw;
    text-align: center;
  }
  h3 {
    font-size: 26px;
    text-align: center;
  }
  h4 {
    font-size: 6vw;
    text-align: center;
  }
  h5 {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }
  h6 {
    font-size: 16px;
    line-height: 1.2;
  }
  p,
  ol,
  ul {
    font-size: 4.2vw;
    line-height: 1.2;
  }
  p.xs {
    font-size: 12px;
  }
  p.sm {
    font-size: 14px;
    line-height: 1.5;
  }
  p.lg {
    font-size: 18px;
  }
  p.xl {
    font-size: 20px;
    font-weight: 700;
  }
  p.script {
    font-size: 6.4vw;
    line-height: 7.7vw;
    text-align: center;
  }
}

/* Header Styles */
#main-header {
  display: flex;
  min-height: 100vh;
  background: var(--color-purple); /* Purple background */
  position: relative;
  overflow: hidden;
}

/* Hero Photo Container */
.hero-photo-container {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  margin: 0;
}

#logo img {
  max-width: 200px;
  height: auto;
}

.mandy-intro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero Text Container */
.hero-text-container {
  width: 50%;
  background: var(--color-purple);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  position: relative;
  color: white;
  text-align: center;
}

/* Ensure all text content is above confetti */
.hero-text-container > * {
  position: relative;
  z-index: 1;
}

/* Confetti Background */
.confetti::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/mm-confetti-purple.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Ticker Container */
.ticker-container {
  display: flex;
  gap: 4px;
  margin-bottom: 2rem;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.ticker-digit {
  background: var(--color-off-white);
  color: var(--color-black);
  border: 4px solid var(--color-black);
  padding: 0.75rem 0.875rem;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "RightGrotesk", sans-serif;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  perspective: 200px;
  box-sizing: border-box;
}

/* Fallback digit display */
.ticker-digit .digit-display {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: var(--color-black);
}

/* Split-flap structure */
.ticker-digit .flap-top,
.ticker-digit .flap-bottom {
  position: absolute;
  left: 4px;
  right: 4px;
  height: calc(50% - 2px);
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: var(--color-black);
  overflow: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show flaps only during animation */
.ticker-digit.animating .flap-top,
.ticker-digit.animating .flap-bottom {
  opacity: 1;
}

.ticker-digit.animating .digit-display {
  opacity: 0;
}

.ticker-digit .flap-top {
  top: 4px;
  transform-origin: bottom;
  z-index: 2;
}

.ticker-digit .flap-bottom {
  bottom: 4px;
  transform-origin: top;
  z-index: 1;
}

/* Animation states */
.ticker-digit .flap-top.flipping {
  animation: flipTop 0.6s ease-in-out forwards;
}

.ticker-digit .flap-bottom.flipping {
  animation: flipBottom 0.6s ease-in-out forwards;
}

/* Keyframe animations */
@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  50% {
    transform: rotateX(-90deg);
    z-index: 2;
  }
  100% {
    transform: rotateX(-90deg);
    z-index: 1;
  }
}

@keyframes flipBottom {
  0% {
    transform: rotateX(90deg);
    z-index: 1;
  }
  50% {
    transform: rotateX(90deg);
    z-index: 1;
  }
  100% {
    transform: rotateX(0deg);
    z-index: 2;
  }
}

/* Add subtle shadow effects for more realism */
.ticker-digit .flap-top.flipping,
.ticker-digit .flap-bottom.flipping {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Center divider line */
.ticker-digit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(50% - 0.5em - 4px);
  height: 4px;
  background: var(--color-black);
  transform: translateY(-50%);
  z-index: 10;
}

.ticker-digit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(50% - 0.5em - 4px);
  height: 4px;
  background: var(--color-black);
  transform: translateY(-50%);
  z-index: 10;
}

/* Milestone Container */
#milestone-container {
  width: 100%;
  max-width: 500px;
  background: var(--color-purple);
  padding: 2rem 1rem 3rem;
  border-radius: 8px;
  position: relative;
  margin: 0rem auto;
}

.next-milestone {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.milestone-label {
  text-align: right;
  margin: 0;
  color: white;
}

.milestone-target {
  float: right;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  z-index: 10;
}

.milestone-bar {
  width: 100%;
  height: 12px;
  background: var(--color-off-white);
  margin: 0.5rem 0;
  position: relative;
}

.milestone-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--color-green);
  width: 2%; /* Small white segment at the far right */
}

.milestone-zero {
  float: left;

  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  z-index: 10;
}

/* Fix milestone container positioning */
#milestone-container {
  position: relative;
}

/* Milestone Text Container */
.milestone-text-container {
  margin-top: 1rem;
}

.milestone-text-container h3 span {
  display: block;
  font-family: "BeverlyDrive", cursive;
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* CTA Button */
.cta-button {
  background-color: var(--color-off-white);
  color: var(--color-black);
  height: auto;
  line-height: 15px;
  border: 2px solid var(--color-black);
  box-shadow: 0 2px var(#000);
  font-size: 16px;
  padding: 20px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 0;
}

.cta-button:hover {
  background: var(--color-black);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ticker Bar */
.ticker {
  background: var(--color-off-white);
  color: var(--color-black);
  padding: 0.75rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--color-black);
  width: 100%;
}

.ticker-content {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-text {
  display: inline-block;
  margin-right: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#main-content {
  background: var(--color-off-white);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  #main-header {
    flex-direction: column;
    min-height: auto;
  }

  .hero-photo-container {
    order: 1;
    width: 100%;
    height: 67vh;
    padding: 0;
  }

  #logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    margin: 0;
  }

  #logo img {
    max-width: 100px;
  }

  .mandy-intro-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-text-container {
    order: 2;
    width: 100%;
    padding: 2rem 1rem;
    min-height: 60vh;
  }
  .confetti::before {
    background-image: url("../img/mm-confetti-mobile.png");
  }

  .ticker-digit {
    padding: 0.375rem 0.5rem;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .ticker-digit .flap-top,
  .ticker-digit .flap-bottom {
    left: 2px;
    right: 2px;
    height: calc(50% - 1px);
  }

  .ticker-digit .flap-top {
    top: 2px;
  }

  .ticker-digit .flap-bottom {
    bottom: 2px;
  }

  .ticker-container {
    margin-top: 2rem;
  }
  .milestone-text-container h3 span {
    font-size: 0.9rem;
  }

  #milestone-container {
    padding: 0;
    margin: 1rem auto;
  }

  .milestone-label {
    position: static;
    text-align: right;
    font-size: 0.8rem;
  }

  .milestone-bar {
    height: 10px;
    margin: 0.5rem 0;
  }

  .milestone-zero,
  .milestone-target {
    font-size: 0.8rem;
    bottom: -25px;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .ticker {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .ticker-text {
    margin-right: 2rem;
    font-size: 0.9rem;
  }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text-container h2 {
    font-size: 2rem;
  }

  .ticker-digit {
    padding: 0.5rem 0.75rem;
    font-size: 1.125rem;
    width: 50px;
    height: 50px;
  }
}

/* Large Desktop Enhancements */
@media (min-width: 1200px) {
  .hero-text-container {
    padding: 4rem 3rem;
  }

  .ticker-digit {
    font-size: 1.5rem;
    width: 70px;
    height: 70px;
    padding: 0.875rem 1.25rem;
  }
}

/* Mandy's Intro Container */
.mandy-intro-container {
  background: var(--color-off-white);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 80vh;
}

.mandy-intro-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.mandy-intro-text h1 {
  line-height: 0.9;
  font-size: 75px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.mandy-intro-text h1 span {
  font-size: 26px;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mandy-intro-text .script {
  font-size: 26px;
  line-height: 1.2;
  font-family: "BeverlyDrive", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  margin-bottom: 2rem;
  color: var(--color-black);
}

/* Photo Section */
.hi-mandy-photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Responsive Design for Mandy Intro */
@media (max-width: 768px) {
  .mandy-intro-container {
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    gap: 2rem;
    min-height: auto;
  }

  .mandy-intro-text {
    max-width: 100%;
    text-align: center;
  }

  .mandy-intro-text h1,
  .mandy-intro-text h1 span {
    font-size: 9vw;
    margin-bottom: 20px;
    text-align: center;
  }
  .mandy-intro-text h1 span {
    display: inline;
  }

  .mandy-intro-text .script {
    font-size: 4.75vw;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  .mandy-intro-text p.lg {
    font-size: 4.267vw;
  }

  .hi-mandy-photo {
    order: 2;
  }

  .mandy-intro-text .cta-button {
    text-align: center;
    margin-top: 1.5rem;
  }
}

/* Tablet Responsive Design for Mandy Intro */
@media (min-width: 769px) and (max-width: 1024px) {
  .mandy-intro-container {
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .mandy-intro-text h1 span {
    font-size: 24px;
  }
}

/* Large Desktop Enhancements for Mandy Intro */
@media (min-width: 1200px) {
  .mandy-intro-container {
    padding: 5rem 3rem;
    gap: 5rem;
  }

  .mandy-intro-text h1 span {
    font-size: 28px;
  }
}

/* What I've Done Section */
.social-updates {
  background: var(--color-off-white);
  padding: 4rem 0rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-updates-container {
  margin-bottom: 4rem;
}

.social-updates-container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0 4rem;
  margin: 0 auto;
}

.social-updates-container li {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-updates-container li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-updates-container img,
.social-updates-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Separator line */
.social-updates-container {
  position: relative;
}

/* Social updates footer */
.social-updates-footer {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  flex-direction: row;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-off-white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--color-black);
  transform: translateY(-2px);
}

.social-icons a:hover img {
  filter: brightness(0) invert(1);
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

/* Mobile Responsive Design for What I've Done Section */
@media (max-width: 768px) {
  .social-updates {
    padding: 2rem 1rem 4rem;
  }
  .social-updates-container {
    margin-bottom: 0;
  }

  .social-updates-container ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0;
  }

  .social-updates-container li::before {
    font-size: 10px;
    padding: 4px 8px;
    bottom: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
  }

  .social-updates-footer {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }
}

/* Tablet Responsive Design for What I've Done Section */
@media (min-width: 769px) and (max-width: 1024px) {
  .social-updates-container ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Large Desktop Enhancements for What I've Done Section */
@media (min-width: 1200px) {
  .social-updates-container ul {
    gap: 1.5rem;
  }
}

/* Redeem Free Proper Wild Section */
.redeem-free-proper-wild {
  background: var(--color-yellow);
  background-image: url("../img/mm-free-shot-background-desktop-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 3rem;
  position: relative;
  overflow: hidden;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.redeem-free-proper-wild-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 500px;
  margin: 0 auto;
}

.redeem-free-proper-wild-form h2 {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 5px;
  font-size: 34px;
  text-align: left;
}
#free-shot-form {
  max-width: 400px;
}

.free-phone {
  padding: 1rem;
  border: 2px solid var(--color-black);
  background: white;
  font-family: "RightGrotesk", sans-serif;
  font-size: 16px;
  text-transform: none;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  width: 100%;
}
.free-phone:focus {
  outline: none;
  border-radius: 0;
  border: 2px solid var(--color-black);
}

.free-phone::placeholder {
  color: #999;
  text-transform: none;
  font-family: inherit;
}

.free-phone:focus::placeholder {
  color: #ccc;
}

.terms-checkbox {
  width: 30px;
  height: 30px;
  border: 3px solid var(--color-black);
  border-radius: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  float: left;
  margin-right: 1rem;
  margin-top: 0.25rem;
  min-width: 30px;
  min-height: 30px;
}

.terms-checkbox:checked {
  background: var(--color-black);
}

/* .terms-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
} */

#terms-label {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.free-shot-form-buttons {
  margin-bottom: 10px;
}
.redeem-free-proper-wild-form .cta-button {
  margin-top: 0;
  width: 100%;
}
.redeem-free-proper-wild-form p {
  text-align: center;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 400px;
}

.store-locator-link {
  color: var(--color-black);
  text-decoration: underline;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2rem;
  font-size: 18px;
}

.free-proper-wild-steps {
  text-align: left;
  max-width: 400px;
  margin-top: 11rem;
}

.free-proper-wild-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.free-proper-wild-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-style: normal;
  color: var(--color-black);
  position: relative;
  align-items: center;
}

.free-proper-wild-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  width: 44px;
  height: 44px;
  background: var(--color-black);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.free-proper-wild-steps ol {
  counter-reset: step-counter;
}

.landing-ingredients-container {
  max-width: 1200px;
  margin: 0 auto;
}
.ingredients-title,
.ingredients-highlights-container {
  width: 50%;
  float: left;
}
.landing-pg-ingredients .ingredient-highlight {
  overflow: hidden;
  text-align: left;
  margin: 0 0 50px;
}

.landing-pg-ingredients .ingredient-highlight span {
  float: left;
  display: block;
  text-align: center;
  width: 16%;
  margin-right: 6%;
}
.landing-pg-ingredients .ingredient-highlight div {
  float: left;
  width: 78%;
}
.landing-pg-ingredients .ingredient-highlight.last {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .redeem-free-proper-wild-form h2 {
    font-size: 3vw;
  }
}

@media (max-width: 950px) {
  .ingredients-title,
  .ingredients-highlights-container {
    width: 90%;
    margin: 0 auto;
    float: none;
  }
  .ingredients-title {
    margin-bottom: 50px;
  }
  .landing-pg-ingredients .ingredient-highlight {
    margin-bottom: 20px;
  }
  .landing-pg-ingredients .ingredient-highlight span {
    width: 21%;
    margin-right: 6.5%;
  }
  .ingredients-section span img {
    text-align: center;
    margin: 0 auto;
  }
  .landing-pg-ingredients .ingredient-highlight div {
    width: 72.5%;
  }
  .landing-pg-ingredients .ingredient-highlight h6 {
    font-size: 4.267vw;
    line-height: 5.12vw;
    margin-bottom: 5px;
  }
  .landing-pg-ingredients .ingredient-highlight p {
    font-size: 4.267vw;
    line-height: 5.12vw;
    margin-bottom: 0;
  }
  .ingredients-promotion-image {
    margin: 50px auto;
  }
  .redeem-free-proper-wild {
    margin-bottom: 80px;
  }
  .redeem-free-proper-wild-form {
    margin: 0 auto;
  }
  #free-shot-form {
    max-width: inherit;
    margin: 0 auto;
  }
  .redeem-free-proper-wild-form p {
    max-width: inherit;
  }
}
/* Mobile Responsive Design */
@media (max-width: 768px) {
  .redeem-free-proper-wild {
    background-image: url("../img/mm-free-shot-background-mobile.jpg");
    padding: 4rem 1rem;
    background-position: center 0px;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .redeem-free-proper-wild-form h2 {
    margin-bottom: 0;
    font-size: 6.667vw;
    text-align: left;
  }

  .free-phone {
    padding: 0.75rem;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .cta-button {
    padding: 4vw 3.2vw;
    font-size: 3.733vw;
    line-height: 3.4vw;
  }
  .redeem-free-proper-wild-form .cta-button {
    width: 100%;
  }
  .store-locator-link {
    font-size: 4.2vw;
    margin: 5px 0 0;
  }
  .free-proper-wild-steps {
    margin: 0 auto 200px;
    max-width: inherit;
  }

  .free-proper-wild-steps li::before {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  #terms-label {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .terms-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
  .redeem-free-proper-wild {
    padding: 3rem 1.5rem;
    margin-bottom: 60px;
  }
  .free-proper-wild-steps {
    margin-top: 6rem;
  }
  .redeem-free-proper-wild-form {
    gap: 2rem;
  }
}

/* Footer Styles */

.footer-container {
  background: url("https://properwild.com/cdn/shop/files/footer-butterfly.jpg?v=1730835251")
    no-repeat top center #a9f134;
  padding: 80px 0;
  overflow: hidden;
  min-height: 610px;
  background-size: contain;
}
.footer-social {
  text-align: center;
}
.footer-social h5 span {
  display: block;
  font-size: 40px;
}
.footer-social .social-icons {
  justify-content: center;
  margin-bottom: 40px;
}
.footer-social .footer-interstitial {
  width: 90%;
  max-width: 920px;
  margin: 0 auto 90px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-copyright {
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
}

.footer-copyright::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: var(--color-black);
}

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

.privacy-links li {
  margin: 0;
  padding-bottom: 7px;
}

.privacy-links a {
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.privacy-links a:hover {
  text-decoration: underline;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    background-size: 400%;
  }
  .footer-social .footer-interstitial {
    margin-bottom: 30px;
  }
  .footer-social h5 span {
    font-size: 7vw;
  }
  .footer-links {
    padding: 30px 15px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .footer-logo img {
    height: 25px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-copyright::after {
    display: none;
  }

  .footer-links .privacy-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  .footer-links .privacy-links li {
    display: inline-block;
    margin: 0;
    padding-bottom: 0;
  }

  .footer-links .privacy-links a {
    font-size: 12px;
  }
}

/* Disclaimer Styles */
.disclaimer {
  border: 2px solid var(--color-black);
  padding: 1rem;
  margin: 20px auto 0;
  text-align: center;
  width: 90%;
  max-width: 920px;
}

.disclaimer p {
  margin: 0;
  color: var(--color-black);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}
.disclaimer p a {
  text-decoration: underline;
}

/* Mobile Responsive Disclaimer */
@media (max-width: 768px) {
  .disclaimer {
    padding: 0.75rem;
  }

  .disclaimer p {
    font-size: 12px;
  }
}
