@import url("https://fonts.googleapis.com/css?family=Fjalla+One|Montserrat:300,400,700,800|Open+Sans:300");

body {
background-color: #fff;
  margin: 0;
}

main {
  max-width: 720px;
  margin: 5% auto;
}

.card {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.3);
  transition: 200ms;
  background: #fff;
}

.card__title {
  display: flex;
  align-items: center;
  padding: 30px 40px;
}

h3 {
  flex: 1;
  text-align: right;
  margin: 0;
  color: #252525;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.icon {
  background: #564015;
  color: #fff;
  padding: 10px;
  transition: 200ms;
}

.icon a {
  color: #fff;
}

.icon:hover {
  background: #252525;
}

.card__body {
  padding: 0 40px;
  display: flex;
  flex-flow: row no-wrap;
}

.half {
  box-sizing: border-box;
  padding: 0 15px;
  flex: 1;
}

.featured_text h1 {
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  line-height: 50px;
  color: rgb(161,46,100);
}

.sub {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: #686e77;
  font-weight: 300;
  margin-bottom: 5px;
}

.price {
  font-family: "Fjalla One", sans-serif;
  color: #252525;
  font-size: 26px;
}

.image {
  padding-top: 15px;
  width: 100%;
}

.image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.description {
  margin-bottom: 25px;
}

.description p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 27px;
  font-size: 16px;
  color: #555;
}

.stock {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #564015;
}

.stars {
  display: inline-block;
  list-style: none;
  padding: 0;
}

.stars li {
  display: inline-block;
}

.fa {
  color: #f7c01b;
}

.reviews span {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin-left: 5px;
  color: #555;
}

.card__footer {
  padding: 30px 40px;
  display: flex;
  flex-flow: row no-wrap;
  align-items: center;
  position: relative;
}

.recommend {
  flex: 1;
}

.recommend p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

.recommend h3 {
  margin: 0;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #373806;
}

.action button {
  cursor: pointer;
  border: 1px solid #564015;
  padding: 14px 30px;
  border-radius: 200px;
  color: #fff;
  background: #564015;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  transition: 200ms;
}

.action button:hover {
  background: #fff;
  color: #564015;
}

/* Estilos para as imagens pequenas */
.thumbnail-list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.thumbnail {
  cursor: pointer;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 10px; /* Adicionando borda arredondada */
  transition: border-color 0.3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Adicionando sombra suave */
}

.thumbnail:hover {
  border-color: #564015;
}