/* Real Estate Section Styling - matches index page layout */

.popupColumn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.property-content-container {
    padding: 20px;
    color: #ffffff;
}

.property-main-info {
    margin-bottom: 30px;
}

.property-title-section {
    margin-bottom: 20px;
}

.property-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.property-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.property-type-badge, .transaction-type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.property-type-badge {
    background-color: #4CAF50;
    color: white;
}

.transaction-type-badge.prodaja {
    background-color: #2196F3;
    color: white;
}

.transaction-type-badge.renta {
    background-color: #FF9800;
    color: white;
}

.transaction-type-badge.oboje {
    background-color: #9C27B0;
    color: white;
}

.property-price {
    font-weight: bold;
    margin-left: 16px;
    color: #2ecc71;
}

.property-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 16px;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.property-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffcc29;
}

.property-detail-item span:first-child {
    color: #e0e0e0;
    font-weight: 500;
}

.property-detail-item span:last-child {
    color: #ffffff;
    font-weight: bold;
}

.property-actions {
    margin-top: 30px;
}

.view-details-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffcc29, #ff9800);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 41, 0.4);
}

/* Agent Info Section - matches shop info styling */
.property-agent-info {
    padding: 30px;
    position: relative;
}

.agency-name {
    color: #ffcc29;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.agent-name {
    color: #ffffff;
    font-size: 18px;
    margin: 15px 0;
}

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

.agent-contact {
    font-size: 18px;
    line-height: 1.3;
    margin: 16px 0;
    display: flex;
    align-items: center;
}

.agent-contact a {
    color: inherit;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .property-title {
        font-size: 20px;
    }
    
    .property-badges {
        gap: 5px;
    }
    
    .property-type-badge, .transaction-type-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}