/* Styles pour les chambres à vendre */
.chamber-card.for-sale {
    border: 2px dashed #ff6b35;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.chamber-card.for-sale .chamber-preview.locked {
    position: relative;
    opacity: 0.7;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lock-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price-tag {
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.badge.for-sale {
    background: #ff6b35;
    color: white;
}

.action-btn.purchase {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: bold;
}

.action-btn.purchase:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
}

.info-row .value.price {
    color: #ff6b35;
    font-weight: bold;
}

/* Notification d'achat */
.purchase-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Styles pour les résultats de recherche */
.no-results {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
    font-size: 1.1rem;
}
