/* ===================================================================
   Flick UI – Base styles for Auth/Login and reusable components
   -------------------------------------------------------------------
   • Uses CSS variables (easy theming)
   • Component classes match the Blade markup (brand/card/form/input/btn)
   • Minimal reset scoped to body/html
   =================================================================== */

/* ---------------------- CSS Variables ----------------------------- */
:root {
    /* Palette */
    --bg-dark: #111827;
    /* slate-900 */
    --bg-elev: #1f2937;
    /* slate-800 */
    --surface: #ffffff;
    /* card */
    --text: #111827;
    /* dark text */
    --text-yellow: #F8D54C;
    /* yellow text */
    --muted: #6b7280;
    /* slate-500 */
    --line: #e5e7eb;
    /* gray-200 */

    --primary: #111827;
    /* near-black for button (matches screenshot) */
    --primary-hover: #0b1220;
    --ring: rgba(17, 24, 39, .15);

    --radius-sm: .375rem;
    --radius-md: .5rem;
    --radius-lg: .75rem;

    --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------------------- Base / Reset ------------------------------ */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: #f3f4f6;
    /* default page bg; auth overrides with dark */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------------------- Auth Layout ------------------------------- */
.auth {
    min-height: 100vh;
    display: grid;
    align-items: start;
}

.auth--dark-bg {
    background: var(--bg-dark);
    color: #e5e7eb;
}

.auth__container {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    padding: 48px 16px 72px;
}

/* Brand (logo + product name) */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 24px;
}

.brand--center {
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.brand__logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffd24d, #ffb800);
    display: grid;
    place-items: center;
}

.brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.brand__fallback {
    display: grid;
    place-items: center;
}

.brand__monogram {
    font-weight: 800;
    font-size: 28px;
    color: #111;
}

.brand__name {
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    letter-spacing: .2px;
}

/* ---------------------- Card ------------------------------------- */
.card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
}

.auth-card {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.card__body {
    padding: 40px 40px 32px;
}

/* ---------------------- Typography -------------------------------- */
.auth-card__title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    color: #111827;
    font-weight: 700;
}

.auth-card__subtitle {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* when card sits on dark background */
.auth--dark-bg .auth-card {}

/* ---------------------- Forms ------------------------------------ */
.form {
    display: grid;
    gap: 18px;
}

.form--stack {
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 4px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Input with left icon + optional right addon button */
.input {
    position: relative;
}

.input--with-icon .input__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}

.input__control {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    /* space for left icon */
    font-size: 14px;
    background: #fff;
    color: #111827;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
}

.input--with-icon .input__control {
    padding-left: 40px;
    margin-top: 4px;
}

.input__control:focus {
    border-color: #9ca3af;
}

.input__control.is-invalid {
    border-color: #ef4444;
}

/* Right-side addon (eye toggle) */
.input__addon-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
}

.input__addon-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.form-feedback {
    font-size: 12px;
    line-height: 1.4;
}

.form-feedback--error {
    color: #b91c1c;
}

.form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: -4px;
}

/* Checkbox */
.check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.check__control {
    width: 16px;
    height: 16px;
    accent-color: #111827;
}

.check__label {
    font-size: 14px;
    color: #111827;
}

/* Links */
.link {
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.link--emphasis {
    color: #111827;
    font-weight: 600;
}

.link--emphasis:hover {
    text-decoration: underline;
}

/* Actions */
.form-actions {
    margin-top: 4px;
}

/* Buttons */
.btn {
    appearance: none;
    border: 1px solid transparent;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
}

.btn--white {
    background: var(--surface);
    border: 1px solid black;
    color: #000;
}

.btn--white:hover {
    background: var(--surface);
    border: 1px solid black;
    color: var(--text-yellow);
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--primary-hover);
    color: var(--text-yellow);
}

.btn--primary:active {
    transform: translateY(1px);
}

.btn--block {
    display: block;
    width: 100%;
    height: 48px;
}

/* Alerts */
.alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* ---------------------- Responsive -------------------------------- */
@media (max-width: 520px) {
    .card__body {
        padding: 28px 20px;
    }

    .auth__container {
        padding: 28px 12px 48px;
    }

    .brand__name {
        font-size: 24px;
    }
}

/* ---------------------- Utilities (select few) -------------------- */
.u-hidden {
    display: none !important;
}

.u-center {
    text-align: center;
}

.u-muted {
    color: var(--muted);
}

/* ===================================================================
   Dashboard Layout (Sidebar + Topbar)
   Matches markup in resources/views/layouts/app.blade.php
   =================================================================== */

/* ---- extra palette for app shell ---- */
:root {
    --shell-bg: #0b1220;
    /* dark navy background */
    --sidebar-bg: #0e1626;
    /* sidebar */
    --sidebar-line: rgba(255, 255, 255, .06);
    --sidebar-text: #cbd5e1;
    /* slate-300 */
    --sidebar-text-dim: #94a3b8;
    /* slate-400 */
    --sidebar-active-bg: #1f2937;
    /* slate-800 */
    --sidebar-active-text: #e5e7eb;
    --topbar-bg: #0e1626;
}

/* ---- global app layout ---- */
.layout {
    min-height: 100vh;
    background: #f3f4f6;
}

/* Sidebar */
.layout__sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 300px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    border-right: 1px solid var(--sidebar-line);
    overflow-y: auto;
    scrollbar-gutter: stable;
    padding: 14px 12px;
    transform: translateX(0);
    transition: transform .25s ease;
    z-index: 1030;
}

.layout__sidebar.is-open {
    transform: translateX(0);
}

/* toggled by JS on mobile */

/* Brand (compact) */
.brand--compact {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.brand__logo-wrap--sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffd24d, #ffb800);
    display: grid;
    place-items: center
}

.brand__name--sm {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

/* Sections */
.sidebar__nav {
    display: grid;
    gap: 8px;
    margin-top: 12px
}

.side-section {
    border-top: 1px solid var(--sidebar-line);
    padding-top: 10px
}

.side-section:first-child {
    border-top: 0;
    padding-top: 0
}

.side-section__toggle {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--sidebar-text-dim);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px
}

.side-section__toggle:focus {
    outline: none;
}

.side-section__title {
    flex: 1;
    text-align: left
}

/* Menu items */
.side-menu {
    list-style: none;
    margin: 6px 0 8px;
    padding: 0;
    display: grid;
    gap: 4px
}

.side-item {}

.side-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--sidebar-text);
    text-decoration: none
}

.side-link:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff
}

.side-item.is-active>.side-link {
    background: var(--sidebar-active-bg);
    color: var(--sidebar-active-text)
}

.side-link__icon {
    opacity: .9;
    width: 18px;
    display: inline-grid;
    place-items: center
}

.side-link__text {
    font-size: 14px;
}

/* Topbar */
.layout__main {
    margin-left: 300px;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.topbar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: var(--topbar-bg);
    color: #e5e7eb;
    border-bottom: 1px solid var(--sidebar-line);
    position: sticky;
    top: 0;
    z-index: 1020
}

.topbar__menu {
    background: transparent;
    border: 0;
    color: #e5e7eb
}

.topbar__path .crumb {
    font-size: 13px;
    color: #9ca3af;
    margin-right: 6px
}

/* Topbar right */
.account-pill {
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px 0 18px;
    background: #3a4758;
    color: #e5e7eb;
    border-radius: 16px;
}

.account-pill__value {
    font-weight: 800;
    letter-spacing: .2px;
    color: #22c55e;
    font-size: 18px
}

.account-pill__add {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, #7a94b8, #6f88aa);
    color: #e5e7eb;
    font-weight: 800;
    cursor: pointer
}

.account-pill__add:hover {
    filter: brightness(1.05)
}

/* optional icon button (kept for future use) */
.icon-btn {
    background: transparent;
    border: 0;
    color: #e5e7eb;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    margin-right: 8px
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .08)
}

.avatar-btn {
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #3a4758;
    color: #dbe2ea;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 22px
}

/* Content wrapper */
.layout__content {
    padding: 24px;
}

/* Cards in content (generic) */
.card--elev {
    background: #fff;
    border-radius: 14px;
}

/* Scrollbar (WebKit) */
.layout__sidebar::-webkit-scrollbar {
    width: 10px
}

.layout__sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .08);
    border-radius: 8px
}

.layout__sidebar::-webkit-scrollbar-track {
    background: transparent
}

/* ------- Responsive ------- */
@media (max-width: 992px) {
    .layout__sidebar {
        transform: translateX(-100%)
    }

    .layout__sidebar.is-open {
        transform: translateX(0)
    }

    .layout__main {
        margin-left: 0
    }
}

@media (max-width: 576px) {
    .account-pill {
        height: 38px;
        border-radius: 14px;
        padding: 0 8px 0 14px
    }

    .account-pill__value {
        font-size: 16px
    }

    .account-pill__add {
        width: 32px;
        height: 32px
    }

    .avatar {
        width: 42px;
        height: 42px;
        font-size: 18px
    }
}

.topbar__right {
    display: flex;
    align-items: center;
}

.balance-pill {
    display: flex;
    align-items: center;
    background-color: #3A4758;
    text-decoration: none;
    height: 34px;
    border-radius: 12px;
    padding: 0 3px 0 15px;
    margin-right: 16px;
}

.balance-value {
    color: #22C55E;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    margin-right: 12px;
}

.add-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, #7A94B8, #6F88AA);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 4;
    margin-right: 5px;
    ;
}

.add-button-icon {
    color: white;
    font-size: 10px;
    font-weight: 700;
}

.user-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3565C2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0;
}

.user-avatar-glyph {
    width: 18px;
    color: white;
    height: 18px;
    opacity: 1;
}

/* ================================================================
   Dashboard Content: Breadcrumb, Stat Cards, Announcement Cards
   ================================================================ */

/* Page head */
.page-head {
    margin-bottom: 18px
}

.breadcrumb-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 6px
}

.breadcrumb-mini a {
    text-decoration: none;
}

.breadcrumb-mini i {
    color: #9ca3af
}

.page-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin: 0
}

.page-title-2 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin: 0
}

/* Stat grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 12px 0 22px
}

@media (max-width: 992px) {
    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 560px) {
    .stat-grid {
        grid-template-columns: 1fr
    }
}

/* Stat card */
.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px
}

.stat-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.stat-card__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .075em;
    color: #94a3b8
}

.stat-card__ico-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
}

.stat-card__ico-wrap i {
    font-size: 18px
}

.ico--blue {
    background: #438EF7
}

.ico--green {
    background: #22c55e
}

.ico--purple {
    background: #8b5cf6
}

.ico--orange {
    background: #f59e0b
}

.ico--red {
    background: #ef4444
}

.stat-card__value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 2px
}

.stat-card__hint {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px
}

/* Announcement cards */
.announce-list {
    display: grid;
    gap: 20px
}

.announce-card {
    border-radius: 18px;
    background: #fff;
    padding: 18px 22px
}

.announce-card__head {
    margin-bottom: 8px
}

.announce-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px
}

.announce-card__meta {
    font-size: 12px;
    color: #9ca3af
}

.announce-card__body {
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6
}

.announce-card__body a {
    color: #438EF7;
    text-decoration: none
}

.announce-card__body a:hover {
    text-decoration: underline
}

/* ================================================================
   Top Seller Page: search bar, table styles, status & actions
   ================================================================ */

/* Search bar container (pill card) */
.sellers-search {
    padding: 14px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 16px
}

.sellers-search__form {
    display: flex;
    align-items: center;
    gap: 14px
}

.sellers-search__input {
    flex: 1
}

.sellers-search__btn {
    min-width: 120px;
    height: 48px;
    border-radius: 12px;
}

@media (max-width: 576px) {
    .sellers-search__form {
        flex-direction: column;
        align-items: stretch
    }

    .sellers-search__btn {
        width: 100%
    }
}

/* Table card wrapper */
.table-card {
    background: #fff;
    border-radius: 18px;
}

.table-card--soft {
    overflow: hidden
}

.table-card__footer {
    padding: 12px 16px
}

/* Core table */
.table-flick {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

.table-flick thead th {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7
}

.table-flick tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle;
    color: #1f2937;
    font-size: 14px
}

.table-flick tbody tr:hover {
    background: #f9fafb
}

/* First & last cell rounding (visual like screenshot) */
.table-card .table-responsive {
    border-radius: 18px
}

.table-card .table-responsive table tr:first-child th:first-child {
    border-top-left-radius: 12px
}

.table-card .table-responsive table tr:first-child th:last-child {
    border-top-right-radius: 12px
}

/* Seller cell (avatar + name) */
.seller-cell {
    display: flex;
    align-items: center;
    gap: 12px
}

.seller-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.seller-name {
    font-weight: 600;
    color: #111827
}

/* Status dot + text */
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle
}

.is-online {
    background: #22c55e
}

.is-offline {
    background: #ef4444
}

.text-online {
    color: #22c55e;
    font-weight: 600
}

.text-offline {
    color: #ef4444;
    font-weight: 600
}

/* Buttons (soft tone) */
.btn--soft {
    background: #e8f7ef;
    border: 1px solid #d3f1e0;
    color: #0d7a43
}

.btn--soft:hover {
    filter: brightness(0.98)
}

.btn--success {
    background: #86efac;
    border-color: #86efac;
    color: #065f46
}

.btn--pill {
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

/* Align right header like screenshot */
.table-flick th.text-end,
.table-flick td.text-end {
    text-align: right
}

/* --- Top Seller polish: match reference exactly --- */
/* Search input look */
.sellers-search {
    padding: 18px;
    border-radius: 22px
}

.sellers-search__input .input__control {
    background: #f3f6f9;
    border: 1px solid #eef2f7;
    height: 52px;
    border-radius: 14px
}

.sellers-search__input .input__control::placeholder {
    color: #a0a8b5
}

.sellers-search__btn {
    background: #111827;
    border: 0;
}

/* Table header & rows */
.table-flick thead th {
    background: #fff;
    border-bottom: 1px solid #eaeef4;
    color: #0f1b2a
}

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

.table-flick tbody tr:hover {
    background: #f5f7fb
}

.table-flick tbody td {
    padding: 18px 16px
}

/* Action button (using existing markup) */
.table-flick .btn.btn--soft.btn--success.btn--pill {
    background: #34d399;
    border-color: #34d399;
    color: #fff;
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px
}

.table-flick .btn.btn--soft.btn--success.btn--pill i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0f766e;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    color: #fff
}

.table-flick .btn.btn--soft.btn--success.btn--pill span {
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: 12px
}

.table-flick .btn.btn--soft.btn--success.btn--pill:hover {
    filter: brightness(0.98)
}

/* ================================================================
   Purchase Cards: filter form + BUY button
   ================================================================ */
.purchase-filter {
    background: #fff;
    border-radius: 22px;
    padding: 18px 18px 12px
}

.purchase-filter__form {
    display: grid;
    gap: 16px
}

/* Grid of inputs */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

@media (max-width: 992px) {
    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 560px) {
    .filter-grid {
        grid-template-columns: 1fr
    }
}

.filter-field {
    display: grid;
    gap: 6px
}

.filter-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #000;
    text-transform: uppercase
}

.filter-field .input__control,
.filter-field select.input__control {
    height: 48px;
    background: #f3f6f9;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 10px 12px
}

.filter-field .input__control::placeholder {
    color: #a0a8b5
}

/* Options row: switch + checks */
.filter-options {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 6px 2px
}

/* iOS-like switch */
.switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.switch input {
    appearance: none;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: #e5e7eb;
    position: relative;
    outline: none;
    transition: background .2s ease
}

.switch input::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s ease
}

.switch input:checked {
    background: #22c55e
}

.switch input:checked::after {
    transform: translateX(20px)
}

.switch__label {
    font-size: 14px;
    color: #1f2937
}

.check-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1f2937
}

.check-inline input {
    width: 16px;
    height: 16px;
    accent-color: #111827
}

/* Actions */
.filter-actions {
    padding: 4px 0 6px
}

.filter-actions .btn.btn--primary {
    height: 46px;
    border-radius: 12px;
    background: #111827;
    border: 0;
}

/* BUY button in table */
.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #34d399;
    color: #fff;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
}

.btn-buy:hover {
    filter: brightness(.98)
}

.btn-buy__label {
    display: inline-block
}


/* ================================================================
   Alerts – Orange (No Cards Available)
   ================================================================ */
.alert-orange {
    background: #f59e0b;
    /* vivid orange, not soft */
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* caret on the right (uses Font Awesome if available, falls back to CSS arrow) */
.alert-orange::after {
    /* content: "\f078"; */
    /* fa-chevron-down */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", Arial, sans-serif;
    font-weight: 900;
    opacity: .95;
}

/* ================================================================
   Badges – Checked / Not Checked
   ================================================================ */
.badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: 12px;
}

.badge-status--checked {
    background: #c9f3e2;
    color: #22c55e;
}

.badge-status--notchecked {
    background: #fed39a;
    color: #f59e0b;
}

.option-card {
    border-radius: 22px;
    background: #fff;
}

.option-card__body {
    padding: 4px 28px
}

.option-card__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f1b2a;
    margin: 0 0 12px
}

/* List */
.option-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 16px
}

.option-item {
    border-bottom: 1px solid #e9edf3
}

.option-item:last-child {
    border-bottom: 1px solid #e9edf3
}

/* Row */
.option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    cursor: pointer
}

.option-label {
    font-size: 18px;
    color: #0f1b2a
}

/* Custom radio (right) */
.option-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.option-radio-ui {
    width: 28px;
    height: 28px;
    border-radius: 16px;
    border: 2px solid #d9dee7;
    background: #fff;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.option-row:hover .option-radio-ui {
    box-shadow: 0 0 0 3px rgba(124, 108, 246, .12)
}

/* checked state: purple square with white check */
.option-radio:checked+.option-radio-ui {
    background: #7c6cf6;
    border-color: #7c6cf6
}

.option-radio:checked+.option-radio-ui::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", Arial, sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 14px;
}

/* Actions */
.option-actions {
    padding-top: 18px
}

.btn--shadow {
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18)
}

@media (max-width: 560px) {
    .option-card__body {
        padding: 20px
    }

    .option-label {
        font-size: 16px
    }

    .option-radio-ui {
        width: 26px;
        height: 26px
    }
}


/* ================================================================
   Waiting Payment: address/metrics/QR + status pill
   ================================================================ */
.payment-grid {
    display: grid;
    grid-template-columns: 1.2fr .6fr;
    gap: 24px
}

.payment-grid__left {
    display: grid;
    gap: 16px
}

.payment-grid__right {
    display: grid
}

/* Address big card */
.payment-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.payment-card__body {
    padding: 56px
}

.payment-address {
    text-align: left;
}

.payment-address a {
    text-decoration: none;
}

.payment-address__value {
    font-size: 22px;
    font-weight: 700;
    color: #2b6cb0;
    text-decoration: none;
    word-break: break-all
}

.payment-address__value:hover {
    text-decoration: none;
}

.payment-address__hint {
    margin-top: 8px;
    font-size: 14px;
    color: #9ca3af
}

/* Metrics small cards */
.payment-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px
}

.metric-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.metric-card__body {
    padding: 42px;
    text-align: left;
}

.metric-card__value {
    font-size: 22px;
    font-weight: 500;
    color: #0f172a
}

.metric-card__hint {
    margin-top: 8px;
    font-size: 14px;
    color: #9ca3af
}

/* QR card */
.qr-card {
    border-radius: 24px;
    background: #fff;
    align-self: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.qr-card__body {
    padding: 20px;
}

.qr-card__img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px
}

/* Status pill (bottom left) */
.status-row {
    margin-top: 6px;
    text-align: left;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 12px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-weight: 700
}

.status-pill__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block
}

.status-pill--waiting .status-pill__dot {
    animation: pulse-dot 1.5s ease-in-out infinite
}

@keyframes pulse-dot {
    0% {
        opacity: .5
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .5
    }
}

/* Responsive */
@media (max-width: 992px) {
    .payment-grid {
        grid-template-columns: 1fr
    }

    .qr-card__body {
        display: grid;
        place-items: center
    }
}

/* ================================================================
   Payment Confirmed (Success) styling
   ================================================================ */
.payment-card--success {
    background: #22c55e;
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, .35)
}

.payment-card--success .payment-card__body {
    padding: 56px
}

.payment-status__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px
}

.payment-status__hint {
    font-size: 16px;
    color: rgba(255, 255, 255, .8)
}

/* Right success icon card */
.qr-card--success {
    border-radius: 24px
}

.qr-card--success .qr-card__body {
    background: #c8f6d3;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 40px
}

.success-icon {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #16a34a;
    display: grid;
    place-items: center;
    color: #fff;
}

.success-icon i {
    font-size: 94px;
    line-height: 1
}

/* ================================================================
   Payment Failed styling
   ================================================================ */
.payment-card--failed {
    background: #7f1228;
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(127, 18, 40, .28)
}

.payment-card--failed .payment-card__body {
    padding: 56px
}

/* Right failed icon card */
.qr-card--failed .qr-card__body {
    background: #fbd2d7;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 40px
}

.failure-icon {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ff003d;
    display: grid;
    place-items: center;
    color: #fff
}

.failure-icon i {
    font-size: 94px;
    line-height: 1
}

/* Button tweak for Done */
.btn--primary.btn--pill {
    border-radius: 999px;
    height: 42px;
    padding: 0 18px
}

/* ================================================================
   Badges – Checked / Not Checked
   ================================================================ */
.badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: 12px;
}

.badge-status--checked {
    background: #c9f3e2;
    color: #22c55e;
}

.badge-status--notchecked {
    background: #fed39a;
    color: #f59e0b;
}


.badge-status--failed {
    background: #fbd2d7;
    color: #ef4444;
}

/* ================================================================
   Country Wise Prices – Banner & form polish
   ================================================================ */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500
}

.banner--success {
    background: #52AB74;
    color: #fff;
    box-shadow: 0 6px 16px rgba(34, 197, 94, .25)
}

/* Make default input & grid inputs match screenshot spacing */
.country-prices .filter-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #374151;
    text-transform: none
}

.country-prices .input__control {
    height: 44px;
    background: #f6f8fb;
    border: 1px solid #e6ecf3;
    border-radius: 10px
}

.country-prices .row.g-3 {
    --bs-gutter-y: 1rem
}


/* ================================================================
   Card Upload (CSV) – Drag & Drop zone + form tune
   ================================================================ */
.card-upload .page-title {
    margin-bottom: 12px
}

.upload-form .filter-field label {
    font-size: 14px;
    font-weight: 700;
    color: #111827
}

.upload-form .input__control {
    height: 56px;
    background: #fff;
    border: 1px solid #e6ecf3;
    border-radius: 12px
}

.upload-form .field-help {
    margin-top: 6px;
    font-size: 13px;
    color: #94a3af
}

/* Dropzone */
.upload-dropzone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 1px dashed #d8e1ee;
    background: #fff;
    border-radius: 12px;
    color: #6b7280;
    font-size: 16px
}

.upload-dropzone:hover {
    background: #f7fafc;
    border-color: #c5d2e6
}

.upload-dropzone .browse-link {
    color: #0f172a;
    font-weight: 700;
    text-decoration: underline
}

/* Banner spacing on this page */
.card-upload .banner {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px
}

/* ================================================================
   Withdraw Request – note banner, filter card, scrollable table
   ================================================================ */
/* Yellow note banner */
.note-banner {
    border-radius: 14px
}

.note-banner--yellow {
    background: #FEF3C7;
    /* amber-100 */
    border: 1px solid #FDE68A;
    color: #4B5563
}

.note-list {
    margin: 0;
    padding-left: 18px
}

.note-list li {
    margin: 4px 0
}

/* Filter card spacing */
.filter-card {
    border-radius: 18px;
    background: #fff
}

.filter-card .p-3 {
    padding: 16px !important
}

.filter-card .filter-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111827
}

.filter-card .input__control {
    height: 46px;
    background: #f3f6f9;
    border: 1px solid #eef2f7;
    border-radius: 12px
}

.filter-card .btn.btn-outline-secondary {
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff
}

.filter-card .btn.btn-outline-secondary:hover {
    background: #f9fafb
}

/* Table wrapper (horizontal scroll) */
.table-card.table-card--soft .table-responsive {
    overflow-x: auto
}

.table-flick th,
.table-flick td {
    white-space: nowrap
}

/* Status badges */
.badge-status--checked {
    background: #c9f3e2;
    color: #22c55e
}

.badge-status--notchecked {
    background: #ffe4e6;
    color: #ef4444
}

/* Action buttons */
.btn.btn-sm {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px
}

.btn-outline-danger {
    border: 1px solid #fecaca;
    color: #b91c1c;
    background: #fff
}

.btn-outline-danger:hover {
    background: #fee2e2
}

.btn--soft {
    background: #eef2ff;
    border: 1px solid #e0e7ff;
    color: #374151
}

.btn--soft:hover {
    filter: brightness(.98)
}

/* ================================================================
   Table Actions – icons and 'duplicates' chip
   ================================================================ */
.table-actions {
    display: flex;
    align-items: center;
    gap: 18px
}

.action-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 28px;
    height: 28px;
    color: #1f2937
}

.action-ico i {
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

/* ring only for the search icon */
.action-ico--ring {
    /* border: 2px solid #111827; */
    border-radius: 50%
}

/* Duplicates chip */
.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
}

.chip--outline {
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02)
}

/* ================================================================
   Base Detail (show) – layout, stat cards, ring, legends, pills
   ================================================================ */
.base-detail-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    overflow: hidden
}

.base-detail-card .page-title {
    margin: 0
}

/* main grid */
.base-detail__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    padding: 26px
}

@media (max-width: 992px) {
    .base-detail__grid {
        grid-template-columns: 1fr;
    }
}

.section-block {
    margin-bottom: 26px
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px
}

/* key-value list (dt/dd) */
.kv-list {
    display: grid;
    gap: 10px
}

.kv {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px
}

.kv dt {
    width: 140px;
    text-align: left;
    color: #6b7280;
    font-weight: 700
}

.kv dd {
    margin: 0;
    color: #0f172a
}

.kv-list--two .kv dt {
    width: 220px
}

/* tiny muted helper */
.u-muted {
    color: #9ca3af
}

/* status pill (top right) */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700
}

.status-pill--success {
    background: #dcfce7;
    color: #16a34a
}

.status-pill--danger {
    background: #fee2e2;
    color: #ef4444
}

/* stat cards on the right */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

@media (max-width: 576px) {
    .stats-cards {
        grid-template-columns: 1fr
    }
}

.stat-card {
    border-radius: 16px;
    background: #f8fafc;
    padding: 16px 18px;
    text-align: left;
    border: 1px solid #eef2f7
}

.stat-card__label {
    font-size: 13px;
    font-weight: 700;
    color: #94a3af;
    margin-bottom: 8px
}

.stat-card__value {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a
}

.stat-card .text-success {
    color: #16a34a
}

/* validity breakdown */
.validity-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: center
}

@media (max-width: 640px) {
    .validity-grid {
        grid-template-columns: 1fr
    }
}

.ring {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 18px solid #ef4444;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* place-items: center; */
    margin: auto
}

.ring__value {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1
}

.ring__label {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 6px
}

.legend-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px
}

.legend-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block
}

.dot--green {
    background: #22c55e
}

.dot--amber {
    background: #f59e0b
}

.dot--red {
    background: #ef4444
}

.legend-n {
    margin-left: auto;
    color: #0f172a
}

/* ================================================================
   Sold Items – filter card + table polish
   ================================================================ */
.sold-filter.card--elev {
    border-radius: 22px
}

.sold-filter .form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111827
}

.sold-filter .input__control {
    height: 48px;
    background: #f3f6f9;
    border: 1px solid #eef2f7;
    border-radius: 12px
}

.sold-filter .btn.btn--primary {
    height: 46px;
    border-radius: 12px
}

.sold-filter .btn.btn-outline-secondary {
    border: 1px solid #d1d5db;
    color: #374151
}

/* Table tweaks to match screenshot spacing */
.sold-table .table-flick thead th {
    background: #fff;
    border-bottom: 1px solid #eaeef4;
    color: #0f1b2a;
    padding: 16px
}

.sold-table .table-flick tbody td {
    padding: 18px 16px
}

.sold-table .table-flick tbody tr:nth-child(even) {
    background: #fafbfc
}

/* Bank cell highlight for non refundable */
.text-danger,
.danger {
    color: #ef4444 !important
}

.text-muted {
    color: #9ca3af !important
}


/* ================================================================
   Card Killer – status banner, collapsible info, form polish
   ================================================================ */
/* Red status banner */
.status-banner {
    background: #D63A5A;
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    line-height: 1.35;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06)
}

.status-banner strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px
}

/* Orange toggle header ("More Information") */
.more-info-toggle {
    background: #F59E0B;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
    position: relative
}

.more-info-toggle:hover {
    filter: brightness(.98)
}

.more-info-toggle.btn,
.more-info-toggle.btn:hover,
.more-info-toggle.btn:focus,
.more-info-toggle.btn:active {
    background: #F59E0B !important;
    color: #fff !important;
    border-color: #F59E0B !important;
    box-shadow: none !important;
}

.more-info-toggle {
    transition: filter .15s ease, background-color .15s ease
}

.more-info-toggle::after {
    transition: transform .15s ease
}

.more-info-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg)
}

.more-info-toggle::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    opacity: .9
}

/* Expanded info box */
.info-box {
    background: #F59E0B;
    color: #fff;
    border-radius: 10px
}

.info-box p {
    margin-bottom: 10px
}

.info-box p strong {
    font-weight: 800
}

/* Form spacing under the collapsible */
.card--elev form .form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111827
}

.card--elev form .input__control {
    height: 48px;
    background: #f3f6f9;
    border: 1px solid #eef2f7;
    border-radius: 12px
}

.card--elev .btn.btn--primary {
    height: 44px;
    border-radius: 12px
}

/* Bonus usability: drag-hover state for CSV dropzone */
.upload-dropzone.is-hover {
    background: #f3f6f9;
    border-color: #b9c6db
}

/* ================================================================
   Card Checker & Order CC Scan – banner + form polish
   ================================================================ */
/* Big green banner like screenshot */
.alert-success {
    background: #16a34a;
    /* emerald-600 */
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 18px 20px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(22, 163, 74, .18)
}

/* Inputs in these forms already reuse .input__control; just tune textarea */
textarea.input__control {
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px
}

/* Bootstrap-like radios/switches theming to fit palette */
.form-check-input:checked {
    background-color: #111827;
    /* match primary (black) */
    border-color: #111827;
}

.form-check-input:focus {
    box-shadow: 0 0 0 .2rem rgba(17, 24, 39, .12);
    border-color: #111827
}

/* Spacing helpers inside cards containing forms */
.form-section {
    margin-bottom: 18px
}

.form-row-gap {
    row-gap: 14px
}

/* Subtle helper text color */
.form-text.text-muted {
    color: #6b7280 !important
}

/* Add styles for search filter buttons (Domain, Email, Username, Password) */
.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.filter-btn {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.filter-btn:hover {
    background: #f3f4f6;
}

.filter-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}

/* ================================================================
   Profile – KPI icon cards & balance bar
   ================================================================ */
/* Header (avatar + meta) */
.f-profile-header {
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

.f-profile-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.f-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover
}

.f-profile-meta .f-name {
    font-weight: 800;
    font-size: 20px;
    color: #0f172a
}

.f-profile-meta .f-handle {
    color: #6b7280;
    font-size: 14px
}

.f-badge--new {
    background: #1f2937;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700
}

/* KPI cards grid */
.f-grid.f-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px
}

@media (max-width:992px) {
    .f-grid.f-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:560px) {
    .f-grid.f-kpis {
        grid-template-columns: 1fr
    }
}

/* Single KPI card */
.f-card.f-kpi {
    background: #fff;
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

.f-kpi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px
}

.f-kpi-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #94a3b8;
    text-transform: uppercase
}

.f-kpi-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f1b2a
}

/* Round icon on the right */
.f-kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff
}

.f-kpi-icon i {
    font-size: 20px;
    line-height: 1
}

/* Color variants */
.f-ic-deposit {
    background: #438EF7
}

.f-ic-cc {
    background: #22c55e
}

.f-ic-refunded {
    background: #f59e0b
}

.f-ic-back {
    background: #ef4444
}

.f-ic-spent {
    background: #16a34a
}

.f-ic-srefunded {
    background: #8b5cf6
}

/* Balance bar */
.f-card.f-balance {
    background: #fff;
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

.f-ic-dollar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: grid;
    place-items: center
}

.f-ic-dollar i {
    font-size: 18px
}

.f-balance-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a
}

.f-balance-right {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a
}

/* ================================================================
   Pricing Plans – grid & cards (Weekly / Monthly / Premium)
   ================================================================ */
.page-head {
    margin-bottom: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f1b2a;
    text-align: center;
    margin: 6px 0 18px;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 44px;
    font-weight: 800;
    color: #0f1b2a;
}

.pricing-unit {
    font-size: 32px;
    font-weight: 700;
    color: #cbd5e1;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 24px;
    display: grid;
    gap: 14px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    color: #6b7280;
}

.pricing-list .check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #22c55e;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .08);
}

.pricing-cta {
    margin-top: auto;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(17, 24, 39, .12);
}

.pricing-cta:hover {
    color: #F8D54C;
    filter: brightness(.98);
}
