body {
  padding: 0;
  margin: 0;
}

#header {
  padding: 1rem 0;
  background-color: #fbf7f0;
}

.logo {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}

.product {
  padding: 4rem 0;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quantity-selector {
  border: 0.5px solid rgb(204, 204, 204);
  width: fit-content;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-info-shiping {
  display: flex;
  align-items: end;
  gap: 10px;
}

.product-info-shiping img {
  max-width: 40px;
}

.product-info-shiping p {
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bolder;
}

.product-info-buy {
  background-color: #d9c5a4;
  width: 250px;
  
  display: flex;
  justify-content: center;
  border-radius: 5px;
  margin: 2rem 0;
}

.product-info-buy-button {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 18px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.product-info-title {
  text-transform: uppercase;
  margin: 0;
}

.product-info-price {
  color: #d9c5a4;
  font-size: 40px;
  margin: 0;
  font-weight: bolder;
}

.accordion-button:not(.collapsed),
.accordion-button {
  background-color: #fbf7f0;
  box-shadow: none;
}

.accordion-button {
  border-color: gray;
}

.slider {
  width: 400px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.slider-links {
  display: flex;
  align-items: inherit;
  justify-content: space-between;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.slides::-webkit-scrollbar-track {
  background: transparent;
}

.slides img {
  max-width: 400px;
}

.slider-links a {
  max-width: 24%;
  border: .5px solid black;
}

.slider-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides>div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  margin-right: 50px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

.author-info {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.75rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.author-info a {
  color: white;
}

.slider>a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}

.slider>a:active {
  top: 1px;
}

.slider>a:focus {
  background: #000;
}

.product .container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.slider,
.product-info {
  flex: 1;
}

.foo {
  padding: 1rem 0;
  background-color: #fbf7f0;
}

.avaible {
  width: 100%;
  max-width: 70%;
  display: flex;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .avaible {
    max-width: 100%;
  }

  .slider {
    width: 100%;
  }
}

.bt-wpp {
  position: fixed;
  right: 5px;
  bottom: 5px;
}