.inline-product-card {
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
  transition: 500ms all;
  margin-bottom: 20px;
}

.inline-product-card:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .inline-product-card {
    flex-direction: column;
    align-items: center;
  }

  .inline-product-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .product-link {
    width: 100%;
    max-width: none;
  }

  .product-price-button-section {
    width: 100%;
  }

  .inline-product-left {
    flex-direction: column;
  }
}

.inline-product-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  padding: 8px;
}

.inline-product-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.product-link {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.product-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.inline-product-title-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inline-product-title-text a {
  color: #364151;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Poppins", serif;
}

.product-rating {
  display: flex;
  gap: 5px;
}

.product-rating .fa-star {
  font-size: 16px;
  color: #ddd;
}

.product-rating .fa-star.filled {
  color: #f5c518;
}

.inline-product-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.product-pros-section {
  display: flex;
  flex-direction: column;
}

.product-card-icon {
  margin-right: 5px;
}

.product-card-pros {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-pros {
  color: #1e293b;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.product-price-button-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  gap: 4px;
}

.product-price-text {
  color: #364151;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  font-family: "Poppins", serif;
}

.btn-buy {
  display: inline-block;
  padding: 15px 45px 15px 45px;
  background-color: #007acc;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", serif;
  color: #ffffff;
  text-decoration: none;
  &:hover {
    background-color: #fff;
    color: #d026c5;
  }
}
