
.properties-section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Κεφαλίδα ενότητας */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #e1a716;
    font-weight: 700;
}

.results-count {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Πλέγμα ακινήτων */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Κάρτα ακινήτου */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Εικόνα ακινήτου */
.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.05);
}

/* Κουμπί αγαπημένων */
.favorite-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.favorite-button:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-button i {
    font-size: 1.2rem;
    color: #e74c3c;
    transition: color 0.3s ease;
}

.favorite-button.active i {
    font-weight: 900; /* Γεμάτο καρδάκι */
}

/* Λεπτομέρειες ακινήτου */
.property-details {
    padding: 1.5rem;
}

.property-details h3 {
    font-size: 1.3rem;
    margin: 0 0 0.8rem 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e1a716;;
    margin-bottom: 0.8rem;
}

.property-address {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.property-address i {
    margin-right: 0.5rem;
    color: #e1a716;;
}

/* Χαρακτηριστικά ακινήτου */
.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.property-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #34495e;
}

.property-features i {
    margin-right: 0.4rem;
    color: #e1a716;;
}

/* Κουμπί λεπτομερειών */
.view-details {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #155ce1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.view-details:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Εφέ εμφάνισης */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}

.delay-2 {
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive ρυθμίσεις */
@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .property-details {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .properties-section {
        padding: 2rem 1rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}