/* ==========================================================================
   TAIBA STATIONERY — PAGES_STYLES.CSS
   Support complet : FR (LTR) + AR (RTL) + Responsive + Livreurs / Titres
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. SECTION PRINCIPALE & INTRO
   -------------------------------------------------------------------------- */
.liste-section {
    padding: 0px 0 60px;
}

.section-intro {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.section-description {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}


/* --------------------------------------------------------------------------
   2. GRILLE ET CARTES LIVREURS
   -------------------------------------------------------------------------- */
.livreurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.livreur-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.livreur-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.livreur-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

[dir="rtl"] .livreur-badge {
    right: auto;
    left: 10px;
}

.livreur-logo-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #faf8f5;
    overflow: hidden;
}

.livreur-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 2.2rem;
    color: #7b1113;
}

.livreur-nom {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
}

.livreur-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #475569;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    word-break: break-all;
}

.contact-item i {
    color: #7b1113;
    font-size: 0.85rem;
    flex-shrink: 0;
}

a.contact-item:hover {
    background: #fff5f5;
    color: #d32f2f;
}

.contact-item.link-item {
    font-weight: 700;
    color: #7b1113;
}


/* --------------------------------------------------------------------------
   3. ÉTAT VIDE (AUCUN ÉLÉMENT)
   -------------------------------------------------------------------------- */
.list-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #faf8f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.list-empty-icon {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #cbd5e1;
}

.list-empty h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
}

.list-empty p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 24px;
}

.btn-list-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 26px;
    background: #c62828;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.2);
    transition: all 0.2s ease;
}

.btn-list-shop:hover {
    background: #b71c1c;
    color: #ffffff;
}


/* --------------------------------------------------------------------------
   4. PAGINATION
   -------------------------------------------------------------------------- */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* --------------------------------------------------------------------------
   5. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #faf8f5;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fec341 0%, #e5b039 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 20px;
    color: #1e293b;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.faq-search {
    position: relative;
    width: 100%;
}

.faq-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.faq-search input:focus {
    border-color: #7b1113;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.faq-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

[dir="rtl"] .faq-search input {
    padding: 12px 45px 12px 20px;
}

[dir="rtl"] .faq-search i {
    left: auto;
    right: 16px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #fff;
}

.accordion-item:hover {
    border-color: #cbd5e1;
}

.accordion-item.active {
    border-color: #7b1113;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-item.active .accordion-header {
    background: #fff5f5;
}

.accordion-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    background: #faf8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

[dir="rtl"] .accordion-icon {
    margin-left: 0;
    margin-right: 12px;
}

.accordion-icon i {
    font-size: 0.75rem;
    color: #475569;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: #7b1113;
}

.accordion-item.active .accordion-icon i {
    color: #fff;
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    transition: max-height 0.5s ease-in-out;
}

.accordion-body-content {
    padding: 15px 20px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    border-top: 1px solid #faf8f5;
}

.faq-contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-box-icon {
    width: 60px;
    height: 60px;
    background: #fec341;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-box-icon i {
    font-size: 24px;
    color: #1e293b;
}

.contact-box-content {
    flex: 1;
}

.contact-box-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.contact-box-content p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #c62828;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.btn-contact:hover {
    background: #b71c1c;
    color: #fff;
    transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   6. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.about-hero-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.about-hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 250px;
    border-radius: 12px;
}

.experience-badge {
    background: linear-gradient(135deg, #fec341 0%, #e5b039 100%);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(229, 176, 57, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 6px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.stat-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    color: #7b1113;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.about-story, 
.about-why {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #faf8f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.section-header-center h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 16px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.why-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.why-description {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

.why-list li i {
    color: #2e7d32;
    font-size: 1.1rem;
}

.about-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-cta h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #7b1113;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-cta-primary:hover {
    background: #b71c1c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   7. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px; 
}

.form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 4px;
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert ul {
    padding-left: 15px;
    margin: 0;
}

[dir="rtl"] .alert ul {
    padding-left: 0;
    padding-right: 15px;
}

.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group label i {
    color: #7b1113;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 10px 14px !important; 
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem; 
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #7b1113;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #7b1113;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-submit:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card, 
.contact-social-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.contact-info-card h3, 
.contact-social-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.contact-info-card p, 
.social-description {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #fff5f5;
    color: #7b1113;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.info-content span {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.4;
    word-break: break-word;
}

.social-links-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links-contact a {
    width: 42px;
    height: 42px;
    background: #faf8f5;
    color: #1e293b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.social-links-contact a:hover {
    background: #d32f2f;
    color: #ffffff;
    transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   8. CGU SECTION
   -------------------------------------------------------------------------- */
.cgu-container {
    margin: 0 20px;
}

.cgu-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.cgu-card-header {
    margin-bottom: 16px;
}

.cgu-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    border-left: 5px solid #7b1113;
    padding-left: 12px;
    margin: 0;
}

[dir="rtl"] .cgu-card-title {
    border-left: none;
    border-right: 5px solid #7b1113;
    padding-left: 0;
    padding-right: 12px;
}

.cgu-card-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0px !important;
}

.cgu-subsection {
    margin-top: 20px;
}

.cgu-subsection h4 {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cgu-subsection p {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.restriction-list {
    margin-top: 15px;
    padding-left: 20px;
    color: #64748b;
}

[dir="rtl"] .restriction-list {
    padding-left: 0;
    padding-right: 20px;
}

.restriction-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cgu-card .contact-info {
    margin-top: 20px;
    padding: 20px;  
}

.cgu-card .contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cgu-card .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cgu-card .info-icon {
    width: 40px;
    height: 40px;
    background: #fff5f5;
    color: #7b1113;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cgu-card .info-content h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.cgu-card .info-content span {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    word-break: break-word;
}


/* --------------------------------------------------------------------------
   9. ERROR 404 SECTION
   -------------------------------------------------------------------------- */
.error-404-section {
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #faf8f5;
}

.error-404-animation {
    margin-bottom: 25px;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 6rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.error-number .number-4,
.error-number .number-0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-number .number-0 {
    width: 90px;
    height: 90px;
    background: #fff5f5;
    color: #7b1113;
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(123, 17, 19, 0.15);
    animation: bounceIcon 2s infinite ease-in-out;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.error-404-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.error-404-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-suggestions {
    margin-bottom: 35px;
    border-top: 1px solid #faf8f5;
    padding-top: 30px;
}

.suggestions-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.suggestions-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-suggestion {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-suggestion.btn-primary {
    background: #7b1113;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(123, 17, 19, 0.2);
}

.btn-suggestion.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.btn-suggestion.btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-suggestion.btn-secondary:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateY(-2px);
}

.btn-suggestion.btn-outline {
    background: transparent;
    color: #7b1113;
    border: 1px solid #fecaca;
}

.btn-suggestion.btn-outline:hover {
    background: #fff5f5;
    transform: translateY(-2px);
}

.error-404-search {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #faf8f5;
}

.search-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.search-form-404 {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.search-input-404 {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
}

.search-input-404:focus {
    border-color: #7b1113;
    box-shadow: 0 0 0 3px rgba(123, 17, 19, 0.1);
}

.search-btn-404 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1e293b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-btn-404:hover {
    background: #0f172a;
    transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .livreurs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .livreurs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary, 
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-container, 
    .contact-info-card, 
    .contact-social-card,
    .cgu-card {
        padding: 24px 20px;
    }

    .cgu-card-title {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    [dir="rtl"] .cgu-card-title {
        padding-left: 0;
        padding-right: 10px;
    }

    .cgu-subsection h4 {
        font-size: 1rem;
    }

    /* Responsive 404 */
    .error-404-content {
        padding: 35px 20px;
    }

    .error-number {
        font-size: 4.5rem;
    }

    .error-number .number-0 {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .suggestions-buttons {
        flex-direction: column;
    }

    .btn-suggestion {
        width: 100%;
        justify-content: center;
    }

    .search-form-404 {
        flex-direction: column;
    }

    .search-btn-404 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-title-card {
        padding: 14px 20px;
        gap: 6px;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    [dir="rtl"] .page-title-card {
        align-items: flex-start !important;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .page-breadcrumb {
        font-size: 0.82rem;
    }

    .livreurs-grid {
        grid-template-columns: 1fr;
    }
}

.unsubscribe-wrapper {
	padding: 60px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
}

.unsubscribe-card {
	max-width: 520px;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 40px 30px;
	text-align: center;
	border: 1px solid #f1f5f9;
}

.unsubscribe-icon-box {
	width: 80px;
	height: 80px;
	background-color: #fef2f2;
	color: #d32f2f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	margin: 0 auto 20px;
}

.unsubscribe-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
}

.unsubscribe-text {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 28px;
}

.unsubscribe-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.btn-return-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #d32f2f;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.btn-return-home:hover {
	background-color: #b71c1c;
	color: #ffffff;
}