/* Styles spécifiques à la page de création de devis */
:root {
    --primary: #B88A5A;
    --primary-hover: #D1A373;
    --bg-global: #FFFFFF;
    --bg-section: #F8F9FA;
    --text-primary: #0B0B0B;
}

.devis-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #FFFFFF;
    border: 1px solid rgba(184, 138, 90, 0.1);
}

.devis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 138, 90, 0.1);
}

.gradient-text {
    color: var(--primary);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 138, 90, 0.1);
}

.btn-modern {
    background: var(--primary);
    color: #000000 !important;
    transition: all 0.3s ease;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-modern:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 138, 90, 0.2);
}

.modern-input {
    background: #F9FAFB;
    border: 1px solid rgba(184, 138, 90, 0.2);
    color: #0B0B0B;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 138, 90, 0.1);
    background: #FFFFFF;
}

.info-box {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.info-box:hover {
    border-left-color: var(--primary);
    background: rgba(184, 138, 90, 0.05);
    transform: translateX(4px);
}

.grid-background {
    background-image: 
        linear-gradient(rgba(184, 138, 90, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 138, 90, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}
