.prw-product-recommendation {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px 30px;
  margin-bottom: 20px;
  background-color: #fff;
  width: 100%;

  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
}

.prw-product-details {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .prw-product-recommendation {
    flex-wrap: wrap;
  }

  .prw-product-details {
    width: 100%;
  }
}

.prw-product-recommendation img {
  max-width: 110px;
  height: auto;
  margin-bottom: 0;
}

.prw-product-recommendation h3 {
  margin-bottom: 10px;
  margin-top: 0;
}

.prw-features {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 0;
}

.prw-features li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.prw-features li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.prw-product-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.prw-recommendation-btn {
  padding: 15px 23px 16px 23px;
  min-height: 34px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  min-width: 200px;
  transition: all 0.3s ease;
}

.prw-recommendation-btn.prw-btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.prw-recommendation-btn.prw-btn-outline:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.prw-recommendation-btn:hover {
  color: var(--text-color-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
