<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* css/global.css */

/* --------------------------------------------
à¸™à¸³à¹€à¸‚à¹‰à¸² Google Fonts
-------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;family=Noto+Sans+Thai:wght@100..900&amp;display=swap');


:root {
    --Text_Bevel: -0.5px 0px 0px rgb(255 255 255 / 80%), -1px -1px 0 rgb(255 255 255 / 30%), 2px 2px 2px rgb(255 255 255 / 20%);
    --Text_Bevel2: -0.5px 0px 0px rgb(255 255 255 / 80%), -1px -1px 0 rgb(255 255 255 / 30%), 2px 2px 2px rgb(255 255 255 / 20%);
    --Text_Bevel3:-0.3px 0px 0px rgb(255 255 255 / 30%), -0.5px -0.5px 0 rgb(255 255 255 / 30%), 0px 2px 2px rgb(255 255 255 / 20%)
}

@font-face {
    font-family: 'Tabien';
    src: url('../assets/fonts/Tabian.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Tabien2';
    src: url('../assets/fonts/Tabian2.ttf');
    font-weight: 600;
}

/* Reset and General Styling */
* {
    font-family: 'Noto Sans Thai', sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-width: 375px;
    overflow-x: hidden;
}

body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    /* font-family: Arial, sans-serif; */
    font-family: 'Noto Sans Thai', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f5fb;
    color: #000;
}

#container {
    max-height: 100vh;
    overflow-x: hidden;
    background: #fffef7;
}

/* Header */
header {
    width: -webkit-fill-available;
    padding: 10px 20px;
    border-top: 3px solid #caa671;
    border-radius: 1rem 1rem 3.8rem 3.87rem;
    background: linear-gradient(180deg, #000000, rgb(72 72 72), rgb(44 44 44 / 96%), #000000);
    background-clip: padding-box;
    box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

header&gt;.inner {
    width: -webkit-fill-available;
    max-width: 1200px;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

header&gt;.inner&gt;.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

header&gt;.inner&gt;.logo&gt;img {
    height: 3rem;
    max-width: 100%;
    margin: 0.5rem 0 0.5rem 1rem;
}

header&gt;.inner&gt;.logo&gt;h1 {
    /* font-size: 1.1em;
    font-weight: normal;
    color: #000;
    line-height: 2rem;
    white-space: nowrap; */
    display: none;
}

header&gt;.inner&gt;.logo&gt;button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    display: none;
}

header&gt;.inner&gt;ul.Menubar {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background-color: rgb(0 0 0 / 3%);
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
}

header&gt;.inner&gt;ul.Menubar&gt;li {
    cursor: pointer;
    border-radius: 2rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header&gt;.inner&gt;ul.Menubar&gt;li&gt;a {
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    color: #fffad3;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 2rem;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
}
header&gt;.inner&gt;ul.Menubar&gt;li.active {
    border-bottom: 2px solid #fffad0;
    background: linear-gradient(180deg, #ffffff00, #c0ac8a);
    transition: 0.3s ease-in-out;
}
header&gt;.inner&gt;ul.Menubar&gt;li.active&gt;a {
    color: white;
}
header&gt;.inner&gt;ul.Menubar&gt;li:hover {
    border-bottom: 2px solid #fcb763;
    background: linear-gradient(180deg, #fdfcd5, #dabc8a);
    transition: 0.3s ease-in-out;
}

header&gt;.inner&gt;ul.Menubar&gt;li:hover&gt;a {
    color: #000;
    /* font-weight: bold; */
}
header&gt;.inner&gt;ul.Menubar&gt;li:active {
    transition: 0.3s;
    transform: scale(0.9);
}

header&gt;.inner&gt;button[name="Menu"] {
    display: none;
    width: 50px;
    height: 50px;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background-image: linear-gradient(163deg, #fffad1, #e9c88b 50%, #653616);
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    cursor: pointer;
    z-index: 999;
}

header&gt;.inner&gt;button[name="Menu"]:active {
    transition: 0.3s;
    background: #edd69b;
    transform: scale(0.8);
}
header&gt;.inner&gt;button[name="Menu"]&gt;img {
    width: 100%;
    height: 100%;
}

header .navbar_auth {
    display: none;
}

.margin_top {
    margin-top: 120px;
}

/* Banner Section */
section[name="Banner"] {
    text-align: center;
    padding: 20px;
    margin: 100px 0 0 0;
}

section[name="Banner"] h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

section[name="Banner"]&gt;img {
    max-width: 100%;
    height: auto;

}

button, img {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hline {
    overflow: hidden;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(156, 103, 39, 0), rgb(150 150 150) 32%, #000000 49%, rgb(142 142 142) 65%, rgba(253, 246, 174, 0));
    margin: 1rem 0;
}

/* Plates Container */
#plates-container {
    /* max-height: 100vh; */
    /* overflow-y: auto;
    overflow-x: hidden; */
    display: flex;
    /* à¹ƒà¸Šà¹‰ flexbox à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸‡à¹à¸™à¸§à¸™à¸­à¸™ */
    flex-wrap: wrap;
    /* à¸£à¸­à¸‡à¸£à¸±à¸šà¸à¸²à¸£ wrap à¹€à¸¡à¸·à¹ˆà¸­à¸žà¸·à¹‰à¸™à¸—à¸µà¹ˆà¹„à¸¡à¹ˆà¸žà¸­ */
    justify-content: center;
    /* à¸ˆà¸±à¸”à¹€à¸£à¸µà¸¢à¸‡à¸›à¹‰à¸²à¸¢à¸Šà¸´à¸”à¸‹à¹‰à¸²à¸¢ */
    gap: 20px;
    /* à¸£à¸°à¸¢à¸°à¸«à¹ˆà¸²à¸‡à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¸›à¹‰à¸²à¸¢ */
    padding: 20px;
}

/* Category Section */
.category-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 5px solid rgb(0 0 0 / 5%);
    background-color: rgb(0 0 0 / 5%);
    padding: 1rem 2rem 2rem 2rem;
    border-radius: 2rem;
    width: 100%;
}

.category-section h2 {
    font-size: 1.5rem;
    color: #000;
    text-align: center;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

/* Footer */
footer {
    width: -webkit-fill-available;
    /* max-width: 375px; */
    background-color: #c4c4c4;
    padding: 1rem 1rem 3rem 1rem;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid #ddd;
    margin: 0 0 5rem 0;
}

footer .footer-top {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

footer .footer-top p {
    margin: 0;
    padding: 0;
}

footer a {
    color: #927340; /* à¸ªà¸µà¸¥à¸´à¸‡à¸à¹Œ */
    text-decoration: none;
    margin: 0 5px; /* à¹€à¸žà¸´à¹ˆà¸¡à¸Šà¹ˆà¸­à¸‡à¸§à¹ˆà¸²à¸‡à¸£à¸°à¸«à¸§à¹ˆà¸²à¸‡à¸¥à¸´à¸‡à¸à¹Œ */
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline; /* à¸¥à¸´à¸‡à¸à¹Œà¸‚à¸µà¸”à¹€à¸ªà¹‰à¸™à¹ƒà¸•à¹‰à¹€à¸¡à¸·à¹ˆà¸­ hover */
    color: #022f6b; /* à¸ªà¸µà¸¥à¸´à¸‡à¸à¹Œà¹€à¸¡à¸·à¹ˆà¸­ hover */
}

footer .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

footer .footer-links {
    margin-top: 10px;
    font-size: 13px;
}

footer .footer-links a {
    margin: 0 8px;
    color: #585858;
}

footer .footer-links a:hover {
    color: #022f6b; /* à¸ªà¸µà¸¥à¸´à¸‡à¸à¹Œà¹€à¸¡à¸·à¹ˆà¸­ hover */
}

footer .footer-languages {
    font-size: 12px;
    margin-top: 10px;
    display: none;
}

footer .footer-languages a {
    color: #03499b;
    margin: 0 5px;
}

footer .footer-languages a:hover {
    color: #022f6b;
}

.hide {
    display: none!important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    section[name="Banner"] h1 {
        font-size: 1.5rem;
    }

    header button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1050px) {
    header&gt;.inner&gt;.logo&gt;h1 {
        display: none;
    }
}

@media (max-width: 992px) {
    html {
        min-width: 430px;
    }
    header {
        transition: 0.85s;
        height: 100px;
    }
    header&gt;.inner {
        justify-content: center;
        align-items: flex-start;
    }

    header&gt;.inner&gt;.logo {
        position: absolute;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99;
        transition-duration: 0.5s;
        transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
    }

    header&gt;.inner&gt;.logo.toggle {
        width: -webkit-fill-available;
        top: 0.5rem;
        left: 1rem;
        transform: initial;
        flex-direction: row;
    }

    header&gt;.inner&gt;.logo&gt;h1 {
        display: none;
        opacity: 0;
    }

    header&gt;.inner&gt;ul.Menubar {
        display: none;
    }

    header&gt;.inner&gt;button[name="Menu"] {
        display: block;
        padding: 6px 10px;
    }
    header.toggle {
        height: 400px;
        justify-content: flex-start;
    }
    header.toggle&gt;.inner&gt;ul.Menubar {
        width: -webkit-fill-available;
        margin: 2rem 1rem 1rem 1rem;
        position: absolute;
        bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    header.toggle&gt;.inner&gt;.logo&gt;h1 {
        /* display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        transition: 1s; */
        display: none;
    }

    section[name="Banner"] h1 {
        font-size: 1.3rem;
    }

    #plates-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    /* #plates-container {
        gap: 10px;
        padding: 10px;
    }

    .category-section {
        gap: 5px; 
        padding: 10px;
    } */

    header {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    header&gt;.inner&gt;.logo {
        flex-direction: column;
    }

    header&gt;.inner&gt;.logo&gt;img {
        /* height: 20vw; */
        max-height: 68px;
    }

    header button {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    section[name="Banner"] h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    header button {
        padding: 4px 6px;
        font-size: 0.7rem;
    }

    section[name="Banner"] h1 {
        font-size: 1rem;
    }

    div[name="Search"] {
        flex-direction: column;
        gap: 5px;
    }

    div[name="Search"] input {
        /* padding: 6px; */
        /* font-size: 0.8rem; */
    }

    div[name="Search"] .search-details {
        /* font-size: 0.7rem; */
    }

    #plates-container {
        padding: 8px;
    }

    .category-section {
        padding: 1rem 0.5rem 2rem 0.5rem;
        gap: 0.5rem;
    }
}

/* Smallest Screens */
@media (max-width: 444px) {
    html {
        min-width: 375px;
    }
    footer {
        font-size: 0.8rem;
    }
}
</pre></body></html>