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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

input:focus {
  outline: none;
}

input,
button {
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-secondary);
}

:root {

  --clr-primary-400: #1f1c1d;
  --clr-primary-500: #2f5a62;
  --clr-primary-600: #bbd1c9;
  --clr-primary-700: #f3e9e2;
  --clr-primary-800: #d1cdca;
  --clr-primary-900: #c6a462;

  --clr-neutral-400: #767676;

  --ff-primary: 'Poppins', san-serif;
  --ff-secondary: 'Lora', serif;

}

body {
  min-height: 100vh;
  min-width: 100%;
  font-family: var(--ff-primary);
  background-color: #fff;
  color: var(--clr-primary-400);
}

/* ======> Layout <====== */
.header-container {
  width: 85%;
  margin: 0 auto;
  max-width: 80rem;
}
.container {
  width: 95%;
  margin: 0 auto;
  max-width: 85rem;
}
/* ======> Layout <====== */

/* ======> Utility <====== */
.btn {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .3rem;
  padding: .5em 1.5em;
  border-radius: .7rem;
  background-color: var(--clr-primary-500);
  transition: background .3s ease-in-out;
}

.btn:hover,
.btn:focus {
  color: var(--clr-primary-500);
  background-color: #ffffff;
}

@media only screen and (min-width: 48em) {
  .btn {
    font-size: 1.375rem;
    padding: .5em 1.2em;
  }
}

.prod-head {
  font-size: 1.5rem;
}

@media only screen and (min-width: 62em) {
  .prod-head {
    font-size: 2.25rem;
  }
}

.prod-body {
  font-size: 1rem;
  font-weight: 300;
}

@media only screen and (min-width: 62em) {
  .prod-body {
    font-size: 1.375rem;
  }
}

.link {
  display: inline-block;
  color: var(--clr-primary-500);
  font-weight: 500;
  text-decoration: underline;
}

.link:hover,
.link:focus {
  opacity: 75%;
}

@media only screen and (min-width: 62em) {
  .link {
    font-size: 1.375rem;
  }
}

/* ======> Utility <====== */

header {
  padding: .5em 0;
  box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.09);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}

@media only screen and (min-width: 62em) {
  header {
    padding: 1.5em 0;
  }
}

.header-top {
  position: relative;
}

.header-top .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top__nav-left,
.header-top__nav-right {
  display: none;
}

@media only screen and (min-width: 62em) {
  .header-top__nav-left,
  .header-top__nav-right {
    display: flex;
    align-items: center;
  }
  .header-top__nav-left a,
  .header-top__nav-right a {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color: var(--clr-primary-400);
  }
  .header-top__nav-left a:hover,
  .header-top__nav-left a:focus,
  .header-top__nav-right a:hover,
  .header-top__nav-right a:focus {
    color: var(--clr-primary-900);
  }
  .header-top__nav-left {
    gap: 3em;
  }
  .header-top__nav-right {
    gap: .5em;
    margin-right: 2em;
  }
}

.header-top__hamburger,
.header-top__cart {
  font-size: 1.5rem;
  cursor: pointer;
}

.header-top__chevron {
  margin-left: .5em;
}

.header-top__login-cart {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .header-top__hamburger {
    display: none;
  }
}

.header-top__img {
  width: 9rem;
}

@media only screen and (min-width: 62em) {
  .header-top__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.header-btm {
  margin-top: 1em;
}

@media only screen and (min-width: 62em) {
  .header-btm {
    display: none;
  }
}

.header-btm nav {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  overflow-x: scroll;
  scrollbar-width: none;
}

.header-btm__link {
  color: var(--clr-primary-400);
  white-space: nowrap;
}

.hero {
  height: 21rem;
  width: 100vw;
  background-image: url('/img/beige-wave.png'), url('/img/hero-mobile.jpg');
  background-size: 70rem, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom, center;
}

@media only screen and (min-width: 48em) {
  .hero {
    height: 50rem;
    background-image: url('/img/green-wave.png'), url('/img/hero-tablet.jpg');
    background-size: 120rem, cover;
  }
}

@media only screen and (min-width: 62em) {
  .hero {
    background-image: url('/img/green-wave.png'), url('/img/hero-desktop.jpg');
    background-size: 180rem, cover;
  }
}

.hero {
  padding: 2em 0;
  text-align: right;
}

@media only screen and (min-width: 62em) {
  .hero {
    padding-top: 3em;
  }
}

.hero .container {
  width: 85%;
  margin: 0 auto;
  max-width: 80rem;
}

.hero__heading {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.1;
  display: none;
}

@media only screen and (min-width: 48em) {
  .hero__heading {
    display: block;
  }
}

@media only screen and (min-width: 62em) {
  .hero__heading {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.hero__body {
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.1;
  margin-top: .6em;
  display: none;
}

@media only screen and (min-width: 48em) {
  .hero__body {
    display: block;
  }
}

@media only screen and (min-width: 62em) {
  .hero__body {
    font-size: 2rem;
    line-height: 1.1;
  }
}

.hero .btn {
  margin-top: .75em;
  display: none;
}

@media only screen and (min-width: 48em) {
  .hero .btn {
    display: inline-block;
  }
}

@media only screen and (min-width: 62em) {
  .hero .btn {
    margin-top: 1.2em;
  }
}

.sub-mobile-hero {
  background-image: url('/img/green-wave.png');
  background-size: 70rem;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: var(--clr-primary-700);
  text-align: center;
  padding-bottom: 9em;
}

@media only screen and (min-width: 48em) {
  .sub-mobile-hero {
    display: none;
  }
}

.sub-mobile-hero__heading {
  font-size: 28px;
  line-height: 1.1;
}

.sub-mobile-hero__body {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  margin-top: .6em;
}

.sub-mobile-hero .btn {
  margin-top: 1em;
}

.social-proof {
  background-color: var(--clr-primary-600);
  background-image: url('/img/beige-wave.png');
  background-size: 70rem;
  background-repeat: no-repeat;
  background-position: bottom;
  text-align: center;
  padding-bottom: 9em;
}

@media only screen and (min-width: 48em) {
  .social-proof {
    background-size: 120rem;
    padding-bottom: 13em;
  }
}

@media only screen and (min-width: 62em) {
  .social-proof {
    background-size: 180rem;
    padding-bottom: 21em;
  }
}

.social-proof__heading {
  font-size: 1.5rem;
  color: var(--clr-primary-500);
}

@media only screen and (min-width: 48em) {
  .social-proof__heading {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 62em) {
  .social-proof__heading {
    font-size: 2.25rem;
  }
}

.social-proof__images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  overflow-x: scroll;
  scrollbar-width: none;
  margin-top: 2em;
}

@media only screen and (min-width: 62em) {
  .social-proof__images {
    gap: 4em;
    margin-top: 4.5em;
  }
}

.tushy-bidet {
  background-color: var(--clr-primary-700);
}

.tushy-bidet .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-bidet .container {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 7em;
  }
}

.tushy-product__image {
  width: 21rem;
}

@media only screen and (min-width: 62em) {
  .tushy-product__image {
    width: 24rem;
  }
}

.tushy-product__text {
  text-align: center;
}

@media only screen and (min-width: 62em) {
  .tushy-product__text {
    width: 55%;
    text-align: unset;
  }
}

.tushy-product__body {
  margin-top: 1em;
}

.tushy-product__btn-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-product__btn-link {
    flex-direction: row;
    gap: 2em;
  }
}

.tushy-product__text .btn {
  margin-top: 1em;
}

.tushy-product__btn-link .link {
  margin-top: 1em;
}

.tushy-ottoman {
  background-color: var(--clr-primary-700);
  padding-top: 4.5em;
}

.tushy-ottoman .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-ottoman .container {
    flex-direction: row;
    justify-content: flex-end;
    gap: 7em;
  }
}

.tushy-travel {
  background-color: var(--clr-primary-700);
  padding-top: 4.5em;
}

.tushy-travel .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-travel .container {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 7em;
  }
}

.tushy-bamboo-tp {
  background-color: var(--clr-primary-700);
  padding-top: 4.5em;
}

.tushy-bamboo-tp .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-bamboo-tp .container {
    flex-direction: row;
    justify-content: flex-end;
    gap: 7em;
  }
}

.tushy-bamboo-towel {
  background-color: var(--clr-primary-700);
  background-image: url('/img/white-wave.png');
  background-size: 70rem;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 4.5em 0 9em;
}

@media only screen and (min-width: 48em) {
  .tushy-bamboo-towel {
    background-size: 120rem;
    padding-bottom: 13rem;
  }
}

@media only screen and (min-width: 62em) {
  .tushy-bamboo-towel {
    background-size: 180rem;
    padding-bottom: 21rem;
  }
}

.tushy-bamboo-towel .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 62em) {
  .tushy-bamboo-towel .container {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 7em;
  }
}

.bestsellers {
  background-color: #ffffff;
  background-image: url('/img/green-wave.png');
  background-size: 70rem;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 9em;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .bestsellers {
    background-size: 120rem;
    padding-bottom: 13em;
  }
}

@media only screen and (min-width: 62em) {
  .bestsellers {
    background-size: 180rem;
    padding-bottom: 21em;
  }
}

.bestsellers__heading {
  font-family: var(--ff-primary);
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

@media only screen and (min-width: 62em) {
  .bestsellers__heading {
    font-size: 1.625rem;
  }
}

.bestsellers__products {
  display: flex;
  flex-direction: column;
  gap: 2.7em;
  margin-top: 2.1em;
}

@media only screen and (min-width: 62em) {
  .bestsellers__products {
    flex-direction: row;
    justify-content: center;
    gap: 7.2em;
  }
}

.bestsellers__title {
  font-family: var(--ff-primary);
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bestsellers__description {
  text-transform: capitalize;
  font-weight: 300;
}

@media only screen and (min-width: 62em) {
  .bestsellers__description {
    font-size: 1.375rem;
  }
}

.bestsellers .btn {
  margin-top: .75em;
}

.reviews {
  background-color: var(--clr-primary-600);
  background-image: url('/img/white-wave.png');
  background-size: 70rem;
  background-position: bottom;
  background-repeat: no-repeat;
  padding:3em 0 9em;
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .reviews {
    background-size: 120rem;
    padding-bottom: 13em;
  }
}

@media only screen and (min-width: 62em) {
  .reviews {
    background-size: 180rem;
    padding-bottom: 21em;
  }
}

.reviews__customers {
  display: flex;
  justify-content: space-between;
  gap: 7em;
  overflow-x: scroll;
  scrollbar-width: none;
}

.reviews__reviewer {
  min-width: 21rem;
  height: 21rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  padding: 2.7em;
  color: #fff;
  background-color: var(--clr-primary-800);
  background-blend-mode: multiply;
}

.caleb {
  background-image: url('/img/caleb.gif');
  background-size: cover;
}
.matt {
  background-image: url('/img/matt.gif');
  background-size: cover;
}
.michelle {
  background-image: url('/img/michelle.gif');
  background-size: cover;
}
.ralph {
  background-image: url('/img/ralph.gif');
  background-size: cover;
}
.lottie {
  background-image: url('/img/lottie.gif');
  background-size: cover;
}

.reviews__quote {
  font-size: 2rem;
}

.reviews__name {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: .6em;
}

.ellipsis {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-top: 4.5em;
}

@media only screen and (min-width: 62em) {
  .ellipsis {
    margin-top: 9em;
  }
}

.dot {
  background-color: #000;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  cursor: pointer;
}

.selected {
  background-color: var(--clr-primary-00);
  border: .125rem solid #000;
}

.reviews .btn {
  margin-top: 3em;
}

.misc {
  background-color: var(--clr-primary-300);
  background-image: url('/img/gray-wave.png');
  background-size: 70rem;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 9em;
}

@media only screen and (min-width: 48em) {
  .misc {
    background-size: 120rem;
    padding-bottom: 13em;
  }
}

@media only screen and (min-width: 62em) {
  .misc {
    background-size: 180rem;
    padding-bottom: 21em;
  }
}

.misc .container {
  display: flex;
  flex-direction: column;
  gap: 4.5em;
}

@media only screen and (min-width: 62em) {
  .misc .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.misc-item {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  gap: 1em;
}

.misc-item__heading {
  color: var(--clr-primary-500);
  font-size: 1.375rem;
  font-family: var(--ff-primary);
  font-weight: 600;
}

.guaranteed {
  background-color: var(--clr-primary-800);
  text-align: center;
  background-image: url('/img/beige-wave.png');
  background-size: 70rem;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 9em;
}

@media only screen and (min-width: 48em) {
  .guaranteed {
    background-size: 120rem;
    padding-bottom: 13em;
  }
}

@media only screen and (min-width: 62em) {
  .guaranteed {
    background-size: 180rem;
    padding-bottom: 21em;
  }
}

.guaranteed__body {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--clr-neutral-400);
}

@media only screen and (min-width: 48em) {
  .guaranteed__body {
    font-size: 1.2rem;
    max-width: 70%;
    margin: 0 auto;
  }  
}

.socials {
  background-color: var(--clr-primary-700);
  text-align: center;
  padding-bottom: 1.8em;
}

@media only screen and (min-width: 48em) {
  .socials {
    padding-bottom: 3em;
  }
}

.socials__heading {
  font-size: 1.2rem;
}

@media only screen and (min-width: 48em) {
  .socials__heading {
    font-size: 2rem;
  }
}

.socials__icons {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

@media only screen and (min-width: 62em) {
  .socials__icons {
    margin-top: 2.4em;
  }
}

.socials__icons i {
  color: var(--clr-primary-400);
  font-size: 2.7rem;
}

.socials__icons i:hover,
.socials__icons i:focus {
  opacity: 90%;
}

@media only screen and (min-width: 62em) {
  .socials__icons i {
    font-size: 3.6rem;
  }
}

.socials__list {
  margin-top: 1.5em;  
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media only screen and (min-width: 62em) {
  .socials__list {
    flex-direction: row;
    justify-content: center;
  }
}

.socials__list li a {
  color: var(--clr-primary-400);
}

.socials__list li a:hover,
.socials__list li a:focus {
  opacity: 75%;
}

.socials__reviewed-img {
  width: 4.5rem;
  margin-top: 2em;
}

.contact-us {
  background-color: var(--clr-primary-500);
  text-align: center;
  padding: 1.5em 0;
}

.contact-us__text {
  color: #fff;
  font-weight: 500;
}

.contact-us__text:hover,
.contact-us__text:focus {
  color: var(--clr-primary-900);
}