@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Obviously";
  src: url("./fonts/obviously-font/ObviouslyDemo-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Obviously";
  src: url("./fonts/obviously-font/ObviouslyDemo-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Obviously";
  src: url("./fonts/obviously-font/ObviouslyDemo-Semibold.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Obviously";
  src: url("./fonts/obviously-font/ObviouslyDemo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Colors */
  --color-primary-dark: #372330;
  --color-primary: #c388ae;
  --color-primary-light: #ca93be;
  --color-accent-warning: #ffd665;
  --color-neutral-100: #ffffff;
  --color-neutral-400: #909090;
  --color-neutral-500: #858793;
  --color-neutral-600: #758288;
  --color-neutral-700: #484b5a;
  --color-neutral-800: #1f2c34;
  --color-neutral-900: #3e3e3e;
  --color-neutral-950: #222222;

  /* Font family */
  --font-family: "Poppins", sans-serif;

  /* Line height */
  --line-height-100: 100%;
  --line-height-110: 110px;
  --line-height-146: 146px;
}

/* Basic Reset ---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Common css ---------------------------------------------------- */
.wife-pillow {
  font-family: var(--font-family);
}

.wife-pillow-play-btn {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.wife-pillow-play-btn:hover {
  opacity: 0.9;
}

.wife-pillow-container-1800 {
  max-width: 1840px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Video playing state */
.wife-pillow-hero-video-wrapper.wife-pillow-video-playing
  .wife-pillow-play-btn {
  opacity: 0;
  pointer-events: none;
}

.wife-pillow-hero-video-wrapper.wife-pillow-video-playing:hover
  .wife-pillow-play-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section Start ---------------------------------------------------- */
.wife-pillow-hero-section {
  background-image: url("./images/hero-bg.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0 10px 0px;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  padding-left: 60px;
  margin-bottom: 74px;
}
.wife-pillow-hero-section .wife-pillow-container .wife-pillow-hero-text-side {
  flex: 1;
  max-width: 380px;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-text-side
  .wife-pillow-hero-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-primary-dark);
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-text-side
  .wife-pillow-hero-text {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-text-side
  .wife-pillow-hero-text
  .wife-pillow-position-word {
  display: inline-flex;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-text-side
  .wife-pillow-hero-text
  .wife-pillow-highlight {
  color: var(--color-accent-warning);
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-video-wrapper {
  max-width: 1427px;
  width: 100%;
  height: 637px;
  background: white;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  position: relative;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-video-wrapper
  .wife-pillow-video-container {
  width: 100%;
  height: 100%;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-video-wrapper
  .wife-pillow-video-container
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wife-pillow-hero-section
  .wife-pillow-container
  .wife-pillow-hero-video-wrapper
  .wife-pillow-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
/* Struggling Section */
.wife-pillow-hero-section .wife-pillow-struggling-wrapper {
  max-width: 1800px;
  width: 100%;
  margin-inline: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
.wife-pillow-hero-section .wife-pillow-struggling-wrapper .struggling-text h3 {
  font-weight: 700;
  font-size: 42px;
  color: var(--color-neutral-700);
}
.wife-pillow-hero-section .wife-pillow-struggling-wrapper .struggling-text p {
  font-size: 18px;
  color: var(--color-neutral-500);
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container {
  display: flex;
  gap: 20px;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item {
  width: 220px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(
    145.53deg,
    rgba(255, 255, 255, 0.6) 3.67%,
    rgba(255, 255, 255, 0.1) 96.94%
  );
  border: 1px solid;
  border-image-source: linear-gradient(
    147.06deg,
    rgba(255, 255, 255, 0.4) 1.2%,
    #eee0e9 96.82%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:nth-child(1) {
  animation-delay: 0.1s;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:nth-child(2) {
  animation-delay: 0.3s;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:nth-child(3) {
  animation-delay: 0.5s;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:nth-child(4) {
  animation-delay: 0.7s;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:nth-child(5) {
  animation-delay: 0.9s;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item:hover {
  background: linear-gradient(
    231.46deg,
    rgba(195, 136, 174, 0.5) -11.87%,
    rgba(255, 255, 255, 0.7) 54.23%,
    rgba(196, 212, 255, 0.05) 119.01%
  );
  border-image-source: linear-gradient(
    147.06deg,
    rgba(195, 136, 174, 0.4) 1.2%,
    #c388ae 96.82%
  );
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item.wife-pillow-active-pain {
  background: linear-gradient(
    231.46deg,
    rgba(195, 136, 174, 0.5) -11.87%,
    rgba(255, 255, 255, 0.7) 54.23%,
    rgba(196, 212, 255, 0.05) 119.01%
  );
  border-image-source: linear-gradient(
    147.06deg,
    rgba(195, 136, 174, 0.4) 1.2%,
    #c388ae 96.82%
  );
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item
  .wife-pillow-icon-circle {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.wife-pillow-hero-section
  .wife-pillow-struggling-wrapper
  .wife-pillow-pain-points-container
  .wife-pillow-pain-point-item
  span {
  font-weight: 600;
  font-size: 17px;
  color: var(--color-neutral-900);
}
/* Hero Section End ---------------------------------------------------- */

/* Tab Content Start ---------------------------------------------------- */
.wife-pillow-tab-content-wrapper {
  text-align: center;
  margin-top: 86px;
}
.wife-pillow-tab-content-wrapper .wife-pillow-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.wife-pillow-tab-content-wrapper .wife-pillow-tab-panel.wife-pillow-active-tab {
  display: block;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content
  h2 {
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-bottom: 36px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content
  p {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  line-height: 1;
  margin-bottom: 34px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content
  p
  span {
  color: var(--color-primary-light);
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content-image {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
}
/* Features Start */
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content-image
  img {
  width: 100%;
  max-height: 434px;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-tab-content-description {
  font-weight: 500;
  font-size: 25px;
  color: var(--color-neutral-400);
  margin-top: 34px;
}
.wife-pillow-tab-content-wrapper .wife-pillow-tab-panel .wife-pillow-order-now {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-order-now
  span {
  flex-grow: 1;
  width: 100%;
  height: 2px;
  background-color: #ebe0e0;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-order-now
  button {
  padding: 12px 40px 16px;
  border-radius: 9999px;
  background-color: var(--color-primary-light);
  border: none;
  font-family: "Obviously", sans-serif;
  letter-spacing: 0%;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-neutral-100);
  text-wrap: nowrap;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-tab-panel
  .wife-pillow-order-now
  button:hover {
  background-color: var(--color-primary);
}
.wife-pillow-tab-content-wrapper .wife-pillow-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 34px;
}
.wife-pillow-tab-content-wrapper .wife-pillow-logos .wife-pillow-logo-item {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: -12px;
  position: relative;
  z-index: 1;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-logos
  .wife-pillow-logo-item:first-child {
  margin-left: 0;
}
.wife-pillow-tab-content-wrapper .wife-pillow-logos .wife-pillow-logo-item img {
  width: 45%;
  height: auto;
  object-fit: contain;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-logos
  .wife-pillow-logo-item:nth-child(1) {
  z-index: 4;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-logos
  .wife-pillow-logo-item:nth-child(2) {
  z-index: 3;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-logos
  .wife-pillow-logo-item:nth-child(3) {
  z-index: 2;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-logos
  .wife-pillow-logo-item:nth-child(4) {
  z-index: 1;
}

.wife-pillow-tab-content-wrapper .wife-pillow-content-details {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-content-details
  .wife-pillow-content-details-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-content-details
  .wife-pillow-content-details-item
  h2 {
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-block: 40px 20px;
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-content-details
  .wife-pillow-content-details-item
  p {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-neutral-600);
}
.wife-pillow-tab-content-wrapper
  .wife-pillow-content-details
  .wife-pillow-content-details-item
  p
  span {
  font-weight: 500;
  color: var(--color-neutral-800);
}
/* Features End */

/* A Pillow Made Just For You Start */
.wife-pillow-made-wrapper {
  background-image: url("./images/section-bg.png");
  padding: 72px 0;
  margin-top: 86px;
  text-align: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.wife-pillow-made-wrapper .wife-pillow-made-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left Side */
.wife-pillow-made-wrapper .wife-pillow-made-left {
  max-width: 740px;
  width: 100%;
}
.wife-pillow-made-wrapper .wife-pillow-made-left h5 {
  font-weight: 500;
  font-size: 28px;
  color: var(--color-neutral-700);
  margin-bottom: 38px;
}
.wife-pillow-made-wrapper .wife-pillow-made-left h2 {
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-bottom: 34px;
}
.wife-pillow-made-wrapper .wife-pillow-made-left p {
  font-weight: 400;
  font-size: 20px;
  color: var(--color-neutral-700);
  margin-bottom: 64px;
}
.wife-pillow-made-wrapper .wife-pillow-made-left button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 26px;
  background-color: var(--color-accent-warning);
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 28px;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.wife-pillow-made-wrapper .wife-pillow-made-left button:hover {
  opacity: 0.9;
}

/* Right Side */
.wife-pillow-made-wrapper .wife-pillow-made-right {
  max-width: 920px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.wife-pillow-made-wrapper .wife-pillow-made-image {
  flex-shrink: 0;
  width: 400px;
  height: 645px;
  border-radius: 9999px;
  overflow: hidden;
}
.wife-pillow-made-wrapper .wife-pillow-made-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-made-wrapper .wife-pillow-made-testimonial {
  flex: 1;
}
.wife-pillow-made-wrapper .wife-pillow-quote-icon {
  margin-bottom: 12px;
}
.wife-pillow-made-wrapper .wife-pillow-made-testimonial h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: var(--line-height-100);
  color: var(--color-neutral-950);
  margin-bottom: 16px;
}
.wife-pillow-made-wrapper .wife-pillow-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 52px;
}
.wife-pillow-made-wrapper .wife-pillow-quote-text {
  font-weight: 400;
  font-size: 24px;
  color: var(--color-neutral-700);
  margin-bottom: 40px;
}
.wife-pillow-made-wrapper .wife-pillow-google-logo {
  display: flex;
  align-items: center;
}

/* Social proof section start */
.wife-pillow-social-proof-wrapper {
  padding: 84px 0;
  background-color: var(--color-neutral-100);
}
.wife-pillow-social-proof-wrapper .wife-pillow-social-proof-title h6 {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: var(--line-height-100);
  color: var(--color-neutral-700);
}
.wife-pillow-social-proof-wrapper .wife-pillow-social-proof-title h2 {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: var(--line-height-100);
  color: var(--color-neutral-700);
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper {
  margin-top: 80px;
  width: 100%;
  height: 474px;
  position: relative;
  z-index: 2;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 252px;
  height: 100%;
  background-image: url("./images/slider-effect-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 252px;
  height: 100%;
  background-image: url("./images/slider-effect-bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(-1);
  z-index: 1;
}
.wife-pillow-social-proof-wrapper .wife-pillow-videos {
  width: 100%;
  height: 100%;
  position: relative;
}
.wife-pillow-social-proof-wrapper .wife-pillow-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  transition: transform 0.3s ease-in-out;
}
.wife-pillow-social-proof-wrapper .wife-pillow-icon.wife-pillow-left-icon {
  left: 20px;
}
.wife-pillow-social-proof-wrapper .wife-pillow-icon.wife-pillow-right-icon {
  right: 20px;
}
.wife-pillow-social-proof-wrapper
  .wife-pillow-icon.wife-pillow-left-icon:hover {
  transform: translateY(-50%) translateX(-6px);
}
.wife-pillow-social-proof-wrapper
  .wife-pillow-icon.wife-pillow-right-icon:hover {
  transform: translateY(-50%) translateX(6px);
}
/* Video Carousel Styles */
.wife-pillow-social-proof-wrapper .wife-pillow-video-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 50%;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  align-items: center;
  box-sizing: border-box;
}
.wife-pillow-social-proof-wrapper
  .wife-pillow-video-carousel::-webkit-scrollbar {
  display: none;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-card {
  flex: 0 0 336px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: flex-basis 0.4s ease, min-width 0.4s ease;
}
.wife-pillow-social-proof-wrapper
  .wife-pillow-video-card.wife-pillow-active-center {
  flex: 0 0 620px;
  z-index: 10;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.wife-pillow-social-proof-wrapper .wife-pillow-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
/* Video playing interaction similarly to hero */
.wife-pillow-video-card.video-playing .wife-pillow-video-play-btn {
  opacity: 0;
  pointer-events: none;
}
.wife-pillow-video-card.video-playing:hover .wife-pillow-video-play-btn {
  opacity: 1;
  pointer-events: auto;
}
/* Social proof section end */

/* Testimonial section start */
.wife-pillow-testimonial-wrapper {
  padding-block: 100px 84px;
  background-image: url("./images/section-bg-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wife-pillow-testimonial-wrapper .wife-pillow-title h2 {
  max-width: 1270px;
  margin-inline: auto;
  font-weight: 800;
  font-size: 60px;
  line-height: 75px;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-bottom: 62px;
}
.wife-pillow-testimonial-wrapper .wife-pillow-title h2 span {
  color: var(--color-primary);
}
.wife-pillow-testimonial-wrapper .wife-pillow-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 62px;
  overflow: hidden;
  width: 100%;
}
.wife-pillow-testimonial-wrapper .wife-pillow-marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.wife-pillow-testimonial-wrapper .wife-pillow-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  text-align: left;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-marquee-left
  .wife-pillow-marquee-track {
  animation: scrollLeft 25s linear infinite;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-marquee-right
  .wife-pillow-marquee-track {
  animation: scrollRight 25s linear infinite;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-card {
  width: 340px;
  background: #ffffff;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-image {
  width: 340px;
  height: 200px;
  background-color: #eee;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-content {
  padding: 10px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-date {
  font-weight: 400;
  font-size: 12px;
  line-height: var(--line-height-100);
  color: #363636;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: var(--line-height-100);
  color: #000000;
  margin-bottom: 8px;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-footer .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-footer .user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wife-pillow-testimonial-wrapper .wife-pillow-review-footer .user-info .name {
  font-weight: 600;
  font-size: 18px;
  line-height: var(--line-height-100);
  color: #000000;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-review-footer
  .user-info
  .verified {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #00b67a;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-review-content
  .wife-pillow-review-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-review-content
  .wife-pillow-review-body
  h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: var(--line-height-100);
  color: #000000;
  margin-bottom: 0px !important;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-review-content
  .wife-pillow-review-body
  p {
  font-weight: 400;
  font-size: 14px;
  color: #4b4b4b;
}
.wife-pillow-testimonial-wrapper
  .wife-pillow-review-content
  .wife-pillow-review-body
  p
  span {
  color: #a85a8c;
  cursor: pointer;
}
/* Testimonial section end */

/* Benifit section start */
.wife-pillow-benifit-wrapper {
  padding-block: 100px;
  background-color: var(--color-neutral-100);
  text-align: left;
}
.wife-pillow-benifit-wrapper .wife-pillow-title {
  max-width: 1500px;
  margin-inline: auto;
  margin-bottom: 54px;
  text-align: center;
}
.wife-pillow-benifit-wrapper .wife-pillow-title h6 {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  line-height: var(--line-height-100);
  color: var(--color-neutral-700);
  margin-bottom: 16px;
}
/* Benefit section start */
.wife-pillow-benifit-wrapper {
  padding: 80px 0;
  background-color: #fff;
}
.wife-pillow-benifit-wrapper .wife-pillow-title h2 {
  font-weight: 800;
  font-size: 60px;
  line-height: var(--line-height-100);
  text-transform: uppercase;
  color: var(--color-neutral-700);
}
.wife-pillow-benifit-wrapper .wife-pillow-title h2 span {
  color: var(--color-primary);
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-image {
  max-width: 1532px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 107px;
  margin-top: 60px;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-icon {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-icon img,
.wife-pillow-benifit-wrapper .wife-pillow-benifit-icon svg {
  width: 100%;
  height: auto;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  font-style: italic;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: normal;
}
.wife-pillow-benifit-wrapper .wife-pillow-benifit-content p {
  font-size: 18px;
  color: #707070;
}
.wife-pillow-benifit-wrapper .wife-pillow-benefit-cta {
  display: flex;
  justify-content: center;
  margin: 56px 0;
}
.wife-pillow-benifit-wrapper .wife-pillow-shop-now-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-primary);
  color: var(--color-neutral-100);
  padding: 20px;
  border-radius: 8px;
  border: none;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -3%;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: "Poppins", sans-serif;
}
.wife-pillow-benifit-wrapper .wife-pillow-shop-now-btn:hover {
  opacity: 0.9;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-cards {
  max-width: 1604px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card {
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 296px;
}
.wife-pillow-benifit-wrapper .wife-pillow-card-purple {
  background: radial-gradient(50% 50% at 50% 50%, #e4afd9 0%, #a9759e 100%);
}
.wife-pillow-benifit-wrapper .wife-pillow-card-gold {
  background: radial-gradient(50% 50% at 50% 50%, #e8c554 0%, #c49c1d 100%);
}
.wife-pillow-benifit-wrapper .wife-pillow-card-blue {
  background: radial-gradient(50% 50% at 50% 50%, #0082cc 0%, #005d92 100%);
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card-icon {
  margin-bottom: 30px;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card-icon img {
  max-height: 100%;
  width: auto;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card .highlight {
  font-size: 50px;
  font-weight: 700;
  display: block;
  margin: 5px 0;
  color: #fff;
  text-transform: uppercase;
  line-height: 55px;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card p {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.wife-pillow-benifit-wrapper .wife-pillow-feature-card:first-child .highlight {
  color: var(--color-accent-warning);
}
.wife-pillow-benifit-wrapper
  .wife-pillow-feature-card:first-child
  .wife-pillow-feature-card-icon {
  margin-bottom: 40px;
}
/* Benefit section end */

/* Do you wake up section start */
.wife-pillow-wake-up-wrapper {
  padding: 90px 0;
  background-image: url("./images/section-bg-2.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-content {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 54px;
  position: relative;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side {
  max-width: 800px;
  text-align: center;
  z-index: 2;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
  font-size: 74px;
  font-weight: 800;
  line-height: 96px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side p {
  font-size: 24px;
  color: #707070;
  margin-bottom: 32px;
  max-width: 808px;
  margin-inline: auto;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta {
  display: flex;
  justify-content: center;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta button {
  background-color: var(--color-primary-light);
  color: #fff;
  padding: 12px 40px;
  border-radius: 9999px;
  border: none;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  line-height: var(--line-height-100);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 136, 174, 0.3);
  font-family: "Obviously", sans-serif;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta button:hover {
  background-color: #b0709a;
  transform: translateY(-2px);
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-res {
  display: none;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left {
  flex-shrink: 0;
  width: 426px;
  height: 540px;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right {
  flex-shrink: 0;
  width: 399px;
  height: 399px;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  margin-top: 132px;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left {
  transform: rotate(-5deg) translateY(10px);
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right {
  transform: rotate(5deg) translateY(-10px);
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left img,
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Wake Up Video Section */
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-video {
  max-width: 1280px;
  height: 515px;
  width: 100%;
  margin-inline: auto;
  margin-top: 90px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px #0000001a;
  position: relative;
  overflow: hidden;
  background: white;
}
.wife-pillow-wake-up-wrapper
  .wife-pillow-wake-up-video
  .wife-pillow-video-container {
  width: 100%;
  height: 100%;
}
.wife-pillow-wake-up-wrapper
  .wife-pillow-wake-up-video
  .wife-pillow-video-container
  video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-wake-up-wrapper .wife-pillow-wake-up-video .wife-pillow-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
/* Video playing state for Wake Up section */
.wife-pillow-wake-up-wrapper
  .wife-pillow-wake-up-video.wife-pillow-video-playing
  .wife-pillow-play-btn {
  opacity: 0;
  pointer-events: none;
}
.wife-pillow-wake-up-wrapper
  .wife-pillow-wake-up-video.wife-pillow-video-playing:hover
  .wife-pillow-play-btn {
  opacity: 1;
  pointer-events: auto;
}
/* Do you wake up section end */

/* Finally, a Pillow That Adjusts Section Start */
.wife-pillow-finally-pillow {
  padding-block: 100px 90px;
}
.wife-pillow-finally-pillow .wife-pillow-title-container {
  text-align: center;
}
.wife-pillow-finally-pillow .wife-pillow-title-container h2 {
  max-width: 1440px;
  margin-inline: auto;
  font-size: 60px;
  font-weight: 800;
  line-height: 70px;
  color: #222222;
  text-transform: uppercase;
}
.wife-pillow-finally-pillow .wife-pillow-title-container h6 {
  font-size: 28px;
  font-weight: 700;
  line-height: var(--line-height-100);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-block: 42px;
}
.wife-pillow-finally-pillow .wife-pillow-title-container p {
  max-width: 1493px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 400;
  line-height: var(--line-height-100);
  color: #555555;
}
.wife-pillow-finally-pillow .wife-pillow-title-container {
  max-width: 1493px;
  margin-inline: auto;
}
.wife-pillow-finally-pillow .wife-pillow-finally-pillow-content {
  margin-top: 20px;
  margin-bottom: 100px;
}
.wife-pillow-finally-pillow .wife-pillow-finally-pillow-content-responsive {
  display: none;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image {
  max-width: 600px;
  height: 550px;
  margin-inline: auto;
  position: relative;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-finally-point {
  max-width: 440px;
  width: 100%;
  position: absolute;
  z-index: 10;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-finally-point
  h5 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 18px;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-finally-point
  p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(1) {
  top: 110px;
  right: 100%;
  text-align: end;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(2) {
  top: 310px;
  right: 97%;
  text-align: end;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(3) {
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(4) {
  top: 310px;
  left: 97%;
  text-align: start;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(5) {
  top: 110px;
  left: 100%;
  text-align: start;
}
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(4)
  h5,
.wife-pillow-finally-pillow
  .wife-pillow-finally-pillow-content
  .wife-pillow-image
  .wife-pillow-finally-point:nth-of-type(5)
  h5 {
  max-width: 394px;
}
/* Finally, a Pillow That Adjusts Section End */

/* Wife pillow Details Section Start */
.wife-pillow-details-wrapper .wife-pillow-details-image-container {
  width: 100%;
  max-height: 1030px;
  background-color: #fbf3f8;
  background-image: url("./images/section-bg-3.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.wife-pillow-details-wrapper
  .wife-pillow-details-image-container
  .wife-pillow-details-image {
  max-width: 1880px;
  margin-inline: auto;
  width: 100%;
  height: 100%;
  padding-inline: 20px;
}
.wife-pillow-details-wrapper
  .wife-pillow-details-image-container
  .wife-pillow-details-image
  img {
  max-width: 1880px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-details-wrapper
  .wife-pillow-details-image-container
  .wife-pillow-details-image
  img:last-child {
  display: none;
}
.wife-pillow-details-wrapper .wife-pillow-details-content {
  padding-block: 94px;
  background-color: #fbf3f8;
  text-align: left;
}
/* Wife Pillow Details Content Start */
.wife-pillow-details-wrapper .wife-pillow-details-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wife-pillow-details-wrapper .wife-pillow-details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.wife-pillow-details-wrapper .wife-pillow-details-row.wife-pillow-reverse {
  justify-content: start;
}
.wife-pillow-details-wrapper .wife-pillow-details-text {
  flex: 1;
}
.wife-pillow-details-wrapper .wife-pillow-details-text p {
  font-size: 18px;
  color: #222222;
  margin-bottom: 16px;
}
.wife-pillow-details-wrapper .wife-pillow-details-text p strong {
  font-weight: 600;
}
.wife-pillow-details-wrapper .wife-pillow-details-text ul {
  list-style: none;
  padding: 0;
}
.wife-pillow-details-wrapper .wife-pillow-details-text ul li {
  font-size: 18px;
  color: #222222;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.wife-pillow-details-wrapper .wife-pillow-details-text ul li::before {
  content: "•";
  color: var(--color-primary);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -5px;
}
.wife-pillow-details-wrapper .wife-pillow-details-text ul li span {
  font-weight: 600;
}
.wife-pillow-details-wrapper .wife-pillow-details-img {
  background-color: #fff;
  width: 328px;
  height: 252px;
  border-radius: 50% 12px 12px 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.wife-pillow-details-wrapper .wife-pillow-reverse .wife-pillow-details-img {
  border-radius: 12px 50% 12px 12px;
}
.wife-pillow-details-wrapper .wife-pillow-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-details-wrapper .wife-pillow-details-full-text ul {
  list-style: none;
  padding: 0;
}
.wife-pillow-details-wrapper .wife-pillow-details-full-text ul li {
  font-size: 18px;
  color: #222222;
  margin-bottom: 18px;
  padding-left: 20px;
  position: relative;
}
.wife-pillow-details-wrapper .wife-pillow-details-full-text ul li::before {
  content: "•";
  color: var(--color-primary);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -5px;
}
.wife-pillow-details-wrapper .wife-pillow-details-full-text ul li span {
  font-weight: 600;
}
/* Specs Table */
.wife-pillow-details-wrapper .wife-pillow-specs-table {
  border: 1px solid #d8cad3;
  background-color: #fff;
  margin-top: 0px;
}
.wife-pillow-details-wrapper .wife-pillow-first-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #d8cad3;
  padding-block: 10px;
}
.wife-pillow-details-wrapper .wife-pillow-second-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 10px;
}
.wife-pillow-details-wrapper .wife-pillow-spec-item {
  border-right: 1px solid #d8cad3;
  font-size: 18px;
  color: var(--color-neutral-800);
  padding: 0px 20px;
  text-align: left;
}
.wife-pillow-details-wrapper .wife-pillow-spec-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.wife-pillow-details-wrapper
  .wife-pillow-first-row
  .wife-pillow-spec-item:last-child,
.wife-pillow-details-wrapper
  .wife-pillow-second-row
  .wife-pillow-spec-item:last-child {
  border-right: none;
}

/* Product Details */
.wife-pillow-product-details {
  background-color: #fbf3f8;
  padding-bottom: 60px;
}
.wife-pillow-product-details .wife-pillow-product-title {
  text-align: center;
  margin-bottom: 40px;
}
.wife-pillow-product-details .wife-pillow-product-title h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-height-100);
  color: #222222;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.wife-pillow-product-details .wife-pillow-product-title h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: var(--line-height-100);
  color: #222222;
  text-transform: uppercase;
}
.wife-pillow-product-details .wife-pillow-product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content {
  max-width: 1167px;
  width: 100%;
  text-align: left;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-right-content {
  max-width: 493px;
  width: 100%;
  height: 648px;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-right-content
  img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content
  .wife-pillow-product-desc-item {
  margin-bottom: 20px;
  text-align: left;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content
  .wife-pillow-product-desc-item
  h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #222222;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content
  .wife-pillow-product-desc-item
  p {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #222222;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content
  .wife-pillow-load-more-btn {
  padding: 8px 30px;
  min-height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: var(--line-height-100);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wife-pillow-product-details
  .wife-pillow-product-content
  .wife-pillow-left-content
  .wife-pillow-load-more-btn:hover {
  background-color: var(--color-primary-light);
  color: var(--color-neutral-100);
}

/* Product Faq */
.wife-pillow-product-faq-wrapper {
  background-color: #fbf3f8;
  padding-bottom: 305px;
  position: relative;
}
.wife-pillow-product-faq-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 560px;
  background-image: url("./images/faq-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1px;
}
.wife-pillow-product-faq-wrapper .wife-pillow-title {
  margin-bottom: 88px;
}
.wife-pillow-product-faq-wrapper .wife-pillow-title h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: var(--line-height-100);
  color: #222222;
  text-transform: uppercase;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-content
  .wife-pillow-left-content {
  max-width: 607px;
  width: 100%;
  height: 1352px;
  background-color: var(--line-height-100);
  border-radius: 24px;
  overflow: hidden;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-content
  .wife-pillow-left-content
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-content
  .wife-pillow-right-content {
  max-width: 1075px;
  width: 100%;
  text-align: left;
}

/* FAQ Accordion Styles */
.wife-pillow-product-faq-wrapper .wife-pillow-faq-list {
  display: flex;
  flex-direction: column;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-item {
  border-bottom: 1px solid #e5d8e1;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-item:first-child
  .wife-pillow-faq-header {
  padding-top: 0 !important;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-question {
  display: flex;
  align-items: center;
  gap: 24px;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-question span {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-header h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #313e44;
  margin: 0;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-item.active
  .wife-pillow-faq-header
  h4 {
  color: var(--color-primary);
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-arrow {
  transition: transform 0.3s ease;
}
.wife-pillow-product-faq-wrapper
  .wife-pillow-faq-item.active
  .wife-pillow-faq-arrow {
  transform: rotate(180deg);
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-answer {
  padding-bottom: 24px;
  padding-left: 54px;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-answer p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #767e83;
  margin: 0;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-mission {
  padding-block: 72px 32px;
  text-align: left;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-mission p {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #313e44;
  margin: 0;
}
.wife-pillow-product-faq-wrapper .wife-pillow-faq-cta {
  margin-top: 142px;
}
.wife-pillow-product-faq-wrapper .wife-pillow-view-details-btn {
  min-width: 240px;
  min-height: 62px;
  padding: 12px 30px;
  border-radius: 9999px;
  border: 2px solid #000000;
  background-color: var(--color-accent-warning);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--line-height-100);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  position: relative;
  z-index: 10;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.wife-pillow-product-faq-wrapper .wife-pillow-view-details-btn:hover {
  opacity: 0.85;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Hover to pause */
.wife-pillow-marquee-row:hover .wife-pillow-marquee-track {
  animation-play-state: paused;
}
/* Testimonial section end */

/* Tab Content End ---------------------------------------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tab Content End ---------------------------------------------------- */

/* People CaN not stop section Start ---------------------------------------------------- */
.wife-pillow-people-wrapper {
  background-color: var(--line-height-100);
  padding-bottom: 100px;
}
.wife-pillow-people-wrapper .wife-pillow-people-header h6 {
  font-weight: 700;
  text-align: center;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  color: #222222;
}
.wife-pillow-people-wrapper .wife-pillow-people-header h2 {
  font-weight: 700;
  text-align: center;
  font-size: 90px;
  line-height: var(--line-height-100);
  text-transform: uppercase;
  color: var(--color-primary);
}
.wife-pillow-people-wrapper .wife-pillow-tabs {
  margin-block: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: #f5f5f5;
  width: fit-content;
  margin-inline: auto;
  border-radius: 9999px;
}
.wife-pillow-people-wrapper .wife-pillow-people-tab {
  padding: 15px 20px;
  border-radius: 9999px;
  border: none;
  background-color: transparent;
  color: #888989;
  font-size: 20px;
  line-height: var(--line-height-100);
  cursor: pointer;
  transition: all 0.3s ease;
}
.wife-pillow-people-wrapper .wife-pillow-people-tab:hover {
  background-color: var(--color-primary-light);
  color: #fff;
}
.wife-pillow-people-wrapper .wife-pillow-people-tab.active {
  background-color: var(--color-primary-light);
  color: #fff;
}
.wife-pillow-people-wrapper .wife-pillow-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.wife-pillow-people-wrapper .wife-pillow-review-card {
  padding: 26px 46px 28px 30px;
  position: relative;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background-color: transparent;
}
.wife-pillow-people-wrapper .wife-pillow-review-card::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='482' height='403' viewBox='0 0 482 403' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_95_547)'%3E%3Cpath d='M30 50C30 38.9543 38.9543 30 50 30H432C443.046 30 452 38.9543 452 50V319.832C452 322.949 450.546 325.888 448.069 327.78L391.529 370.948C389.786 372.279 387.654 373 385.461 373H50C38.9543 373 30 364.046 30 353V50Z' fill='white'/%3E%3C/g%3E%3Cpath opacity='0.3' d='M398.485 332.883L391 371.5L419.5 349.5L449.5 326.5L398.485 332.883Z' fill='%23C388AE'/%3E%3Cdefs%3E%3Cfilter id='filter0_d_95_547' x='0' y='0' width='482' height='403' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='15'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_95_547'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_95_547' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wife-pillow-people-wrapper .wife-pillow-review-card[style*="display: none"] {
  opacity: 0;
  transform: translateY(20px);
}
.wife-pillow-people-wrapper .wife-pillow-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.wife-pillow-people-wrapper .wife-pillow-review-header .wife-pillow-quote-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: 30px;
  z-index: 10;
}
.wife-pillow-people-wrapper .wife-pillow-platform-logo {
  max-height: 24px;
  object-fit: contain;
}
.wife-pillow-people-wrapper .wife-pillow-review-text {
  font-size: 18px;
  line-height: normal;
  color: #222222;
  margin-bottom: 32px;
  flex-grow: 1;
}
.wife-pillow-people-wrapper .wife-pillow-divider {
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.wife-pillow-people-wrapper .wife-pillow-divider span {
  width: 70px;
  height: 3px;
  background-color: var(--color-primary);
}
.wife-pillow-people-wrapper .wife-pillow-review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wife-pillow-people-wrapper .wife-pillow-reviewer-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.wife-pillow-people-wrapper .wife-pillow-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wife-pillow-people-wrapper .wife-pillow-reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  line-height: var(--line-height-100);
  margin: 0;
}
/* Folded Corner Effect */
.wife-pillow-people-wrapper .wife-pillow-card-fold {
  display: none;
}
/* People CaN not stop section End ---------------------------------------------------- */

/* Founder’s Statement Section Start ---------------------------------------------------- */
.wife-pillow-founder-statement-wrapper {
  padding-block: 100px 212px;
  background-image: url("./images/section-bg-4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wife-pillow-founder-statement-wrapper .wife-pillow-title-container {
  text-align: center;
  margin-bottom: 65px;
}
.wife-pillow-founder-statement-wrapper .wife-pillow-title-container h6 {
  font-weight: 600;
  font-size: 30px;
  line-height: var(--line-height-100);
  text-transform: uppercase;
  color: #222222;
}
.wife-pillow-founder-statement-wrapper .wife-pillow-title-container h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 90px;
  text-transform: uppercase;
  color: #222222;
}
.wife-pillow-founder-statement-wrapper .wife-pillow-founder-statement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-image-container {
  max-width: 522px;
  width: 100%;
  height: 562px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-image-container
  .wife-pillow-founder-statement-image-border {
  max-width: 480px;
  width: 100%;
  height: 525px;
  border: 5px dashed #d79dca;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-3.85deg);
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-image-container
  .wife-pillow-founder-statement-image {
  max-width: 402px;
  width: 100%;
  height: 426px;
  border-radius: 12px;
  overflow: hidden;
  transform: rotate(3.85deg);
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-text {
  max-width: 1197px;
  width: 100%;
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-text
  span {
  width: 67px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.wife-pillow-founder-statement-wrapper
  .wife-pillow-founder-statement-content
  .wife-pillow-founder-statement-text
  p {
  font-weight: 400;
  font-size: 32px;
  color: #222222;
  max-width: 950px;
  width: 100%;
}
/* Founder’s Statement Section End ---------------------------------------------------- */

/* We Are section start ---------------------------------------------------- */
.wife-pillow-we-are-wrapper {
  margin-top: -136px;
  padding-bottom: 100px;
}
.wife-pillow-we-are-wrapper .wife-pillow-title-container {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.wife-pillow-we-are-wrapper .wife-pillow-title-container h6 {
  font-weight: 700;
  font-size: 48px;
  line-height: var(--line-height-100);
  text-transform: uppercase;
  color: #333333;
  text-align: center;
}
.wife-pillow-we-are-wrapper .wife-pillow-title-container span {
  width: 96px;
  height: 5px;
  background-color: var(--color-accent-warning);
  display: block;
  text-align: center;
}
.wife-pillow-we-are-wrapper .wife-pillow-image-container {
  width: 100%;
  border-radius: 20px;
  padding: 50px 44px;
  background-color: var(--color-neutral-100);
  box-shadow: 0px 0px 40px 0px #0000001a;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-list:last-child {
  display: none;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-divider {
  width: 100%;
  height: 1px;
  background-color: #ededed;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-item {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.wife-pillow-we-are-wrapper .wife-pillow-we-are-row:last-child {
  justify-content: space-evenly;
}
/* We Are section end ---------------------------------------------------- */

/* The Ocean Cleanup Section start ---------------------------------------------------- */
.wife-pillow-the-ocean-cleanup-wrapper {
  padding-block: 0 40px;
  background-color: var(--color-neutral-100);
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-logo {
  max-width: 348px;
  height: 135px;
  width: 100%;
  padding: 10px;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-bottom: 40px;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid-item {
  flex: 0 1 auto;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid-item {
  width: 100%;
  height: 323px;
  border-radius: 24px;
  overflow: hidden;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-large-image {
  max-width: 834px;
  width: 100%;
  height: 470px;
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
}
.wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The Ocean Cleanup Section end ---------------------------------------------------- */

/* Responsive Design ---------------------------------------------------- */
@media screen and (max-width: 1650px) {
  /* Hero Section Start ---------------------------------------------------- */
  .wife-pillow-hero-section .wife-pillow-struggling-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    justify-content: flex-start;
    padding-bottom: 10px;
    background-color: transparent;
  }
  /* Hero Section End ---------------------------------------------------- */

  /* A Pillow Made Just For You Start -------------------------------------- */
  /* Left Side */
  .wife-pillow-made-wrapper .wife-pillow-made-left {
    max-width: 600px;
  }
  /* A Pillow Made Just For You End -------------------------------------- */
}

@media screen and (max-width: 1440px) {
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-content {
    gap: 32px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left {
    max-width: 335px;
    height: 450px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right {
    max-width: 310px;
    height: 310px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
    font-size: 60px;
    line-height: 80px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image {
    max-width: 500px;
    height: 450px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point {
    max-width: 300px;
  }
  .wife-pillow-people-wrapper .wife-pillow-people-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 1280px) {
  /* Hero Section Start -------------------------------------- */
  .wife-pillow-hero-section .wife-pillow-struggling-wrapper {
    align-items: start;
    text-align: start;
    flex-wrap: nowrap;
    padding-left: 20px;
    padding-right: 0;
  }
  /* Hero Section End -------------------------------------- */

  /* A Pillow Made Just For You Start -------------------------------------- */
  .wife-pillow-made-wrapper .wife-pillow-made-inner {
    flex-direction: column;
    text-align: center;
  }
  .wife-pillow-made-right {
  }
  .wife-pillow-made-left p,
  .wife-pillow-made-left h2,
  .wife-pillow-made-left h5,
  .wife-pillow-made-left button {
    margin-inline: auto;
  }
  .wife-pillow-stars,
  .wife-pillow-google-logo {
    justify-content: center;
  }
  /* A Pillow Made Just For You End -------------------------------------- */

  .wife-pillow-benifit-wrapper .wife-pillow-benifit-grid {
    gap: 30px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image {
    width: 450px;
    height: 400px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point {
    max-width: 250px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-finally-point
    h5 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-finally-point
    p {
    font-size: 18px;
  }

  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point:nth-of-type(1) {
    top: 75px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point:nth-of-type(2) {
    top: 220px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point:nth-of-type(4) {
    top: 220px;
  }
  .wife-pillow-finally-pillow
    .wife-pillow-finally-pillow-content
    .wife-pillow-image
    .wife-pillow-finally-point:nth-of-type(5) {
    top: 75px;
  }

  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-content {
    /* gap: 24px; */
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left {
    max-width: 280px;
    height: 380px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right {
    max-width: 275px;
    height: 275px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side p {
    font-size: 20px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta button {
    font-size: 20px;
  }
}

@media screen and (max-width: 992px) {
  /* Hero Section Start ---------------------------------------------------- */
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-content-wrapper {
    flex-direction: column;
    align-items: start;
    padding-left: 20px;
    gap: 40px;
  }
  .wife-pillow-hero-section .wife-pillow-container .wife-pillow-hero-text-side {
    max-width: 100%;
    text-align: start;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-text-side
    .wife-pillow-hero-text
    br {
    display: none;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-video-wrapper {
    border-radius: 0 0 0 30px;
    height: auto;
    aspect-ratio: 16/9;
  }
  /* Hero Section End ---------------------------------------------------- */

  /* Wife Pillow Details Section Start */
  .wife-pillow-details-wrapper .wife-pillow-details-image-container {
    min-height: auto;
    height: auto;
    padding-block: 40px;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-details-image-container
    .wife-pillow-details-image
    img {
    height: auto;
    max-height: none;
  }
  /* Wife Pillow Details Section End */

  .wife-pillow-people-wrapper .wife-pillow-people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content {
    flex-direction: column;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-text
    span {
    margin-inline: auto;
  }

  .wife-pillow-benifit-wrapper .wife-pillow-benifit-item {
    flex-direction: column;
    gap: 20px;
  }

  .wife-pillow-finally-pillow .wife-pillow-finally-pillow-content {
    display: none;
  }
  .wife-pillow-finally-pillow .wife-pillow-finally-pillow-content-responsive {
    display: block;
  }
  .wife-pillow-finally-pillow-content-responsive
    .wife-pillow-finally-responsive-image {
    margin-block: 30px;
  }
  .wife-pillow-finally-responsive-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
  }
  .wife-pillow-finally-timeline-image {
    width: 50px;
    flex-shrink: 0;
  }
  .wife-pillow-finally-timeline-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .wife-pillow-finally-responsive-text {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 10px;
    text-align: left;
  }
  .wife-pillow-finally-responsive-item h5 {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 20px;
  }
  .wife-pillow-finally-responsive-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: var(--line-height-100);
    color: #555555;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-right {
    gap: 20px;
    text-align: left;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-image {
    width: 350px;
    height: 600px;
  }
  .wife-pillow-made-wrapper .wife-pillow-stars {
    justify-content: start;
  }
  .wife-pillow-made-wrapper .wife-pillow-google-logo {
    justify-content: start;
  }

  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-left,
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-right {
    display: none;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-res {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-img-res
    .wife-pillow-wake-up-img-left,
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-img-res
    .wife-pillow-wake-up-img-right {
    display: block;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-img-res
    .wife-pillow-wake-up-img-right {
    margin-top: 20px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side {
    max-width: 100%;
  }

  .wife-pillow-details-wrapper .wife-pillow-details-image-container {
    padding-block: 0;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-row {
    flex-direction: column-reverse;
    align-items: start;
    gap: 30px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-row.wife-pillow-reverse {
    flex-direction: column;
  }
  .wife-pillow-product-details .wife-pillow-product-content {
    flex-direction: column-reverse;
  }
  .wife-pillow-product-faq-wrapper
    .wife-pillow-faq-content
    .wife-pillow-left-content {
    /* display: none; */
  }
}

@media screen and (max-width: 768px) {
  /* Hero Section Start ---------------------------------------------------- */
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container {
    gap: 6px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item {
    max-width: 160px;
    width: 160px;
    height: 112px;
    gap: 12px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item
    .wife-pillow-icon-circle {
    width: 50px;
    height: 50px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item
    .wife-pillow-icon-circle
    img {
    min-width: 50px;
    min-height: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item
    .wife-pillow-icon-circle
    img {
    width: 50%;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item
    span {
    font-size: 14px;
    text-align: center;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-text-side
    .wife-pillow-hero-text {
    font-size: 50px;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-text-side
    .wife-pillow-hero-heading {
    font-size: 28px;
  }
  /* Hero Section End ---------------------------------------------------- */

  .wife-pillow-people-wrapper .wife-pillow-people-header h6 {
    font-size: 50px;
    line-height: 60px;
  }
  .wife-pillow-people-wrapper .wife-pillow-people-header h2 {
    font-size: 70px;
  }

  .wife-pillow-people-wrapper .wife-pillow-people-grid {
    grid-template-columns: 1fr;
  }

  .wife-pillow-founder-statement-wrapper .wife-pillow-title-container h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid {
    gap: 6px;
    margin-bottom: 10px;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-logo {
    max-width: 250px;
    height: auto;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid-item {
    height: 150px;
    border-radius: 12px;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-large-image {
    max-width: 600px;
    height: 300px;
    border-radius: 10px;
  }

  .wife-pillow-we-are-wrapper .wife-pillow-image-container {
    padding: 16px;
    border-radius: 10px;
  }
  .wife-pillow-we-are-wrapper
    .wife-pillow-we-are-list
    .wife-pillow-we-are-divider {
    margin-block: 12px;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-we-are-list:first-child {
    display: none;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-we-are-list:last-child {
    display: block;
  }

  .wife-pillow-benifit-wrapper .wife-pillow-benifit-grid {
    grid-template-columns: 1fr;
  }

  .wife-pillow-tab-content-wrapper
    .wife-pillow-tab-panel
    .wife-pillow-tab-content
    h2 {
    font-size: 16px;
    line-height: var(--line-height-100);
    margin-bottom: 20px;
  }
  .wife-pillow-tab-content-wrapper
    .wife-pillow-tab-panel
    .wife-pillow-tab-content
    p {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .wife-pillow-tab-content-wrapper
    .wife-pillow-tab-panel
    .wife-pillow-tab-content-description {
    margin-top: 20px;
    font-size: 14px;
  }
  .wife-pillow-tab-content-wrapper
    .wife-pillow-tab-panel
    .wife-pillow-order-now
    button {
    flex-grow: 1;
    min-width: 302px;
    padding: 12px 20px;
    font-size: 12px;
    text-wrap: wrap;
  }
  .wife-pillow-tab-content-wrapper .wife-pillow-logos .wife-pillow-logo-item {
    width: 64px;
    height: 64px;
  }

  .wife-pillow-made-wrapper {
    margin-top: 40px;
    padding-top: 60px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left {
    max-width: 100%;
    text-align: left;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left h2 {
    font-size: 44px;
    line-height: 48px;
    margin-bottom: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left button {
    font-size: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left button svg {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-testimonial h3 {
    font-size: 30px;
  }
  .wife-pillow-made-wrapper .wife-pillow-stars {
    margin-bottom: 40px;
  }
  .wife-pillow-made-wrapper .wife-pillow-stars svg {
    max-width: 250px;
  }
  .wife-pillow-made-wrapper .wife-pillow-quote-text {
    font-size: 20px;
  }

  .wife-pillow-social-proof-wrapper {
    padding-block: 60px;
  }
  .wife-pillow-social-proof-wrapper
    .wife-pillow-videos.wife-pillow-container-1800 {
    padding-inline: 0;
  }
  .wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper {
    margin-top: 60px;
  }
  .wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper::before,
  .wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper::after {
    z-index: 11;
    width: 100px;
    background-position: right;
  }

  .wife-pillow-testimonial-wrapper .wife-pillow-title h2 {
    font-size: 50px;
    line-height: 60px;
    padding-inline: 20px;
  }

  .wife-pillow-benifit-wrapper .wife-pillow-title h2 {
    font-size: 50px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-cards {
    grid-template-columns: 1fr;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
    font-size: 60px;
    line-height: 70px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side p {
    font-size: 20px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta button {
    font-size: 20px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-video {
    height: 400px;
    margin-top: 60px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-img-res
    .wife-pillow-wake-up-img-left {
    width: 180px;
    height: 227px;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-img-res
    .wife-pillow-wake-up-img-right {
    width: 168px;
    height: 168px;
  }

  .wife-pillow-finally-pillow .wife-pillow-title-container h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .wife-pillow-product-faq-wrapper
    .wife-pillow-faq-content
    .wife-pillow-left-content {
    display: none;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-cta {
    display: none;
  }
  .wife-pillow-product-faq-wrapper::after {
    background-size: contain;
    height: 280px;
    background-position: bottom;
  }
  .wife-pillow-product-details .wife-pillow-product-title h2,
  .wife-pillow-product-faq-wrapper .wife-pillow-title h2 {
    font-size: 50px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-title {
    margin-bottom: 60px;
  }
  .wife-pillow-product-details .wife-pillow-product-content {
    padding-top: 0;
  }
  .wife-pillow-details-wrapper .wife-pillow-first-row {
    grid-template-columns: 1fr;
    border-bottom: none;
    padding-bottom: 0;
    padding-inline: 10px;
  }
  .wife-pillow-details-wrapper .wife-pillow-second-row {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-inline: 10px;
  }
  .wife-pillow-details-wrapper .wife-pillow-spec-item {
    padding-inline: 10px;
  }
  .wife-pillow-details-wrapper .wife-pillow-specs-table .wife-pillow-spec-item {
    border-bottom: 1px solid #d8cad3;
    display: flex;
    border-right: none;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-specs-table
    .wife-pillow-spec-item
    strong {
    padding-block: 16px;
    border-right: 1px solid #d8cad3;
    min-width: 220px;
    width: 220px;
    margin-bottom: 0;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-specs-table
    .wife-pillow-spec-item
    .manufacturer-name {
    padding: 16px 10px 16px 20px;
    flex-grow: 1;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-specs-table
    .wife-pillow-second-row
    .wife-pillow-spec-item:last-child {
    border-bottom: none;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-container-1800 {
    position: relative;
    z-index: 20;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-container-1800::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("./images/image-4-bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

@media screen and (max-width: 500px) {
  .wife-pillow-play-btn {
    min-width: 64px;
    width: 64px;
    height: 64px;
  }

  /* Hero Section Start ---------------------------------------------------- */
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-content-wrapper {
    gap: 20px;
    margin-bottom: 40px;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-text-side
    .wife-pillow-hero-heading {
    font-size: 20px;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-text-side
    .wife-pillow-hero-text {
    font-size: 40px;
    max-width: 350px;
  }
  .wife-pillow-hero-section .wife-pillow-struggling-wrapper {
    gap: 20px;
  }
  .wife-pillow-hero-section
    .wife-pillow-container
    .wife-pillow-hero-video-wrapper {
    height: 190px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .struggling-text
    h3 {
    font-size: 24px;
  }
  .wife-pillow-hero-section .wife-pillow-struggling-wrapper .struggling-text p {
    font-size: 14px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container {
    gap: 10px;
  }
  .wife-pillow-hero-section
    .wife-pillow-struggling-wrapper
    .wife-pillow-pain-points-container
    .wife-pillow-pain-point-item {
    min-width: 92px;
    max-width: 92px;
    height: 114px;
  }
  /* Hero Section End ---------------------------------------------------- */

  .wife-pillow-people-wrapper {
    padding-bottom: 0;
  }
  .wife-pillow-people-wrapper .wife-pillow-people-header h6 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .wife-pillow-people-wrapper .wife-pillow-people-header h2 {
    font-size: 44px;
    line-height: 36px;
  }
  .wife-pillow-people-wrapper .wife-pillow-tabs {
    margin-block: 30px;
    width: 100%;
    overflow-x: auto;
  }
  .wife-pillow-people-wrapper .wife-pillow-people-tab {
    padding-block: 12px;
  }

  .wife-pillow-founder-statement-wrapper .wife-pillow-title-container {
    margin-bottom: 30px;
  }
  .wife-pillow-founder-statement-wrapper .wife-pillow-title-container h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .wife-pillow-founder-statement-wrapper .wife-pillow-title-container h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content {
    gap: 35px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-image-container {
    max-width: 327px;
    height: 353px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-image-container
    .wife-pillow-founder-statement-image-border {
    max-width: 301px;
    height: 329px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-image-container
    .wife-pillow-founder-statement-image {
    max-width: 252px;
    height: 267px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-image-container
    .wife-pillow-founder-statement-image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-text
    span
    svg {
    width: 60px;
    height: 50px;
  }
  .wife-pillow-founder-statement-wrapper
    .wife-pillow-founder-statement-content
    .wife-pillow-founder-statement-text
    p {
    font-size: 22px;
  }

  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-container-1800 {
    padding-inline: 10px;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-logo {
    max-width: 122px;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-grid-item {
    height: 76px;
    border-radius: 10px;
  }
  .wife-pillow-the-ocean-cleanup-wrapper .wife-pillow-large-image {
    max-width: 300px;
    height: 169px;
    border-radius: 5px;
  }

  .wife-pillow-we-are-wrapper {
    padding-bottom: 60px;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-title-container {
    gap: 15px;
    margin-bottom: 20px;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-title-container h6 {
    font-size: 32px;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-title-container span {
    width: 70px;
  }
  .wife-pillow-we-are-wrapper .wife-pillow-we-are-item {
    scale: 0.7;
  }

  .wife-pillow-tab-content-wrapper
    .wife-pillow-content-details
    .wife-pillow-content-details-item
    p {
    font-size: 14px;
  }
  .wife-pillow-tab-content-wrapper .wife-pillow-content-details {
    gap: 24px;
  }
  .wife-pillow-tab-content-wrapper
    .wife-pillow-content-details
    .wife-pillow-content-details-item
    h2 {
    font-size: 24px;
    line-height: 30px;
    margin-block: 30px -4px;
  }

  .wife-pillow-made-wrapper {
    padding-bottom: 30px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-inner {
    gap: 30px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-right {
    align-items: start;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left h5 {
    font-size: 16px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left p {
    font-size: 14px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-left button {
    font-size: 16px;
    border-radius: 10px;
    padding-block: 16px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-image {
    width: 150px;
    height: 242px;
  }
  .wife-pillow-made-wrapper .wife-pillow-quote-icon {
    margin-bottom: 16px;
  }
  .wife-pillow-made-wrapper .wife-pillow-quote-icon svg {
    width: 37px;
    height: 24px;
  }
  .wife-pillow-made-wrapper .wife-pillow-made-testimonial h3 {
    font-size: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-stars {
    margin-bottom: 18px;
  }
  .wife-pillow-made-wrapper .wife-pillow-stars svg {
    width: 125px;
    height: 20px;
  }
  .wife-pillow-made-wrapper .wife-pillow-quote-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .wife-pillow-social-proof-wrapper .wife-pillow-social-proof-title h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .wife-pillow-social-proof-wrapper .wife-pillow-social-proof-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-social-proof-wrapper .wife-pillow-video-wrapper {
    margin-top: 30px;
  }
  .wife-pillow-social-proof-wrapper
    .wife-pillow-video-card.wife-pillow-active-center {
    flex: 0 0 326px;
    height: 474px;
  }

  .wife-pillow-testimonial-wrapper {
    padding-block: 60px;
  }
  .wife-pillow-testimonial-wrapper .wife-pillow-title h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }
  .wife-pillow-testimonial-wrapper .wife-pillow-marquee-container {
    gap: 20px;
  }
  .wife-pillow-testimonial-wrapper .wife-pillow-marquee-track {
    gap: 10px;
  }

  .wife-pillow-benifit-wrapper {
    padding-block: 60px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-title {
    margin-bottom: 30px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-title h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-image {
    margin-bottom: 30px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-grid {
    margin-top: 0;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-icon {
    width: 90px;
    height: 90px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-content h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-content p {
    font-size: 14px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-benifit-grid {
    gap: 35px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-shop-now-btn svg {
    width: 28px;
    height: 28px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-shop-now-btn {
    padding: 16px 30px;
    font-size: 14px;
  }
  .wife-pillow-benifit-wrapper
    .wife-pillow-feature-card:first-child
    .wife-pillow-feature-card-icon {
    margin-bottom: 0px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card h4,
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card p {
    font-size: 23px;
    line-height: 42px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card:first-child .highlight,
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card .highlight {
    font-size: 38px;
    line-height: 42px;
    margin-block: 0;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-cards {
    gap: 10px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card {
    padding: 0px;
    min-height: 227px;
    max-height: 227px;
    height: 100%;
    border-radius: 10px;
  }
  .wife-pillow-benifit-wrapper .wife-pillow-feature-card-icon {
    scale: 0.7;
    margin-bottom: 0;
  }

  .wife-pillow-wake-up-wrapper {
    padding-block: 40px 0;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-img-res {
    margin-bottom: 40px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-text-side p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-cta button {
    padding: 12px 20px;
    font-size: 18px;
  }
  .wife-pillow-wake-up-wrapper .wife-pillow-wake-up-video {
    height: 160px;
    margin-top: 40px;
  }
  .wife-pillow-finally-pillow .wife-pillow-title-container h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-finally-pillow .wife-pillow-title-container h6 {
    margin-block: 30px;
    font-size: 18px;
  }
  .wife-pillow-finally-pillow .wife-pillow-title-container p {
    font-size: 14px;
    line-height: normal;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-video
    .wife-pillow-play-btn {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .wife-pillow-wake-up-wrapper
    .wife-pillow-wake-up-video
    .wife-pillow-play-btn
    svg {
    width: 40px;
    height: 40px;
  }
  .wife-pillow-finally-pillow-content-responsive
    .wife-pillow-finally-responsive-image {
    max-width: 400px;
  }
  .wife-pillow-finally-pillow-content-responsive
    .wife-pillow-finally-responsive-image
    img {
    width: 100%;
  }

  .wife-pillow-finally-responsive-row {
    gap: 10px;
  }
  .wife-pillow-finally-responsive-item h5 {
    line-height: 25px;
  }
  .wife-pillow-finally-responsive-text {
    padding-block: 0;
    gap: 30px;
  }

  .wife-pillow-details-wrapper .wife-pillow-details-grid {
    gap: 32px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-image-container {
    padding-top: 0;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-img {
    width: 190px;
    height: 150px;
    border-radius: 50% 6px 6px 6px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-row {
    gap: 20px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-text p {
    font-size: 14px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-text ul li {
    font-size: 14px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-full-text ul li {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-full-text ul li:last-child {
    margin-bottom: 14px;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-specs-table
    .wife-pillow-spec-item
    strong {
    min-width: 150px;
    width: 150px;
    font-size: 14px;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-specs-table
    .wife-pillow-spec-item
    .manufacturer-name {
    font-size: 14px;
  }
  .wife-pillow-details-wrapper .wife-pillow-details-content {
    padding-block: 34px 80px;
  }
  .wife-pillow-product-details .wife-pillow-product-title {
    margin-bottom: 30px;
  }
  .wife-pillow-product-details .wife-pillow-product-title h6 {
    font-size: 16px;
  }
  .wife-pillow-product-details .wife-pillow-product-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-product-details .wife-pillow-product-content {
    gap: 30px;
  }
  .wife-pillow-product-details
    .wife-pillow-product-content
    .wife-pillow-right-content {
    border-radius: 10px;
    height: 495px;
  }
  .wife-pillow-product-details
    .wife-pillow-product-content
    .wife-pillow-left-content
    .wife-pillow-product-desc-item
    h3 {
    font-size: 14px;
    line-height: var(--line-height-100);
  }
  .wife-pillow-product-details
    .wife-pillow-product-content
    .wife-pillow-left-content
    .wife-pillow-product-desc-item
    p {
    font-size: 14px;
  }
  .wife-pillow-product-details
    .wife-pillow-product-content
    .wife-pillow-left-content
    .wife-pillow-product-desc-item {
    margin-bottom: 30px;
  }
  .wife-pillow-product-faq-wrapper {
    padding-bottom: 175px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-title {
    margin-bottom: 30px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-question {
    gap: 10px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-question span {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-header {
    padding-block: 16px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-header h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-arrow svg {
    width: 14px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-answer {
    padding-left: 34px;
    padding-block: 4px 16px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-answer p {
    font-size: 14px;
    line-height: 18px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-mission {
    padding-block: 50px 30px;
  }
  .wife-pillow-product-faq-wrapper .wife-pillow-faq-mission p {
    font-size: 20px;
    line-height: 27px;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-details-image-container
    .wife-pillow-details-image
    img:first-child {
    display: none;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-details-image-container
    .wife-pillow-details-image
    img:last-child {
    display: block;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-details-image-container
    .wife-pillow-details-image {
    position: relative;
    background-color: #fbf3f8;
    z-index: 20;
  }
  .wife-pillow-details-wrapper
    .wife-pillow-details-image-container
    .wife-pillow-details-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./images/faq-bg.png");
    width: 100%;
    height: 280px;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    scale: -1;
    z-index: -1;
  }
}

@media screen and (max-width: 435px) {
  .wife-pillow-people-wrapper .wife-pillow-review-card::before {
    inset: -10px;
  }
}
