.medimarket-product-card {
    display: flex;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px;
    margin: 20px 0;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
}

.medimarket-product-image {
    flex: 0 0 180px;
    margin-right: 20px;
    align-content: center;
}

.medimarket-product-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.medimarket-product-content {
    flex: 1;
    align-content: center;
}

.medimarket-product-content a {
    text-decoration: none;
    color: white;
}

.medimarket-product-title {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    font-weight: 600;
}

.medimarket-product-description {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.95em;
}

.medimarket-product-button {
    text-decoration: none;
    color: white;
    display: inline-block; /* This ensures the link takes the full width of the button */
}

.medimarket-product-link {
    text-decoration: none;
    font-weight: 600;
    background-color: #0078bd;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 5px;
    transition: background-color 0.2s ease; /* Optional: adds a smooth hover effect */
}

.medimarket-product-button:hover .medimarket-product-link {
    background-color: #006099; /* Optional: darker shade on hover */
}

@media screen and (max-width: 600px) {
    .medimarket-product-card {
        flex-direction: column !important;
    }

    .medimarket-product-image {
        flex: none !important;
        margin: 0 0 15px 0 !important;
        padding: 1rem;
    }

    .medimarket-product-image img {
        max-width: none;
    }

    .medimarket-product-content {
        margin-left: 1rem;
    }
}