.elementor-493 .elementor-element.elementor-element-1138fb1{--display:flex;}.elementor-493 .elementor-element.elementor-element-1138fb1 .trx_addons_bg_text{z-index:0;}.elementor-493 .elementor-element.elementor-element-1138fb1 .trx_addons_bg_text.trx_addons_marquee_wrap:not(.trx_addons_marquee_reverse) .trx_addons_marquee_element{padding-right:50px;}.elementor-493 .elementor-element.elementor-element-1138fb1 .trx_addons_bg_text.trx_addons_marquee_wrap.trx_addons_marquee_reverse .trx_addons_marquee_element{padding-left:50px;}/* Start custom CSS for html, class: .elementor-element-7c1a322 *//* ============ STYLES CONDITIONS GÉNÉRALES DE VENTE ============ */
.legal-notice-container {
    font-family: inherit;
    line-height: 1.6;
}

/* En-tête avec animation CGV */
.hero-section {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><text y="15" font-size="14" fill="rgba(255,255,255,0.05)">📄</text></svg>') repeat;
    opacity: 0.1;
}

/* Particules de contrats qui tombent */
.hero-section::after {
    content: '📄';
    position: absolute;
    top: -50px;
    left: 20%;
    font-size: 2rem;
    animation: contractFall 14s linear infinite;
    opacity: 0.2;
}

@keyframes contractFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
        left: 20%;
    }
    25% {
        left: 40%;
        opacity: 0.3;
    }
    50% {
        left: 60%;
        opacity: 0.2;
    }
    75% {
        left: 80%;
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(360deg);
        opacity: 0;
        left: 10%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .main-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    
    /* Animation d'apparition */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: titleAppear 1.2s ease-out forwards;
    position: relative;
    overflow: hidden;
}

/* Animations du titre */
@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        letter-spacing: 0px;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 2px;
    }
}

/* BANDEROLE CONTRACTUELLE SUR LE TITRE */
.hero-content .main-title::after {
    content: 'TERMES & CONDITIONS';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 30px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 0.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) skew(-15deg);
    animation: contractBanner 4s ease-in-out infinite;
    animation-delay: 2s;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

@keyframes contractBanner {
    0% { left: -100%; opacity: 0; }
    20% { left: -10%; opacity: 1; }
    80% { left: 110%; opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.hero-content .main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: titleSweep 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes titleSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Section contenu */
.legal-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blocs CGV */
.legal-block {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* Animation d'entrée */
    opacity: 0;
    transform: translateY(20px);
    animation: blockSlideIn 0.8s ease-out forwards;
}

.legal-block:nth-child(1) { animation-delay: 0.2s; }
.legal-block:nth-child(2) { animation-delay: 0.4s; }
.legal-block:nth-child(3) { animation-delay: 0.6s; }
.legal-block:nth-child(4) { animation-delay: 0.8s; }
.legal-block:nth-child(5) { animation-delay: 1.0s; }
.legal-block:nth-child(6) { animation-delay: 1.2s; }
.legal-block:nth-child(7) { animation-delay: 1.4s; }
.legal-block:nth-child(8) { animation-delay: 1.6s; }
.legal-block:nth-child(9) { animation-delay: 1.8s; }

@keyframes blockSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-block:hover {
    transform: translateY(-8px);
    border-color: #27ae60;
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.15);
}

.legal-block:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 12px 12px 0 0;
    animation: barSlide 0.5s ease-out;
}

@keyframes barSlide {
    from { width: 0; }
    to { width: 100%; }
}

/* Titres des articles */
.legal-title {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

/* Contenu des articles */
.legal-info {
    margin: 0;
    padding: 0;
}

.legal-info p {
    color: #34495e;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-info ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.legal-info li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-left: 4px solid #27ae60;
    border-radius: 8px;
    color: #34495e;
    transition: all 0.3s ease;
    position: relative;
}

.legal-info li::before {
    content: '📄';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.legal-info li:hover {
    background: white;
    transform: translateX(15px);
    border-left-color: #2ecc71;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    padding-left: 35px;
}

.legal-info li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    left: 8px;
}

.legal-info a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-info a:hover {
    color: #2ecc71;
    border-bottom-color: #2ecc71;
}

.legal-info strong {
    color: #27ae60;
    font-weight: 600;
}

/* Bloc litiges spécial */
.contact-block {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: #27ae60;
    position: relative;
    color: white;
}

.contact-block .legal-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-block .legal-info {
    color: white;
}

.contact-block .legal-info p {
    color: rgba(255,255,255,0.9);
}

.contact-block .legal-info a {
    color: #85e085;
}

.contact-block .legal-info a:hover {
    color: #a8e6a8;
}

.contact-block .legal-info strong {
    color: white;
}

.contact-block::after {
    content: '📄';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: contractRotate 12s linear infinite;
}

@keyframes contractRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact info dans le bloc litiges */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    border-color: #85e085;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(133, 224, 133, 0.2);
    background: rgba(255,255,255,0.15);
}

.contact-item::before {
    content: '📄';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-item:hover::before {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
    right: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.contact-item span:last-child {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.contact-item:hover span:last-child {
    color: #85e085;
}

/* Icônes spécifiques pour chaque type d'article */
.legal-block[data-article="pricing"]::after {
    content: '💰';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

.legal-block[data-article="warranty"]::after {
    content: '🛡️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

.legal-block[data-article="delivery"]::after {
    content: '🚚';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.1; }
}

/* Footer */
.footer-info {
    background: #27ae60;
    padding: 25px 0;
    color: white;
    text-align: center;
}

.last-update {
    color: #d5f4e6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-content .main-title::after {
        display: none; /* Pas de banderole sur mobile */
    }
    
    .legal-content-section {
        padding: 40px 0;
    }
    
    .legal-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-title {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .contact-item::before,
    .legal-info li::before {
        display: none;
    }
    
    .legal-info li:hover {
        transform: translateX(5px);
        padding-left: 25px;
    }
    
    .contact-block::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content .main-title {
        font-size: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.1rem;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* États focus pour l'accessibilité */
.contact-item:focus-within {
    outline: 3px solid rgba(39, 174, 96, 0.5);
    outline-offset: 2px;
}

.legal-info a:focus {
    outline: 2px solid #27ae60;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Animation de chargement pour les documents */
@keyframes contractLoad {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

.legal-block[data-contract-type]::after {
    content: '📄';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    animation: contractLoad 2s ease-in-out;
    opacity: 0.2;
}/* End custom CSS */