/* SONIC STOREFRONT — Terms & Conditions Page Styles */

.terms-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.03) 0%, transparent 100%);
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.terms-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.terms-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-section h2 i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.terms-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
}

.terms-footer {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.terms-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .terms-card { padding: 30px; }
    .terms-hero h1 { font-size: 2.2rem; }
    .terms-section h2 { font-size: 1.3rem; }
}
