@charset "UTF-8";

body.js-no-scroll,
html.js-no-scroll {
    height: 100vh !important;
    overflow: hidden
}

#ASUS-features .buy-block {
    display: block;
    position: relative;
    z-index: 3;
}
#ASUS-features .icon-where-to-buy img {
    width: clamp(22px, 1.75vw, 30px);
    height: clamp(22px, 1.75vw, 30px);
}

#ASUS-features .button-block .global-button {
    background-color: #00FFB2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75vw 2vw;
    text-decoration: none;
}

#ASUS-features .button-block .global-button h3 {
    display: inline-block;
    font-size: clamp(22px, 1.75vw, 30px);
    line-height: clamp(22px, 1.75vw, 30px);
    padding-left: 10px;
}

@media all and (max-width: 1400px) {
    #ASUS-features .button-block .global-button {
        padding: .8vw 2vw;
    }
    #ASUS-features .button-block .global-button h3 {
        display: inline-block;
        font-size: 2.2vw;
        line-height: 2.2vw;
    }
    #ASUS-features .icon-where-to-buy img {
        width: 2.2vw;
        height: 2.2vw;
    }
}

@media all and (max-width: 1080px) {
    #ASUS-features .button-block .global-button {
        padding: 1.5vw 3vw;
    }
    #ASUS-features .button-block .global-button h3 {
        display: inline-block;
        font-size: 3.5vw;
        line-height: 3.5vw;
    }
    #ASUS-features .icon-where-to-buy img {
        width: 3.5vw;
        height: 3.5vw;
    }
}

@media all and (max-width: 735px) {
    #ASUS-features .button-block .global-button {
        padding: 3vw 5vw;
    }
    #ASUS-features .button-block .global-button h3 {
        display: inline-block;
        font-size: clamp(22px, 1.75vw, 30px);
        line-height: clamp(22px, 1.75vw, 30px);
    }
    #ASUS-features .icon-where-to-buy img {
        width: clamp(22px, 1.75vw, 30px);
        height: clamp(22px, 1.75vw, 30px);
    }
}

#global-where-to-buy {
    width: 80vw;
    height: auto;
    /* height: 776px; */
    max-width: 1300px;
    background-color: #d4d8e3;
    box-shadow: none;
    border-radius: 30px;
    line-height: 1.4;
    overflow: hidden;
    padding: 10px 30px 30px;
    position: relative;
    transition: height .3s ease; /* 平滑過渡 */
    /* 可調參數 */
    --sb-size: 10px;
    --sb-radius: 8px;
    --sb-thumb: #454a57;
    --sb-thumb-hover: rgba(255,255,255,.55);
    --sb-track: transparent;
}

#global-where-to-buy.overHeight {
    height: 100dvh !important;
}

#global-where-to-buy a {
    text-decoration: none
}

#global-where-to-buy button {
    background-color: transparent;
    border: none;
    display: block;
    cursor: pointer
}

#global-where-to-buy .region-toggler {
    display: none
}

#global-where-to-buy .region-box {
    height: 100px;
    /* height: 20%; */
}

#global-where-to-buy .region-box .region-list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center
}

#global-where-to-buy .region-box .region-list .region {
    padding: 0 15px;
    position: relative;
}
#global-where-to-buy .region-box .region-list .region::before {
    content: "";
    width: 3px;
    height: 30%;
    background-color: #000;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#global-where-to-buy .region-box .region-list .region:first-child {
    padding-left: 0;
}

#global-where-to-buy .region-box .region-list .region button {
    background-color: transparent;
    border-radius: 16px;
    color: #000;
    font-size: 30px;
    font-family: "TradeGothic LT Bold","Roboto Condensed Bold","Arial",sans-serif;
    padding: 15px 30px;
    opacity: .5;
    overflow: hidden;
    position: relative;
    transition: background-color ease .5s, opacity ease .5s
}

#global-where-to-buy .region-box .region-list .region button.btn-back {
    display: none
}

@media (hover:hover) {
    #global-where-to-buy .region-box .region-list .region button:hover {
        background-color: #dfdfdf;
        opacity: .75
    }
}

#global-where-to-buy .region-box .region-list .region button.active {
    background-color: #272A31;
    color: #fff;
    opacity: 1;
    will-change: background-color, opacity
}

#global-where-to-buy .country-box {
    /* height: 80%; */
    overflow-y: auto
}

#global-where-to-buy.overHeight .country-box {
    height: 85%;
    border-radius: 24px;
    scrollbar-gutter: stable;       /* 避免捲軸出現/消失時內容左右跳動（新屬性，現代瀏覽器OK） */

    /* Firefox 專用 */
    scrollbar-width: thin;          /* auto | thin | none（FF無法指定px） */
    scrollbar-color: var(--sb-thumb) var(--sb-track);
}

/* Chrome / Edge / Safari（-webkit-） */
#global-where-to-buy.overHeight .country-box::-webkit-scrollbar{
    width: var(--sb-size);
    height: var(--sb-size);
}
#global-where-to-buy.overHeight .country-box::-webkit-scrollbar-track{
    background: var(--sb-track);
    border-radius: var(--sb-radius);
}
#global-where-to-buy.overHeight .country-box::-webkit-scrollbar-thumb{
    background-color: var(--sb-thumb);
    border-radius: var(--sb-radius);
    border: 2px solid transparent;      /* 讓 thumb 看起來更細、避免貼邊 */
    background-clip: padding-box;
}
#global-where-to-buy.overHeight .country-box:hover::-webkit-scrollbar-thumb{
    background-color: var(--sb-thumb-hover);
}
#global-where-to-buy.overHeight .country-box::-webkit-scrollbar-corner{
    background: transparent;            /* 斜角區塊（雙向捲軸交界） */
}

#global-where-to-buy .country-box .country-list-group {
    overflow: hidden;
    position: relative
}

#global-where-to-buy .country-box .country-list {
    width: 100%;
    background-color: #272a31;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    opacity: 0;
    overflow: hidden;
    padding: 1vw;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

#global-where-to-buy .country-box .country-list:first-child {
    height: 337px;
}

#global-where-to-buy .country-box .country-list.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: opacity ease .75s;
    will-change: opacity
}

#global-where-to-buy .country-box .country-list .country {
    width: 25%;
    padding: 2% 1vw
}

#global-where-to-buy .country-box .country-list .country .country-name {
    color: #fff;
    font-family: "TradeGothic LT Bold","Roboto Condensed Bold","Arial",sans-serif;
    font-size: 27px;
    position: relative
}

#global-where-to-buy .country-box .country-list .country .country-name span {
    display: inline-block;
    padding-right: 15px;
    position: relative;
    z-index: 2
}

#global-where-to-buy .country-box .country-list .country .links {
    font-size: 18.6px;
    padding: 3px 0;
}

#global-where-to-buy .country-box .country-list .country .links a {
    color: #D2FF7A;
    font-family: Roboto-Regular, Arial, Microsoft JhengHei, LiHei Pro, WenQuanYi Zen Hei, sans-serif;
    font-weight: 700;
    position: relative
}

#global-where-to-buy .country-box .country-list .country .links a:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #D2FF7A;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform cubic-bezier(.86, 0, .13, 1) .3s
}

@media (hover:hover) {
    #global-where-to-buy .country-box .country-list .country .links a:hover:after {
        transform: scaleX(1);
        will-change: transform
    }
}

#global-where-to-buy .country-box .country-list .country .links .coming-soon {
    color: #fff;
    font-size: 16.5px;
    font-family: Roboto-Regular, Arial, Microsoft JhengHei, LiHei Pro, WenQuanYi Zen Hei, sans-serif;
    opacity: .5
}

@media all and (max-width:1280px) {
    #global-where-to-buy .region-box .region-list .region button {
        font-size: 28px;
    }
}

@media all and (max-width:992px) {
    #global-where-to-buy {
        height: 90vh;
        overflow: hidden;
        padding-top: 0;
    }

    #global-where-to-buy .region-toggler {
        color: #000;
        background-color: #d4d8e3;
        display: block;
        font-size: 30px;
        font-family: "TradeGothic LT Bold","Roboto Condensed Bold","Arial",sans-serif;
        padding: 30px 5vw 10px 5vw;
        text-transform: uppercase;
        position: relative;
        z-index: 2
    }

    #global-where-to-buy .region-box {
        height: auto;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 20px;
        position: relative;
        z-index: 1;
        transition: transform cubic-bezier(.86, 0, .13, 1) .5s
    }

    #global-where-to-buy .region-box .region-list {
        height: auto;
        display: block
    }

    #global-where-to-buy .region-box .region-list .region, #global-where-to-buy .region-box .region-list .region:first-child {
        padding: 0 40px;
    }

    #global-where-to-buy .region-box .region-list .region button:not(.btn-back) {
        display: inline-block;
        font-size: 24px;
        padding: 12px 30px;
    }

    #global-where-to-buy .region-box .region-list .region::before {
        content: none
    }

    #global-where-to-buy .region-box .region-list .region button:after {
        content: none
    }

    #global-where-to-buy .region-box .region-list .region button.active.btn-back {
        background-color: transparent;
        color: #000000a6;
        display: inline-block;
        font-size: 18px
    }

    #global-where-to-buy .country-box {
        height: 65%;
        border-radius: 20px;
        position: relative;
        transition: transform cubic-bezier(.86, 0, .13, 1) .5s;
        z-index: 2
    }

    #global-where-to-buy .country-box .country-list {
        height: auto;
        display: block
    }

    #global-where-to-buy .country-box .country-list:first-child {
        height: auto;
    }

    #global-where-to-buy .country-box .country-list .country {
        width: 100%
    }

    #global-where-to-buy .country-box .country-list .country .country-name {
        font-size: 22.5px
    }

    #global-where-to-buy .country-box .country-list .country .links {
        font-size: 16.5px
    }

    #global-where-to-buy .country-box .country-list .country .links a:after {
        transform: scaleX(1)
    }

    #global-where-to-buy .country-box .country-list .country .links .coming-soon {
        font-size: 15px
    }
}

@media all and (max-width:992px) {
    #global-where-to-buy {
        width: 90vw;
        border-radius: 20px;
        padding: 20px;
        padding-top: 0;
    }
    #global-where-to-buy .region-toggler {
        font-size: 24px
    }

    #global-where-to-buy .region-box .region-list .region button:not(.btn-back) {
        border-radius: 14px;
        font-size: 19.5px
    }

    #global-where-to-buy .region-box .region-list .region button {
        padding: 10px 15px;
    }

    #global-where-to-buy .region-toggler {
        padding: 30px 0 10px 0;
    }

    #global-where-to-buy .country-box .country-list .country .country-name,
    #global-where-to-buy .region-box .region-list .region button.active.btn-back {
        font-size: 18px
    }

    #global-where-to-buy .country-box .country-list .country .links {
        font-size: 13.5px
    }

    #global-where-to-buy .country-box .country-list .country .links .coming-soon {
        font-size: 12px
    }

    #global-where-to-buy .country-box {
        border-radius: 12px;
    }

    #global-where-to-buy .country-box .country-list {
        padding: 4vw;
    }

    #global-where-to-buy .region-box .region-list .region, #global-where-to-buy .region-box .region-list .region:first-child {
        padding: 2.5px 0;
    }
}