/**
 * Property Search Widget Styles
 * ==============================
 * Matches the size and shape of neighborhood widgets for 3-column hero layout
 */

.property-search-widget {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--brand-primary-bg, #e8f0e3);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color, #2d5016);
}

.property-search-label {
    font-size: 1.6rem;
    color: var(--primary-color, #2d5016);
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.property-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 10px 20px 10px 28px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.15);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #d8e3d8;
}

.property-search-input {
    flex: 1;
    border: none;
    padding: 14px 12px;
    font-size: 1rem;
    color: #3a4a3a;
    background: transparent;
    min-width: 0;
    outline: none;
    font-family: var(--font-family);
}

.property-search-input::placeholder {
    color: #8a9a8a;
}

.property-search-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    transition: transform 0.2s;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 8px;
    filter: grayscale(20%);
}

.property-search-btn:hover {
    transform: scale(1.1);
}

.property-search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .property-search-widget {
        padding: 1.5rem 1rem;
        margin: 2rem auto;
    }
    
    .property-search-label {
        font-size: 1.35rem;
    }
    
    .property-search-box {
        padding: 8px 16px 8px 20px;
    }
    
    .property-search-input {
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    
    .property-search-btn {
        font-size: 22px;
    }
}
