.product-card {
    position: relative;
    height: 150px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
}

.product-card img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

.product-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 140px);
    background: transparent; /* Make sure no background is covering the label */
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ad-notice {
    font-size: 0.8rem;
}

.product-description {
    font-size: 0.75rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #2196F3;
    margin: 8px 0 0 0;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .product-card img {
        width: 120px;
    }
    
    .product-info {
        width: calc(100% - 120px);
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-description {
        font-size: 11px;
        -webkit-line-clamp: 3;
    }
    
    .product-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-card img {
        width: 100px;
    }
    
    .product-info {
        padding: 10px;
        width: calc(100% - 100px);
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
    
    .product-price {
        font-size: 15px;
    }
}