:root {
  --beige: #ede8da;
  --beige-dark: #e5ceb4;
  --red-light: #ce3b54;
  --red: #bf224e;
  --red-dark: #9b1b40;
  --black: #393d3f;
  --gray-dark: #686b6d;
  --gray-light: #c5c7c8;
  --white: #f4f5f6;
}

body {
  background: #fff;
  font-family: "Libre Baskerville", serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

button.red {
  background: var(--red);
  color: var(--beige);
  border-radius: 20rem;
  padding: 0.8rem 2.5rem;
  font-family: "Bebas Neue";
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
button.red:hover {
  background: var(--red-light);
}
button.red:active, button.red:focus {
  background: var(--red-dark);
  outline: none;
}
button.beige {
  background: var(--beige);
  color: var(--red);
  border-radius: 20rem;
  padding: 0.5rem 1.5rem 0.3rem;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}
button.beige:hover {
  background: var(--beige-dark);
}
button.beige:active, button.beige:focus {
  background: var(--black);
  color: var(--beige);
  outline: none;
}

a.link {
  text-decoration: underline;
  cursor: pointer;
  font-family: "Bebas Neue";
  font-size: 1.4rem;
}
a.link:hover {
  color: var(--red-dark);
}

em {
  font-style: italic;
}

.container {
  display: flex;
  min-height: 100vh;
}
.container nav {
  flex: 0 0 auto;
  background: var(--black);
}
.container main {
  flex: 1;
  background: var(--white);
  overflow-x: hidden;
}

h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 4vw, 4rem);
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
h3 span {
  color: var(--gray-dark);
  font-family: "Libre Baskerville";
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  display: block;
  margin-top: 0.2rem;
}

h5 {
  font-size: clamp(1.8rem, 2.9vw, 3rem);
  font-family: "Bebas Neue";
  color: var(--beige-dark);
  line-height: 1;
}

.nav__hamburger-icon {
  cursor: pointer;
  border: 0.1rem solid var(--white);
  border-radius: 50%;
  margin: 0.4rem;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  padding: 0.9rem 0.4rem;
  transition: 0.3s ease-in-out;
}
.nav__hamburger-icon span {
  background: var(--white);
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  width: 90%;
  height: 0.1rem;
  display: block;
  transform-origin: bottom left;
  margin: auto;
}
.nav__hamburger-icon span:not(:first-child) {
  margin-top: 0.4rem;
}
.nav.is-open .nav__hamburger-icon {
  background: var(--white);
}
.nav.is-open .nav__hamburger-icon span {
  background: var(--black);
}
.nav.is-open .nav__hamburger-icon span:nth-child(1) {
  transform: translate(0.25rem, -0.2rem) rotate(45deg);
}
.nav.is-open .nav__hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__hamburger-icon span:nth-child(3) {
  transform: translate(0.3rem, 0.04rem) rotate(-45deg);
}

@media (min-width: 1024px) {
  .featured {
    display: flex;
  }
}
.featured__info {
  flex: 1;
  background: var(--beige);
  padding: 2.5rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .featured__info {
    order: 1;
    padding: 6rem 8rem 6rem 6rem;
  }
}
.featured__info .price {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 3vw, 3.5rem);
  color: var(--black);
}
.featured__info button {
  margin: 8% 1rem 0 0;
}
.featured__image {
  flex: 1.5;
  background: var(--red-dark);
  padding: 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .featured__image {
    order: 2;
    padding: 6rem;
  }
}
.featured__image h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 15vw, 10rem);
  color: var(--white);
  line-height: 0.9;
}
.featured__image h2 .small {
  font-size: clamp(2rem, 8vw, 5rem);
  display: block;
  margin-bottom: 0rem;
}
.featured__image img {
  width: 130%;
  left: -4rem;
  bottom: 1rem;
}
@media (min-width: 1024px) {
  .featured__image img {
    position: absolute;
  }
}

.options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 7%;
}
.options .color-picker {
  flex: 1;
  min-width: 10rem;
}
.options .color-picker__item {
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--color);
  display: inline-block;
  margin-right: 0.2rem;
  border: 0.3rem solid var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.options .color-picker__item:nth-child(1) {
  border-color: var(--black);
}
.options .price {
  flex: 0 0 auto;
}

.newsletter {
  padding: 5%;
  background: var(--red-light);
}
.newsletter p {
  margin-top: 2%;
  color: var(--beige);
}
.newsletter form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.5%;
}
.newsletter form input {
  flex: 1;
  font-size: 1.5rem;
  font-family: "Bebas Neue";
  padding: 0.6rem 1.5rem;
  border-radius: 10rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--beige);
  margin: 1rem 0.5rem;
}
.newsletter form input:focus {
  outline: none;
  background: var(--black);
}
.newsletter form input::placeholder {
  color: var(--beige);
}
.newsletter form button {
  flex: 0 0 auto;
  margin: 1rem 0.5rem;
}
@media (max-width: 750px) {
  .newsletter form {
    margin-top: 1.5rem;
  }
  .newsletter form input {
    margin: 0;
  }
  .newsletter form button {
    width: 100%;
  }
}
@media (min-width: 750px) {
  .newsletter {
    display: grid;
    grid-template-columns: 25% 1fr;
    align-items: center;
    padding: 2rem 4rem 3rem;
  }
  .newsletter form {
    margin: 0 0 0 1rem;
    grid-row: 1;
    grid-column: 2;
  }
  .newsletter p {
    grid-column: 1/-1;
    margin: 0.5rem 0 0;
  }
}

.see-more {
  padding: 1rem 0 3rem;
}
.see-more h3 {
  color: var(--red);
  text-align: center;
  margin: 4rem auto 2rem;
}
.see-more__items {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}
.see-more__item {
  flex: 1;
  display: flex;
  min-width: 20rem;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  position: relative;
  padding: 1rem 2rem;
}
.see-more__item:hover button {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 900px) {
  .see-more__item {
    flex-direction: column;
    text-align: center;
    align-content: stretch;
    padding: 1rem 2rem;
  }
  .see-more__item:before {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    background: var(--gray-light);
    border-radius: 50%;
    left: 50%;
    margin-left: -7rem;
    top: 5%;
    transition: 0.4s ease;
    opacity: 0;
    transform-origin: center-center;
    transform: scale(0);
  }
  .see-more__item:hover:before {
    opacity: 1;
    transform: scale(1);
  }
}
.see-more__item img {
  max-width: 30%;
  min-width: 30%;
  object-fit: contain;
  object-position: center;
  margin: auto auto 2rem;
  position: relative;
  height: 8rem;
}
@media (min-width: 900px) {
  .see-more__item img {
    width: 80%;
    max-width: none;
    height: 15rem;
  }
}
.see-more__title {
  font-family: "Bebas Neue";
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
}
.see-more__info {
  flex: 1;
  margin-left: 2rem;
}
@media (min-width: 900px) {
  .see-more__info {
    margin-top: auto;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .see-more__info button {
    margin-top: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.4s ease;
  }
}
.see-more__info button {
  margin-top: 0.5rem;
}

footer {
  font-family: "Bebas Neue";
  padding: 1.5rem 2rem;
  font-size: 120%;
  background: var(--gray-dark);
  color: var(--beige);
  text-align: center;
}

.more-info {
  display: flex;
  align-items: center;
  background: var(--beige);
  color: var(--red);
}
.more-info a {
  color: var(--red-dark);
}
.more-info .image {
  flex: 0 0 30%;
  max-width: 10rem;
  line-height: 0;
}
.more-info .image img {
  width: 100%;
}
.more-info p {
  flex: 1;
  padding: 0 1.5rem;
}