/* =============================
   CENTRALIZED STYLE.CSS - Section-wise CSS
   ============================= */

/* Import Default Theme Variables */
@import url('theme.css');

/* =============================
   3. PROPERTY SHOW PAGE STYLES
   ============================= */

/* Property Price Display */
.property-price {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Property Gallery */
.property-main-image {
    transition: opacity var(--transition-base);
}

.property-thumbnail {
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.property-thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Icon Buttons for Property Cards */
.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-base);
    transition: all var(--transition-base);
    position: relative;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.icon-btn i {
    font-size: 1rem;
}

/* Property Detail Cards */
.property-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

/* Responsive adjustments for property page */
@media (max-width: 768px) {
    .property-price {
        font-size: 1.5rem;
    }
    
    .property-main-image {
        height: 250px !important;
    }
}
