.property-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 280px;
    width: 100%;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.favorite-btn img {
    width: 18px;
    height: 46px;
}

.property-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating {
    color: #FFD700;
    margin-right: 5px;
}

.rating-number {
    color: #4b4b4b;
    margin-left: 3px;
}

.reviews-container .review-card {
    height: 100%;
    min-height: 175px;
}

.reviews-container .slick-slide {
    padding: 0 10px; /* مسافة يمين وشمال */
    box-sizing: border-box;
}

.reviews {
    color: #777;
    font-size: 14px;
    margin-right: 10px;
}

.property-title {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.title-text {
    color: var(--text-dark);
    direction: rtl;
}

.title-price {
    color: var(--text-dark);
    white-space: nowrap;
}

.property-location {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.property-host {
    display: flex;
    align-items: center;
}

.host-images {
    display: flex;
}

.host-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.stats {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 14px;
}

.stats div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    padding: 8px 14px;
    margin-left: 10px;
    min-width: 60px;
    background-color: #fff;
}

.stats div img {
    width: 23px;
    height: 16px;
    margin-left: 6px;
    opacity: 0.6;
}

.stats div span {
    color: #000000;
}

.action-btn {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid #1e6623;
    border-radius: 999px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.action-btn:disabled {
    background-color: var(--gray-light);
    border: 1px solid transparent;
}

.action-btn:hover {
    background-color: var(--primary-hover);
}

.action-btn:disabled:hover {
    background-color: var(--gray-light);
}

.more-btn {
    display: block;
    margin: 30px auto;
    background-color: transparent;
    border: 1px solid #1e6623;
    color: var(--primary);
    padding: 10px 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background-color: var(--primary);
    color: #fff;
}
