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


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

.property-main-info {
    margin-bottom: 1rem;
}

.property-title-section {
    margin-bottom: 1rem;
}

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

.property-badges {
    display: block;
    position: absolute;
    top: 240px;
    right: 3rem;
    z-index: 9999;
    box-shadow: 0 0 4px rgba(0,0,0,.5);
    border-radius: 24px;
    overflow: hidden;
    border: solid 2px #fff;
}

.property-type-badge, .transaction-type-badge {
    display: inline-block;
    margin-right: -4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.property-type-badge {
    background-color: #fff;
    color: #000;
}

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

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

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

.property-price {
    font-weight: bold;
    background: #ff0000;
    color: #ffffff;
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
}

.property-description {
    color: #000;
    line-height: 1.5;
    margin: 1rem 0;
    font-size: 1rem;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0 2rem;
    padding: 0 3rem;
}

.property-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: solid 1px #ccc;
}

.property-detail-item span:first-child {
    color: #000;
    font-weight: bold;
    padding: .5rem 0;
    text-transform: uppercase;
    font-size: 1rem;
}

.property-detail-item span:last-child {
    color: #000;
    font-weight: normal;
    padding: .5rem 0;
    text-transform: uppercase;
    font-size: 13px;
}

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

.view-details-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    text-transform: uppercase;
    background: #ffcc29;
    color: #000;
    text-decoration: none;
    border-radius: 32px;
    font-weight: bold;
}

/* 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;
    }
}