/* Premium Villa List View Styles */
.villa-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 30px;
    max-width: 1200px;
}

.villa-card-list-wrapper {
    width: 100%;
}

.villa-card-list {
    display: flex;
    background: #ffffff;
    border: 1px solid #eaddd3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    color: inherit;
}

.villa-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.villa-image-section {
    position: relative;
    width: 40%;
    min-width: 320px;
    height: 340px;
    overflow: hidden;
}

.villa-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-card-list:hover .villa-image-section img {
    transform: scale(1.05);
}

.villa-luxe-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FEB710;
    color: #2d5a27;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.villa-content-section {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.villa-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.villa-rating-box {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #2B303B;
    font-size: 14px;
}

.villa-rating-box svg {
    width: 16px;
    height: 16px;
    fill: #FEB710;
}

.villa-location-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #646464;
    font-size: 14px;
}

.villa-location-tag svg {
    width: 16px;
    height: 16px;
}

.villa-title {
    font-family: 'Marcellus', serif !important;
    font-size: 26px !important;
    color: #2d5a27 !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.2 !important;
}

.villa-info-details-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0ece8;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.villa-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #646464;
    font-size: 13px;
}

.villa-info-item img {
    width: 18px;
    height: 18px;
}

.villa-highlights-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.villa-highlight-tag {
    background: #f4f7f2;
    color: #2d5a27;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.villa-highlight-tag img {
    width: 14px;
    height: 14px;
}

.villa-amenities-icons-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.villa-amenity-circle {
    width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.villa-amenity-circle img {
    width: 18px;
    height: 18px;
}

.villa-footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.villa-price-info {
    display: flex;
    flex-direction: column;
}

.villa-price-label {
    font-size: 11px;
    color: #646464;
}

.villa-price-value {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    color: #2d5a27;
    font-weight: 700;
}

.villa-price-unit {
    font-size: 14px;
    color: #646464;
    font-weight: 400;
}

.villa-view-btn {
    background: #2d5a27;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.villa-card-list:hover .villa-view-btn {
    background: #1e3d1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .villa-card-list {
        flex-direction: column;
    }

    .villa-image-section {
        width: 100%;
        height: 240px;
    }

    .villa-content-section {
        padding: 20px;
    }

    .villa-title {
        font-size: 22px !important;
    }

    .villa-footer-section {
        flex-direction: row;
        align-items: center;
    }
}