.price-banner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-color: var(--clr-bg-price);
  color: var(--clr-font-2);
  border: solid var(--clr-font-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.price-banner.animate {
  transform: scale(1.1);
  background-color: #e28c5a;
  box-shadow: 0 0 20px rgba(209, 123, 73, 0.4);
}

#totalPriceLine {
  display: inline-block;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

#totalPriceLine.animate {
  transform: scale(1.2);
  color: #e28c5a;
}

button#showSummaryButton {
  display: block;
  width: calc(100% - 50px);
  max-width: 300px;
  margin: 20px auto;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--ff-heading);
  color: var(--clr-font-2);
  background-color: var(--clr-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(251, 127, 80, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button#showSummaryButton:hover,
button#showSummaryButton:focus {
  background-color: var(--clr-primary-2);
  transform: scale(1.05);
  outline: none;
}
