@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes spin {
    to {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-moz-keyframes shake-anim {
    0% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes shake-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes fadeup {
    from {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-moz-keyframes fadeup {
    from {
        opacity: 0;
        -moz-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes pulse-animation {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale3d(1.6, 1.6, 1.6);
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@-moz-keyframes pulse-animation {
    0% {
        -moz-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        -moz-transform: scale3d(1.6, 1.6, 1.6);
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@keyframes pulse-animation {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -moz-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale3d(1.6, 1.6, 1.6);
        -moz-transform: scale3d(1.6, 1.6, 1.6);
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@-webkit-keyframes border-animation {
    0% {
        -webkit-transform: scale3d(0.6, 0.6, 0.6);
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale3d(1.4, 1.4, 1.4);
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@-moz-keyframes border-animation {
    0% {
        -moz-transform: scale3d(0.6, 0.6, 0.6);
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        -moz-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        -moz-transform: scale3d(1.4, 1.4, 1.4);
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@keyframes border-animation {
    0% {
        -webkit-transform: scale3d(0.6, 0.6, 0.6);
        -moz-transform: scale3d(0.6, 0.6, 0.6);
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        -moz-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale3d(1.4, 1.4, 1.4);
        -moz-transform: scale3d(1.4, 1.4, 1.4);
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@-webkit-keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

@-moz-keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

@keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

.inset-0 {
    inset: 0
}

.pointer {
    cursor: pointer
}

.z--1 {
    z-index: -1
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.isolate {
    isolation: isolate
}

.ovf-hidden {
    overflow: hidden
}

.square {
    aspect-ratio: 1/1
}

:root {
    --max-width: min(1200px, -webkit-calc(100% - 30px));
    --max-width: min(1200px, -moz-calc(100% - 30px));
    --max-width: min(1200px, calc(100% - 30px));
    --max-padding: 1fr;
    --primary-color: #ffc107;
    --secondary-color: #321414;
    --font-family: "Bai Jamjuree", sans-serif;
    --font-secondary: "Montserrat", sans-serif;
    --line: 3
}

::-webkit-scrollbar {
    width: 7px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px
}

body {
    top: 0 !important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-family: var(--font-family);
    font-size: 14px
}

img {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block
}

img.lazy {
    display: block;
    opacity: 0
}

img:not(.initial) {
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s
}

img:not([src]) {
    visibility: hidden
}

img:is(.loaded, .error) {
    opacity: 1
}

a,
input,
textarea {
    outline: none;
    padding: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.wrap-content {
    display: grid;
    width: 100% !important;
    grid-column: main;
    grid-template-columns: [main-start] var(--max-padding) [content-start] var(--max-width) [content-end] var(--max-padding) [main-end]
}

.wrap-content>*:not(.fw, .wrap-content) {
    grid-column: content
}

.wrap-content>.fw {
    grid-column: main
}

:is(.title-main, .title-detail) {
    text-align: center;
    margin-bottom: clamp(15px, 2.4390243902vw, 30px)
}

:is(.title-main, .title-detail) :is(span, h1) {
    font-size: clamp(20px, 2.4390243902vw, 30px);
    line-height: 1.2333333333;
    text-transform: uppercase;
    color: #321414;
    font-weight: 800;
    font-family: var(--font-secondary)
}

:is(.title-main, .title-detail) img {
    margin-top: 9px;
    margin: 0 auto;
    max-width: 100%
}

.time-main {
    color: #999;
    margin-bottom: .75rem
}

.time-main i {
    margin: 3px 7px 0 0;
    vertical-align: top
}

.time-main span {
    display: inline-block;
    vertical-align: top
}

.share {
    background: rgba(128, 128, 128, .15);
    border-radius: 5px;
    line-height: normal;
    margin-top: 15px;
    padding: 17px 15px 10px
}

.share b {
    display: block;
    margin-bottom: 5px
}

footer {
    background: url(../images/footer_center_bg.webp) no-repeat center bottom, url(../images/footer_right_bottom_bg.webp) no-repeat bottom right, #0e0603;
    padding: clamp(30px, 8.1300813008vw, 100px) 0 clamp(20px, 5.6910569106vw, 70px)
}

@media(min-width: 1024px) {
    footer {
        -webkit-mask: url(../images/footer_wave.webp) top center/max(1920px, 100%) auto, -webkit-linear-gradient(top, transparent 100px, #fff 100px);
        mask: url(../images/footer_wave.webp) top center/max(1920px, 100%) auto, linear-gradient(180deg, transparent 100px, #fff 100px);
        background: url(../images/footer_center_bg.webp) no-repeat center bottom, url(../images/footer_right_bottom_bg.webp) no-repeat bottom right, -webkit-linear-gradient(top, transparent 1px, #0e0603 1px);
        background: url(../images/footer_center_bg.webp) no-repeat center bottom, url(../images/footer_right_bottom_bg.webp) no-repeat bottom right, -moz-linear-gradient(top, transparent 1px, #0e0603 1px);
        background: url(../images/footer_center_bg.webp) no-repeat center bottom, url(../images/footer_right_bottom_bg.webp) no-repeat bottom right, linear-gradient(180deg, transparent 1px, #0e0603 1px)
    }
}

.footer-top {
    margin-bottom: clamp(20px, 4.0650406504vw, 50px)
}

.footer-title {
    font: 600 16px/1.875 var(--font-family);
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--7);
    margin-bottom: 13px
}

.footer-listview_item {
    font: 400 15px/2 var(--font-family);
    color: var(--6)
}

.footer-powered-line {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    flex: 1 1 auto;
    height: 3px;
    position: relative
}

.footer-powered-line::before,
.footer-powered-line::after {
    content: "";
    position: absolute;
    display: block
}

.footer-powered-line::before {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .3);
    top: 50%;
    left: 0;
    translate: 0 -50%
}

.footer-powered-line::after {
    width: 31px;
    height: 3px;
    right: 0;
    top: 0;
    border-radius: 100px;
    background-color: var(--primary-color)
}

#footer-map {
    aspect-ratio: 588/240;
    width: 100%;
    position: relative
}

#footer-map iframe {
    height: 100% !important;
    left: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 100% !important
}

.text-split {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line);
    box-orient: vertical;
    line-clamp: var(--line);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.scale-img {
    display: block;
    overflow: hidden
}

.scale-img img {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
}

:is([class*=_item]:hover .scale-img, .scale-img:hover)>:is(img, picture>img) {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1)
}

.mirror {
    position: relative;
    overflow: hidden;
    display: block
}

.mirror:after {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, .5);
    content: "";
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -moz-transition: transform .6s, -moz-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s, -moz-transform .6s;
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    -moz-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    pointer-events: none
}

.mirror:hover:after {
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -moz-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0)
}

[class*=-xemthem] {
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    position: relative;
    overflow: hidden
}

[class*=-xemthem]::before {
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background-image: -webkit-linear-gradient(70deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    background-image: -moz-linear-gradient(70deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    background-image: linear-gradient(20deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    -webkit-background-size: 600% 600%;
    background-size: 600%
}

[class*=-xemthem]:hover {
    color: #fff;
    -webkit-transform: translateX(0.5rem);
    -moz-transform: translateX(0.5rem);
    transform: translateX(0.5rem)
}

[class*=-xemthem]:hover::before {
    background-position: 100%
}

.transition {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.cart-fixed {
    color: #fff !important;
    z-index: 10
}

.cart-fixed i {
    font-size: 20px
}

.cart-fixed span {
    background: var(--primary-color);
    border-radius: 100%;
    color: #fff;
    font-size: 11px;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: -5px;
    text-align: center;
    top: 0;
    width: 25px
}

.a2a_kit .a2a_svg {
    height: 30px;
    line-height: 30px;
    width: 30px
}

.qty-pro {
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100px !important;
    -moz-box-flex: 0 !important;
    flex: 0 0 100px !important
}

.skeleton :is([class*="-pic "], [class*="-title "], [class*="-desc "], [class*="-content "], [class*="-price "]) {
    background: #e4e4e4;
    border-radius: 5px;
    -webkit-animation: skeleton 2s ease-in-out infinite;
    -moz-animation: skeleton 2s ease-in-out infinite;
    animation: skeleton 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.skeleton .pagination-ajax {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    position: relative
}

.skeleton .pagination-ajax::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3
}

.skeleton img {
    opacity: 0
}

.htmx-indicator:not(.htmx-request) {
    display: none !important
}

.menu {
    z-index: 100
}

.menu ul {
    list-style: none;
    margin: auto;
    width: 100%
}

.menu ul li a {
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.5625;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700
}

.menu ul li a.has-child {
    margin-right: 8px;
    padding-right: 16px
}

.menu ul li a.has-child:after {
    border: 1px solid #fafafa;
    border-left: 0;
    border-top: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    translate: 0 -50%;
    content: "";
    height: 5px;
    width: 5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.menu ul li ul {
    background-color: #fafafa;
    min-width: 250px;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -moz-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.menu ul li ul li a {
    color: #313131;
    padding: clamp(3px, .439238653vw, 6px) 0;
    text-transform: capitalize;
    background-color: rgba(0, 0, 0, 0)
}

.menu ul li ul li a.has-child {
    margin-right: 0
}

.menu ul li ul li a.has-child:after {
    border-color: #313131;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.menu ul li ul li:not(:last-child)>a {
    border-bottom: 1px solid #ececec
}

.menu ul li:hover>ul {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0);
    -moz-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    visibility: visible;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.menu ul li.menu-line {
    background-color: rgba(0, 0, 0, .1);
    height: 15px;
    width: 1px
}

.menu ul.menu-main {
    gap: clamp(10px, 4.0650406504vw, 35px)
}

.menu ul.menu-main>li>a {
    text-transform: uppercase;
    position: relative
}

.menu ul.menu-main>li>a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 50%;
    translate: -50% 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.menu ul.menu-main>li>a.active::after,
.menu ul.menu-main>li>a:hover::after {
    width: 46px
}

.menu ul.menu-main>li ul>li>a:hover {
    background-color: rgba(0, 0, 0, 0);
    color: var(--secondary-color)
}

.logo-menu {
    width: 155px
}

.logo-menu.scale_down {
    width: 80px
}

.search-form {
    width: 37.5%
}

.search-form input:is(:focus, :focus-visible, :focus-within) {
    border: unset !important;
    outline: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset
}

.search-form button {
    border-radius: 100%;
    width: 42px;
    color: #fff;
    font-size: 16px
}

.menu-res {
    background: var(--primary-color);
    z-index: 100;
    display: none
}

.menu-res .header-cart img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(353deg) brightness(104%) contrast(104%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(353deg) brightness(104%) contrast(104%)
}

#menu:not(.mm-menu) {
    display: none
}

.search-res {
    position: relative
}

.search-res input[type=checkbox]:checked+label {
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color)
}

.search-res input[type=checkbox]:checked+label+.search-grid {
    opacity: 1;
    grid-template-columns: 1fr
}

.search-res .search-grid {
    display: grid;
    grid-template-columns: 0fr;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 2;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.sp_item {
    -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, .05);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, .05)
}

.sp-title {
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.625;
    color: #333;
    font-weight: 500;
    height: -webkit-calc(1.625em*var(--line));
    height: -moz-calc(1.625em*var(--line));
    height: calc(1.625em*var(--line));
    margin-bottom: 0;
    text-align: center
}

.sp-info {
    padding: 13px 17px
}

.sp-price span {
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.75;
    color: var(--secondary-color)
}

.sp-price span .text-danger {
    color: #d20000 !important;
    font-weight: 700
}

.grid-sp {
    display: grid;
    --gap: clamp(8px, -webkit-calc(20 / 1230 * 100vw), 20px);
    --gap: clamp(8px, -moz-calc(20 / 1230 * 100vw), 20px);
    --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - var(--gap) * 3) / 4), 1fr))
}

.wrap-gioithieu {
    padding: clamp(20px, 6.3414634146vw, 78px) 0;
}

.gioithieu-title-main {
    font-family: var(--font-secondary)
}

.gioithieu-title-main span {
    font-size: 15px;
    line-height: 28px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700
}

.gioithieu-title-main p {
    font-size: clamp(18px, 2.7642276423vw, 34px);
    line-height: 1.2352941176;
    text-transform: uppercase;
    color: #321414;
    font-weight: 900
}

.gioithieu-desc {
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.75;
    color: #232323;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px
}

.gioithieu-xemthem {
    border: 1px solid #321414;
    padding: 10px 20px;
    background: -webkit-linear-gradient(bottom, var(--primary-color) 5px, transparent 5px);
    background: -moz-linear-gradient(bottom, var(--primary-color) 5px, transparent 5px);
    background: linear-gradient(0deg, var(--primary-color) 5px, transparent 5px)
}

.gioithieu-xemthem span {
    font-size: 16px;
    line-height: 28px;
    color: #321414;
    font-weight: 600
}

.gioithieu-banner-1 {
    width: 32.7941176471%;
    padding: 6px;
    background: url(../images/gioithieu_mask_big.webp) no-repeat center center/100% 100%;
    position: relative
}

.gioithieu-banner-1 .gioithieu-mask {
    -webkit-mask: url(../images/gioithieu_mask_big.webp) no-repeat center center/100% 100%;
    mask: url(../images/gioithieu_mask_big.webp) no-repeat center center/100% 100%
}

.gioithieu-banner-1::after {
    content: "";
    width: 113.2701421801%;
    aspect-ratio: 239/110;
    background: url(../images/gt_banner_1_after.webp) no-repeat center/100%;
    position: absolute;
    right: 0;
    top: 80.310880829%;
    z-index: -1
}

.gioithieu-banner-2 {
    width: 27.9411764706%;
    padding: 6px;
    background: url(../images/gioithieu_mask_medium.webp) no-repeat center center/100% 100%
}

.gioithieu-banner-2 .gioithieu-mask {
    -webkit-mask: url(../images/gioithieu_mask_medium.webp) no-repeat center center/100% 100%;
    mask: url(../images/gioithieu_mask_medium.webp) no-repeat center center/100% 100%
}

.gioithieu-banner-3 {
    width: 27.2058823529%;
    padding: 6px;
    background: url(../images/gioithieu_mask_small.webp) no-repeat center center/100% 100%;
    position: relative
}

.gioithieu-banner-3 .gioithieu-mask {
    -webkit-mask: url(../images/gioithieu_mask_small.webp) no-repeat center center/100% 100%;
    mask: url(../images/gioithieu_mask_small.webp) no-repeat center center/100% 100%
}

.gioithieu-banner-3::after {
    content: "";
    width: 100%;
    aspect-ratio: 171/100;
    background: url(../images/gt_banner_3_after.webp) no-repeat center/100%;
    position: absolute;
    right: 0;
    top: 91.9540229885%;
    z-index: -1
}

.wrap-spnb {
    margin: clamp(20px, 5.7723577236vw, 40px) 0;
}

.spnb-slide {
    -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.05))
}

.spnb-slide .sp_item {
    -webkit-box-shadow: unset;
    box-shadow: unset
}

.wrap-bst {
    padding: clamp(20px, 4.3089430894vw, 40px) 0 ;
}

.bst-title {
    font-size: clamp(14px, 1.4634146341vw, 18px);
    line-height: 1.5555555556;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    height: -webkit-calc(1.5555555556em*var(--line));
    height: -moz-calc(1.5555555556em*var(--line));
    height: calc(1.5555555556em*var(--line));
    text-align: center
}

.wrap-splistnb {
    padding-top: clamp(20px, 4.0650406504vw, 50px);
    padding-bottom: clamp(20px, 3.0894308943vw, 38px)
}

.wrap-splistnb .title-main {
    margin-bottom: 15px
}

.splistnb-list_item {
    background-color: #fff;
    border: 1px solid rgba(50, 20, 20, .5);
    outline: 1px dashed rgba(50, 20, 20, .5);
    outline-offset: -4px;
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.75;
    color: #321414;
    font-weight: 600;
    padding: 8.5px 11px;
    cursor: pointer
}

.splistnb-list_item:has(>input:checked) {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.grid-splistnb {
    display: grid;
    --gap: clamp(8px, -webkit-calc(20 / 1230 * 100vw), 20px);
    --gap: clamp(8px, -moz-calc(20 / 1230 * 100vw), 20px);
    --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(max(175px, (100% - var(--gap) * 3) / 4), 1fr))
}

.wrap-tieuchi {
    background-color: #321414;
    padding-top: clamp(20px, 3.0894308943vw, 38px);
    padding-bottom: clamp(20px, 4.0650406504vw, 50px)
}

.tieuchi_item {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    padding: 15px
}

@media(min-width: 1024px) {
    .tieuchi_item {
        padding: 20px 30px 40px
    }
}

.tieuchi-title {
    font-size: clamp(14px, 1.4634146341vw, 18px);
    line-height: 1.3888888889;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 10px
}

.tieuchi-desc {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 20px;
    color: #fff;
    font-weight: 400
}

.dknt-form {
    width: min(100%, 450px);
    margin: 0 auto;
    padding: clamp(20px, 3.2520325203vw, 40px) clamp(20px, 4.8780487805vw, 60px)
}

.dknt-form :is(input, textarea) {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 60px;
    font-weight: 400;
    color: var(--secondary-color);
    resize: none
}

.dknt-form :is(input, textarea)::-webkit-input-placeholder {
    color: #616161;
    text-transform: uppercase
}

.dknt-form :is(input, textarea)::-moz-placeholder {
    color: #616161;
    text-transform: uppercase
}

.dknt-form :is(input, textarea)::-ms-input-placeholder {
    color: #616161;
    text-transform: uppercase
}

.dknt-form :is(input, textarea)::placeholder {
    color: #616161;
    text-transform: uppercase
}

.dknt-form button {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 26px;
    background-color: #904715;
    margin-top: clamp(15px, 2.1951219512vw, 27px);
    border: unset
}

.dknt-title-main {
    font-size: clamp(20px, 5.6910569106vw, 65px);
    line-height: 1.5;
    color: #fff;
    font-weight: 200;
    font-family: var(--font-secondary)
}

.dknt-title-main span {
    text-decoration: underline;
    text-underline-offset: 10px;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 3px
}

.dknt-title-main span.jj-text-primary {
    font-weight: 600;
    font-size: clamp(20px, 4.8780487805vw, 55px)
}

@media(min-width: 1024px) {
    .dknt-banner {
        width: 27.9166666667%
    }

    .dknt-title-main {
        width: 35.4166666667%
    }

    .dknt-form {
        width: 34.1666666667%;
        margin: 0
    }
}

.wrap-doitac {
    padding-top: clamp(20px, 4.8780487805vw, 60px);
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.23));
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.23))
}

.doitac-bg {
    -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    background-color: #f8f8f8;
    border: 1px solid #fff;
    padding: clamp(20px, 3.1707317073vw, 39px) clamp(20px, 4.3089430894vw, 53px) clamp(20px, 3.5772357724vw, 44px)
}

@media(min-width: 1024px) {
    .wrap-doitac {
        padding-top: 0
    }

    .doitac-bg {
        margin-top: -7.3333333333%
    }
}

.wrap-feedback {
    padding: clamp(20px, 4.0650406504vw, 50px) 0
}

.feedback-title {
    font-size: clamp(14px, 1.4634146341vw, 18px);
    line-height: 1.5555555556;
    color: #321414;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 0
}

.feedback-desc {
    font-size: clamp(14px, 1.4634146341vw, 18px);
    line-height: 1.5555555556;
    color: #321414;
    font-weight: 400;
    margin-bottom: 0
}

.wrap-ttlistnb {
    padding-top: clamp(20px, 3.1707317073vw, 39px);
    padding-bottom: clamp(20px, 5.1219512195vw, 63px)
}

.ttlistnb-slide {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.15))
}

.ttlistnb_item {
    padding: 0 10px 26px 10px;
    height: 100%;

}

.ttlistnb_item::before {
    position: absolute;
    content: "";
    display: block;
    inset: 27.6371308017% 0 0 0;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background: #fff;
    z-index: -1
}

.ttlistnb-pic {
    border-radius: 5px;
    margin-bottom: 13px
}

.ttlistnb-date {
    font-size: clamp(14px, 1.3008130081vw, 16px);
    line-height: 1.875;
    color: #904715;
    font-weight: 500
}

.ttlistnb-title {
    font-size: clamp(15px, 1.4634146341vw, 18px);
    line-height: 1.5555555556;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px
}

.ttlistnb-desc {
    font-size: 15px;
    line-height: 25px;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
    margin-bottom: 5px
}

.ttlistnb-xemthem {
    font-size: 15px;
    line-height: 24px;
    color: #904715 !important;
    font-weight: 400
}

.ttlistnb-xemthem::before {
    display: none
}

@media(min-width: 1024px) {
    .wrap-ttlistnb:last-child {
        padding-bottom: clamp(20px, 9.1869918699vw, 113px);
        margin-bottom: clamp(-56px, -4.5528455285vw, -20px)
    }
}

.pro-detail-title-main {
    font-size: clamp(16px, calc(21 / 1230 * 100vw), 21px);
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize;
    text-rendering: optimizeSpeed;
}