:root {
    /* wkd-button */
    --wkd-button-on-color: #fff;
    --wkd-button-container-color: #fd9c3e;

    /* wkd-menu-surface */
    --wkd--color-surface-container: #fff;
    --wkd-sys-color-surface-container: #fff;
    --wkd-comp-menu-container-color: #fff;
    --wkd-sys-color-outline: #ebebeb;
  }
html {
    color: #000000;
    font-family: var(--wkd-sys-typo-display-kanit-regular-family);
    scroll-behavior: smooth;
    background-color: #E5E9DC82;
}
body {
    margin: 0;
}
.layout {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
main {
    padding-top: 68px;
}
.flex {
    display: flex;
}
/* wkd-button */
.wkd-button {
    font-family: var(--wkd-sys-typo-display-kanit-light-family);
    min-width: clamp(139px, 50vw, 175px);
}

a.wkd-button.wkd-button--filled:hover {
    font-weight: 300;
    color: #fff;
}
.wkd-button--filled {
    color: var(--wkd-button-on-color)!important;
    background-color: var(--wkd-button-container-color);
}
/* wkd-menu */
.wkd-menu {
    min-width: 112px;
    --wkd-menu-on-color: var(--wkd-color-on-surface);
    --wkd-menu-on-color-secondary: var(--wkd-color-on-surface);
    --wkd-menu-container-color: var(--wkd-color-surface-container);
}

.wkd-menu .wkd-list-item__start,
.wkd-menu .wkd-list-item__end {
    color: var(--wkd-menu-on-color-secondary);
    fill: var(--wkd-menu-on-color-secondary);
}

.wkd-menu .wkd-list {
    color: var(--wkd-menu-on-color);
}

.wkd-menu .wkd-list-item {
    cursor: pointer;
    color: #4f514b;
    font-family: var(--wkd-sys-typo-display-kanit-light-family);
    font-weight: 300;
    font-size: calc(14px + (18 - 14) * ((100vw - 771px) / (1600 - 771)));
    display: block;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--wkd-button-container-color);
        color: var(--wkd-button-on-color);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: transform 0.2s;
    }
    .floating-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }
    .floating-button img {
        width: 30px;
        height: 30px;
    }
}
