* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Averta Std CY", sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

html {
    position: relative;
    font-size: 1vw;
    scrollbar-gutter: stable;
    /* Firefox — scrollbar mảnh, có màu (nếu không khai báo, FF vẫn hiện default) */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

@media (max-width: 639.98px) {
    html {
        font-size: calc(1600 / 375 * 1vw);
    }
}

@media (min-width: 1600px) {
    html {
        font-size: 1vw;
    }
}

/* WebKit (Chrome/Safari/Edge): khi đã target ::-webkit-scrollbar thì PHẢI
   style cả thumb, nếu không thumb trong suốt → scrollbar "biến mất". */
html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 0.25rem;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

body.hidden__scrollbar {
    overflow: hidden;
}

body[data-scroll-locked] {
    overflow: hidden !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    position: relative;
}

a {
    display: inline-block;
    text-decoration: none;
}

button {
    cursor: pointer;
    display: flex;
    border: none;
}

/* A11y utility dùng chung — ẩn text chỉ dành cho screen reader (chuẩn WP). */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {}