/* POLICES PERSONNALISÉES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');


/*=========================================================
	01 -> POLITIQUE LIV et RET
===========================================================*/


/* STRUCTURE PRINCIPALE */
.tr-policy-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.tr-policy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin: 50px 0;
    border: 1px solid #f0f0f0;
}

/* TITRES UNIQUES */
.tr-policy-main-title {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 600;
}

.tr-policy-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 2px;
}

.tr-policy-section-title {
    font-family: 'Montserrat', sans-serif;
    color: #3a3a3a;
    font-size: 1.9rem;
    margin: 3rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.tr-policy-icon {
    color: #6a11cb;
    font-size: 1.6rem;
    min-width: 30px;
}

/* LISTE PERSONNALISÉE */
.tr-policy-list {
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.tr-policy-list-item {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 40px;
    list-style-type: none;
    font-size: 1.08rem;
}

.tr-policy-bullet {
    position: absolute;
    left: 0;
    top: 0;
    color: #6a11cb;
    font-size: 1.8rem;
}

.tr-policy-feature-icon {
    margin-right: 12px;
    color: #2575fc;
    min-width: 25px;
}

/* PARAGRAPHE ET LIENS */
.tr-policy-text {
    margin-bottom: 1.8rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.tr-policy-highlight {
    color: #444;
    font-weight: 500;
}

.tr-policy-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.3) 50%, rgba(106,17,203,0.1) 100%);
    margin: 2.5rem 0;
}

.tr-policy-contact-link {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.tr-policy-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2575fc;
    transition: width 0.3s ease;
}

.tr-policy-contact-link:hover {
    color: #2575fc;
}

.tr-policy-contact-link:hover::after {
    width: 100%;
}

/* ANIMATIONS */
.tr-policy-animated-card {
    animation: trFadeSlideIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes trFadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tr-policy-list-item {
    transition: all 0.4s ease;
}

.tr-policy-list-item:hover {
    transform: translateX(8px);
}

/* VERSION MOBILE */
@media (max-width: 768px) {
    .tr-policy-card {
        padding: 30px;
        margin: 30px 0;
    }
    
    .tr-policy-main-title {
        font-size: 2.2rem;
    }
    
    .tr-policy-section-title {
        font-size: 1.6rem;
        flex-wrap: wrap;
    }
    
    .tr-policy-list-item {
        padding-left: 35px;
    }
}


/*=========================================================
	02  -> A PROPOS
===========================================================*/

/* STRUCTURE PRINCIPALE */
.tr-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tr-about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin: 60px 0;
    border: 1px solid #f0f0f0;
}

/* TITRES */
.tr-about-main-title {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.tr-about-main-title span {
    color: #ffbd59;
    position: relative;
}

.tr-about-main-title span:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffbd59, rgba(255,189,89,0.3));
}

.tr-about-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,189,89,0.1) 0%, rgba(255,189,89,0.5) 50%, rgba(255,189,89,0.1) 100%);
    margin: 2.5rem 0;
}

/* CONTENU */
.tr-about-content {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.tr-about-highlight {
    font-weight: 500;
    color: #444;
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

/* IMAGE */
.tr-about-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.tr-about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ANIMATIONS */
.tr-about-animated-card {
    animation: trFadeSlideUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes trFadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tr-about-card {
        padding: 35px;
    }
    
    .tr-about-main-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .tr-about-image-col {
        margin-top: 40px;
    }
    
    .tr-about-image {
        max-width: 80%;
        transform: none;
    }
}

@media (max-width: 768px) {
    .tr-about-card {
        padding: 25px;
        margin: 40px 0;
    }
    
    .tr-about-main-title {
        font-size: 2.2rem;
    }
    
    .tr-about-content {
        font-size: 1rem;
    }
}



/*=========================================================
	03  -> PROGRAMME DE FIDELITE
===========================================================*/

/* COULEURS */
:root {
    --tr-loyalty-primary: #6a11cb;
    --tr-loyalty-secondary: #2575fc;
    --tr-loyalty-accent: #ffbd59;
}

/* STRUCTURE PRINCIPALE */
.tr-loyalty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* EN-TÊTE */
.tr-loyalty-header {
    background: linear-gradient(135deg, var(--tr-loyalty-primary), var(--tr-loyalty-secondary));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.tr-loyalty-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/loyalty-pattern.png') center/cover;
    opacity: 0.1;
}

.tr-loyalty-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tr-loyalty-header h2 a {
    color: var(--tr-loyalty-accent);
    margin-right: 15px;
    transition: transform 0.5s ease;
    display: inline-block;
}

.tr-loyalty-header h2 a:hover {
    transform: rotate(15deg) scale(1.2);
}

.tr-loyalty-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* SECTIONS */
.tr-loyalty-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tr-loyalty-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tr-loyalty-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-loyalty-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tr-loyalty-section h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--tr-loyalty-primary), var(--tr-loyalty-secondary));
}

.tr-loyalty-section p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LISTES */
.tr-loyalty-list {
    padding-left: 0;
    list-style: none;
}

.tr-loyalty-list li {
    padding: 12px 0 12px 45px;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tr-loyalty-list li:hover {
    transform: translateX(10px);
    border-bottom-color: var(--tr-loyalty-accent);
}

.tr-loyalty-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--tr-loyalty-primary), var(--tr-loyalty-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(106,17,203,0.2);
}

/* SECTION AVANTAGES */
.tr-loyalty-benefits {
    background: linear-gradient(135deg, rgba(106,17,203,0.03), rgba(37,117,252,0.03));
}

.tr-loyalty-benefits .tr-loyalty-list li {
    padding-left: 60px;
}

.tr-loyalty-benefits .tr-loyalty-list li::before {
    content: "★";
    position: absolute;
    left: 35px;
    color: var(--tr-loyalty-accent);
    font-size: 1.2rem;
}

/* CTA */
.tr-loyalty-cta {
    text-align: center;
    padding: 60px 0;
}

.tr-loyalty-cta h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-loyalty-primary);
    font-size: 2rem;
    margin-bottom: 30px;
}

.tr-loyalty-btn {
    background: linear-gradient(135deg, var(--tr-loyalty-primary), var(--tr-loyalty-secondary));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(106,17,203,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tr-loyalty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(106,17,203,0.3);
    color: white;
}

.tr-loyalty-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.tr-loyalty-btn:hover::before {
    left: 100%;
}

/* ANIMATIONS */
@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tr-loyalty-animated {
    animation: trFadeIn 0.8s ease-out forwards;
}

/* DELAIS D'ANIMATION */
.tr-loyalty-section:nth-child(1) { animation-delay: 0.1s; }
.tr-loyalty-section:nth-child(2) { animation-delay: 0.3s; }
.tr-loyalty-section:nth-child(3) { animation-delay: 0.5s; }
.tr-loyalty-section:nth-child(4) { animation-delay: 0.7s; }
.tr-loyalty-cta { animation-delay: 0.9s; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-loyalty-header {
        padding: 60px 0;
    }
    
    .tr-loyalty-header h2 {
        font-size: 2.5rem;
    }
    
    .tr-loyalty-section {
        padding: 30px;
    }
}


/*=========================================================
	04  -> CONTACT
===========================================================*/

/* VARIABLES DE COULEUR */
:root {
    --tr-contact-primary: #6a11cb;
    --tr-contact-secondary: #2575fc;
    --tr-contact-accent: #ffbd59;
}

/* STRUCTURE PRINCIPALE */
.tr-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* CARTE DE FORMULAIRE */
.tr-contact-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: trFadeInUp 0.8s ease-out forwards;
}

/* TITRE */
.tr-contact-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-contact-primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.tr-contact-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--tr-contact-primary), var(--tr-contact-secondary));
}

/* CHAMPS DE FORMULAIRE */
.tr-form-group {
    margin-bottom: 25px;
    position: relative;
}

.tr-form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

.tr-form-control:focus {
    border-color: var(--tr-contact-accent);
    box-shadow: 0 0 0 3px rgba(106,17,203,0.1);
    background-color: white;
    outline: none;
}

.tr-form-control::placeholder {
    color: #999;
}

/* LABELS FLOTTANTS */
.tr-form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.tr-form-control:focus + label,
.tr-form-control:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: white;
    padding: 0 5px;
    color: var(--tr-contact-accent);
}

/* BOUTON */
.tr-contact-btn {
    background: linear-gradient(135deg, var(--tr-contact-accent), var(--tr-contact-secondary));
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px #fff;
    position: relative;
    overflow: hidden;
}

.tr-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #fff;
}

.tr-contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.tr-contact-btn:hover::before {
    left: 100%;
}

/* ANIMATIONS */
@keyframes trFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EFFET ICÔNES */
.tr-form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: all 0.3s ease;
}

.tr-form-control:focus ~ i {
    color: var(--tr-contact-accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-contact-card {
        padding: 30px;
    }
    
    .tr-contact-title {
        font-size: 2rem;
    }
}


/*=========================================================
	05  -> POLITIQUE CONFIDENTIALITE
===========================================================*/

/* VARIABLES */
:root {
    --tr-privacy-primary: #2c3e50;
    --tr-privacy-secondary: #3498db;
    --tr-privacy-accent: #e74c3c;
}

/* STRUCTURE PRINCIPALE */
.tr-privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* CARTE PRINCIPALE */
.tr-privacy-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: trFadeIn 0.8s ease-out forwards;
}

/* TITRES */
.tr-privacy-main-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-privacy-primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.tr-privacy-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--tr-privacy-primary), var(--tr-privacy-secondary));
    border-radius: 2px;
}

.tr-privacy-section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-privacy-primary);
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tr-privacy-icon {
    color: var(--tr-privacy-secondary);
    font-size: 1.6rem;
    min-width: 35px;
}

/* CONTENU */
.tr-privacy-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* LISTES */
.tr-privacy-list {
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.tr-privacy-list-item {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 50px;
    list-style-type: none;
    font-size: 1.08rem;
    transition: all 0.3s ease;
}

.tr-privacy-list-item:hover {
    transform: translateX(5px);
}

.tr-privacy-list-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-privacy-accent);
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    background: rgba(231,76,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-privacy-highlight {
    color: var(--tr-privacy-primary);
    font-weight: 500;
}

/* SEPARATEUR */
.tr-privacy-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(44,62,80,0.1) 0%, rgba(52,152,219,0.3) 50%, rgba(44,62,80,0.1) 100%);
    margin: 2.5rem 0;
}

/* LIEN DE CONTACT */
.tr-privacy-contact-link {
    color: var(--tr-privacy-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.tr-privacy-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tr-privacy-secondary);
    transition: width 0.3s ease;
}

.tr-privacy-contact-link:hover {
    color: var(--tr-privacy-primary);
}

.tr-privacy-contact-link:hover::after {
    width: 100%;
}

/* ANIMATIONS */
@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-privacy-card {
        padding: 30px;
        margin: 30px 0;
    }
    
    .tr-privacy-main-title {
        font-size: 2.2rem;
    }
    
    .tr-privacy-section-title {
        font-size: 1.6rem;
        flex-wrap: wrap;
    }
    
    .tr-privacy-list-item {
        padding-left: 45px;
    }
}

/*=========================================================
	05  -> CONDITION GENERALE DE VENTE
===========================================================*/

/* VARIABLES */
:root {
    --tr-cgv-primary: #2c3e50;
    --tr-cgv-secondary: #3498db;
    --tr-cgv-accent: #e74c3c;
    --tr-cgv-light: #f8f9fa;
}

/* STRUCTURE PRINCIPALE */
.tr-cgv-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* CARTE PRINCIPALE */
.tr-cgv-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: trFadeIn 0.8s ease-out forwards;
}

/* TITRES */
.tr-cgv-main-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-cgv-primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.tr-cgv-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--tr-cgv-primary), var(--tr-cgv-secondary));
    border-radius: 2px;
}

.tr-cgv-section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-cgv-primary);
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 45px;
}

.tr-cgv-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-cgv-secondary);
    font-size: 2rem;
}

/* CONTENU */
.tr-cgv-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* LISTES */
.tr-cgv-list {
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.tr-cgv-list-item {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 50px;
    list-style-type: none;
    font-size: 1.08rem;
    transition: all 0.3s ease;
}

.tr-cgv-list-item:hover {
    transform: translateX(5px);
}

.tr-cgv-list-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-cgv-accent);
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    background: rgba(231,76,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-cgv-highlight {
    color: var(--tr-cgv-primary);
    font-weight: 500;
}

/* SEPARATEUR */
.tr-cgv-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(44,62,80,0.1) 0%, rgba(52,152,219,0.3) 50%, rgba(44,62,80,0.1) 100%);
    margin: 2.5rem 0;
}

/* LIEN DE CONTACT */
.tr-cgv-contact-link {
    color: var(--tr-cgv-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.tr-cgv-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tr-cgv-secondary);
    transition: width 0.3s ease;
}

.tr-cgv-contact-link:hover {
    color: var(--tr-cgv-primary);
}

.tr-cgv-contact-link:hover::after {
    width: 100%;
}

/* ANIMATIONS */
@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-cgv-card {
        padding: 30px;
        margin: 30px 0;
    }
    
    .tr-cgv-main-title {
        font-size: 2.2rem;
    }
    
    .tr-cgv-section-title {
        font-size: 1.6rem;
        padding-left: 35px;
    }
    
    .tr-cgv-section-title::before {
        font-size: 1.5rem;
    }
    
    .tr-cgv-list-item {
        padding-left: 45px;
    }
}


/*=========================================================
	06  -> MENTIONS LEGALES
===========================================================*/

/* VARIABLES */
:root {
    --tr-legal-primary: #2c3e50;
    --tr-legal-secondary: #3498db;
    --tr-legal-accent: #e74c3c;
    --tr-legal-light: #f8f9fa;
}

/* STRUCTURE PRINCIPALE */
.tr-legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* CARTE PRINCIPALE */
.tr-legal-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: trFadeIn 0.8s ease-out forwards;
}

/* TITRES */
.tr-legal-main-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-legal-primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.tr-legal-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--tr-legal-primary), var(--tr-legal-secondary));
    border-radius: 2px;
}

.tr-legal-section-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--tr-legal-primary);
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 45px;
}

.tr-legal-section-title::before {
    content: "¶";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-legal-secondary);
    font-size: 2rem;
}

/* CONTENU */
.tr-legal-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* INFORMATIONS JURIDIQUES */
.tr-legal-info {
    margin-bottom: 1.5rem;
    padding-left: 45px;
    position: relative;
}

.tr-legal-info i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-legal-accent);
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    background: rgba(231,76,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-legal-highlight {
    color: var(--tr-legal-primary);
    font-weight: 500;
}

/* SEPARATEUR */
.tr-legal-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(44,62,80,0.1) 0%, rgba(52,152,219,0.3) 50%, rgba(44,62,80,0.1) 100%);
    margin: 2.5rem 0;
}

/* LIEN DE CONTACT */
.tr-legal-contact-link {
    color: var(--tr-legal-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.tr-legal-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tr-legal-secondary);
    transition: width 0.3s ease;
}

.tr-legal-contact-link:hover {
    color: var(--tr-legal-primary);
}

.tr-legal-contact-link:hover::after {
    width: 100%;
}

/* ANIMATIONS */
@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-legal-card {
        padding: 30px;
        margin: 30px 0;
    }
    
    .tr-legal-main-title {
        font-size: 2.2rem;
    }
    
    .tr-legal-section-title {
        font-size: 1.6rem;
        padding-left: 35px;
    }
    
    .tr-legal-section-title::before {
        font-size: 1.5rem;
    }
    
    .tr-legal-info {
        padding-left: 35px;
    }
}


/*=========================================================
	07  -> FOOTER 
===========================================================*/

/* Structure principale */
.tr-footer-container {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.tr-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px; /* Espacement entre les colonnes */
}

/* Colonnes du footer */
.tr-footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Titres des sections - Version améliorée */
.tr-footer-title {
    color: #ffbd59;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px; /* Plus d'espace en dessous */
    position: relative;
    padding-bottom: 15px; /* Plus grand pour le séparateur */
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ligne de séparation */
}

.tr-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Position ajustée */
    width: 60px; /* Plus large */
    height: 3px; /* Plus épais */
    background: linear-gradient(to right, #ffbd59, rgba(255,189,89,0.3));
}

/* Liens du footer */
.tr-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tr-footer-links li {
    margin-bottom: 15px; /* Plus d'espace entre les liens */
    transition: all 0.3s ease;
    padding: 5px 0; /* Espacement interne */
}

.tr-footer-links li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05); /* Fond au survol */
    border-radius: 4px;
    padding-left: 5px;
}

.tr-footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.tr-footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.tr-footer-links i {
    margin-right: 12px; /* Plus d'espace après l'icône */
    font-size: 1.1rem;
    min-width: 25px; /* Largeur fixe pour l'alignement */
    text-align: center;
}

/* Section paiements */
.tr-footer-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Plus d'espace entre les icônes */
    list-style: none;
    padding: 0;
    margin: 40px 0 0; /* Plus d'espace au-dessus */
}

.tr-footer-payments li a {
    color: #ffffff;
    font-size: 2.2rem; /* Légèrement plus grand */
    transition: all 0.3s ease;
    display: block;
    line-height: 1;
}

.tr-footer-payments li a:hover {
    color: #ffbd59;
    transform: translateY(-5px) scale(1.1); /* Animation plus visible */
}

/* Copyright */
.tr-footer-copyright {
    text-align: center;
    padding-top: 40px; /* Plus d'espace */
    margin-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.15); /* Ligne plus visible */
    font-size: 0.9rem;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

/* Animation */
@keyframes trFooterFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tr-footer-col {
    animation: trFooterFadeIn 0.5s ease-out forwards;
}

/* Délais d'animation pour chaque colonne */
.tr-footer-col:nth-child(1) { animation-delay: 0.1s; }
.tr-footer-col:nth-child(2) { animation-delay: 0.2s; }
.tr-footer-col:nth-child(3) { animation-delay: 0.3s; }
.tr-footer-col:nth-child(4) { animation-delay: 0.4s; }
.tr-footer-col:nth-child(5) { animation-delay: 0.5s; }
.tr-footer-col:nth-child(6) { animation-delay: 0.6s; }

/* Responsive spécifique */
@media (max-width: 991px) {
    .tr-footer-col {
        min-width: 160px;
    }
}

@media (max-width: 767px) {
    .tr-footer-col {
        min-width: 45%;
    }
    
    .tr-footer-title {
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .tr-footer-col {
        min-width: 100%;
        text-align: center;
    }
    
    .tr-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tr-footer-links a {
        justify-content: center;
    }
    
    .tr-footer-links li:hover {
        transform: none;
        padding-left: 0;
    }
}

.tr-footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 20px 0;
}

.tr-footer-payments li {
    transition: transform 0.3s ease;
}

.tr-footer-payments li:hover {
    transform: translateY(-5px);
}

.tr-payment-img {
    width: 60px;
    height: auto;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.tr-payment-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tr-footer-payments {
        gap: 10px;
    }
    
    .tr-payment-img {
        width: 50px;
    }
}

.tr-footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 20px 0;
}

.tr-footer-payments li {
    transition: transform 0.3s ease;
}

.tr-footer-payments li:hover {
    transform: translateY(-5px);
}

.tr-payment-img {
    width: 60px;
    height: auto;
    filter: grayscale(30%);
    transition: all 0.3s ease;
    border-radius : 50%;
}

.tr-payment-img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tr-footer-payments {
        gap: 10px;
    }
    
    .tr-payment-img {
        width: 50px;
    }
}


/*=========================================================
	07  -> COOKIE 
===========================================================*/

/* VARIABLES */
:root {
    --tr-cookie-primary: #6a11cb;
    --tr-cookie-secondary: #2575fc;
    --tr-cookie-accent: #ffbd59;
    --tr-cookie-light: #f8f9fa;
    --tr-cookie-black: #020910;
}

/* STRUCTURE PRINCIPALE */
.tr-cookie-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* CARTE PRINCIPALE */
.tr-cookie-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: trFadeIn 0.8s ease-out forwards;
}

/* TITRES */
.tr-cookie-main-title {
    font-family: 'Marcellus', sans-serif;
    color: var(--tr-cookie-primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 15px;
}

.tr-cookie-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--tr-cookie-primary), var(--tr-cookie-secondary));
    border-radius: 2px;
}

.tr-cookie-main-title i {
    color: var(--tr-cookie-accent);
    font-size: 2.5rem;
}

.tr-cookie-section-title {
    font-family: 'Marcellus', sans-serif;
    color: var(--tr-cookie-black);
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 45px;
}

.tr-cookie-section-title::before {
    content: "🍪";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
}

/* CONTENU */
.tr-cookie-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* LISTES */
.tr-cookie-list {
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.tr-cookie-list-item {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 50px;
    list-style-type: none;
    font-size: 1.08rem;
    transition: all 0.3s ease;
}

.tr-cookie-list-item:hover {
    transform: translateX(5px);
}

.tr-cookie-list-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tr-cookie-secondary);
    font-size: 1.3rem;
    width: 35px;
    height: 35px;
    background: rgba(37,117,252,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-cookie-highlight {
    color: var(--tr-cookie-primary);
    font-weight: 500;
}

/* SEPARATEUR */
.tr-cookie-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.3) 50%, rgba(106,17,203,0.1) 100%);
    margin: 2.5rem 0;
}

/* LIEN DE CONTACT */
.tr-cookie-contact-link {
    color: var(--tr-cookie-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.tr-cookie-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tr-cookie-secondary);
    transition: width 0.3s ease;
}

.tr-cookie-contact-link:hover {
    color: var(--tr-cookie-primary);
}

.tr-cookie-contact-link:hover::after {
    width: 100%;
}

/* ANIMATIONS */
@keyframes trFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tr-cookie-card {
        padding: 30px;
        margin: 30px 0;
    }
    
    .tr-cookie-main-title {
        font-size: 2.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .tr-cookie-main-title::after {
        left: 0;
        transform: none;
    }
    
    .tr-cookie-section-title {
        font-size: 1.6rem;
        padding-left: 35px;
    }
    
    .tr-cookie-section-title::before {
        font-size: 1.5rem;
    }
    
    .tr-cookie-list-item {
        padding-left: 45px;
    }
}



/*=========================================================
	07  -> NEWSLETTER  
===========================================================*/

/* Structure principale */
.tr-newsletter-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
}

.tr-newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr-newsletter-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Texte */
.tr-newsletter-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.tr-newsletter-highlight {
    color: #27ae60;
    font-weight: 700;
}

.tr-newsletter-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.tr-newsletter-follow {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

/* Formulaire */
.tr-newsletter-form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.tr-newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tr-newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.tr-newsletter-input::placeholder {
    color: #bdc3c7;
}

.tr-newsletter-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr-newsletter-button:hover {
    background: linear-gradient(135deg, #219955 0%, #27ae60 100%);
    transform: translateY(-2px);
}

.tr-newsletter-button i {
    font-size: 1.2rem;
}

/* Réseaux sociaux */
.tr-newsletter-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tr-newsletter-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tr-newsletter-social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

.tr-social-facebook {
    background: #3b5998;
}

.tr-social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tr-social-whatsapp {
    background: #25D366;
}

.tr-newsletter-message {
    margin-top: 15px;
    min-height: 20px;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.tr-newsletter-message.show {
    opacity: 1;
    height: auto;
    padding: 10px;
    margin-top: 15px;
}

.tr-newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tr-newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .tr-newsletter-card {
        padding: 30px 20px;
    }
    
    .tr-newsletter-title {
        font-size: 1.6rem;
    }
    
    .tr-newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .tr-newsletter-input {
        padding: 15px;
        border-radius: 12px 12px 0 0;
    }
    
    .tr-newsletter-button {
        padding: 15px;
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }
}