/* ============================================================
   Static Pages — Styles
   ============================================================ */

.page-container {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    text-align: justify;
    line-height: 1.8;
    box-shadow: var(--shadow-sm);
}

.page-container hr {
    border: 0;
    border-top: 2px dashed var(--color-cta);
    opacity: 0.5;
    margin: 20px 0;
}

.custom-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border-radius: var(--radius);
    padding: 10px 18px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 12px;
    width: 100%;
    display: block;
}

/* ============================================================
   Order Confirmation (thank-you) Page
   ============================================================ */

.thank-you-wrap {
    display: flex;
    justify-content: center;
    padding: 40px 16px 60px;
}

.thank-you-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--color-success);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon--danger {
    background: #fee2e2;
    color: var(--color-danger);
}

.thank-you-title {
    color: var(--color-text);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 6px;
}

.thank-you-lead {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
}

.thank-you-order-badge {
    display: inline-block;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thank-you-text {
    color: var(--color-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.thank-you-card .btn-cta {
    margin-top: 18px;
}
