#tee-butler {
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  background: #fefefe;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", sans-serif;
}

.tee-moods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  margin: 40px 0;
  width: 100%;
}

.mood {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 15%;
  max-width: 20%;
  padding: 10px;
  transition: all 0.2s ease;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mood img {
  width: 200px;
  height: 200px !important;
  object-fit: cover;
  border-radius: 100px !important;
}

.mood.selected {
  border-color: #7a7a7a;
  background: #f9f8f7;
}

.mood span {
  font-size: 18px;
  height: 120px;
}

#tee-butler-submit {
  display: inline-block;
  background-color: #ff9900;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.tee-results-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tee-results {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.tee-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px
    rgba(229.5, 229.00108695652176, 229.00108695652176, 0.5);
  border-radius: 15px 15px 15px 15px;
  width: 300px;
}

.tee-item h4 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.tee-item .price span {
  font-size: 26px;
  font-weight: 400;
  color: #000;
}

.tee-item img {
  border-radius: 100px !important;
  object-fit: fill;
}

.tee-item .button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 30px;
  background: #7a7a7a;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  border: none !important;
}

.tee-item .price {
  margin-top: 8px;
  font-weight: bold;
}

.step h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.button-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-div button {
  padding: 8px 60px;
  background: #7a7a7a;
  border-radius: 20px;
  text-transform: uppercase;
  border: 2px solid #7a7a7a;
  color: #fff;
}

.button-div button:hover {
  background: white;
  border: 2px solid #7a7a7a;
  color: #000;
}

.tea-search-text {
  width: 100%;
  font-size: 20px;
  text-align: center;
}

.butler-img {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 auto;
}

button:focus {
  background-color: #7a7a7a !important;
}

@media only screen and (max-width: 1024px) {
  .mood img {
    width: 100px !important;
    height: 100px !important;
  }
  .mood span {
    font-size: 12px;
  }
  .tee-item {
    width: 220px;
  }
  .tee-item .button {
    padding: 10px 20px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 660px) {
  .mood {
    flex: 1 1 35%;
    max-width: 50%;
  }
  .mood img {
    width: 90px !important;
    height: 90px !important;
  }
  .mood span {
    font-size: 13px;
    height: 110px;
  }
  .tee-item {
    width: 155px;
  }
  .tee-item .button {
    padding: 8px 8px;
    font-size: 12px;
  }
  .step h3 {
    font-size: 20px;
  }
  .tee-results-top h3 {
    font-size: 20px;
    text-align: center;
  }
}
