.product-block {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    display: flex;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 0px;
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
}

.product-image {
    flex: 0 0 40%;
    margin: 0;
    padding: 5px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin: 0;
}

.product-info {
    flex: 1;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 13px;
    margin: 0;
}

.product-title a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.product-price {
    font-size: 1.1em;
    margin: 5px 0; /* Reduced top and bottom margin */
    line-height: 1.3; /* Adjusted line height for tighter spacing */
}

.product-price strong {
    color: #F00;
    font-size: 16px;
    font-weight: bold;
}

.product-sku {
    color: #0066cc;
    font-weight: bold;
    font-size: 15px;
}

.product-links-container {
    display: flex;
    gap: 15px; /* Adjust spacing between links */
}

.product-details-link,
.add-to-cart-link {
    text-decoration: none;
    color: #0088cc;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.product-details-link:before {
    content: "❯ ";
    margin-right: 5px;
    font-weight: bold;
}

.add-to-cart-link:before {
    content: "🛒 ";
    margin-right: 5px;
}

.fa-shopping-cart {
    color: #0088cc;
}

.icon-forward {
    color: #0088cc;
}
