/* Styles pour la page Conditions Générales de Vente (CGV) - Segmenté dans assets/css/cgv.css */

.intex-cgv-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    color: #374151;
    font-family: inherit;
}

/* Header Section */
.intex-cgv-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin-bottom: 35px;
    border: 1px solid #bae6fd;
}

.intex-cgv-header-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #1c90a1;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 14px;
}

.intex-cgv-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.intex-cgv-header p {
    font-size: 15px;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.intex-cgv-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

/* Section Cards */
.intex-cgv-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.intex-cgv-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.intex-cgv-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.intex-cgv-card h2 svg {
    width: 24px;
    height: 24px;
    color: #1c90a1;
    flex-shrink: 0;
}

.intex-cgv-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 20px 0 10px;
}

.intex-cgv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 14px;
}

.intex-cgv-card p:last-child {
    margin-bottom: 0;
}

/* Vendor Info Box */
.intex-cgv-vendor-info {
    background-color: #f8fafc;
    border-left: 4px solid #1c90a1;
    padding: 18px 22px;
    border-radius: 0 10px 10px 0;
    margin: 18px 0;
}

.intex-cgv-vendor-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.intex-cgv-vendor-info p:last-child {
    margin-bottom: 0;
}

/* Lists */
.intex-cgv-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.intex-cgv-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.intex-cgv-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    top: 0;
    color: #1c90a1;
    font-weight: bold;
    font-size: 18px;
}

/* Legal Quotation Boxes */
.intex-cgv-quote-box {
    background-color: #f1f5f9;
    border-left: 3px solid #64748b;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 14px 0;
    font-style: italic;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .intex-cgv-wrapper {
        padding: 15px 15px 40px;
    }

    .intex-cgv-header {
        padding: 28px 16px;
    }

    .intex-cgv-header h1 {
        font-size: 24px;
    }

    .intex-cgv-card {
        padding: 20px 20px;
    }

    .intex-cgv-card h2 {
        font-size: 18px;
    }
}
