/* ==========================================
   Dynasty 8 - Prix flottant sticky
   ========================================== */

.floating-price {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-price.show {
    transform: translateY(0);
}

.floating-price-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.floating-price-value {
    font-size: 2rem;
    font-weight: 700;
}

.floating-price-btn {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-price-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
