.easycommerce-recommended-products {
    text-align: center;
}
.easycommerce-recommended-products h3 {
    color: var(--color-ec-body);
    margin-bottom: 20px;
    padding: 16px;
    font-size: 30px;
    font-weight: 800;
}
.ec-pr-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 13px;
    margin: 0 auto;
}
.easycommerce-product-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    padding: 13px;
    height: 460px;
    flex: 0 0 calc(25% - 10px);
}
.easycommerce-product-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-radius: 12px 12px 0 0;
}

.easycommerce-product-link {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
}

.easycommerce-image-pr {
    transition: transform 0.5s ease;
}

.easycommerce-image-pr:hover img {
    transform: scale(1.1);
}

.easycommerce-product-thumbnail {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
}
.easycommerce-product-details-pr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}

.easycommerce-product-title a {
    color: var(--color-ec-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    line-height: 26px;
    letter-spacing: 0px;
}

.easycommerce-product-category {
    color: var(--color-ec-secondary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    line-height: 20px;
    letter-spacing: 0px;
    margin-top: 10px;
}

.easycommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 10px;
}

.easycommerce-star {
  width: 16px;
  height: 16px;
}

.easycommerce-rating-text {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.easycommerce-product-price-wrap {
    margin-top: 10px;
    color: #120350;
    font-size: 20px;
    font-weight: 600;;
    line-height: 32px;
    letter-spacing: 0px;
}

.easycommerce-product-price-pr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.easycommerce-product-price-del-pr {
    color: rgb(115 119 145 / var(--tw-text-opacity, 1));
    font-size: 14px;
    font-weight: 400;
}

.ec-add-to-cart-button-pr,
.ec-choose-options-button{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    background-color: var(--color-ec-accent);
    color: var(--color-ec-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 26px;
    letter-spacing: 0px;
    cursor: pointer;
}

.ec-add-to-cart-button-pr:hover,
.ec-choose-options-button:hover {
        --tw-bg-opacity: 1 !important;
    background-color: rgb(115 81 253 / var(--tw-bg-opacity, 1)) !important;
        color: #fff !important;
}
.ec-checkout-button {
    outline: none;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}
.ec-checkout-icon {
    max-width: 100%;
    height: 10px;
}
.ec-checkout-btn-pr {
    display: none;
}

.easycommerce-no-recommendations {
	color: #777;
	font-style: italic;
	margin-top: 10px;
}


@media only screen and (max-width: 1024px) {
    .easycommerce-product-card {
        height: 430px;
    }
    .easycommerce-product-thumbnail {
        height: 200px;
    }
}

@media only screen and (max-width: 768px) {
    .easycommerce-product-card {
        flex: 0 0 calc(33% - 10px);
    }
}

@media only screen and (max-width: 768px) {
    .easycommerce-product-card {
        height: 480px;
        flex: 0 0 calc(100% - 10px);
    }
    .easycommerce-product-thumbnail {
        height: 250px;
    }
}