
    /* Product styles */
    .product-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        text-align: center;
        height: 290px; /* Increased from 270px to give more space for the image */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        transition: box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
        z-index: 2;
    }
    .product-card img {
        object-fit: contain;
        height: 180px; /* Increased from 180px to make the image slightly larger */
        width: 100%;
        padding: 10px;
        transition: transform 0.5s ease-in-out;
    }
    .product-card:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
        z-index: 5;
    }
    /* Specific font for product card text */
    .product-card h3,
    .product-card p {
        font-family: 'Staatliches', sans-serif; /* Revert product text to Staatliches */
        /* Font rendering for sharper text on product cards */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    .product-card h3 {
        font-size: 14px; /* Remains 14px */
        font-weight: bold; /* Remains bold */
        margin: 2px 0;
        letter-spacing: 0.05em;
    }
    .product-card p {
        font-size: 13px;
        color: #555;
        margin-bottom: 8px;
        letter-spacing: 0.03em;
    }
    /* Override specific p style for price to ensure Staatliches applies */
    .product-card .product-price { /* Assumes you've changed <p style="..."> to <p class="product-price"> */
        font-family: 'Staatliches', sans-serif; /* Force Staatliches for price text */
        font-size: 0.99rem; /* Keep original size */
        font-weight: bold; /* Keep original weight for price */
        letter-spacing: 0.02em; /* Adjust spacing for price */
        -webkit-font-smoothing: antialiased; /* Sharper rendering */
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }


    /* Badge for "Fri Fragt" */
    .badge-fri-fragt {
        background-color: #4a4a4a;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        padding: 0.2rem 0.6rem;
        border-radius: 9999px;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        display: flex;
        align-items: center;
        z-index: 10; /* Ensure badge is always on top */
    }