/**
 * ==================================================================
 * Project      : Shops
 * File         : css/legal.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

.legal-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.legal-header {
    border: none;
    padding: 2rem;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;
}

.legal-header .btn-close {
    filter: invert(1);
}

.legal-badge {
    display: inline-block;

    padding: .4rem .9rem;

    border-radius: 999px;

    background: rgba(255,255,255,.15);

    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
}

.legal-body {
    padding: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.legal-section p,
.legal-section li {
    line-height: 1.8;
}

.legal-info-card {
    padding: 1rem 1.25rem;

    background: var(--primary-subtle);

    border-left: 4px solid var(--primary);

    border-radius: 12px;

    margin-bottom: 2rem;
}

.legal-link {
    transition: .2s;
}

.legal-link:hover {
    color: white !important;
}