/* Zenhaven Latex Mattress landing page - custom static design */
:root {
  --ivory: #fbf8f2;
  --cream: #f5eee4;
  --sand: #eadfce;
  --taupe: #b98f75;
  --cocoa: #684c3f;
  --forest: #23433a;
  --sage: #6f816a;
  --leaf: #e5eddd;
  --gold: #c9a76d;
  --ink: #26221e;
  --muted: #776b61;
  --white: #fffdf8;
  --line: rgba(104, 76, 63, .16);
  --shadow: 0 22px 70px rgba(63, 45, 34, .16);
  --radius: 28px;
}

/* =====================================
   PREMIUM ZENHAVEN OFFER SECTION
===================================== */

.navbar {
  background:
    linear-gradient(135deg, #f8f8f8 0%, #dddbdc 100%);
}

.comparisionsection {
  background:
    linear-gradient(135deg, #f8f8f8b6 0%, #dddbdc93 100%);
}

/* =========================================
   ZENHAVEN COMFORT CTA
========================================= */

.comfort-cta-section {
  background: #f5f5f2;
}

* {
  font-family: Georgia, 'Times New Roman', serif !important;
}


/* MAIN WRAPPER */

.comfort-cta-wrapper {
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.comfort-cta-image {

  overflow: hidden;
  background: #e9e9e5;
}


.comfort-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* IMAGE DARK GRADIENT */

.comfort-cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.08) 55%,
      transparent);
  pointer-events: none;
}


/* IMAGE LABEL */

.image-label-box {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  color: #ffffff;
}


.image-label-box span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  opacity: 0.85;
}


.image-label-box strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
}


/* FLOATING BADGE */

.image-floating-badge {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 14px;

  background: rgba(255, 255, 255, 0.94);
  color: #222222;

  border-radius: 50px;

  font-size: 12px;
  font-weight: 600;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


.image-floating-badge i {
  font-size: 15px;
}


/* CONTENT */

.comfort-cta-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* EYEBROW */

.cta-eyebrow {
  display: inline-block;

  color: #6b6b64;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


/* HEADING */

.comfort-cta-content h2 {
  color: #1d1d1b;

}


.comfort-cta-content h2 span {
  color: #77776f;
}


/* DESCRIPTION */

.cta-description {
  max-width: 600px;

  color: #666660;

  font-size: 15px;

}


.cta-description strong {
  color: #222222;
}


/* COMFORT CARDS */

.compact-comfort-card {
  display: flex;
  align-items: center;
  gap: 12px;

  height: 100%;

  padding: 13px 14px;

  background: #f7f7f4;

  border: 1px solid #e8e8e3;

  border-radius: 12px;

  transition: all 0.25s ease;
}


.compact-comfort-card:hover {
  transform: translateY(-2px);

  background: #ffffff;

  border-color: #d2d2ca;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}


.compact-comfort-card>i {
  flex-shrink: 0;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border-radius: 50%;

  font-size: 17px;
}


.compact-comfort-card strong {
  display: block;

  color: #252522;

  font-size: 14px;
  font-weight: 600;
}


.compact-comfort-card small {
  display: block;

  margin-top: 2px;

  color: #777770;

  font-size: 12px;
}


/* PRICE BOX */

.compact-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 18px;

  background: #f3f3ef;

  border: 1px solid #e4e4dd;

  border-radius: 14px;
}


.compact-price-box small {
  display: block;

  margin-bottom: 2px;

  color: #777770;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}


.compact-price-box strong {
  color: #1d1d1b;

  font-size: 30px;
  line-height: 1;

  font-weight: 700;
}


.compact-price-box del {
  color: #999992;

  font-size: 14px;
}


.compact-price-box>span {
  padding: 7px 11px;

  background: #1d1d1b;
  color: #ffffff;

  border-radius: 50px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* CTA BUTTON */

.comfort-cta-content .btn {
  align-self: flex-start;

  transition: all 0.25s ease;
}


.comfort-cta-content .btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* TRUST TEXT */

.comfort-cta-content .text-secondary {
  color: #777770 !important;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 991px) {

  .comfort-cta-image {
    min-height: 420px;
  }


  .comfort-cta-content {
    padding: 35px !important;
  }

}


@media (max-width: 575px) {

  .comfort-cta-image {
    min-height: 360px;
  }


  .image-label-box {
    left: 20px;
    bottom: 20px;
  }


  .image-label-box strong {
    font-size: 25px;
  }


  .image-floating-badge {
    top: 18px;
    left: 18px;

    padding: 8px 12px;

    font-size: 11px;
  }


  .comfort-cta-content {
    padding: 28px 20px !important;
  }




  .cta-description {
    font-size: 14px;

  }


  .compact-price-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }


  .compact-price-box>span {
    align-self: flex-start;
  }


  .comfort-cta-content .btn {
    width: 100%;
  }

}


p {
  font-size: 1.2rem !important;
}

.logo {
  width: 130px;
  mix-blend-mode: multiply;
}

.custom-toggler {
  border: none;
  background: transparent;
  padding: 8px;
}


.custom-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0 0 0px;
  background-color: #050005;
  border-radius: 4px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .custom-toggler {
    margin-right: 15px;
  }
}

/* Main CTA */

.zh-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 16px 22px 16px 26px;
  border-radius: 100px;
  background: #34312c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.zh-premium-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f0ebe2;
  color: #37332d;
  transition: transform 0.35s ease;
}

.zh-premium-btn:hover {
  background: #817361;
  color: #fff;
  transform: translateY(-3px);
}

.zh-premium-btn:hover i {
  transform: translateX(4px);
}


/* Trust Points */

.zh-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.zh-trust-points span {
  color: #777066;
  font-size: 12px;
}

.zh-trust-points i {
  margin-right: 5px;
  color: #827765;
}


/* =====================================
   PREMIUM OFFER CARD
===================================== */

.zh-offer-card {
  position: relative;
  z-index: 2;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(238, 232, 222, 0.9));
  box-shadow:
    0 30px 80px rgba(63, 54, 43, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}


/* Card top */

.zh-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.zh-card-eyebrow {
  color: #81786c;
  font-size: 11px;
  font-weight: 600;
}

.zh-card-tag {
  padding: 7px 11px;
  border-radius: 100px;
  background: #3c3933;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* Card heading */

.zh-card-content {
  margin-top: 45px;
}

.zh-card-content h3 {
  color: #302d28;


  line-height: 1.15;
}

.zh-card-content h3 span {
  display: block;
  color: #867a6b;
  font-style: italic;
}

.zh-card-content p {
  margin-top: 15px;
  color: #777067;
  font-size: 15px;

}


/* Countdown */

.zh-countdown {
  margin-top: 30px;
}

.zh-time-box {
  min-width: 70px;
  padding: 14px 10px;
  border: 1px solid rgba(70, 60, 50, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.zh-time-box strong {
  display: block;
  color: #38342e;
  font-size: 27px;
  font-weight: 600;
}

.zh-time-box small {
  display: block;
  margin-top: 3px;
  color: #8a8278;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.zh-time-separator {
  color: #948a7d;
  font-size: 24px;
}


/* Divider */

.zh-card-divider {
  height: 1px;
  margin: 30px 0;
  background: rgba(70, 60, 50, 0.12);
}


/* Feature */

.zh-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ded7ca;
  color: #5f574c;
  font-size: 20px;
}

.zh-offer-card .p2 {
  color: #070401;
  font-size: 15px;
  font-weight: 700;
}

.zh-offer-card .zh-feature-icon+div p {
  color: #827a70;
  font-size: 13px;

}


/* Card CTA */

.zh-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 14px;
  background: #3b3832;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh-card-btn:hover {
  background: #817361;
  color: #fff;
  transform: translateY(-2px);
}


/* Secure note */

.zh-secure-note {
  display: block;
  color: #8b8378;
  font-size: 11px;
  text-align: center;
}

.zh-secure-note i {
  margin-right: 5px;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

  .cta-card img {
    height: auto;
  }


  .zh-offer-card {
    max-width: 600px;
    margin: 0 auto;
  }

}


@media (max-width: 575px) {

  .zh-offer-title {

    letter-spacing: -1px;
  }

  .zh-offer-text {
    font-size: 15px;
  }

  .zh-price-panel {
    padding: 20px;
  }

  .zh-current-price {
    font-size: 35px;
  }

  .zh-offer-card {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .zh-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .zh-card-content {
    margin-top: 30px;
  }



  .zh-time-box {
    min-width: 62px;
  }

  .zh-time-box strong {
    font-size: 23px;
  }

  .zh-trust-points {
    gap: 10px;
  }

  .zh-premium-btn {
    width: 100%;
    gap: 10px;
  }

}

* {
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
}


html,
body {
  overflow-x: hidden;
  overflow-y: auto;

}


body {
  padding-top: 60px;
}

a {
  text-decoration: none;
  color: inherit
}



.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border: 1px solid rgba(185, 143, 117, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  color: var(--forest);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-wrap: inherit;
}

small {
  font-size: 1rem !important;
}

.section {
  padding: 92px 0
}

.section-head {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;

  line-height: 1.05;
  margin: 14px 0 14px;
  color: var(--forest);

}

.section-head h2 {
  font-family: Georgia, 'Times New Roman', serif;

  line-height: 1.05;
  margin: 14px 0 14px;
  color: var(--forest);

}

.section-head p {
  font-size: 1.06rem;
  color: var(--muted);
  margin: 0
}

.btn {
  cursor: pointer
}

.navtext {
  font-size: 1.2rem;
  color: black;
}

.btn1 {
  background: #1E1A13;
  color: #f0eaea;
  box-shadow: 0 14px 35px rgba(35, 67, 58, .24);
  font-size: 1rem;
}

.btn1:hover {

  background: #1E1A13;
  color: rgb(237, 234, 234) !important;
}





.hero-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(226, 216, 198, 0.35), transparent 85%),
    linear-gradient(135deg, #f8f6f1 0%, #f4eeee 55%, #f2eee7 100%);
}

/* HERO CONTENT */







/* TRUST */



.hero-image-wrap {
  border-radius: 18px;
  object-fit: cover;
  transition: transform .6s ease;
}

.hero-image-wrap:hover {
  transform: scale(1.01);
}

/* FLOATING CARD */

.hero-floating-card {
  position: absolute;
  right: -25px;
  bottom: 35px;
  width: 300px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
}

.floating-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eee6da;
  color: #806a53;
  font-size: 19px;
}

.hero-floating-card strong {
  color: #292622;
  font-size: 13px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stars {
  color: #a48454;
  letter-spacing: 2px;
}





/* MAIN FEATURE CARD */
.feature-main-card {
  min-height: 100%;
}

.feature-icon-large {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-background-number {
  position: absolute;
  right: -20px;
  bottom: -55px;
  font-size: 14rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
}

.feature-feel-box {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.feature-feel-box strong {
  display: inline-block;
}

.feature-feel-box small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}


/* FEATURE LIST */
.feature-list-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9e9e9;
}

.feature-list-number {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}


/* BOTTOM CARDS */
.feature-bottom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08) !important;
}


/* =========================================================
   ZENHAVEN COMFORT EXPERIENCE SECTION
========================================================= */

.zenhaven-feel-section {

  padding: 125px 0;

  background:

    radial-gradient(circle at 90% 10%,
      rgba(218, 194, 151, 0.15),
      transparent 30%),

    #f1f0eb;

}


/* =========================================================
   SECTION INTRO
========================================================= */

.zenhaven-feel-kicker {

  display: inline-flex;

  align-items: center;

  color: #826c4a;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

}


.zenhaven-feel-title {

  max-width: 700px;

  color: #1b2b23;

}


.zenhaven-feel-title span {



  color: #858b85;

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

}


.zenhaven-feel-intro {

  max-width: 490px;

  color: #69716b;

  font-size: 16px;


}


/* =========================================================
   MAIN EXPERIENCE
========================================================= */

.zenhaven-feel-experience {

  display: grid;

  grid-template-columns: 1fr 80px 1fr;

  min-height: 650px;

  background: #ffffff;

  box-shadow: 0 25px 65px rgba(30, 45, 37, 0.1);

}


/* =========================================================
   VISUAL PANEL
========================================================= */

.zenhaven-feel-visual {

  position: relative;

  object-fit: fill;
  overflow: hidden;

}


.zenhaven-feel-visual img {


  object-fit: cover;

  display: block;

  transition: transform 0.6s ease;

}


.zenhaven-feel-visual:hover img {

  transform: scale(1.05);

}


/*  */


.zenhaven-visual-content {

  position: absolute;

  left: 42px;

  right: 42px;

  bottom: 42px;

  color: #ffffff;

}


.zenhaven-visual-content span {

  color: #d8bd8a;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

}


.zenhaven-visual-content h3 {

  margin: 12px 0 8px;





  letter-spacing: -1px;

}


.zenhaven-visual-content p {

  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;

}


/* VISUAL BADGE */

.zenhaven-visual-badge {

  position: absolute;

  top: 30px;

  left: 30px;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 11px 16px;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.13);

  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  font-size: 11px;

}


.zenhaven-visual-badge i {

  color: #d8bd8a;

  font-size: 17px;

}


/* =========================================================
   CENTER SWITCH
========================================================= */

.zenhaven-feel-switch {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 15px;

  background: #1b2b23;

}


.zenhaven-switch-line {

  width: 1px;

  height: 100px;

  background: rgba(216, 189, 138, 0.45);

}


.zenhaven-switch-circle {

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #d8bd8a;

  border-radius: 50%;

  color: #d8bd8a;

  font-size: 18px;

}


/* =========================================================
   CONTENT PANEL
========================================================= */

.zenhaven-feel-content {

  padding: 65px 55px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}


.zenhaven-content-label {

  color: #846d49;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.8px;

}


.zenhaven-feel-content>h3 {

  margin: 18px 0;

  color: #1c2c24;


  line-height: 1.05;

  letter-spacing: -1.5px;



}


.zenhaven-feel-content>h3 span {

  display: block;

  color: #858c86;

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

}


.zenhaven-content-description {

  color: #737a74;

  font-size: 15px;



  margin-bottom: 28px;

}


/* =========================================================
   COMFORT OPTIONS
========================================================= */

.zenhaven-comfort-option {

  display: flex;

  gap: 18px;

  padding: 21px 0;

  border-bottom: 1px solid #e6e5df;

  transition: all 0.3s ease;

}


.zenhaven-comfort-option.active {

  border-bottom-color: #c7b58f;

}


.comfort-option-number {

  color: #9a8058;

  font-size: 11px;

  font-weight: 700;

  padding-top: 3px;

}


.comfort-option-info {

  flex: 1;

}


.comfort-option-info h4 {

  margin: 0;

  color: #26372e;

  font-size: 17px;

  font-weight: 700;

}


.comfort-option-info>div>i {

  color: #8c7149;

  font-size: 20px;

}


.comfort-option-info p {

  margin: 8px 0 14px;

  color: #777e78;

  font-size: 13px;



}


/* FEEL METER */

.comfort-option-feel {

  display: flex;

  align-items: center;

  gap: 9px;

  color: #8a8f89;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.8px;

}


.comfort-feel-track {

  flex: 1;

  height: 4px;

  overflow: hidden;

  border-radius: 10px;

  background: #e8e7e1;

}


.comfort-feel-progress {

  height: 100%;

  border-radius: 10px;

  background: #8d7653;

}


.comfort-feel-progress.plush {

  width: 40%;

}


.comfort-feel-progress.firm {

  width: 78%;

}


/* CTA */

.zenhaven-feel-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 32px;

  padding: 17px 20px;

  color: #ffffff;

  background: #1b2b23;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition: all 0.3s ease;

}


.zenhaven-feel-cta:hover {

  color: #ffffff;

  background: #2b4336;

}


.zenhaven-feel-cta i {

  font-size: 18px;

}


/* =========================================================
   SECONDARY EXPERIENCE
========================================================= */

.zenhaven-secondary-experience {

  padding: 25px 30px;

  background: #ffffff;

  border: 1px solid #dfded8;

}


.secondary-experience-label {

  display: flex;

  align-items: center;

  gap: 15px;

  color: #836b47;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

}


.secondary-experience-label i {

  font-size: 18px;

}


.zenhaven-secondary-experience p {

  color: #707871;

  font-size: 14px;



}


.zenhaven-secondary-experience strong {

  color: #24362c;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .zenhaven-feel-section {

    padding: 90px 0;

  }

  .zenhaven-feel-experience {

    grid-template-columns: 1fr;

  }

  .zenhaven-feel-visual {

    width: auto;

  }

  .zenhaven-feel-switch {

    flex-direction: row;

    min-height: 80px;

  }

  .zenhaven-switch-line {

    width: 100px;

    height: 1px;

  }

}


@media (max-width: 575px) {

  .zenhaven-feel-section {

    padding: 70px 0;

  }

  .zenhaven-feel-title {

    font-size: 3rem;

    letter-spacing: -2px;

  }

  .zenhaven-feel-visual {


    height: auto;

  }

  .zenhaven-visual-content {

    left: 25px;

    right: 25px;

    bottom: 28px;

  }



  .zenhaven-visual-badge {

    left: 20px;

    top: 20px;

  }

  .zenhaven-feel-content {

    padding: 42px 25px;

  }



}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.comfort-card {
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.comfort-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10) !important;
}

.comfort-card img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.comfort-card:hover img {
  transform: scale(1.04);
}

.comfort-score {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  background: #f2f1ed;
  padding: 7px 12px;
  border-radius: 30px;
}

.comfort-meter .progress {
  background: #e5e3dd;
}

.comfort-meter .progress-bar {
  background: #242424;
}

.comfort-card ul li {
  font-size: 15px;
  color: #555;
}

.comfort-card ul i {
  color: #6b705c;
}

.comfort-note {
  background: #ebe9e1;
  border: 1px solid #dedbd1;
}

.comfort-note i {
  color: #6b705c;
}



/* REVIEWS SECTION */

.reviews-section {
  background: #e8e6df;
}

.review-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.review-stars {
  letter-spacing: 3px;
  font-size: 18px;
}

.review-text {
  color: #555;

  font-size: 15px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #242424;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-right: 14px;
}

.reviewer p {
  font-size: 15px;
  font-weight: 600;
}

.reviewer span {
  font-size: 12px;
  color: #888;
}

.review-summary {
  color: #666;
  font-size: 15px;
}

@media (max-width: 767px) {

  .comfort-card img {
    height: 230px;
  }

  .comfort-card {
    border-radius: 20px !important;
  }

}

/* RESPONSIVE */

@media (max-width: 991px) {

  .hero-section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-visual {
    padding: 10px 0 40px;
  }

  .hero-floating-card {
    left: 20px;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  .comfort-card img {
    height: auto;
    width: auto;
  }


}

@media (max-width: 575px) {

  .hero-section {
    padding: 55px 0;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-highlights {
    display: block;
  }

  .highlight-item {
    margin-bottom: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: block;
  }

  .hero-trust span {
    display: block;
    margin-bottom: 8px;
  }

  .hero-image-wrap img {
    height: auto;
  }

  .hero-floating-card {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: -35px;
  }


}

/* herosection End */



h2 {
  font-size: 3rem;
  font-weight: 500;
}

/* trust card */


.trust-row {
  padding: 30px 0;
  background: white;

}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px;
  border-right: 1px solid #e9e5df;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1ece5;
  color: #806a53;
  font-size: 20px;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: #2a2723;
  font-size: 16px;
  font-weight: 700;
}

.trust-item span {
  display: block;
  color: #77716a;
  font-size: 14px;

}


/* trust card end */


/* intro section start */


.intro-section {
  padding: 100px 0;
  background: #efefef00;
}

.intro-image-wrap {
  padding: 15px;
}

.intro-image-wrap img {
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(50, 42, 34, .14);
}

/* FLOATING BADGE */

.intro-badge {
  position: absolute;
  right: -5px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #292622;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}

.badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #806a53;
  font-size: 17px;
}

.intro-badge strong,
.intro-badge small {
  display: block;
}

.intro-badge strong {
  font-size: 13px;
}

.intro-badge small {
  margin-top: 3px;
  color: #d7d0c8;
  font-size: 11px;
}

/* CONTENT */

.eyebrow {
  display: inline-block;
  color: #806a53;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-content h2 {

  margin: 15px 0 25px;
  color: #292622;


}

.intro-content h2 span {
  color: #927b62;
}

.intro-content p {
  max-width: 580px;
  color: #68635d;
  font-size: 16px;

}

.intro-content p strong {
  color: #292622;
}

/* COMFORT OPTIONS */

.comfort-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 28px 0;
}

.comfort-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  background: #f7f4ef;
  border-radius: 8px;
}

.comfort-option-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9e1d5;
  color: #806a53;
}

.comfort-option strong,
.comfort-option span {
  display: block;
}

.comfort-option strong {
  color: #292622;
  font-size: 16px;
}

.comfort-option span {
  margin-top: 4px;
  color: #77716a;
  font-size: 14px;

}

/* LIST */

/* RESPONSIVE */

@media (max-width: 991px) {
  .intro-section {
    padding: 70px 0;
  }

  .intro-image-wrap {
    padding: 0;
  }

  .intro-badge {
    right: 20px;
  }


  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid #e9e5df;
    padding: 15px 5px;
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 575px) {
  .intro-section {
    padding: 55px 0;
  }

  .comfort-options {
    grid-template-columns: 1fr;
  }

  .heroflat {
    display: none;
  }

  .com {
    display: none;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }



  .intro-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -30px 15px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-bottom: 1px solid #e9e5df !important;
    padding: 15px 0;
  }

  .trust-item:last-child {
    border-bottom: 0 !important;
  }

  .badge {
    text-wrap: inherit;
    line-height: 1.5;
  }
}

/* intro section end */

.offer {
  background-color: #c3b6a784;
}

.offer-section {
  background: #292622;
}

.offer-section h2 {
  letter-spacing: -1px;
}

.offer-section .text-warning {
  color: #d6b27a !important;
}


/* Layer section */


#layers .card {
  transition: all .3s ease;
}

#layers .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08) !important;
}

#layers .badge.rounded-circle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

#layers .position-relative>img {
  transition: transform .4s ease;
}

#layers .position-relative:hover>img {
  transform: scale(1.02);
}

/* Layer section end */


/* 2 */


/* PREMIUM OFFER SECTION */

.premium-offer-section {
  background: #f7f6f2;
}




.offer-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0efe9;
  font-size: 18px;
}

.offer-highlight {
  background: #242424;
  color: #ffffff;
}

.offer-highlight p {
  color: rgba(255, 255, 255, 0.72);

}

.offer-highlight .small {
  color: rgba(255, 255, 255, 0.65);
}

.offer-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #242424;
  font-size: 20px;
}

@media (max-width: 991px) {

  .offer-highlight {
    min-height: 280px;
  }

}



/* =========================================================
   ZENHAVEN PREMIUM OFFER SECTION
========================================================= */

.zenhaven-premium-offer {

  padding: 130px 0;

  background:
    radial-gradient(circle at 12% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 32%),
    linear-gradient(135deg,
      #24211d 0%,
      #3a332b 48%,
      #171512 100%);
  color: #ffffff;

  isolation: isolate;

}


/* SOFT BACKGROUND GLOW */

.zenhaven-offer-glow {

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -220px;

  background: rgba(210, 181, 123, 0.12);

  filter: blur(100px);

  border-radius: 50%;

  pointer-events: none;

}


/* PREMIUM CONTENT */

.zenhaven-premium-content {

  max-width: 720px;

}


/* EYEBROW */

.zenhaven-premium-eyebrow {

  display: flex;

  align-items: center;

  gap: 14px;

  color: #d8bd8a;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2.2px;

}


.eyebrow-line {

  display: block;

  width: 42px;

  height: 1px;

  background: #cbb17f;

  opacity: 0.7;

}


/* MAIN TITLE */

.zenhaven-premium-title {

  max-width: 650px;


  color: #ffffff;

}


.zenhaven-premium-title em {

  color: #d9bd8b;

  font-family: Georgia, "Times New Roman", serif;



}


/* DESCRIPTION */

.zenhaven-premium-description {

  max-width: 650px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 17px;



}


.zenhaven-premium-description strong {

  color: #ffffff;

  font-weight: 600;

}


.secondary-description {

  color: rgba(255, 255, 255, 0.55);

}


/* FEEL OPTIONS */

.zenhaven-feel-options {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

}


/* FEEL OPTION */

.zenhaven-feel-option {

  position: relative;

  min-height: 190px;

  padding: 26px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(12px);

  transition: all 0.35s ease;

}


.zenhaven-feel-option:hover {

  transform: translateY(-6px);

  border-color: rgba(216, 189, 138, 0.65);

  background: rgba(255, 255, 255, 0.09);

}


/* OPTION NUMBER */

.feel-option-number {

  color: #d5b77f;

  font-size: 12px;

  letter-spacing: 2px;

  font-weight: 700;

}


/* OPTION CONTENT */

.feel-option-content h3 {

  margin: 25px 0 8px;

  color: #ffffff;

  font-size: 21px;



}


.feel-option-content p {

  margin: 0;

  max-width: 230px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 14px;



}


/* OPTION ICON */

.feel-option-icon {

  position: absolute;

  top: 25px;

  right: 25px;

  color: #d7bb87;

  font-size: 24px;

  opacity: 0.85;

}


/* CTA AREA */

.zenhaven-premium-actions {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 25px;

}


/* PRIMARY BUTTON */

.zenhaven-primary-btn {

  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding: 17px 25px;

  color: #1b2b24;

  background: #e7d4ad;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.3px;

  transition: all 0.3s ease;

}


.zenhaven-primary-btn i {

  font-size: 18px;

  transition: transform 0.3s ease;

}


.zenhaven-primary-btn:hover {

  color: #1b2b24;

  background: #f0dfbd;

  transform: translateY(-3px);

}


.zenhaven-primary-btn:hover i {

  transform: translate(3px, -3px);

}


/* ACTION NOTE */

.zenhaven-action-note {

  display: flex;

  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;

}


.zenhaven-action-note i {

  color: #d6b77f;

}


/* =========================================================
   PREMIUM COMFORT CARD
========================================================= */

.zenhaven-comfort-card {

  position: relative;

  padding: 38px;

  background:

    linear-gradient(145deg,
      rgba(255, 255, 255, 0.98),
      rgba(243, 239, 229, 0.98));

  color: #1c2b24;

  box-shadow:

    0 35px 80px rgba(0, 0, 0, 0.25),

    inset 0 1px 0 rgba(255, 255, 255, 0.8);

}


/* CARD HEADER */

.comfort-card-header {

  display: flex;

  align-items: center;

  gap: 14px;

}


.comfort-card-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e7d4ad;

  color: #1e3027;

  font-size: 20px;

}


.comfort-card-kicker {

  display: block;

  color: #7e6743;

  font-size: 10px;

  letter-spacing: 1.5px;

  font-weight: 700;

}


.comfort-card-header small {

  display: block;

  margin-top: 4px;

  color: #777c76;

  font-size: 12px;

}


/* CARD TITLE */

.comfort-card-title {

  margin-top: 45px;

  font-size: 29px;

  line-height: 1.15;

  letter-spacing: -0.8px;

}


.comfort-card-title span {

  display: block;

  color: #59665e;

  font-weight: 300;

}


.comfort-card-title strong {

  display: block;

  font-weight: 600;

  color: #1e3027;

}


/* DIVIDER */

.comfort-card-divider {

  display: flex;

  align-items: center;

  gap: 14px;

  margin: 32px 0;

}


.comfort-card-divider span {

  height: 1px;

  flex: 1;

  background: #d6d4cb;

}


.divider-symbol {

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #cfc9ba;

  border-radius: 50%;

  color: #92764a;

  font-size: 14px;

}


/* COMFORT JOURNEY */

.comfort-journey {

  position: relative;

}


.journey-line {

  position: absolute;

  left: 17px;

  top: 18px;

  bottom: 18px;

  width: 1px;

  background: #d9d5c9;

}


/* JOURNEY ITEM */

.journey-item {

  position: relative;

  display: flex;

  gap: 17px;

  margin-bottom: 28px;

}


.journey-item:last-child {

  margin-bottom: 0;

}


/* JOURNEY DOT */

.journey-dot {

  position: relative;

  z-index: 2;

  width: 35px;
  height: 35px;

  flex: 0 0 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #cdbb98;

  border-radius: 50%;

  background: #f7f4ed;

  color: #8d7046;

  font-size: 10px;

  font-weight: 700;

}


/* JOURNEY CONTENT */

.journey-content .sk {

  margin: 0 0 7px;

  font-size: 18px;

  font-weight: 600;

  color: #25372e;

}


.journey-content p {

  margin: 0;

  color: #737972;

  font-size: 15px;



}


/* CARD BUTTON */

.comfort-card-btn {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 35px;

  padding: 16px 19px;

  color: #ffffff;

  background: #1e3027;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.3s ease;

}


.comfort-card-btn i {

  transition: transform 0.3s ease;

}


.comfort-card-btn:hover {

  color: #ffffff;

  background: #2d4639;

}


.comfort-card-btn:hover i {

  transform: translateX(5px);

}


/* CARD FOOTER */

.comfort-card-footer {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-top: 18px;

  color: #777d76;

  font-size: 12px;

}


.comfort-card-footer i {

  color: #8b7048;

}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 991px) {

  .zenhaven-premium-offer {

    padding: 90px 0;

  }

  .zenhaven-premium-title {

    font-size: clamp(3rem, 9vw, 5rem);

  }

}


@media (max-width: 575px) {

  .zenhaven-premium-offer {

    padding: 70px 0;

  }

  .zenhaven-premium-eyebrow {

    font-size: 8px;

    letter-spacing: 1.4px;

  }

  .zenhaven-premium-title {

    font-size: 3.1rem;

    letter-spacing: -2px;

  }

  .zenhaven-premium-description {

    font-size: 15px;

  }

  .zenhaven-feel-options {

    grid-template-columns: 1fr;

  }

  .zenhaven-premium-actions {

    align-items: flex-start;

    flex-direction: column;

  }

  .zenhaven-comfort-card {

    padding: 26px 22px;

  }

  .comfort-card-title {

    font-size: 25px;

  }

}



:root {

  --zenhaven-dark: #17241f;

  --zenhaven-deep: #0e1814;

  --zenhaven-gold: #d8bd8a;

  --zenhaven-cream: #f4f0e7;

  --zenhaven-muted: #79817b;

}


/* =========================================================
   MAIN SECTION
========================================================= */

.zenhaven-decision-section {

  padding: 120px 0;

  background:

    radial-gradient(circle at 90% 10%,
      rgba(216, 189, 138, 0.12),
      transparent 28%),

    #f1f0eb;

}


/* =========================================================
   SECTION INTRO
========================================================= */

.zenhaven-section-label {

  display: inline-flex;

  align-items: center;

  color: #7d6745;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

}


.zenhaven-decision-title {

  max-width: 760px;

  color: var(--zenhaven-dark);




}


.zenhaven-decision-title span {

  display: block;

  color: #818781;





}


.zenhaven-decision-intro {

  max-width: 480px;

  color: #626b65;

  font-size: 16px;



}


/* =========================================================
   MAIN OFFER PANEL
========================================================= */

.zenhaven-offer-panel {

  position: relative;

  padding: 48px;

  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 32%),
    linear-gradient(135deg,
      #24211d 0%,
      #3a332b 48%,
      #171512 100%);
  box-shadow: 0 25px 70px rgba(18, 31, 24, 0.18);

}


.zenhaven-product-label {

  color: var(--zenhaven-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

}





.zenhaven-offer-heading span {

  color: #89958e;

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

}


.zenhaven-offer-symbol {

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(216, 189, 138, 0.55);

  border-radius: 50%;

  color: var(--zenhaven-gold);

  font-size: 21px;

}


/* =========================================================
   COMFORT COMPARISON
========================================================= */

.zenhaven-comfort-comparison {

  position: relative;

  display: grid;

  grid-template-columns: 1fr 52px 1fr;

  align-items: center;

  gap: 18px;

}


.zenhaven-comfort-side {

  min-height: 260px;

  padding: 27px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: rgba(255, 255, 255, 0.055);

  transition: all 0.35s ease;

}


.zenhaven-comfort-side:hover {

  border-color: rgba(216, 189, 138, 0.7);

  background: rgba(255, 255, 255, 0.09);

  transform: translateY(-5px);

}


.comfort-side-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 35px;

}


.comfort-side-number {

  color: var(--zenhaven-gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

}


.comfort-side-top i {

  color: var(--zenhaven-gold);

  font-size: 23px;

}


.zenhaven-comfort-side strong {

  margin-bottom: 0px !important;
  padding-bottom: 0px !important;

  font-size: 23px;

  font-weight: 600;

}


.zenhaven-comfort-side p {



  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;



}


.comfort-side-tag {

  color: #9f8b69;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.4px;

}


/* SWITCH ICON */

.zenhaven-switch-icon {

  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(216, 189, 138, 0.5);

  border-radius: 50%;

  background: #1b2b23;

  color: var(--zenhaven-gold);

  font-size: 17px;

}


/* =========================================================
   OFFER FOOTER
========================================================= */

.zenhaven-offer-footer {

  border-top: 1px solid rgba(255, 255, 255, 0.13);

}


.zenhaven-price-label {

  display: block;

  margin-bottom: 8px;

  color: #8d9991;

  font-size: 10px;

 

}


.zenhaven-price-wrap {

  display: flex;

  align-items: baseline;

  gap: 14px;

}


.zenhaven-old-price {

  color: #849087;

  font-size: 17px;

  text-decoration: line-through;

}


.zenhaven-price-wrap strong {

  color: #ffffff;

  font-size: 42px;



  letter-spacing: -1px;

}


.zenhaven-saving {

  display: inline-block;

  margin-top: 5px;

  color: var(--zenhaven-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.3px;

}


/* MAIN CTA */

.zenhaven-main-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 18px 22px;

  color: #1b2b23;

  background: var(--zenhaven-gold);

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition: all 0.3s ease;

}


.zenhaven-main-cta i {

  font-size: 19px;

  transition: transform 0.3s ease;

}


.zenhaven-main-cta:hover {

  color: #1b2b23;

  background: #ecd9b3;

}


.zenhaven-main-cta:hover i {

  transform: translate(4px, -4px);

}


.zenhaven-cta-note {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #7f8c84;

  font-size: 11px;

}


.zenhaven-cta-note i {

  color: var(--zenhaven-gold);

}


/* =========================================================
   BENEFITS PANEL
========================================================= */

.zenhaven-benefits-panel {

  padding: 42px 35px;

  background: #ffffff;

  border: 1px solid #deded8;

}


.zenhaven-benefits-label {

  color: #846b47;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.8px;

}


.zenhaven-benefits-title {

  color: var(--zenhaven-dark);



  line-height: 1.1;

  letter-spacing: -1px;

}


.zenhaven-benefits-title span {

  display: block;

  color: #8b918b;

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

}


/* BENEFIT */

.zenhaven-benefit {

  display: flex;

  gap: 15px;

  padding: 21px 0;

  border-bottom: 1px solid #e7e6e0;

}


.zenhaven-benefit-icon {

  width: 42px;

  height: 42px;

  flex: 0 0 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #f1eee6;

  color: #806743;

  font-size: 17px;

}


.zenhaven-benefit h4 {

  margin-bottom: 5px;

  color: #26362e;

  font-size: 15px;

  font-weight: 700;

}


.zenhaven-benefit p {

  margin: 0;

  color: #777e78;

  font-size: 12px;



}


/* SECONDARY CTA */

.zenhaven-secondary-cta {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 30px;

  padding: 15px 18px;

  border: 1px solid #26362e;

  color: #26362e;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition: all 0.3s ease;

}


.zenhaven-secondary-cta:hover {

  color: #ffffff;

  background: #26362e;

}


/* =========================================================
   TRUST STRIP
========================================================= */

.zenhaven-trust-strip {

  padding: 20px 25px;

  background: #ffffff;

  border: 1px solid #deded8;

}


.trust-strip-title {

  display: flex;

  align-items: center;

  gap: 10px;

  color: #27372e;

  font-size: 13px;

}


.trust-strip-title i {

  color: #8a7049;

}


.zenhaven-trust-strip span {

  color: #7a817b;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

}


.zenhaven-trust-strip span i {

  margin-right: 5px;

  color: #92784f;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .zenhaven-decision-section {

    padding: 90px 0;

  }

  .zenhaven-offer-panel {

    padding: 35px;

  }

  .iconbadge {
    display: none !important;
  }



}


@media (max-width: 767px) {




  .zenhaven-comfort-comparison {

    grid-template-columns: 1fr;

  }

  .zenhaven-switch-icon {

    margin: -5px auto;

    transform: rotate(90deg);

  }

  .zenhaven-comfort-side {

    min-height: auto;

  }

  .zenhaven-comfort-side p {

    min-height: auto;

  }

  .zenhaven-price-wrap strong {

    font-size: 36px;

  }

}


@media (max-width: 575px) {

  .zenhaven-decision-section {

    padding: 70px 0;

  }

  .zenhaven-offer-panel {

    padding: 25px 20px;

  }

  .zenhaven-benefits-panel {

    padding: 30px 22px;

  }



  .zenhaven-offer-symbol {

    width: 48px;

    height: 48px;

  }

  .zenhaven-trust-strip {

    padding: 20px;

  }

}

/* SUPPORT SECTION */

.support-section {
  background: #ffffff;
}

.support-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6b705c;
}

.support-section h2 {
  max-width: 600px;
}

.support-section .lead {
  font-size: 18px;

}



/* IMAGE */

.support-image-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

.support-image-wrapper img {

  object-fit: cover;
  transition: transform 0.5s ease;
}

.support-image-wrapper:hover img {
  transform: scale(1.03);
}


/* FLOATING BADGE */

.support-badge {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  color: #242424;
}

.support-badge i {
  color: #6b705c;
}


/* SLEEP STYLE CARDS */

.sleep-style-card {
  background: #f7f6f2;
  border: 1px solid #ebe9e2;
  transition: all 0.3s ease;
}

.sleep-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.style-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  font-size: 17px;
}

@media (max-width: 991px) {

  .support-image-wrapper img {
    height: auto;
  }

}

@media (max-width: 575px) {



  .support-badge {
    display: none;
  }

}

/* 3 Support end */

/* ================================
   ZENHAVEN NAVBAR
================================ */




.navcenter {
  gap: 10px;
}


/* MOBILE NAVIGATION */

@media (max-width: 991.98px) {


  .navcenter {
    text-align: center;
    gap: 0px !important;
  }

}



/* =========================================
   COMPARISON TABLE
========================================= */

.comparison {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1.5fr 1.5fr;
  border: 1px solid #dedbd2;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

/* ALL CELLS */








.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdf8 0%, #f3eadc 52%, #e8f0e0 100%);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
  padding: 44px
}

.cta-card h2 {
  font-family: Georgia, 'Times New Roman', serif;


  margin: 10px 0;
  color: var(--forest)
}

.cta-card p {
  color: var(--muted)
}

.cta-card img {
  border-radius: 28px;
  height: 340px;
  width: 100%;
  object-fit: cover
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: auto
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  text-align: left;
  font-weight: 900;
  color: var(--forest);
  font-size: 1rem;
  cursor: pointer
}

.faq-q span {
  font-size: 1.4rem
}

.faq-a {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted)
}

.faq-item.active .faq-a {
  display: block
}

.faq-item.active .faq-q span {
  transform: rotate(45deg)
}

.footer {
  background: #1E1A13;
  color: #fff;
  padding: 64px 0 26px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
  margin-bottom: 38px
}

.footer h3,
.footer h4 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 14px
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .72)
}

.footer a:hover {
  color: #fff
}

.footer-links {
  display: grid;
  gap: 8px
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem
}

.legal-hero {
  padding: 86px 0;
  background: linear-gradient(135deg, #fbf8f2, #e8efdf);
  border-bottom: 1px solid var(--line)
}

.legal-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--forest);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 12px 0
}

.legal-content {
  padding: 70px 0
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 42px
}

.legal-card h2 {
  color: var(--forest);
  font-family: Georgia, 'Times New Roman', serif
}

.legal-card p,
.legal-card li {
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}


/* Fixed Navbar */
.navbar.fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

/* Mobile menu */
@media (max-width: 991.98px) {

  .navbar-collapse {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

}










/* -------------------- */

/* ================= PREMIUM GALLERY ================= */

.gallery-card {

  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eee8df;
  box-shadow: 0 15px 40px rgba(45, 33, 27, .10);
  transition: .4s ease;

}


.gallery-card img {

  object-fit: cover;
  display: block;
  transition: transform .6s ease;

}

.gallery-card:hover {

  transform: translateY(-6px);

}


.gallery-card:hover img {

  transform: scale(1.01);

}


.gallery-overlay {

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 28px;

  color: #fff;

  background: linear-gradient(transparent,
      rgba(30, 22, 17, .85));

}


.gallery-overlay h3 {

  margin: 8px 0 0;
  font-size: 20px !important;

}


.gallery-overlay p {

  margin: 8px 0 0;

  font-size: 14px;
  opacity: .9;

}


.gallery-label {

  display: inline-flex;

  width: 34px;
  height: 34px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, .9);

  color: #1E1A13;

  font-size: 13px;
  font-weight: 700;

}


/* MOBILE */

@media(max-width:767px) {

  .gallery-card,
  .gallery-large {

    height: auto;

  }

  .gallery-card img,
  .gallery-large img {

    height: auto;
  }

  .gallery-overlay {

    padding: 20px;

  }

  .gallery-overlay h3 {

    font-size: 19px;

  }

}

h3 {
  font-size: 1.8rem;
}




/* ------------------- */

@media(max-width:980px) {


  .footer-grid {
    grid-template-columns: 1fr
  }

  .sticky-offer {
    width: min(94%, 520px);
    border-radius: 22px;
    align-items: flex-start;
    flex-direction: column
  }

  .sticky-offer span {
    white-space: normal
  }

  .cta-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
  }

}

@media(max-width:620px) {
  .topbar .container {
    display: none;
    flex-direction: column;
    text-align: center
  }


  .section {
    padding: 68px 0
  }



  .btn {
    width: 100%
  }

  .hero-actions {
    width: 100%
  }

  .btn,
  .cta-card .btn {
    width: auto
  }

}