﻿/*----------------------------------------*/
/*  Fees Page — Tiko Wallet
/*----------------------------------------*/

/* ─── Hero ─── */
.fee-hero-subtitle {
    font-family: var(--tp-ff-body, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tp-common-red-2, #FF481F);
    margin-bottom: 16px;
    display: inline-block;
}

.fee-hero-meta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.fee-hero-meta span {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(20, 20, 20, 0.04);
    border-radius: 30px;
    font-family: var(--tp-ff-body, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: var(--tp-common-black, #141414);
    letter-spacing: 0;
}

.fee-hero-meta span strong {
    color: var(--tp-common-red-2, #FF481F);
    font-weight: 700;
    margin-right: 4px;
}

/* ─── Section (each table group) ─── */
.fee-section {
    margin-bottom: 48px;
}

.fee-section-title {
    font-family: var(--tp-ff-heading, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tp-common-black, #141414);
    background-color: rgba(255, 72, 31, 0.06);
    padding: 18px 24px;
    border-radius: 12px 12px 0 0;
    border-left: 3px solid var(--tp-common-red-2, #FF481F);
    margin: 0;
}

/* ─── Table Wrapper ─── */
.fee-table-wrapper {
    overflow-x: auto;
    background-color: #ffffff;
    border: 1px solid var(--tp-border-1, #EAEBED);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 1px 3px rgba(20, 20, 20, 0.04);
}

/* ─── Table ─── */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--tp-ff-body, 'Outfit', sans-serif);
    font-size: 15px;
    white-space: nowrap;
}

.fee-table thead tr {
    background-color: var(--tp-common-black, #141414);
}

.fee-table thead th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    color: #ffffff;
    border: none;
}

.fee-table thead th:first-child {
    text-align: left;
}

.fee-table tbody tr {
    border-bottom: 1px solid #f3f3f3;
    transition: background-color 0.2s ease;
}

.fee-table tbody tr:last-child {
    border-bottom: none;
}

.fee-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.fee-table tbody tr:hover {
    background-color: rgba(255, 72, 31, 0.04);
}

.fee-table td {
    padding: 16px 20px;
    color: var(--tp-text-body, #2e2d2d);
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.5;
}

.fee-table td:not(:first-child) {
    text-align: center;
}

.fee-table td:first-child {
    font-weight: 500;
    color: var(--tp-common-black, #141414);
}

/* ─── Value Pills ─── */
.fee-free {
    color: #1B9E7C;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fee-limit {
    color: var(--tp-common-black, #141414);
    font-weight: 600;
}

.fee-rate {
    color: var(--tp-common-red-2, #FF481F);
    font-weight: 600;
}

.fee-dash {
    color: #9ca3af;
    font-weight: 400;
}

sup.fee-note {
    color: var(--tp-common-red-2, #FF481F);
    font-weight: 700;
    font-size: 0.7em;
    margin-left: 2px;
}

/* ─── Footnotes ─── */
.fee-footnotes {
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 28px;
    background-color: #fafafa;
    border-radius: 12px;
}

.fee-footnotes-title {
    font-family: var(--tp-ff-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-common-black, #141414);
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tp-common-red-2, #FF481F);
}

.fee-footnotes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fee-footnotes-list p {
    font-family: var(--tp-ff-body, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0;
}

.fee-footnotes-list p strong {
    color: var(--tp-common-black, #141414);
    font-weight: 600;
}

/* ─── Warning Box ─── */
.fee-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #fff8f5;
    border: 1px solid rgba(255, 72, 31, 0.2);
    border-left: 3px solid var(--tp-common-red-2, #FF481F);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
}

.fee-warning-icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

.fee-warning p {
    font-family: var(--tp-ff-body, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0;
}

.fee-warning p strong {
    color: var(--tp-common-black, #141414);
    font-weight: 600;
}

/* ─── Dark Mode ─── */
.agntix-dark .fee-section-title {
    background-color: rgba(255, 72, 31, 0.1);
    color: #ffffff;
}

.agntix-dark .fee-table-wrapper {
    background-color: #16171a;
    border-color: rgba(255, 255, 255, 0.08);
}

.agntix-dark .fee-table thead tr {
    background-color: #0a0b0d;
}

.agntix-dark .fee-table tbody tr {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.agntix-dark .fee-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.agntix-dark .fee-table tbody tr:hover {
    background-color: rgba(255, 72, 31, 0.06);
}

.agntix-dark .fee-table td {
    color: rgba(255, 255, 255, 0.75);
}

.agntix-dark .fee-table td:first-child {
    color: #ffffff;
}

.agntix-dark .fee-limit {
    color: #ffffff;
}

.agntix-dark .fee-dash {
    color: rgba(255, 255, 255, 0.3);
}

.agntix-dark .fee-footnotes {
    background-color: rgba(255, 255, 255, 0.02);
}

.agntix-dark .fee-footnotes-title {
    color: #ffffff;
}

.agntix-dark .fee-footnotes-list p {
    color: rgba(255, 255, 255, 0.6);
}

.agntix-dark .fee-footnotes-list p strong {
    color: rgba(255, 255, 255, 0.9);
}

.agntix-dark .fee-warning {
    background-color: rgba(255, 72, 31, 0.06);
    border-color: rgba(255, 72, 31, 0.25);
}

.agntix-dark .fee-warning p {
    color: rgba(255, 255, 255, 0.7);
}

.agntix-dark .fee-warning p strong {
    color: #ffffff;
}

.agntix-dark .fee-hero-meta span {
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .fee-section {
        margin-bottom: 36px;
    }
    .fee-section-title {
        font-size: 14px;
        padding: 16px 20px;
    }
    .fee-table {
        font-size: 14px;
    }
    .fee-table td,
    .fee-table th {
        padding: 14px 16px;
    }
    .fee-footnotes {
        padding: 20px;
    }
    .fee-footnotes-title {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .fee-section-title {
        font-size: 13px;
        padding: 14px 16px;
        letter-spacing: 0.03em;
    }
    .fee-table {
        font-size: 13px;
    }
    .fee-table td,
    .fee-table th {
        padding: 12px 14px;
    }
    .fee-table thead th {
        font-size: 12px;
    }
    .fee-footnotes-list p,
    .fee-warning p {
        font-size: 13px;
    }

    .tp-pd-5-hero-ptb {
        padding-bottom: 50px !important;
    }
}


.tp-pd-5-light-ptb {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
