﻿/* =============================================
   SKY MY TRIP — WALLET & TRANSACTIONS PAGE
   Professional · Market-level UI
   ============================================= */

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #243370;
    --blue-700: #1a2558;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --primary: #243370;
    --primary-dark: #1a2558;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-xs: 0 1px 3px rgba(15, 23, 42, .06);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .08);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, .10);
    --shadow-lg: 0 12px 36px rgba(15, 23, 42, .13);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-full: 9999px;
    --font: 'Calibri', sans-serif;
}

.flight-page {
    font-family: var(--font);
    -webkit-font-smoothing: antialiased
}

.flight-page button,
.flight-page input {
    font-family: var(--font)
}

.flight-page a {
    font-family: var(--font);
    text-decoration: none;
    color: inherit
}

.flight-page {
    background: #eef2f9;
    min-height: 100vh
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 16px
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow .3s ease, border-color .3s ease
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(15, 23, 42, .09);
    border-bottom-color: transparent
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.8px;
    cursor: pointer;
    line-height: 1;
    transition: transform .2s ease
}

.logo:hover {
    transform: scale(1.02)
}

.logo-blue {
    color: var(--blue-600)
}

.logo-orange {
    color: var(--orange-500)
}

.logo-plane {
    font-size: 14px;
    color: var(--orange-400);
    margin-left: 3px;
    display: inline-block;
    transform: rotate(-10deg);
    transition: transform .3s ease
}

.logo:hover .logo-plane {
    transform: rotate(0deg) translateX(3px)
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.wallet-hdr-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--slate-50);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease
}

.wallet-hdr-btn svg {
    color: var(--blue-500);
    font-size: 14px
}

.wallet-hdr-btn:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .1)
}

.notif-wrap {
    position: relative;
    display: inline-flex
}

.notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse-dot 2.2s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.35);
        opacity: .6
    }
}

.icon {
    font-size: 18px;
    color: var(--slate-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color .2s ease, transform .2s ease
}

.icon:hover {
    color: var(--primary);
    transform: scale(1.1)
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--r-md);
    transition: background .2s ease
}

.profile-trigger:hover {
    background: #f5f8ff
}

.profile-text {
    text-align: right
}

.name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2
}

.role {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted)
}

.user {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, .2);
    display: block;
    flex-shrink: 0;
    transition: transform .2s ease, box-shadow .2s ease
}

.user:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .28)
}

/* =============================================
   WALLET HERO BANNER
   ============================================= */
.wlt-hero {
    background: linear-gradient(135deg, #080e22 0%, #0e2060 45%, #1462c8 100%);
    padding: 20px 0 0;
    position: relative;
    overflow: hidden
}

.wlt-hero::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    right: -80px;
    top: -150px;
    pointer-events: none
}

.wlt-hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    left: 8%;
    bottom: -70px;
    pointer-events: none
}

.wlt-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding-bottom: 16px
}

/* Left */
.wlt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.wlt-hero-title {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px
}

.wlt-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    margin-bottom: 14px
}

.wlt-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.wlt-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r-full);
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, .4);
    transition: transform .2s ease, box-shadow .2s ease
}

.wlt-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, .5)
}

.wlt-withdraw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(255, 255, 255, .25);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease
}

.wlt-withdraw-btn:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px)
}

/* Stats */
.wlt-hero-stats {
    display: flex;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-xl);
    overflow: hidden
}

.wlt-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px
}

.wlt-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .1);
    align-self: stretch
}

.wlt-stat p {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 5px
}

.wlt-stat h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.4px
}

.wlt-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.wlt-stat.credit .wlt-stat-icon {
    background: rgba(34, 197, 94, .2);
    color: #4ade80
}

.wlt-stat.debit .wlt-stat-icon {
    background: rgba(248, 113, 113, .2);
    color: #f87171
}

.wlt-stat-icon.neutral {
    background: rgba(96, 165, 250, .2);
    color: #93c5fd
}

/* Spend bar */
.wlt-spend-bar-wrap {
    padding-bottom: 14px;
    position: relative;
    z-index: 1
}

.wlt-spend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 8px
}

.wlt-spend-track {
    height: 5px;
    background: rgba(255, 255, 255, .15);
    border-radius: var(--r-full);
    overflow: hidden
}

.wlt-spend-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, .8));
    border-radius: var(--r-full);
    transition: width .5s ease
}

/* =============================================
   ADD MONEY MODAL
   ============================================= */
.wlt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .65);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fade-in .2s ease both
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.wlt-modal {
    background: #fff;
    border-radius: var(--r-2xl);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .3);
    animation: modal-in .3s cubic-bezier(.34, 1.56, .64, 1) both
}

@keyframes modal-in {
    from {
        transform: translateY(24px) scale(.97);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

.wlt-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px
}

.wlt-modal-head h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3px
}

.wlt-modal-head p {
    font-size: 12px;
    color: var(--text-muted)
}

.wlt-modal-close {
    background: var(--slate-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--r-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    transition: background .18s ease, color .18s ease
}

.wlt-modal-close:hover {
    background: var(--slate-200);
    color: var(--text-primary)
}

.wlt-modal-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--slate-50);
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color .18s ease
}

.wlt-modal-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.wlt-rupee {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-muted);
    padding: 14px 16px;
    border-right: 2px solid var(--border)
}

.wlt-modal-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    padding: 14px 16px
}

.wlt-modal-input::placeholder {
    color: var(--slate-300)
}

.wlt-modal-input::-webkit-inner-spin-button,
.wlt-modal-input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.wlt-quick-amounts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px
}

.wlt-quick-amt {
    flex: 1;
    min-width: 80px;
    padding: 9px 12px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap
}

.wlt-quick-amt:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    color: var(--primary)
}

.wlt-quick-amt.active {
    background: var(--blue-50);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .12)
}

.wlt-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 15px;
    border-radius: var(--r-lg);
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 99, 235, .32);
    transition: transform .2s ease, box-shadow .2s ease;
    margin-bottom: 12px
}

.wlt-confirm-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .42)
}

.wlt-confirm-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.wlt-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: inline-block
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.wlt-modal-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.wlt-modal-note svg {
    color: #16a34a;
    font-size: 12px
}

.wlt-add-success {
    text-align: center;
    padding: 20px 0
}

.wlt-success-icon {
    font-size: 52px;
    color: #22c55e;
    margin-bottom: 16px;
    display: block;
    animation: bounce-in .4s cubic-bezier(.34, 1.56, .64, 1) both
}

@keyframes bounce-in {
    from {
        transform: scale(.5);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.wlt-add-success h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px
}

.wlt-add-success p {
    font-size: 14px;
    color: var(--text-secondary)
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.wlt-main {
    padding: 28px 0 80px
}

/* Filter Bar */
.wlt-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.wlt-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 0 16px;
    flex: 1;
    min-width: 200px;
    transition: border-color .18s ease, box-shadow .18s ease
}

.wlt-search:focus-within {
    border-color: var(--blue-300);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.wlt-search-icon {
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color .18s ease
}

.wlt-search:focus-within .wlt-search-icon {
    color: var(--primary)
}

.wlt-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-primary);
    padding: 12px 0
}

.wlt-search input::placeholder {
    color: var(--slate-300)
}

.wlt-clear-search {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    font-size: 12px;
    transition: color .18s ease
}

.wlt-clear-search:hover {
    color: var(--text-primary)
}

.wlt-filter-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 4px
}

.wlt-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: var(--r-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s ease
}

.wlt-tab:hover {
    background: var(--slate-50);
    color: var(--text-secondary)
}

.wlt-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .28)
}

.wlt-tab-icon {
    font-size: 10px
}

.wlt-tab-icon.credit {
    color: inherit
}

.wlt-tab-icon.debit {
    color: inherit
}

.wlt-tab-count {
    font-size: 10px;
    font-weight: 800;
    background: rgba(255, 255, 255, .25);
    padding: 1px 6px;
    border-radius: var(--r-full)
}

.wlt-tab:not(.active) .wlt-tab-count {
    background: var(--slate-100);
    color: var(--text-muted)
}

.wlt-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 11px 18px;
    border-radius: var(--r-xl);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s ease
}

.wlt-export-btn:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    color: var(--primary)
}

.wlt-results-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 14px
}

.wlt-results-text b {
    color: var(--text-primary);
    font-weight: 700
}

/* EMPTY STATE */
.wlt-empty {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: var(--r-2xl);
    border: 1.5px dashed var(--border)
}

.wlt-empty-icon {
    font-size: 42px;
    color: var(--slate-200);
    margin-bottom: 16px;
    display: block
}

.wlt-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px
}

.wlt-empty p {
    font-size: 14px;
    color: var(--text-muted)
}

/* =============================================
   TRANSACTION CARDS
   ============================================= */
.wlt-txn-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wlt-txn-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: var(--r-xl);
    padding: 18px 22px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: pointer
}

.wlt-txn-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-200)
}

.wlt-txn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .2s ease
}

.wlt-txn-card:hover .wlt-txn-icon {
    transform: scale(1.08)
}

.wlt-txn-info {
    flex: 1;
    min-width: 0
}

.wlt-txn-info h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3px
}

.wlt-txn-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px
}

.wlt-txn-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px
}

.wlt-meta-icon {
    font-size: 10px
}

.wlt-txn-meta b {
    color: var(--text-secondary);
    font-weight: 700
}

.wlt-txn-right {
    text-align: right;
    flex-shrink: 0
}

.wlt-credit {
    font-size: 18px;
    font-weight: 900;
    color: #16a34a;
    letter-spacing: -.4px;
    margin-bottom: 6px
}

.wlt-debit {
    font-size: 18px;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: -.4px;
    margin-bottom: 6px
}

.wlt-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--r-full);
    border: 1.5px solid;
    letter-spacing: .3px
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--slate-900);
    color: #fff;
    padding: 64px 0 0;
    margin-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.8px;
    color: inherit;
    cursor: pointer;
    transition: transform .2s ease
}

.footer-logo-link:hover {
    transform: scale(1.02)
}

.f-blue {
    color: var(--blue-400)
}

.f-orange {
    color: var(--orange-400)
}

.footer-plane {
    font-size: 14px;
    color: var(--orange-400);
    margin-left: 5px
}

.footer-left p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--slate-400);
    max-width: 250px;
    line-height: 1.65
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 18px
}

.social {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--slate-800);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid var(--slate-700);
    transition: background .2s ease, color .2s ease, transform .2s ease
}

.social:hover {
    background: var(--slate-700);
    color: #f1f5f9;
    transform: translateY(-2px)
}

.social.active {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    border-color: transparent
}

.footer-grid>div>h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate-200);
    margin-bottom: 16px
}

.footer-grid>div>p {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: color .18s ease, transform .18s ease
}

.footer-grid>div>p:hover {
    color: var(--slate-300);
    transform: translateX(3px)
}

.footer-link-icon {
    font-size: 10px;
    color: var(--blue-500);
    margin-right: 7px;
    opacity: .65;
    flex-shrink: 0
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 18px 0;
    text-align: center
}

.footer-copy {
    font-size: 12px;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

/* RESPONSIVE */
@media(max-width:900px) {
    .wlt-hero-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .wlt-hero-stats {
        flex-wrap: wrap;
        width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }
}

@media(max-width:640px) {
    .wlt-filter-bar {
        flex-direction: column;
        align-items: stretch
    }

    .wlt-hero-title {
        font-size: 36px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}