.product-ad-container {
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.product-ad-section-title {
    text-align: center;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
}

.product-ad-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-ad-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-ad-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-ad-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- PHẦN THAY ĐỔI CHÍNH NẰM Ở ĐÂY --- */
.product-ad-image {
    /* Không cần ép tỉ lệ nữa */
    width: 100%; 
}

.product-ad-image img {
    /* Hiển thị ảnh một cách tự nhiên */
    display: block; /* Loại bỏ khoảng trống thừa dưới ảnh */
    width: 100%;
    height: auto; /* Chiều cao tự động điều chỉnh theo chiều rộng để giữ nguyên tỉ lệ (vuông) */
    object-fit: initial; /* Bỏ thuộc tính crop ảnh */
}
/* --- KẾT THÚC PHẦN THAY ĐỔI --- */

.product-ad-info {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-ad-category {
    display: inline-block;
    background-color: #e0e0e0;
    color: #555;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.85em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-ad-title {
    font-weight: bold;
    font-size: 1.2em;
    margin: 0px;
    line-height: 1.3;
    flex-grow: 1;
}

.product-ad-price {
    display: block;
    margin-bottom:0px;
    color: #d63638;
    font-weight: bold;
    font-size: 1.1em;
}

.product-ad-button {
    display: inline-block;
    padding: 2px 9px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    margin-top: auto;
    transition: background-color 0.3s;
    text-align: center;
    align-self: flex-start;
}

.product-ad-button:hover {
    background-color: #005a87;
}

/* MEDIA QUERIES cho Desktop: Bố cục hình ảnh trái, nội dung phải */
@media (min-width: 768px) {
    .product-ad-item {
        flex-direction: row;
        max-width: calc(50% - 10px);
    }

    .product-ad-item a {
        flex-direction: row;
    }
    
    /* --- THAY ĐỔI TRÊN DESKTOP --- */
    .product-ad-image {
        width: 40%; /* Ảnh chiếm 40% chiều rộng của item */
        flex-shrink: 0; /* Không cho phép ảnh bị co lại */
    }
    
    .product-ad-info {
        width: 60%;
        padding: 20px;
    }
    /* --- KẾT THÚC THAY ĐỔI --- */

    .product-ad-section-title {
        text-align: left;
    }

    .product-ad-grid {
        justify-content: flex-start; /* Căn trái các item */
    }
}