x .list-product-by-category {
    background: #faf8f4;
    min-height: 300px;
}

.list-product-by-category .lpc-section {
    padding: 50px 0 60px;
}

.list-product-by-category .lpc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
}

.list-product-by-category .lpc-card {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.list-product-by-category .lpc-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.list-product-by-category .lpc-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.list-product-by-category .lpc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.list-product-by-category .lpc-card:hover .lpc-image {
    transform: scale(1.06);
}

/* Overlay on hover */
.list-product-by-category .lpc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(22, 18, 10, 0.52) 0%,
            rgba(22, 18, 10, 0.10) 55%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.list-product-by-category .lpc-card:hover .lpc-image-overlay {
    opacity: 1;
}

/* "KhÃ¡m phÃ¡" button inside overlay */
.list-product-by-category .lpc-explore-btn {
    display: inline-block;
    padding: 9px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 1px;
    background: transparent;
    transition: background 0.25s, color 0.25s;
}

.list-product-by-category .lpc-explore-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Badge (Æ¯u Ä‘Ã£i) */
.list-product-by-category .lpc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #EC7954;
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.list-product-by-category .lpc-body {
    padding: 24px 28px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 3px solid #EC7954;
}

/* Room title */
.list-product-by-category .lpc-title {
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c5922a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.list-product-by-category .lpc-title a {
    color: #173633;
    text-decoration: none;
    transition: color 0.25s;
    font-weight: 400;
    font-size: var(--heading-4);
}

.list-product-by-category .lpc-title a:hover {
    color: #EC7954;
}

/* Short description */
.list-product-by-category .lpc-desc {
    font-size: var(--text-lg);
    color: #5a5248;
    line-height: 1.75;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

/* Info label */
.list-product-by-category .lpc-info-label {
    font-size: var(--text-sm);
    font-weight: 400;
    color: #173633;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Amenity icon list */
.list-product-by-category .lpc-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.list-product-by-category .lpc-amenities li {
    list-style: none;
}

.list-product-by-category .lpc-amenity-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf5e4;
    border: 1px solid #e8d9b5;
    border-radius: 50%;
    transition: background 0.25s, border-color 0.25s;
}

.list-product-by-category .lpc-amenity-icon:hover {
    background: #EC7954;
    border-color: #EC7954;
}

.list-product-by-category .lpc-amenity-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: sepia(1) saturate(3) hue-rotate(2deg) brightness(0.6);
    transition: filter 0.25s;
}

.list-product-by-category .lpc-amenity-icon:hover img {
    filter: brightness(0) invert(1);
}

/* Divider */
.list-product-by-category .lpc-divider {
    height: 1px;
    background: linear-gradient(to right, #173633, transparent);
    margin-bottom: 18px;
}

.list-product-by-category .lpc-footer {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Price */
.list-product-by-category .lpc-price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1;
}

.list-product-by-category .lpc-price {
    font-size: var(--text-xl);
    font-weight: 800;
    color: #173633;
    letter-spacing: 0.3px;
}

.list-product-by-category .lpc-price--contact {
    font-size: var(--text-lg);
    font-style: italic;
}

.list-product-by-category .lpc-price-unit {
    font-size: var(--text-sm);
    color: #888;
    font-weight: 400;
}

.list-product-by-category .lpc-old-price {
    font-size: var(--text-sm);
    color: #aaa;
    text-decoration: none;
}

.list-product-by-category .lpc-old-price del {
    text-decoration: line-through;
}

/* Action buttons */
.list-product-by-category .lpc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    justify-content: space-between;
}

.list-product-by-category .lpc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.28s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}

/* Primary button */
.list-product-by-category .lpc-btn--primary {
    background: #173633;
    color: #fff;
    border-color: #173633;
}

.list-product-by-category .lpc-btn--primary:hover {
    background: #EC7954;
    border-color: #EC7954;
    color: #fff;
}

/* Outline button */
.list-product-by-category .lpc-btn--outline {
    background: transparent;
    color: #173633;
    border-color: #173633;
}

.list-product-by-category .lpc-btn--outline:hover {
    background: #EC7954;
    color: #fff;
    border-color: #EC7954;
}

.list-product-by-category .lpc-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.description {
    font-size: var(--text-lg);
    font-weight: 300;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .list-product-by-category .lpc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .list-product-by-category .lpc-body {
        padding: 18px 20px 16px;
    }

    .list-product-by-category .lpc-title {
        font-size: var(--text-base);
    }

    .list-product-by-category .lpc-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* â”€â”€ Responsive: mobile (â‰¤ 600px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 600px) {
    .list-product-by-category .lpc-section {
        padding: 30px 0 40px;
    }

    .list-product-by-category .lpc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .list-product-by-category .lpc-image-wrap {
        aspect-ratio: 4 / 3;
    }

    .list-product-by-category .lpc-body {
        padding: 16px 16px 14px;
    }

    .list-product-by-category .lpc-title {
        font-size: var(--text-base);
    }

    .list-product-by-category .lpc-price {
        font-size: var(--text-lg);
    }

    .list-product-by-category .lpc-actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .list-product-by-category .lpc-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: var(--text-xs);
    }
}