body {
  margin: 0;
  overflow: hidden;
}
header {
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

header div {
  padding: 30px 5px 10px 5px;
  border-radius: 8px;
  background-color: #e7a043;
}

.carousel {
  width: 100vw;
  height: 101dvh;
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

.list {
  width: 100%;
  height: 100%;
}

.item {
  width: 100%;
  height: 100%;
  background-color: var(--background);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
}
.item img.fruit {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  pointer-events: none;
}
.item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 12rem;
  color: #eee;
  font-weight: bold;
  font-family: system-ui;
  text-transform: uppercase;
  white-space: nowrap;
}
.item.active {
  display: block;
}
.item.hidden {
  display: block;
  pointer-events: none;
  background-color: transparent;
  z-index: 1;
}

#prev,
#next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #eee9;
  background-color: #eee5;
  color: #eee;
  font-size: x-large;
  font-family: monospace;
  cursor: pointer;
  z-index: 15;
}
#prev {
  left: 20px;
}
#next {
  right: 20px;
}

@keyframes toActive {
  from {
    top: 100%;
    opacity: 0;
  }
}
@keyframes toOut {
  from {
    top: 50%;
    opacity: 1;
  }
}
.item.active img.fruit {
  animation: toActive 0.5s ease-in-out 1;
}
.item.hidden img.fruit {
  animation: toOut 0.8s ease-in-out 1;
  top: -100%;
  opacity: 0;
}
.item.active .content {
  animation: toActive 0.8s ease-in-out 1;
}
.item.hidden .content {
  opacity: 0;
}

.carousel.right .item.active img.fruit {
  animation: toActivePrev 0.5s ease-in-out 1;
}
.carousel.right .item.hidden img.fruit {
  animation: toOut 0.8s ease-in-out 1;
  top: 100%;
  opacity: 0;
}
.carousel.right .item.active .content {
  animation: toActivePrev 0.8s ease-in-out 1;
}

@keyframes toActivePrev {
  from {
    top: 0;
    opacity: 0;
  }
}

:root {
  --width-mockup: calc(371px / 1.5);
  --height-mockup: calc(673px / 1.5);
}

.mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  --left: 0%;
  transform: translate(-50%, -50%);
  height: var(--height-mockup);
  width: var(--width-mockup);
  background: url(img/mockup.png) 0 0 no-repeat,
    url(img/listSoda.jpg) var(--left) 0;
  background-size: auto 100%;
  background-blend-mode: multiply;
  -webkit-mask-image: url(img/mockup.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  transition: background 0.5s;
}

.leaves {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: url(img/leaves.png);
  background-size: 100%;
  top: calc((50% - (var(--height-mockup) / 1.7)));
  left: calc((50% + (var(--width-mockup) / 5)));
}
.shadow {
  width: var(--width-mockup);
  height: 100px;
  background-color: #0008;
  border-radius: 50%;
  position: absolute;
  top: calc((50% + (var(--height-mockup) / 2)));
  left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
}

.privacy__banner {
  position: fixed;
  bottom: 2%;
  left: 0;
  right: 0;
  background: #1b1b1c;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  flex-direction: column;
  text-align: center;
  color: white;
}

.privacy__button {
  background-color: white;
  padding: 3px 8%;
  border-radius: 5px;
  color: black;
  font-size: 15px;
  cursor: pointer;
}

.privacy__link {
  color: orange;
}

@media (max-width: 768px) {
  .item .content {
    transform: translate(-50%, -50%) scale(0.5);
  }
  .item img.fruit {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item .content {
    position: absolute;
    top: 28%;
    z-index: 3;
    font-size: clamp(6.875rem, 4.97rem + 8.47vw, 13.438rem);
    color: #1e193c;
  }
  .carousel {
    height: 102dvh;
  }
}

@media (max-width: 650px) {
  .privacy__banner {
    margin: 0 5%;
  }
}
