:root {
  --primary: #305456;
  --primary-light: #578b91;
  --primary-dark: #253e42;
  --accent: #b67140;
  --highlight: #8fc8c8;
  --text: #000;
  --text-light: #999;
  --bg-light: #c3d1d0;
  --white: #fff;
  --serif: "Zilla Slab", serif;
  --sans: "Interstate", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--serif);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.our-promise-section,
.footer-section {
  font-family: var(--sans);
}

/* Header */
header {
  text-align: center;
}

header img {
  height: 75px;
  padding: 15px;
  display: block;
  margin: 75px auto 20px;
}

/* Typography */
h1 {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.2em;
  margin-bottom: 1em;
}

.intro h1 {
  font-family: "Zilla Slab", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2em;
}

h2 {
  font-family: var(--serif);
  font-weight: 650;
  font-size: 35px;
  line-height: 1em;
  margin-bottom: 1em;
}

.product-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2em;
  color: #000;
  margin-bottom: 0.25em;
}
.product-info input[type="checkbox"] {
  accent-color: rgba(48, 84, 86, 1);
  transform: scale(1.2);
  cursor: pointer;
}

p {
  font-size: 18px;
  line-height: 1.56em;
  margin-bottom: 1em;
}

a {
  color: var(--primary-light);
  text-decoration: underline;
}

.intro a {
  color: var(--primary-light);
  text-decoration: underline;
}

strong u {
  color: var(--accent);
  text-decoration: underline;
}

.intro strong u {
  color: var(--accent);
  text-decoration: underline;
  font-weight: normal;
}

/* Sections */
section {
  width: 100%;
  padding: 54px 25px;
}

/* Intro Section */
.intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro p {
  max-width: 620px;
  font-family: "Zilla Slab", serif;
  font-weight: 300;
  font-size: 24px;
  text-wrap: pretty;
  line-height: 1.2em;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Product Section */
.product {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0 !important;
  margin-top: -40px;
}

.product img {
  width: 100%;
  max-width: 375px;
  height: auto;
  margin: 0 auto;
}

.product-info {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  text-align: left;
  align-items: flex-start;
}
.product-info button {
  margin-top: 20px;
}

.price-checkbox-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0.5em;
}

.price-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2em;
  font-family: var(--serif);
  color: #000;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.price.strikethrough {
  color: #999;
}

.price.strikethrough::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background-color: #999;
  animation: strikeThrough 0.5s ease-in-out forwards;
}

@keyframes strikeThrough {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 18px;
}

label span {
  color: #2d5016;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.product-info button {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background-color: #305456;
  border: none;
  border-radius: 6px;
  padding: 14px 0;
  cursor: pointer;
  width: 400px;
  align-self: flex-start;
  transition: background 0.2s;
  vertical-align: middle;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
  max-width: 100%;
}

.product-info button .guarantee-text {
  display: block;
  /* margin-top: 22px; */
  font-size: 15px;
  color: #e8bc69;
  letter-spacing: normal;
}

.product-info button:hover {
  background-color: var(--primary-dark);
}

.fc-lightbox p > button {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.fc-lightbox p > button:hover {
  background: var(--primary-dark);
}

/* Offer Explanation */
.explanation {
  background: #ccc;
  width: 100%;
  text-align: center;
  margin-top: -150px;
  padding: 80px 0 !important;
}
@media (max-width: 768px) {
  .explanation {
    margin-top: -400px;
    padding: 440px 0 80px !important;
  }
}

.explanation h2 {
  text-align: center;
  font-family: var(--serif);
  font-weight: 650;
  font-size: 35px;
  margin-bottom: 1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.explanation p {
  font-family: "Zilla Slab", serif;
  font-weight: 400;
  font-size: 24px;
  text-wrap: pretty;
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.explanation a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Founder Section */
.founder {
  background: #ccc;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
  justify-content: center;
}

.founder-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.founder-text p {
  font-family: "Zilla Slab", serif;
  font-weight: 300;
  font-size: 24px;
  text-wrap: pretty;
  line-height: 1.2em;
  margin-bottom: 1em;
  text-align: left;
}

.founder-text strong u {
  color: var(--accent);
  text-decoration: underline;
  font-style: italic;
}

.founder-text img {
  width: 300px;
  height: auto;
}

.founder > img:last-of-type {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  margin: 0 auto;
  order: -1;
}

/* Footer - Shared with its-natural page */
.our-promise-section {
  width: 100%;
  padding: 80px 25px 50px;
  background: #2f5455;
  border-radius: 20px 20px 0 0;
}

.our-promise-content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.footer-logo-desktop {
  display: none;
}

.footer-logo-mobile {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 28px;
}

.footer-content-desktop {
  display: none;
}

.footer-content-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 32px;
}

.our-promise-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.our-promise-section .footer-logo-mobile {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 28px;
}

.our-promise-section .footer-logo-desktop {
  display: none;
}

.our-promise-content-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
  align-items: center;
}

.our-promise-left {
  width: 100%;
}

.our-promise-label {
  font-family: var(--sans), sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 28px 0 28px;
}

.our-promise-heading {
  font-family: var(--serif);
  font-weight: 650;
  font-size: 45px;
  line-height: 1.2em;
  color: #c1dbc5;
  margin: 0;
}

.our-promise-right {
  width: 100%;
  text-align: center;
}

.our-promise-text {
  color: var(--white);
  margin: 0;
  font-weight: 200;
  line-height: 1.3em;
  font-family: "Interstate", Sans-serif;
}

.our-promise-badges {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.our-promise-badge {
  max-height: 75px;
  height: auto;
  width: auto;
  flex-shrink: 1;
}

@media (max-width: 767px) {
  .our-promise-section {
    padding-top: 40px;
  }

  .our-promise-badges {
    gap: 10px;
    max-width: 100%;
  }

  .our-promise-badge {
    max-height: 85px;
  }

  .our-promise-heading {
    font-size: 24px;
    text-align: center;
  }

  .our-promise-label {
    text-align: center;
  }

  .our-promise-left {
    text-align: center;
  }
}

.footer-section {
  display: none;
  width: 100%;
  margin-top: 60px;
  padding: 25px 25px 50px;
  background: var(--primary);
  border-radius: 20px 20px 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.89em;
  line-height: 1.5em;
  color: var(--white);
  text-decoration: underline;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--white);
  margin: 0 auto 20px;
}

.footer-disclaimer {
  font-size: 0.78em;
  line-height: 1.5em;
  color: var(--white);
  width: 100%;
}

/* Desktop Styles */
@media (min-width: 768px) {
  header img {
    width: 280px;
    height: auto;
  }

  h1 {
    font-size: 45px;
  }

  .intro h1 {
    font-size: 64px;
    line-height: 72px;
  }

  h2 {
    font-size: 45px;
  }

  .product-info h2 {
    font-size: 28px;
  }

  .price {
    font-size: 28px;
  }

  section {
    padding: 40px 25px;
  }

  .product {
    flex-direction: row;
    align-items: center;
    gap: 0;
    /* justify-content: center; */
    max-width: 1000px;
  }

  .product img {
    flex: 0 0 35%;
    max-width: 375px;
    margin: 0;
  }

  .product-info {
    min-width: 0;
    margin-top: -50px;
  }

  .founder {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .founder-text {
    width: 330px;
    flex-shrink: 0;
  }

  .founder img:last-of-type {
    flex: 1;
    max-width: 320px;
    margin: 0;
    order: 0;
  }

  .explanation {
    padding: 60px 25px;
  }
}

@media (min-width: 1024px) {
  .our-promise-section {
    padding: 32px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    background: transparent;
    border-radius: 0;
  }

  .our-promise-content-wrapper {
    width: 1500px;
    max-width: calc(100% - 240px);
    background: #2f5455;
    border-radius: 45px 45px 0 0;
    padding: 40px 90px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
  }

  .our-promise-section .footer-logo-mobile {
    display: none;
  }

  .our-promise-header .footer-logo-desktop {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .footer-content-mobile {
    display: none;
  }

  .footer-content-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-bottom: 40px;
    gap: 30px;
  }

  .footer-content-desktop .footer-links {
    flex-direction: row;
    gap: 120px;
    margin-bottom: 20px;
  }

  .footer-content-desktop .footer-divider {
    width: 100%;
    height: 1px;
    background: var(--white);
    margin: 0 auto 20px;
  }

  .footer-section {
    display: none;
  }

  .our-promise-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 16px;
  }

  .our-promise-left {
    flex: 1;
    width: auto;
  }

  .our-promise-label {
    margin: 16px 0 8px;
  }

  .our-promise-heading {
    width: auto;
  }

  .our-promise-content-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 32px;
    align-items: center;
  }

  .our-promise-right {
    flex: 1;
    width: auto;
    text-align: left;
  }

  .our-promise-badges {
    max-width: 400px;
  }

  .our-promise-badge {
    max-width: 100px;
    max-height: 90px;
  }
}

@media (min-width: 1000px) and (max-width: 1500px) {
  .our-promise-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
  }
}

.fc-link {
  text-transform: none;
  letter-spacing: 0;
  display: inline !important;
  width: unset !important;
  font-family: unset;
}

.founder {
  padding-top: 100px;
  margin-top: -155px !important;
}

@media (max-width: 767px) {
  .founder {
    padding-top: 380px;
    margin-top: -380px !important;
  }
  .product-info {
    max-width: 420px;
    margin: 0 auto;
  }
  .product-info button {
    width: 100%;
  }
}
