/* =========================================
   GLOBAL
========================================= */

/* IBM Plex Sans Thai */

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'IBM Plex Sans Thai';
    src: url('/fonts/IBMPlexSansThai-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --color-bg: rgb(251, 243, 194);
    --color-text: #4b321d;
    --color-primary: #63b4ec;
    --color-brown: #8a6e54;
    --color-footer: #927454;
    --color-red: #ec0829;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw, 18px);
}

body {
    margin: 0;
    font-family: 'IBM Plex Sans Thai', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    /*    max-width: 1800px;
    margin: auto;
    padding: 8px;*/
    width: 100%;
    max-width: 1800px;
    margin: auto;
    padding: 0 20px;
}

section,
footer {
    scroll-margin-top: 120px;
}

/* =========================================
   HEADER
========================================= */

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--color-bg);
    padding: 12px 0 10px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1800px;
/*    max-width: 1800px;*/
    margin: auto;
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(99, 180, 236, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all .25s ease;
}

    .topbar.scrolled {
        background: rgba(99, 180, 236, 0.97);
        padding: 10px 22px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    }

/* =========================================
   PAGE CONTENT
========================================= */

.page-content {
    position: relative;
    z-index: 1;
}

/* =========================================
   LOGO
========================================= */

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: clamp(220px, 26vw, 420px);
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 50px;
    font-weight: 900;
    color: #ffe08a;
    letter-spacing: -1px;
    line-height: 1;
    -webkit-text-stroke: 3px #6b3f1f;
    paint-order: stroke fill;
    text-shadow: 0 4px 8px rgba(0,0,0,0.18);
}

/* =========================================
   MENU
========================================= */

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .menu a {
        border: 1.5px solid var(--color-brown);
        border-radius: 999px;
        padding: 5px 15px;
        text-decoration: none;
        color: #222;
        font-size: 1.4rem;
        font-weight: 500;
        background: transparent;
        transition: .2s ease;
    }

        .menu a:hover {
            background: rgba(255,255,255,0.15);
        }

        .menu a.active {
            background: var(--color-brown);
            color: white;
            border-color: var(--color-brown);
        }

/* =========================================
   HERO
========================================= */

.hero-overlay {
    overflow: hidden;
}

.hero-product {
    width: 100%;
    display: block;
}

/* =========================================
   PRODUCT SECTION
========================================= */

.product-highlight-section {
    max-width: 1800px;
    margin: auto;
    padding: 0 20px;
}

.product-highlight {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: center;
}

    .product-highlight:nth-child(2) {
        grid-template-columns: 1fr 260px;
    }

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-image img {
        width: 100%;
        max-width: 240px;
        object-fit: contain;
        display: block;
    }

.product-content {
    color: var(--color-text);
}

.right-text {
    text-align: right;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product-title {
    padding-top: 20px;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
}

.recommended-badge {
    width: 80px;
    flex-shrink: 0;
}

.product-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
}

.product-description {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}

.product-small-text {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* =========================================
   DEALER SECTION
========================================= */

.dealer-section {
    padding: 0 15px 20px;
    text-align: center;
}

.dealer-title-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.dealer-title {
    position: relative;
    border: 4px dashed #7b5b3d;
    border-radius: 999px;
    padding: 18px 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .dealer-title span {
        font-size: 48px;
        font-weight: 800;
        color: #4d321e;
        line-height: 1.2;
    }

.dealer-icon {
    position: absolute;
    object-fit: contain;
}

    .dealer-icon.left {
        width: 90px;
        left: -48px;
        top: 50%;
        transform: translateY(-50%);
    }

    .dealer-icon.right {
        width: 74px;
        right: -38px;
        top: 50%;
        transform: translateY(-50%);
    }

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 310px));
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.dealer-card,
.event-card {
    width: 100%;
    overflow: hidden;
    transition: .25s ease;
}

.dealer-card {
    border-radius: 28px;
}

    .dealer-card img,
    .event-card img {
        width: 100%;
        display: block;
    }

    .dealer-card img {
        object-fit: cover;
    }

    .dealer-card:hover,
    .event-card:hover {
        transform: translateY(-5px);
    }

.dealer-description,
.event-description {
    width: 100%;
    max-width: calc((310px * 3) + (24px * 2));
    margin: 24px auto 0;
    padding: 0 16px;
    text-align: left;
}

    .dealer-description p,
    .dealer-description h3,
    .event-description p,
    .event-description h3 {
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
        letter-spacing: 0.3px;
    }

.red {
    color: var(--color-red);
    font-weight: 900;
}

/* =========================================
   EVENT SECTION
========================================= */

.event-section {
    padding: 0 20px;
    text-align: center;
}

.event-title-image {
    width: 100%;
    max-width: 820px;
    display: block;
    margin: auto;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 310px));
    justify-content: center;
    gap: 90px;
    max-width: 1200px;
    margin: auto;
}

.event-card img {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    object-fit: cover;
}

/* =========================================
   PARTNER SECTION
========================================= */

.partner-section {
    text-align: center;
}

    .partner-section h2,
    .partner-title {
        color: #ff2a2a;
        text-align: center;
    }

    .partner-section h2 {
        font-size: 68px;
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 24px;
    }

.partner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0;
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

    .partner-row.top {
        margin-bottom: 10px;
    }

    .partner-row img {
        object-fit: contain;
        display: block;
        transition: .2s ease;
    }

        .partner-row img:hover {
            transform: scale(1.02);
        }

    .partner-row.top img:nth-child(1) {
        height: 165px;
    }

    .partner-row.top img:nth-child(2) {
        height: 120px;
    }

    .partner-row.top img:nth-child(3) {
        height: 138px;
    }

    .partner-row.bottom img:nth-child(1) {
        height: 145px;
    }

    .partner-row.bottom img:nth-child(2) {
        height: 132px;
    }

    .partner-row.bottom img:nth-child(3) {
        height: 132px;
    }

    .partner-row.bottom img:nth-child(4) {
        height: 145px;
    }

.partner-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px 25px 16px;
}

    .partner-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
/* =========================================
   FOOTER
========================================= */

.footer {
    background: #927454;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 16px;
    padding: 20px 24px 5px 24px;
    display: grid;
    /* ¼Öé§ | µÔ´µèÍ | ¼ÅÔµÀÑ³±ì | ºÃÔ¡ÒÃ | QR */
    grid-template-columns: 100px 1fr 1fr 1fr 170px;
    gap: 0;
    align-items: start;
    color: #fff6df;
}

/* =========================================
   BEE
========================================= */

.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -12px;
}

.footer-bee {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-top: -10px;
}

/* =========================================
   COLUMN SPACING
========================================= */

.footer-contact-column {
    padding-left: 8px;
}

.footer-column-products {
    padding-left: 0.5rem;
}

.footer-column-services {
    padding-left: 0.5rem;
}
 
/* =========================================
   TITLES
========================================= */

.footer-title {
    color: #FFF6DF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 5px;
    min-height: 3rem;
    display: flex;
    align-items: center;
   /* letter-spacing: 1.5px;*/
    text-align: left;
}

.footer-qr-title {
    line-height: 1;
    margin-bottom: 10px;
    color: #FFF6DF;
    font-size: 1.5rem;
   /* letter-spacing: 1.5px;*/
    font-weight: 700;
    margin: 0;
}
/* =========================================
   LIST
========================================= */

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    font-size: 1rem;
/*    letter-spacing: 1.5px;*/
    line-height: 1.4;
    font-weight: 500;
}

    /* =========================================
   ARROW
========================================= */

    .footer-column li::before {
    
        margin-right: 10px;
    }

/* CONTACT äÁèàÍÒ > */

.no-arrow::before {
    content: none !important;
}

/* =========================================
   ICON
========================================= */

.no-arrow i {
    margin-right: 10px;
}

/* =========================================
   QR
========================================= */

.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 8px;
}

    .footer-qr img {
        width: 100%;
        max-width: 130px;
        height: auto;
        background: white;
        padding: 6px;
        border-radius: 8px;
    }

/* =========================================
   EMPTY SPACE
========================================= */

.footer-empty-space {
    height: 10px;
}
/* =========================================
   MOBILE TITLE
========================================= */

.mobile-title {
    text-align: left;
    margin-top: 28px;
    font-size: 2rem;
}

/* =========================================
   EVENT DESCRIPTION
========================================= */
.event-description h3,
.dealer-description h3 {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.3px;
}

.event-phone,
.event-remark {
    margin: 0;
    text-align: left;
    font-size: 2rem;
    line-height: 1.4;
}

.event-phone {
    margin-top: 10px;
    font-weight: 700;
}

.event-remark {
    margin-top: 4px;
    opacity: 0.9;
}

.dealer-text {
    font-size: 2rem;
    line-height: 1.3;
}

.dealer-text-spacing {
    margin-top: 8px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .logo-text {
        font-size: clamp(28px, 6vw, 42px);
        text-align: center;
    }

    .menu {
        justify-content: center;
    }

        .menu a {
            font-size: 1rem;
            padding: 8px 14px;
        }
  
 
    .mobile-text-first {
        flex-direction: column-reverse;
    }

    .partner-section h2 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .partner-row {
        gap: 12px;
    }
}
@media (max-width: 768px) {

    .product-highlight,
    .product-highlight:nth-child(2) {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 1px;
        align-items: center;
        text-align: left;
    }

        /* item ·Õè 2 ÊÅÑº½Ñè§ */

        .product-highlight:nth-child(2) {
            grid-template-columns: 1fr 100px;
        }

    .product-image img {
        max-width: 90px;
    }

    .title-row {
        justify-content: flex-start;
    }

    .right-text,
    .product-content {
        text-align: left;
    }
}

/* =========================================
   IPHONE PRO MAX FIX
========================================= */

@media (max-width: 430px) {

    .topbar {
        padding: 4px 6px;
        gap: 2px;
        flex-direction: row !important;
        align-items: center;
    }

    .logo-icon {
        width: 90px;
        max-width: 90px;
    }

    .menu {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        gap: 1px;
        justify-content: space-between;
    }

        .menu a {
            flex: 1;
            min-width: 0;
            font-size: 0.50rem;
            padding: 4px 1px;
            white-space: nowrap;
            text-align: center;
            letter-spacing: 0;
        }
}
/* =========================================
   MOBILE
========================================= */
/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width:768px) {

    .header-wrapper {
        padding: 4px 0;
    }

    .topbar {
        width: calc(100% - 8px);
        margin: 2px auto;
        padding: 4px 6px;
        border-radius: 18px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2px;
    }

    .logo-area {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .logo-icon {
        width: 180px;
        max-width: 180px;
        height: auto;
    }

    .menu {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: right; /* à»ÅÕèÂ¹¨Ò¡ space-between */
        align-items: center;
        gap: 2px;
        min-width: 0;
    }

        .menu a {
            flex: 1 1 0;
            max-width: 75px; /* »ÃÑºä´é */
            min-width: 0;
            padding: 2px 1px;
            font-size: 8px;
            font-weight: 600;
            line-height: 1.1;
            white-space: nowrap;
            text-align: center;
            overflow: hidden;
            text-decoration: none;
            letter-spacing: 0;
        }

    .logo-text {
        font-size: 32px;
        -webkit-text-stroke: 2px #6b3f1f;
    }



    .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
        align-items: start;
    }

    .event-card img {
        border-radius: 18px;
    }

    .dealer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 10px;
    }

    .dealer-description,
    .event-description {
        width: 100%;
        max-width: calc((310px * 3) + (24px * 2));
        margin: 15px auto 0;
        padding: 0 16px;
        text-align: left;
    }

    .dealer-card,
    .dealer-card img {
        border-radius: 14px;
    }

    .dealer-description,
    .event-description {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-title {
        font-size: 1rem;
       
    }

    .product-subtitle {
        font-size: 0.7rem;
        line-height: 1.2;
        
    }

    .product-description{
        font-size: 0.7rem;
        line-height: 1.4;
        
    }

    .dealer-text,
    .event-phone,
    .event-remark {
        font-size: 0.7rem;
        line-height: 1.4;
       
    }


    .event-description h3,
    .dealer-description h3 {
        font-size: 0.7rem;
        line-height: 1.3;
  
    }

    .partner-card {
        max-width: 225px;
    }

    
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .logo-icon {
        width: 115px;
        max-width: 115px;
        height: auto;
    }
    .menu a {
        font-size: 0.7rem;
        padding: 7px 12px;
    }

    .product-image img {
        max-width: 90px;
    }

    .recommended-badge {
        width: 55px;
    }

    .dealer-title {
        padding: 14px 40px;
    }

        .dealer-title span {
            font-size: 22px;
        }

    .dealer-icon.left {
        width: 64px;
        left: -32px;
    }

    .dealer-icon.right {
        width: 54px;
        right: -24px;
    }

    .partner-section h2 {
        font-size: 30px;
    }

    .dealer-section {
        padding: 0 15px 0 15px;
        text-align: center;
    }

    .partner-title {
        font-size: clamp(1.5rem, 5vw, 3.5rem);
        margin: 15px 0 0 0;
    }
    .partner-card {
      
        padding: 0 16px 5px 16px;
    }
}

/* =========================================
   SEO HIDDEN
========================================= */

.seo-title,
.seo-keyword {
    position: absolute;
    left: -99999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        display: grid;
        /* bee | 3 columns equal | qr */
        grid-template-columns: 54px repeat(3, minmax(0, 1fr)) 60px;
        gap: 0;
        padding: 5px 8px 5px 8px;
        align-items: start;
    }

    /* =========================================
       BEE
    ========================================= */

    .footer-left {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: -4px;
    }

    .footer-bee {
        width: 54px;
        height: auto;
        object-fit: contain;
        margin-top: -4px;
    }

    /* =========================================
       COLUMN
    ========================================= */

    .footer-contact-column {
        padding-left: 4px;
    }

    .footer-column-products {
        padding-left: 10px;
    }

    .footer-column-services {
        padding-left: 10px;
    }
 

    /* =========================================
       TITLE
    ========================================= */

    .footer-title {
        font-size: 0.7rem;
        line-height: 1.35;
        min-height: 34px;
        margin-bottom: 0px;
        text-align: left;
        display: flex;
        align-items: center;
        
    }
 
    .footer-qr-title {
        font-size: 0.5rem;
        line-height: 1.35;
        min-height: 34px;
        margin-bottom: 0px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* =========================================
       LIST
    ========================================= */

    .footer-column ul {
        width: 100%;
    }

    .footer-column li {
        font-size: clamp(0.44rem, 1vw, 0.55rem);
        line-height: 1.35;
        padding-bottom: 5px;
        margin-bottom: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        word-break: break-word;
      
    }

    /* =========================================
       CONTACT
    ========================================= */

    .footer-contact-text,
    .phone-link {
        font-size: clamp(0.44rem, 1vw, 0.55rem);
        line-height: 1.35;
    }

    .contact-row {
        gap: 4px;
        margin-bottom: 6px;
        align-items: flex-start;
    }

        .contact-row i {
            width: 11px;
            height: 11px;
            min-width: 11px;
            font-size: 6px;
            margin-top: 2px;
        }

    /* =========================================
       QR
    ========================================= */

    .footer-qr {
        width: 100%;
        min-width: 0;
        align-items: center;
    }

        .footer-qr img {
            width: 100%;
            max-width: 60px;
            padding: 3px;
            border-radius: 6px;
        }

    .no-arrow i {
        margin-right: 1px;
    }
}

@media (max-width: 768px) {

    .menu a,
    .footer-title,
    .footer-column li,
    .footer-contact-text,
    .phone-link,
    .product-title,
    .product-subtitle,
    .product-description {
        letter-spacing: 0 !important;
    }
}
/* =========================================
   DESKTOP FULL WIDTH FIX
========================================= */

@media (min-width: 1600px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .topbar {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding-left: 30px;
        padding-right: 30px;
    }

    .product-highlight-section {
        width: 100%;
        max-width: 100%;
        padding: 0 40px;
    }

    .dealer-grid,
    .event-grid {
        width: 100%;
        max-width: 100%;
        padding: 0 40px;
    }

    .partner-card {
        max-width: 1200px;
    }

    .product-highlight {
        grid-template-columns: 380px 1fr !important;
        gap: 60px;
    }

        .product-highlight:nth-child(2) {
            grid-template-columns: 1fr 380px !important;
        }

    .product-image img {
        max-width: 360px;
    }

    .product-title {
        font-size: 4rem;
    }

    .product-subtitle {
        font-size: 3rem;
    }

    .product-description {
        font-size: 2rem;
    }

    .dealer-text,
    .event-phone,
    .event-remark {
        font-size: 2rem;
    }

    .dealer-description h3,
    .event-description h3 {
        font-size: 2rem;
    }

    .menu a {
        font-size: 1.7rem;
        padding: 8px 22px;
    }

    .logo-icon {
        width: 360px;
    }

    .footer {
        grid-template-columns: 140px 1fr 1fr 1fr 220px;
        padding: 30px 40px 15px;
    }

    .footer-title,
    .footer-qr-title {
        font-size: 2.4rem;
    }

    .footer-column li {
        font-size: 1.7rem;
    }

    .footer-qr img {
        max-width: 220px;
    }
}

@media (max-width:768px) {

    .menu {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 3px;
    }

        .menu a {
            font-weight: 500;
            flex: 1;
            min-width: 0;
            font-size: clamp(0.45rem, 1.9vw, 0.75rem);
            padding: 5px 2px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
}

@media (max-width: 768px) {

    .product-title {
        font-size: 0.7rem;
        line-height: 1.4;
        font-weight: 700;
        padding-top: 5px;
       
    }

    .product-subtitle {
        font-size: 0.6rem;
        line-height: 1.4;
        font-weight: 700;
    }

    .product-description {
        font-size: 0.5rem;
        line-height: 1.5;
        font-weight: 500;
    }

    .product-small-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .recommended-badge {
        width: 35px;
    }
}

body,
button,
input,
select,
textarea,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span {
    font-family: 'IBM Plex Sans Thai', sans-serif;
}