body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.header {
  background: #ffdb00;
  padding: 10px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.location {
  font-size: 14px;
}

.container {
  padding: 15px;
}

.brand-link {
  color: #0077cc;
  font-size: 14px;
  margin-bottom: 5px;
}

.info {
  font-size: 13px;
  color: gray;
}

.title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.rating {
  margin: 10px 0;
  font-size: 14px;
}

.tags {
  display: flex;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 15px;
}

.tag {
  background: #eee;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-orange {
  background: #ff6600;
  color: white;
}

.carousel {
  position: relative;
  text-align: center;
  max-width: 100%;
}

.carousel img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.image-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #555;
}

.color-select {
  margin-top: 20px;
  font-size: 14px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
  font-size: 14px;
}

.stars i {
  color: #3483fa; /* Azul Mercado Livre */
  font-size: 16px;
}

.carousel img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.reviews {
  margin-top: 30px;
}

.reviews h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.review {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 30px;
}

.review-images {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.review-images {
  display: flex;
  gap: 10px;
  justify-content: flex-start; /* empurra tudo para a direita */
  margin-bottom: 10px;
}

.review p {
  text-align: left;
}

.review-images img {
  width: 20%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.review p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.like-btn {
  margin-top: 10px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #333;
}

.like-btn:hover {
  background-color: #f3f3f3;
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.emoji i {
  font-size: 22px;
}

.review p {
  margin-top: 10px;
}

.logo-image {
  height: 50px; /* ou o tamanho que desejar */
  width: auto;
}