main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
  gap: 160px;
  overflow: hidden;
}

section {
  display: flex;
  width: 100%;
  max-width: 1240px;
}

h2 {
  font-size: 32px;
  line-height: 110%;
}

p {
  font-size: 16px;
  line-height: 150%;
  color: #B4B4B4;
}

ul {
  display: flex;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section.poster {
  flex-wrap: wrap;
  justify-content: center;

  .image {
    position: relative;

    .badge {
      position: absolute;
      top: 24px;
      right: -20px;
      background-color: #FF4C4F;
      padding: 2px 6px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      color: #FFF;
    }
  }

  .box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 112px;

    h1 {
      font-size: 48px;
      font-weight: 600;
    }

    p.measurements {
      font-size: 18px;
      color: #FFFFFF;
      margin-bottom: 100px;
    }

    p.price {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 16px;
      color: #FFFFFF;

      span {
        font-size: 16px;
        font-weight: 400;
        color: #B4B4B4;
      }
    }

    ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;

      li {
        display: flex;
        gap: 8px;

        p {
          font-size: 14px;
        }
      }
    }

    a.button {
      text-decoration: none;
      text-align: center;
      border: none;
      border-radius: 4px;
      padding: 16px;
      font-size: 16px;
      font-weight: 600;
      background-color: #FF4C4F;
      color: black;

      &:hover {
        background-color: #FFFFFF;
        color: black;
      }
    }

    p.limited {
      font-size: 14px;
      color: #6E6E6E;
    }
  }
}

section.special {
  flex-direction: column;
  gap: 40px;

  ul {
    display: flex;
    list-style: none;
    gap: 32px;

    li {
      display: flex;
      flex-direction: column;
      gap: 16px;

      img {
        max-width: 100%;
        height: auto;
      }

      p {
        font-size: 16px;
        color: #B4B4B4;
      }
    }
  }
}

section.made {
  flex-direction: column;
  gap: 40px;

  >p {
    max-width: 600px;
  }

  img {
    margin-top: -80px;
  }
}

footer {
  display: flex;
  align-items: center;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 8px 16px;
  gap: 14px;

  p {
    font-size: 14px;
  }
}
