@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&family=Kanit:wght@200;300;400;500;600;700&family=Noto+Serif+Thai:wght@300;400;500;600;700&family=Mitr:wght@200;300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --bg-dark:        #07090e;
    --bg-layer:       rgba(13, 17, 28, 0.75);
    --border-glass:   rgba(255, 255, 255, 0.07);
    --text-main:      #f1f5f9;
    --text-muted:     #64748b;
    --text-sub:       #94a3b8;

    --orange-primary: #ff6e40;
    --orange-light:   #ff9e80;
    --orange-glass:   rgba(255, 110, 64, 0.10);
    --orange-glow:    rgba(255, 110, 64, 0.35);
    --orange-border:  rgba(255, 110, 64, 0.30);

    --green-primary:  #00e676;
    --green-light:    #69f0ae;
    --green-glass:    rgba(0, 230, 118, 0.10);
    --green-glow:     rgba(0, 230, 118, 0.35);
    --green-border:   rgba(0, 230, 118, 0.30);

    --red-flash:      #ff1744;
    --green-flash:    #00e676;

    --font-header:    'Noto Serif Thai', serif;
    --font-body:      'Noto Serif Thai', serif;

    --radius-card:    20px;
    --radius-pill:    100px;
    --radius-input:   14px;
    --radius-btn:     14px;
    --radius-bubble:  18px;

    --transition-fast:   0.18s ease;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    min-height: 100dvh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(255, 110, 64, 0.10) 0, transparent 60%),
        radial-gradient(ellipse 70% 40% at 100% 100%, rgba(0, 230, 118, 0.10) 0, transparent 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 500;
    line-height: 1.2;
}

/* Noto Serif Thai Font Weight Overrides (Max weight 500 for clean Gen Z aesthetics) */
.fw-bold, .fw-extrabold, .fw-semibold, .fw-medium, strong, b {
    font-weight: 500 !important;
}

.fw-normal, .fw-light {
    font-weight: 300 !important;
}

a { color: inherit; text-decoration: none; }

/* ============================================================
   GLASSMORPHISM PANELS
   ============================================================ */
.glass-panel {
    background: var(--bg-layer);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
    transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.glass-panel:hover {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.50);
}

.glow-orange {
    border-color: var(--orange-border) !important;
    box-shadow: 0 0 24px var(--orange-glow), 0 12px 32px rgba(0, 0, 0, 0.38);
}

.glow-green {
    border-color: var(--green-border) !important;
    box-shadow: 0 0 24px var(--green-glow), 0 12px 32px rgba(0, 0, 0, 0.38);
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.gradient-text-orange {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-glass {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--green-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-glass-orange {
    background: var(--orange-glass);
    border: 1px solid var(--orange-border);
    color: var(--orange-light);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    cursor: pointer;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-glass-orange:hover:not(:disabled) {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 0 16px var(--orange-glow);
}

.btn-glass-orange:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-glass-green {
    background: var(--green-glass);
    border: 1px solid var(--green-border);
    color: var(--green-light);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    cursor: pointer;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-glass-green:hover:not(:disabled) {
    background: var(--green-primary);
    color: #000;
    box-shadow: 0 0 16px var(--green-glow);
}

/* ============================================================
   FORM INPUTS
   ============================================================ */
.input-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    border-radius: var(--radius-input);
    padding: 11px 15px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.input-glass::placeholder {
    color: var(--text-muted);
}

.input-glass:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 110, 64, 0.12);
    color: var(--text-main);
}

select.input-glass option {
    background: #0d111c;
    color: var(--text-main);
}

/* ============================================================
   BOTTOM NAVIGATION
   ============================================================ */
.nav-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: calc(68px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(7, 9, 14, 0.90);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-top: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: none;
    border: none;
    padding: 4px 0;
    flex: 1;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-item i {
    font-size: 1.35rem;
    margin-bottom: 3px;
    transition: transform var(--transition-bounce), color var(--transition-fast);
    display: block;
}

/* Active indicator bar */
.nav-item::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 28px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    transition: transform var(--transition-bounce), opacity var(--transition-fast);
    opacity: 0;
}

.nav-item.nav-orange::after { background: var(--orange-primary); }
.nav-item.nav-green::after  { background: var(--green-primary); }

.nav-item.active {
    color: var(--text-main);
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.nav-item.active i {
    transform: translateY(-3px) scale(1.18);
}

.nav-item.active.nav-orange i {
    color: var(--orange-primary);
    filter: drop-shadow(0 0 6px var(--orange-glow));
}

.nav-item.active.nav-green i {
    color: var(--green-primary);
    filter: drop-shadow(0 0 6px var(--green-glow));
}

/* ============================================================
   TIER BADGES
   ============================================================ */
.badge-tier {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.badge-free  { background: rgba(255,255,255,0.07); color: var(--text-sub); border: 1px solid var(--border-glass); }
.badge-basic { background: var(--orange-glass); color: var(--orange-primary); border: 1px solid var(--orange-border); }
.badge-pro   { background: var(--green-glass); color: var(--green-primary); border: 1px solid var(--green-border); }

/* ============================================================
   ASSET ROWS & CARDS
   ============================================================ */
.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border-glass);
    transition: background var(--transition-fast);
}

.asset-row:last-child { border-bottom: none; }
.asset-row:hover { background: rgba(255, 255, 255, 0.02); }

/* Price up/down flash animation */
@keyframes flashGreen {
    0%   { background: rgba(0, 230, 118, 0.15); }
    100% { background: transparent; }
}
@keyframes flashRed {
    0%   { background: rgba(255, 23, 68, 0.15); }
    100% { background: transparent; }
}

.price-up   { animation: flashGreen 0.7s ease-out; color: var(--green-primary) !important; }
.price-down { animation: flashRed   0.7s ease-out; color: var(--red-flash) !important; }

/* Asset type color badges */
.asset-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.asset-badge-gold    { background: rgba(255, 193, 7, 0.15); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.30); }
.asset-badge-crypto  { background: rgba(124, 77, 255, 0.15); color: #b39ddb; border: 1px solid rgba(124, 77, 255, 0.30); }
.asset-badge-stock   { background: rgba(33, 150, 243, 0.15); color: #90caf9; border: 1px solid rgba(33, 150, 243, 0.30); }
.asset-badge-forex   { background: rgba(0, 230, 118, 0.12); color: var(--green-light); border: 1px solid var(--green-border); }
.asset-badge-default { background: rgba(255,255,255,0.07); color: var(--text-sub); border: 1px solid var(--border-glass); }

/* ============================================================
   SKELETON LOADERS
   ============================================================ */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-pulse {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0.04) 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: 8px;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.skeleton-line-short { width: 50%; }
.skeleton-line-medium { width: 75%; }
.skeleton-line-full { width: 100%; }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.025);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    border-color: var(--orange-border);
}

.news-card-body { padding: 14px 16px; }

.sentiment-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.sentiment-positive { background: var(--green-primary); box-shadow: 0 0 6px var(--green-primary); }
.sentiment-neutral  { background: var(--text-muted); }
.sentiment-negative { background: var(--red-flash); box-shadow: 0 0 6px var(--red-flash); }

/* ============================================================
   AI CHAT
   ============================================================ */
.chat-container {
    height: calc(100dvh - 250px);
    min-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 2px;
}

.chat-bubble {
    max-width: 82%;
    padding: 11px 16px;
    border-radius: var(--radius-bubble);
    line-height: 1.55;
    font-size: 0.90rem;
    word-break: break-word;
    position: relative;
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--orange-glass);
    border: 1px solid var(--orange-border);
    color: var(--text-main);
    border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

/* Typing dots indicator */
.typing-dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    margin: 0 2px;
    animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40%           { transform: translateY(-7px); opacity: 1; }
}

/* ============================================================
   PROFILE SLIDE-UP SHEET
   ============================================================ */
.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.profile-sheet {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(0%);
    width: 100%;
    max-width: 600px;
    z-index: 1300;
    border-radius: 24px 24px 0 0;
    background: rgba(10, 14, 23, 0.97);
    border: 1px solid var(--border-glass);
    border-bottom: none;
    padding: 28px 24px 40px;
    animation: slideUp 0.32s cubic-bezier(0.32, 1, 0.68, 1) forwards;
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(100%); }
    to   { transform: translateX(-50%) translateY(0%); }
}

/* ============================================================
   TAB TRANSITIONS
   ============================================================ */
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tab-enter {
    animation: tabFadeIn 0.28s ease-out forwards;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-custom {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    min-width: 260px;
    max-width: 90vw;
    padding: 13px 20px;
    border-radius: var(--radius-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    animation: toastIn 0.3s cubic-bezier(0.32, 1, 0.68, 1);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-14px) scale(0.95); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.toast-success {
    background: rgba(0, 56, 30, 0.85);
    border-color: var(--green-border);
    color: var(--green-light);
}

.toast-error {
    background: rgba(60, 0, 0, 0.85);
    border-color: rgba(255, 23, 68, 0.4);
    color: #ff8a80;
}

/* ============================================================
   SOFT PAYWALL
   ============================================================ */
.paywall-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
}

.paywall-blur {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

.paywall-banner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: rgba(7, 9, 14, 0.65);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-card);
    z-index: 10;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.16); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-muted { color: var(--text-muted) !important; }
.text-sub   { color: var(--text-sub) !important; }

[x-cloak] { display: none !important; }

/* Spin animation for refresh button */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.spin { animation: spin 0.8s linear infinite; }

/* Font Preference Body Classes (Mitr, Prompt, Kanit, Noto Serif Thai, and Default) */
body.font-default {
    --font-header: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}
body.font-prompt {
    --font-header: 'Prompt', sans-serif;
    --font-body: 'Prompt', sans-serif;
}
body.font-kanit {
    --font-header: 'Kanit', sans-serif;
    --font-body: 'Kanit', sans-serif;
}
body.font-notoserifthai {
    --font-header: 'Noto Serif Thai', serif;
    --font-body: 'Noto Serif Thai', serif;
}
body.font-mitr {
    --font-header: 'Mitr', sans-serif;
    --font-body: 'Mitr', sans-serif;
}

/* ============================================================
   INTEREST CHIPS (Settings — Investment Interests Picker)
   ============================================================ */
.interest-chips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.interest-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
    min-height: 70px;
}

.interest-chip i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.interest-chip span {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.interest-chip.selected {
    border-color: var(--orange-border);
    background: var(--orange-glass);
    box-shadow: 0 0 12px rgba(255, 110, 64, 0.15);
}

.interest-chip.selected i {
    color: var(--orange-primary);
}

.interest-chip.selected span {
    color: var(--orange-light);
}

.interest-chip.locked {
    opacity: 0.75;
    cursor: not-allowed;
}

.interest-chip.locked.selected {
    border-color: rgba(255, 110, 64, 0.20);
    background: rgba(255, 110, 64, 0.06);
}

/* ============================================================
   DASHBOARD SECTION HEADERS (Personal / Watchlist)
   ============================================================ */
.dash-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-section-header i {
    font-size: 1rem;
}

.dash-section-header h5 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
}

.dash-section-header .section-count {
    margin-left: auto;
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    padding: 1px 8px;
}

/* ============================================================
   SEARCHABLE SELECT COMPONENT
   ============================================================ */
.custom-select-search .btn-select-option {
    background: transparent;
    border: none;
    width: 100%;
    transition: background var(--transition-fast);
    text-align: left;
}

.custom-select-search .btn-select-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-select-search .btn-select-option.bg-orange-active {
    background: var(--orange-glass);
    border-left: 3px solid var(--orange-primary);
}

.custom-select-search::-webkit-scrollbar {
    width: 4px;
}

.custom-select-search::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-search::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* ============================================================
   SEGMENTED CONTROL
   ============================================================ */
.btn-group-segmented {
    display: flex;
    position: relative;
    overflow: hidden;
}

.btn-segment {
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: calc(var(--radius-input) - 4px);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-segment:hover:not(:disabled) {
    color: var(--text-main);
}

.btn-segment.active {
    background: var(--orange-glass);
    color: var(--orange-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--orange-border);
}

.btn-segment:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ============================================================
   MODALS & OVERLAYS (STUNNING MOBILE CENTERING & GLASS)
   ============================================================ */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 6, 11, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}


.modal-backdrop .glass-panel {
    width: 100%;
    max-width: 500px;
    max-height: 82vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ============================================================
   FONT PREFERENCE CLASSES
   ============================================================ */
body.font-prompt { font-family: 'Prompt', sans-serif !important; }
body.font-kanit { font-family: 'Kanit', sans-serif !important; }
body.font-notoserifthai { font-family: 'Noto Serif Thai', serif !important; }
body.font-mitr { font-family: 'Mitr', sans-serif !important; }




