html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    padding-right: 0px !important;
    font-size: 16px;    
    font-family: 'Poppins', "微軟正黑體", "Microsoft JhengHei", sans-serif !important;
    letter-spacing: 1.5px;
    position: relative;
    min-height: 100vh;
}



/* ---- color root ---- */
:root {
    --main-color: #999999;
    --vice-color: #dddddd;
    --yellow-color: #f2d7a9;
    --red-color: #ebb8ab;
    --gray-color: #595757;
}

/* ---- color root end ---- */



/* ---- basic setting ---- */
.section-page {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .section-page {
        padding: 30px 0;
    }
}

.modal {
    padding-right: 0px !important;
}

.modal-content {
    border-radius: 15px;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--gray-color);
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1;
}

.modal .modal-body {
    padding-top: 40px;
}

.modal .modal-body .spec-title {
    font-weight: 700;
    text-align: center;
}

.modal .modal-body .spec-item {
    margin-bottom: 15px;
}

.modal .modal-body .spec-item-title {
    font-size: 15px;
    margin-bottom: 3px;
}

.modal input,
.modal select {
    width: 100%;
    padding: 3px 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal .cart-item-qty {
    height: 35px;
}

.modal .cart-item-qty input {
    border: 1px solid #ddd;
    margin: 0 10px;
}

.modal .cart-item-qty i {
    width: 35px;
    min-width: 35px;
    line-height: 35px;
}

.modal .spec-pdt-img {
    width: 80%;
    margin: 0 auto 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gray-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

button.check {
    width: 100%;
    background-color: #3d3d3d;
    color: #fff;
    padding: 5px;
    letter-spacing: 2px;
    border-radius: 5px;
}

button.disabled {
    width: 100%;
    background-color: #ccc;
    color: #666;
    padding: 5px;
    letter-spacing: 2px;
    border-radius: 5px;
}

button.gray {
    width: 100%;
    background-color: #eee;
    color: var(--gray-color);
    padding: 5px;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: .3s ease;
}

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--main-color);
    cursor: pointer;
}

img {
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
label {
    padding: 0;
    margin: 0;
    list-style: none;
}

input,
select,
textarea,
button {
    outline: none;
}

select {
    -webkit-appearance: none;
    background-color: #fff;
    color: #333;
    background-image: url(../img/select-icon.svg);
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: 15px;
}

button {
    border: none;
}

input:active,
select:active,
textarea:active,
button:active,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    padding: 5px 15px !important;
    font-size: 15px !important;
}

div:where(.swal2-container) .swal2-html-container {
    margin: 0 !important;
    padding: 15px !important;

}

div:where(.swal2-container) div:where(.swal2-popup) {
    padding: 0 !important;
}

.light-bg {
    position: absolute;
    z-index: -1;
    background-color: #f8f8f8;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.linear-bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgb(253, 252, 246) 100%);
}

.main-link {
    display: block;
    border-radius: 3px;
    background-color: #f6f6f6;
    padding: 8px 12px;
    transition: .3s ease;
    position: relative;
    color: #333;
    font-size: 18px;
}

.main-link:hover {
    background-color: transparent;
    color: #fff;
}

.main-link::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3px;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(to right, #D93924, #FDD108);
    background: -webkit-linear-gradient(to right, #D93924, #FDD108);
    transition: .3s ease;
    transform-origin: left;
    transform: scaleX(0);
}

.main-link:hover::after {
    transform: scaleX(1);
}

.error-img {
    width: 500px;
    margin: 0 auto;
    transition: .3s ease;
}

.error-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .error-img {
        width: 320px;
    }
}

.error-text {
    text-align: center;
    color: var(--gray-color);
    font-size: 18px;
    letter-spacing: 2px;
}

.error-text a {
    text-decoration: underline;
    color: var(--red-color);
}

/* ---- basic setting end ---- */



/* ---- gotop ---- */
.gotop {
    position: fixed;
    width: 35px;
    height: 35px;
    right: 26px;
    bottom: 40px;
    background: var(--yellow-color);
    border-radius: 2px;
    transition: display 0.5s ease-in-out;
    z-index: 10;
}

.gotop::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    content: '\f077';
    font-family: 'Font Awesome 6 Pro';
    z-index: 1;
    color: #222;
    font-size: 22px;
}

@media(max-width:767px) {
    .gotop {
        width: 30px;
        height: 30px;
        right: 15px;
    }

    .gotop i {
        font-size: 25px;
        left: 5px;
        top: 5px;
    }
}

/* ---- gotop end ---- */



/* ---- right link ---- */
.right-link {
    position: fixed;
    bottom: 75px;
    right: 14px;
    z-index: 99;
    width: 60px;
}

.right-link a {
    text-align: center;
    display: inline-block;
    margin-bottom: 5px;
}

.right-link img {
    width: 60%;
}

@media (max-width: 992px) {
    .right-link {
        display: none;
    }
}

/* ---- right link end ---- */



/* ---- header ---- */
header {
    height: 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    transition: .3s ease;
}

.fixed-top {
    padding-right: 0px !important;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0px 2px 15px rgba(199, 199, 199, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
}



.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-unscroll {
    display: flex;
    height: 0;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.top-unscroll .logo {
    opacity: 0;
    width: 250px;
}

.top-unscroll.active {
    height: 70px;
}

.top-unscroll.active .logo {
    opacity: 1;
}

.logo {
    width: 320px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.top-scroll {
    width: 100%;
    justify-content: center;
    transition: .3s ease;
}

.top-scroll .logo {
    width: 275px;
    display: none;
}

.top-scroll .logo.active {
    display: inline-flex !important;
    animation: logoFadeIn .3s ease 0ms 1 both;
}

@media (max-width: 992px) {
    .top-unscroll {
        display: none;
    }

    .top-scroll {
        justify-content: start;
    }

    .top-scroll .logo {
        display: inline-flex !important;
    }
}

@keyframes logoFadeIn {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo a {
    width: 100%;
}

.logo img {
    display: block;
    object-fit: contain;
    width: 80%;
}

@media (max-width: 1024px) {
    .logo {
        width: 300px !;
    }
}

@media (min-width: 992px) {
    .logo img {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 200px !important;
    }

    .logo img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 220px !important;
    }
}

@media (max-width: 430px) {
    .logo {
        width: 175px !important;
    }
}

.top-menu {
    transition: .3s ease;
}

@media (max-width: 992px) {
    .top-menu {
        margin-right: 35px;
    }
}
@media (max-width: 768px) {
    .top-menu {
        margin-right: 45px;
    }
}

.top-menu>ul {
    display: flex;
    align-items: center;
}

.top-menu>ul>li {
    margin-left: 10px;
    position: relative;
}

.top-menu>ul>li img {
    width: 24px;
}

#cart-button {
    position: relative;
    display: flex;
    align-items: center;
}

#cart-button .cart-btn-num {
    position: absolute;
    top: -40%;
    right: -40%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--yellow-color);
    padding: 0 5px 0px 6px;
    height: 18px;
    width: 18px;
    margin-left: 5px;
    border-radius: 2px;
    transform: skewX(-5deg);
}

.top-menu #index-memberMenu {
    position: absolute;
    width: 150px;
    text-align: center;
    height: auto;
    background-color: rgb(244, 244, 244);
    padding: 15px;
    right: -50%;
    top: 150%;
    border-radius: 5px;
    display: none;
    font-weight: 700;
}

.top-menu #index-memberMenu li:not(:last-of-type) {
    margin: 0 0 5px;
}

#index-searchbox {
    position: absolute;
    background-color: #f4f4f4;
    border-radius: 5px;
    width: 300px;
    top: 130%;
    right: -10px;
    padding: 10px 10px 10px 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}


#index-searchbox input {
    width: 100%;
    background-color: transparent;
    border: none;
    color: var(--gray-color);
}

@media (max-width: 576px) {
    #index-searchbox input {
        width: calc(100% - 30px);
    }
}

#index-searchbox button {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-color);
    border-radius: 50%;
    color: #fff;
    width: 30px;
    min-width: 30px;
}

@media (max-width: 576px) {
    #index-searchbox {
        right: -120px;
        top: 190%;
        width: 320px;
    }
}

.mb-search-box-t {
    font-size: 15px;
    color: var(--red-color);
    padding: 10px 20px 5px !important;
}

.mb-search-box {
    padding: 0px 15px 10px 20px !important;
    display: flex;
    height: 45px;
    align-items: center;
}

    .mb-search-box input {
        width: 100%;
        height: 100%;
        border: 1px solid #ccc;
        border-right: none;
        border-radius: 5px 0 0 5px;
        padding: 2px 10px;
    }

.mb-search-box button {
    width: 35px;
    border-radius: 0 5px 5px 0;
    min-width: 35px;
    background-color: var(--yellow-color);
    color: var(--gray-color);
    height: 100%;
}

.mb-sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px !important;
}

.mb-sns-link a {
    display: block;
    width: 30px;
    margin: 0px 10px;
    height: 100%;
    padding: 0 !important;
}

header .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    header .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
    }
}

header .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
}

header .nav-menu>ul>li::after {
    position: absolute;
    display: block;
    content: '';
    /* width: 80%; */
    height: 1px;
    background-color: #ccc;
    top: 70%;
    left: 12%;
    transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 0;
}

header .nav-menu>ul>li.active::after,
header .nav-menu>ul>li:hover::after {
    width: 76%;
}

header .nav-menu a {
    display: block;
    position: relative;
    color: var(--main-color);
    padding: 0 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 900;
}

header .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: #333;
    height: 100%;
    padding: 0 15px;
    transition: 0.3s ease;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 70px;
}

header .nav-menu a:hover,
header .nav-menu .active>a,
header .nav-menu li:hover>a {
    color: #71754c;
}

header .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    left: -20px;
    top: 100%;
    height: auto;
    z-index: 99;
    border-radius: 0 0 10px 10px;
    transition: ease all 0.3s;
    list-style: none;
    background-color: #f2d7a9;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

header .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    /* height: 50px; */
}

header .nav-menu>ul>li {
    display: flex;
    align-items: center;
}

header .nav-menu>ul>li:not(:first-of-type):before {
    display: block;
    content: '|';
}

header .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: 500;
    text-transform: none;
    color: #333;
}

header .nav-menu .drop-down ul li {
    transition: .3s ease;
}

header .nav-menu .drop-down ul .active {
    background-color: rgba(255, 255, 255, 0.8);
}

header .nav-menu .drop-down ul li:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

header .nav-menu .drop-down ul a:hover,
header .nav-menu .drop-down ul .active>a,
header .nav-menu .drop-down ul li:hover>a {
    color: var(--red-color);
}

header .nav-menu .drop-down>a:after {
    content: "\eac8";
    font-family: IcoFont;
    padding-left: 5px;
}

header .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100%);
    box-shadow: none;
    background-color: transparent;
}

header .nav-menu .drop-down .drop-down ul li {
    background-color: #f2d7a9;
    margin-left: 5px;
}

header .nav-menu .drop-down .drop-down ul li:first-of-type {
    border-radius: 10px 10px 0 0;
}

header .nav-menu .drop-down .drop-down ul li:last-of-type {
    border-radius: 0 0 10px 10px;
}

header .nav-menu .drop-down .drop-down ul li:first-of-type:last-of-type {
    border-radius: 10px;
}

header .nav-menu .drop-down .drop-down ul li:hover>a,
header .nav-menu .drop-down .drop-down ul li.active>a {
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--red-color);
}

header .nav-menu .drop-down .drop-down:hover>ul {
    display: block;
    top: 0;
    left: 100%;
    animation-name: toLeft;
    animation-duration: .5s;
    animation-delay: 0ms;
}

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

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

header .nav-menu .drop-down .drop-down>a:after {
    content: "\eaca";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
    color: #333;
}

@media (max-width: 1366px) {
    header .nav-menu .drop-down .drop-down:hover>ul {
        left: -105%;
    }

    header .nav-menu .drop-down .drop-down>a:after {
        content: "\eac9";
    }
}

/* 選單hover效果 */
header .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header-animate;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;
}

@keyframes header-animate {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #fff;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-logo a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.mobile-nav-logo img {
    width: 96%;
    object-fit: contain;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #666666;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}


.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 18px;
    top: 26px;
    z-index: 1030;
    border: 0;
    background: none;
    font-size: 25px;
    transition: all 0.3s;
    outline: none !important;
    line-height: 1;
}


.mobile-nav-toggle:hover {
    cursor: pointer;
}

.mobile-nav-toggle .mobilenav-line span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: .3s ease;
}

.mobile-nav-toggle .mobilenav-line.active span {
    background-color: #fff;
}

.mobile-nav-toggle .mobilenav-line span:nth-of-type(2) {
    margin: 6px 0;
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(2) {
    opacity: 0;
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(1) {
    transform: rotate(45deg) translateY(11px) translateX(1px);
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 1020;
    top: 0;
    left: 0;
    position: fixed;
    background: var(--main-color);
    opacity: .8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

/* ---- header end ---- */



/* ---- banner ---- */
.carousel-caption {
    position: absolute;
    right: 0;
    top: 40%;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    color: #555;
    text-align: right;
}

.carousel-caption h1 {
    font-size: 55px;
    color: #333;
    font-weight: 600;
    mix-blend-mode: color-burn;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    animation-delay: 1s;
}

.carousel-caption p {
    font-size: 30px;
    animation-delay: 2s;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
}

.carousel-item img {
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel-item img {
        min-height: 350px;
    }

    .carousel-caption {
        top: 25%;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        top: 35%;
    }

    .carousel-caption h1 {
        font-size: 35px;
    }

    .carousel-caption p {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 17px;
    }
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.3, 1.3);
    }
}

.carousel-inner .carousel-item>img {
    -webkit-animation: zoom 10s;
    animation: zoom 10s;
}

/* ---- banner end ---- */



/* ---- inbanner ---- */
.inbanner {
    padding-top: 220px;
}

@media (max-width: 992px) {
    .inbanner {
        padding-top: 160px;
    }
}

/* ---- inbanner end ---- */



/* ---- breadcrumb ---- */
.breadcrumb {
    justify-content: end;
    background-color: transparent;
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '|';
    color: #ccc;
}

.breadcrumb-item a {
    color: var(--gray-color);
}

.breadcrumb-item.active a {
    color: var(--red-color);
}

/* ---- breadcrumb end ---- */



/* ---- font ---- */
.main-h1 {
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 2px;
    color: var(--gray-color);
}

.sect-title {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--gray-color);
    border-left: 7px solid var(--yellow-color);
    height: fit-content;
    margin: 0 0 20px;
    padding: 0 0 0 12px;
}

.sect-title.red {
    border-left-color: var(--red-color);
}

@media (max-width: 768px) {
    .main-h1 {
        font-size: 28px;
    }

    .sect-title {
        font-size: 22px;
    }
}

.divide-line {
    border-top: 1px solid #e2dfdd;
    margin: 10px auto;
    width: 100%;
}

.notice-text {
    font-size: 15px;
    color: var(--red-color);
}

/* ---- font end ---- */



/* ---- category ---- */
.category {
    display: flex;
}

.category li {
    margin: 0 10px 0 0;
}

.category li a {
    display: block;
    letter-spacing: 2px;
    color: var(--gray-color);
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    background: #f3f3f3;
    position: relative;
    border-radius: 3px;
    transition: .3s ease;
}

.category li:hover a,
.category li.active a {
    color: #222;
    background-color: transparent;
}

.category li a::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3px;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--yellow-color);
    transition: .3s ease;
    transform-origin: left;
    transform: scaleX(0);
}

.category li.active a::after,
.category li:hover a::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .category-btn {
        text-align: center;
        padding: 5px;
        border-radius: 5px;
        background-color: #fff3c0;
        margin-bottom: 10px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
    }

    .category-btn::after {
        content: '\f078';
        display: block;
        width: fit-content;
        margin-left: 5px;
        font-size: 14px;
        font-family: 'Font Awesome 6 Pro';
        transition: .3s ease;
    }

    .category-btn:hover {
        cursor: pointer;
    }

    .category-btn.active {
        background-color: #ffed9d;
        color: #666;
    }

    .category-btn.active::after {
        transform: rotate(180deg);
        color: #333;
    }

    .category {
        display: none;
    }

    .category li {
        margin: 0 0 5px;
    }
}

@media (min-width: 768px) {
    .category {
        display: flex !important;
    }
}

.category-swiper .swiper-slide a {
    display: block;
    padding: 8px 12px;
    background-color: #f8f8f8;
    color: #333;
    font-weight: 700;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    transition: .3s ease;
    border-radius: 3px;
}

.category-swiper .swiper-slide {
    margin-right: 10px !important;
}

.category-swiper .swiper-slide a:hover,
.category-swiper .swiper-slide a.active {
    background-color: var(--yellow-color);
}

.category-item {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 20px;
}

.category-item li {
    display: block;
    margin-right: 12px;
}

.category-item li:not(:last-of-type)::after {
    content: '|';
    display: inline-block;
    margin-left: 10px;
    color: #ccc;
}

.category-item li:hover a,
.category-item li.active a {
    color: var(--red-color);
}

@media (max-width: 992px) {
    .category-item {
        justify-content: center;
    }

    .category-item li {
        margin-right: 7px;
    }

    .category-item li:not(:last-of-type)::after {
        margin-left: 5px;
    }
}

/* ---- category end ---- */



/* ---- sidenav ---- */
.sidenav {
    position: relative;
}

.sidenav-height {
    height: 80px;
}

.sidenav>li {
    margin: 0 10px 0 0px;
}

@media (max-width: 992px) {
    .sidenav>li {
        margin: 0 0 5px;
    }
}

.sidenav>li>a {
    display: block;
    letter-spacing: 2px;
    color: var(--gray-color);
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 700;
    background: #f3f3f3;
    position: relative;
    border-radius: 3px;
    transition: .3s ease;
}

.sidenav>li:hover>a,
.sidenav>li.active>a {
    color: #333;
    background-color: transparent;
}

.sidenav>li>a::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3px;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--yellow-color);
    transition: .3s ease;
    transform-origin: left;
    transform: scaleX(0);
}

.sidenav li.active>a::after,
.sidenav li:hover>a::after {
    transform: scaleX(1);
}

.sidenav>li.drop-down>ul {
    margin: 10px;
}

.sidenav>li.drop-down>ul>li>a {
    display: block;
    padding: 5px 10px;
}

@media (min-width: 992px) {
    .sidenav>li.drop-down>ul {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        top: 130%;
        left: 5px;
    }

    .sidenav>li.drop-down>ul>li:not(:last-of-type)>a::after {
        content: '/';
        display: inline-block;
        margin-left: 15px;
        color: #ccc;
    }

    .sidenav>li.drop-down>ul>li:hover:not(:last-of-type)>a::after,
    .sidenav>li.drop-down>ul>li.active:not(:last-of-type)>a::after {
        color: #ccc;
    }

    .sidenav>li.drop-down>ul>li>a {
        display: block;
        padding: 0;
        color: #666;
        margin: 0 15px 5px 0;
    }
}


.sidenav>li.drop-down>ul>li.active>a,
.sidenav>li.drop-down>ul>li:hover>a {
    color: var(--red-color);
}



@media (max-width: 992px) {
    .sidenav-btn {
        text-align: center;
        padding: 5px;
        border-radius: 5px;
        background-color: #fff3c0;
        margin-bottom: 10px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
    }

    .sidenav-btn::after {
        content: '\f078';
        display: block;
        width: fit-content;
        margin-left: 5px;
        font-size: 14px;
        font-family: 'Font Awesome 6 Pro';
        transition: .3s ease;
    }

    .sidenav-btn:hover {
        cursor: pointer;
    }

    .sidenav-btn.active {
        background-color: #ffed9d;
        color: #666;
    }

    .sidenav-btn.active::after {
        transform: rotate(180deg);
        color: #333;
    }

    .sidenav {
        display: none;
    }
}

@media (min-width: 992px) {
    .sidenav {
        display: flex !important;
        justify-content: center;
    }
}

/* ---- sidenav end ----- */

/* ---- pagination ----- */
.pagination {
    justify-content: center;
}

.pagination li a ,.pagination li span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    margin: 0 5px;
    padding: 0 0 3px;
    color: var(--gray-color);
    border-bottom: 1px solid #ccc;
    transition: .3s ease;
}

.pagination li:hover a,
.pagination li.active a,
.pagination li.active span{
    color: var(--red-color);
    border-bottom-color: var(--yellow-color);
}

/* ---- pagination end ----- */
/* ---- index ---- */
.index-link {
    display: block;
}

.index-link img {
    transition: .3s ease;
}

.index-link img:hover {
    opacity: .8;
}

.index-yt-video iframe {
    width: 100%;
    height: 250px;
}

@media (max-width: 992px) {
    .index-yt-video iframe {
        height: auto;
    }
}

@media (max-width: 576px) {
    .index-yt-video iframe {
        height: 315px;
    }
}

.index-blog {
    align-items: center;
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.index-blog-imgside {
    margin-right: 20px;
}

.index-blog-img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
    border: 5px solid rgba(253, 208, 8, 0.1);
    transition: .3s ease;
}

.index-blog:hover .index-blog-img {
    border-color: var(--yellow-color);
}

.index-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-blog-img-t {
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
    color: var(--gray-color);
    transition: .3s ease;
}

.index-blog:hover .index-blog-img-t {
    color: var(--red-color);
}

.index-blog-t {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index-blog-c {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #999;
}

/* ---- index end ---- */



/* ---- pdt ---- */

@media (max-width: 992px) {
    .small-gutter {
        margin-right: -5px;
        margin-left: -5px
    }

    .small-gutter>.col,
    .small-gutter>[class*=col-] {
        padding-right: 5px;
        padding-left: 5px
    }
}

.pdt-img {
    width: 100%;
    position: relative;
}

.pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.pdt-box:hover .pdt-img img {
    opacity: .85;
}

.pdt-addcart,
.pdt-mark {
    position: absolute;
    font-size: 18px;
    bottom: -3px;
    transition: .3s ease;
    z-index: 2;
}

.pdt-mark {
    left: 17px;
    color: #ccc;
}

.pdt-mark.active,
.pdt-mark:hover {
    cursor: pointer;
    color: var(--red-color);
}

.pdt-addcart {
    color: #ccc;
    border-radius: 3px;
    left: 45px;
}

.pdt-addcart.active,
.pdt-addcart:hover {
    cursor: pointer;
    color: var(--red-color);
}

@media (max-width: 992px) {
    .pdt-mark {
        left: 7px;
        bottom: -4px;
    }

    .pdt-addcart {
        bottom: -4px;
        left: 35px;
    }
}

.pdt-name {
    font-size: 16px;
    transition: .3s ease;
    padding: 0 0 3px;
    margin: 5px 0 3px;
    border-bottom: 1px solid #ddd;
}

.pdt-name a {
    transition: .3s ease;
}

.pdt-box:hover .pdt-name a {
    color: var(--red-color);
}

.pdt-price {
    color: var(--gray-color);
    font-size: 14px;
    text-align: right;
    letter-spacing: 0.5px;
}

.pdt-price .old-price {
    color: #999;
    margin-right: 5px;
}

.pdt-price .new-price {
    color: var(--red-color);
    font-weight: 700;
    letter-spacing: 0px;
    font-size: 17px;
}

@media (max-width: 576px) {

    .pdt-price .old-price,
    .pdt-price .new-price {
        display: block;
    }
}



.pdt-onemore li {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    padding: 10px;
}

.pdt-onemore-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: 15px;
    color: #333;
}

.pdt-onemore-price {
    color: var(--red-color);
    font-size: 14px;
    margin: 0 0 3px;
}

.pdt-onemore-num {
    display: flex;
    align-items: center;
    width: 100%;
}

.pdt-onemore-num input {
    margin: 0 8px;
    border: none !important;
    text-align: center;
    padding: 4px 10px !important;
}

.pdt-onemore-num i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-color: #fff;
}

.pdt-onemore-num i:hover {
    cursor: pointer;
}

.pdt-notice {
    position: absolute;
    top: 7px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 15px;
}

.pdt-box.onsale .pdt-notice {
    background-color: rgba(217, 57, 36, 0.8);
}

.pdt-box.preorder .pdt-notice {
    background-color: rgba(253, 208, 8, 0.6);
    color: #333;
}

.pdt-box.soldout .pdt-img {
    filter: grayscale(1);
}

@media (min-width: 768px) and (max-width: 992px) {
    .pdt-dt-swiper {
        width: 75%;
        margin: 0 auto;
    }
}

.pdtDtSwiper {
    margin-top: 10px;
}

.pdtDtSwiper .swiper-slide img {
    opacity: 0.6;
    transition: .3s ease;
}

.pdtDtSwiper .swiper-slide:hover img,
.pdtDtSwiper .swiper-slide-active img {
    opacity: 1;
    cursor: pointer;
}

.pdt-dt-title {
    font-weight: 700;
    font-size: 22px;
    color: var(--gray-color);
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px;
    margin-bottom: 5px;
}

.pdt-dt-title .premark {
    background-color: var(--yellow-color);
    color: #333;
    font-size: 20px;
    padding: 3px 10px 2px;
    border-radius: 3px;
}

.pdt-dt-price {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: right;
    color: #ff5000;
}

@media (max-width: 992px) {
    .pdt-dt-price {
        text-align: center;
    }
}

.pdt-dt-price .old-price {
    color: #999;
    margin-right: 5px;
}

.pdt-dt-price .new-price {
    color: var(--red-color);
    font-weight: 700;
    font-size: 23px;
}

.pdt-dt-mark.active {
    color: #fff;
    background-color: var(--red-color);
}

.pdt-dt-addcart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.pdt-dt-addcart.soldout {
    background-color: rgba(207, 207, 207, 0.8);
    color: #999;
}

.pdt-ac-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 15px;
}

.pdt-ac-title:hover {
    cursor: pointer;
}

.pdt-ac-ct {
    display: none;
    padding: 10px 15px 20px;
}

.pdt-ac-ct-price {
    margin-bottom: 10px;
    font-size: 18px;
}

.pdt-ac-ct-price .old-price {
    color: #999;
    margin-right: 5px;
}

.pdt-ac-ct-price .new-price {
    color: var(--red-color);
    font-weight: 700;
    font-size: 17px;
}

/* ---- pdt end ---- */



/* ---- news ---- */
.news-box {
    position: relative;
}

.news-date {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 3px 8px;
    text-align: center;
    height: 60px;
    width: 60px;
    line-height: 27px;
    color: #fff;
    border-radius: 0 0 3px 3px;
    z-index: 1;
    transition: .3s ease;
}

.news-box:hover .news-date {
    background-color: rgba(0, 0, 0, 0.7);
}

.news-box-img {
    width: 100%;
    overflow: hidden;
}

.news-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
    opacity: .9;
}

.news-box:hover .news-box-img img {
    opacity: 1;
}

.news-box-t {
    font-weight: 700;
    margin: 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-left: 8px;
    border-left: 5px solid var(--gray-color);
    transition: .3s ease;
}

.news-box:hover .news-box-t {
    color: var(--gray-color);
    border-left-color: var(--red-color);
}

.news-box-c {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #999;
    font-size: 14px;
}

.news-box-more {
    display: block;
    text-align: right;
    font-size: 15px;
    color: var(--gray-color);
    position: relative;
    margin-right: 10px;
    transition: .3s ease;
    margin-top: 10px;
}

.news-box-more span {
    display: block;
    margin-right: 20px;
}

.news-box-more img {
    width: 70px;
    display: block;
    position: absolute;
    right: 0;
    bottom: -5px;
    transition: .3s ease;
}

.news-box-more.back:hover,
.news-box:hover .news-box-more {
    color: var(--red-color);
    margin-right: 0px;
}

.news-box-more.back:hover img,
.news-box:hover .news-box-more img {
    width: 85px;
    right: -10px;
}

.news-dt-date {
    font-size: 14px;
    text-align: right;
    color: #999;
    margin-bottom: 10px;
}

/* ---- news end ---- */



/* ---- cart ---- */
.cart-page {
    padding: 20px 0;
}

.cart-title {
    font-size: 18px;
    color: var(--gray-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-process {
    display: flex;
    align-items: center;
    justify-content: center;
    counter-reset: num;
}

.cart-process li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cart-process li::before {
    counter-increment: num;
    content: counter(num);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #eee;
    transform: skew(-5deg);
    color: var(--gray-color);
    margin-bottom: 5px;
}

.cart-process li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #999;
    letter-spacing: 1.5px;
}

.cart-process li.active a {
    color: #333;
}

.cart-process li.active::before {
    background-color: var(--yellow-color);
}

.cart-process li.inactive a {
    color: #aaa;
}

.cart-process li.inactive::before {
    color: #999;
    background-color: rgba(253, 208, 8, 0.3);
}

@media (max-width: 576px) {
    .cart-process li::before {
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .cart-process li a {
        font-size: 15px;
    }
}

.cart-pdt-wrap-toggle {
    margin-bottom: 25px;
}

.cart-pdt-wrap-btn {
    color: #595757;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.cart-pdt-wrap-btn:hover {
    cursor: pointer;
}

.cart-pdt-wrap {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
}

.cart-pdt-wrap li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 20px 10px;
}

.cart-pdt-wrap li.cart-pdt-soldout {
    background-color: #f9f9f9;
}

.cart-pdt-main {
    display: flex;
    align-items: center;
}

.cart-pdt-img {
    display: block;
    width: 85px;
    height: 85px;
    margin-right: 15px;
}

@media (max-width: 576px) {
    .cart-pdt-img {
        width: 75px;
        min-width: 75px;
        height: 75px;
    }
}

.cart-pdt-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-pdt-desc {
    width: 250px;
    min-width: 250px;
    margin-right: 15px;
}

@media (max-width: 1200px) {
    .cart-pdt-desc {
        width: 180px;
        min-width: 180px;
    }
}

.cart-pdt-desc .cart-pdt-t {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.cart-pdt-desc .cart-pdt-t .premark {
    background-color: var(--yellow-color);
    color: #333;
    font-size: 13.5px;
    margin-right: 5px;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 3px;
}

.cart-pdt-desc .cart-pdt-t .soldoutmark {
    background-color: #ddd;
    color: #666;
    font-size: 13.5px;
    margin-right: 5px;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 3px;
}

.cart-pdt-desc .cart-pdt-t .onemoremark {
    background-color: #ffdada;
    color: #333;
    font-size: 13.5px;
    margin-right: 5px;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 3px;
}

.cart-pdt-desc .cart-pdt-spec {
    font-size: 15px;
    color: #666;
}


.cart-pdt-num {
    width: 150px;
    min-width: 120px;
}

.cart-pdt-num .cart-item-qty input {
    border: 1px solid #ddd;
    margin: 0 5px;
}

.cart-pdt-price {
    width: 120px;
    min-width: 120px;
    text-align: center;
    margin-left: 10px;
}

.cart-pdt-price .old-price {
    color: #999;
    font-size: 15px;
}

.cart-pdt-price .new-price {
    font-weight: 700;
    color: var(--red-color);
}

.cart-pdt-delete {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    font-size: 18px;
    margin-left: 10px;
    transition: .3s ease;
}

.cart-pdt-delete:hover {
    cursor: pointer;
    color: var(--red-color);
}

@media (max-width: 768px) {
    .cart-pdt-main {
        align-items: start;
    }

    .cart-pdt-desc {
        width: 200px;
        min-width: 200px;
    }

    .cart-pdt-price {
        width: 100%;
        font-size: 15px;
        min-width: unset;
        text-align: left;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .cart-pdt-main {
        width: 100%;
    }

    .cart-pdt-wrap li {
        flex-wrap: wrap;
        position: relative;
        padding: 20px 5px;
        border-bottom-color: #eee;
    }

    .cart-pdt-desc {
        width: 100%;
        min-width: unset;
        margin-bottom: 15px;
        margin-right: 25px;
    }

    .cart-pdt-num {
        width: 100%;
    }

    .cart-pdt-desc .cart-pdt-t {
        margin-right: 10px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .cart-pdt-delete {
        position: absolute;
        right: 15px;
        top: 18px;
        width: fit-content;
    }

}

.cart-sidebox {
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
}

.cart-sidebox .notice-text {
    font-size: 14px;
}

.cart-coupon-link {
    display: flex;
    height: 30px;
    align-items: center;
}

.cart-coupon-link a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
    text-align: right;
    height: 100%;
    letter-spacing: 2px;
}


.cart-total li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.cart-total li .cart-total-t {
    font-size: 15px;
    color: #999;
}

.cart-total li .cart-total-p {
    color: #333;
    text-align: right;
}

.cart-total li .cart-total-p.red {
    color: var(--red-color);
}

.cart-total li.total-end {
    font-size: 20px;
    font-weight: 700;
}


@media (max-width: 992px) {
    .cart-total li {
        display: flex;
        align-items: start;
        justify-content: space-between;
        padding: 10px 0;
    }

    .cart-total li .cart-total-t {
        width: 70%;
        color: var(--gray-color);
        text-align: left;
    }
}

@media (max-width: 576px) {
    .cart-total li .cart-total-t {
        width: 50%;

    }
}

.cart-btn {
    position: relative;
    display: block;
    padding: 0 20px;
    color: var(--gray-color);
    transition: .3s ease;
}

.cart-btn:hover {
    color: var(--red-color);
}

.cart-btn img {
    position: absolute;
    bottom: -4px;
    width: 80px;
    transition: .3s ease;
}

.cart-btn.prev img {
    left: 0;
}

.cart-btn.prev:hover img {
    width: 85px;
    left: -8px;
}

.cart-btn.next img {
    right: 0;
}

.cart-btn.next:hover img {
    width: 85px;
    right: -8px;
}

.cart-info {
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    height: 100%;
}

@media (max-width: 576px) {
    .cart-info {
        padding: 20px 15px;
    }
}

.cart-info-t {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-color);
    margin-bottom: 5px;
    text-align: center;
}

.cart-info-link {
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 3px 0;
    border-bottom: 1px solid #ccc;
}

.cart-info-receiver {
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-size: 15px;
    color: #999;
    position: relative;
    text-align: right;
}

.cart-info-receiver .delete {
    position: absolute;
    left: 20px;
    top: 10px;
    color: #999;
    transition: .3s ease;
}

.cart-info-receiver .delete:hover {
    color: var(--red-color);
    cursor: pointer;
}

.c-address {
    display: flex;
    margin-bottom: 5px;
}

.c-address select {
    margin-right: 5px;
}

.input-btn-flex {
    display: flex;
}

.input-btn-flex input {
    border-color: #aaa;
    border-radius: 5px 0 0 5px;
}

.input-btn-flex button {
    width: 120px;
    min-width: 120px;
    text-align: center;
    background-color: var(--gray-color);
    color: #fff;
    letter-spacing: 1.5px;
    border-radius: 0 5px 5px 0;
}

.input-btn-flex button:disabled {
    background-color: #ccc;
    color: #999;
}

.input-flex {
    display: flex;
    align-items: center;
}

.input-flex label {
    transition: .3s ease;
}

.input-flex input[type="checkbox"] {
    width: 20px !important;
    height: 20px;
    position: relative;
    margin-right: 13px;
}

.input-flex input[type="checkbox"]::after {
    display: block;
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    top: -2px;
    left: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: .3s ease;
    z-index: 1;
}

.input-flex input[type="checkbox"]::before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    width: 25px;
    height: 25px;
    top: -2px;
    left: 0;
    transition: .3s ease;
    z-index: 2;
    opacity: 0;
}

.input-flex input[type="checkbox"]:checked::before {
    opacity: 1;
}

.input-flex input[type="checkbox"]:checked+label {
    color: var(--red-color);
}

.coupon-own li {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: .3s ease;
}

.coupon-own li:hover {
    cursor: pointer;
    border-color: var(--red-color);
}

.coupon-own li.active {
    border-color: var(--red-color);
    background-color: rgba(253, 208, 8, 0.1);
}

.coupon-own li .cm-name {
    width: 100%;
    text-align: center;
    color: #333;
    font-size: 17px;
    font-weight: 700;
}

.coupon-own li .cm-price {
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: var(--red-color);
    font-weight: 700;
    margin: 3px 0;
}

.coupon-own li .cm-date {
    width: 100%;
    font-size: 15px;
    color: #999;
    text-align: center;
}

.cart-finish-text {
    text-align: center;
    letter-spacing: 2px;
    color: var(--gray-color);
}

.cart-finish-text a {
    text-decoration: underline;
    color: var(--red-color);
}

.mb-cart-total {
    position: fixed;
    bottom: 0;
    left: 0;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -10px 10px -5px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    z-index: 3;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mb-cart-total:hover {
    cursor: pointer;
}

/* ---- cart end ---- */



/* ---- login/verify/register/forget ---- */
.login-box {
    padding: 35px 20px;
    margin: 0 0 20px;
    border-radius: 10px;
    background-color: #fff;
}

.login-box-t {
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.login-box-st {
    text-align: center;
    font-size: 15px;
    color: #999;
    margin-bottom: 10px;
}

.login-box button {
    background-color: var(--yellow-color);
    color: #333;
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 17px;
    padding: 6px 10px;
    border-radius: 3px;
    letter-spacing: 2px;
}

.sns-login {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.sns-login .sns-login-btn {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    letter-spacing: 2px;
    color: #fff;
    background-color: var(--gray-color);
    transition: .3s ease;
}

.sns-login .sns-login-btn.fb:hover {
    background-color: #1877f2;
}

.sns-login .sns-login-btn.google:hover {
    background-color: #ea4335;
}

@media (max-width: 576px) {
    .sns-login {
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .sns-login .sns-login-btn.fb {
        background-color: #1877f2;
    }

    .sns-login .sns-login-btn.google {
        background-color: #ea4335;
    }
}

.login-link {
    margin: 25px 0 0;
    display: flex;
    justify-content: space-between;
}

.login-link li {
    height: fit-content;
    width: calc(100%/3);
}

.login-link li:not(:last-of-type) {
    border-right: 1px solid #aaa;
}

.login-link li a {
    font-size: 15px;
    display: block;
    color: var(--gray-color);
    text-align: center;
}

/* ---- login/verify/register/forget end ---- */



/* ---- member ---- */
.mb-content {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px 2px 10px 10px;
    border: 1px solid rgba(238, 238, 238, 0.6);
    border-top: 10px solid #eee;
    padding: 25px 35px;
}

@media (max-width: 576px) {
    .mb-content {
        padding: 20px 15px;
    }
}

.mb-content-t {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-color);
    padding-left: 10px;
    border-left: 5px solid #ddd;
    line-height: 25px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .mb-content-t {
        font-size: 18px;
        line-height: 20px;
    }
}

.mb-content .mb-button {
    background-color: var(--gray-color);
    color: #fff;
    font-size: 14px;
    padding: 3px 12px;
    border-radius: 3px;
}

.mb-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mb-info li {
    width: 49%;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.mb-info li .mb-info-t {
    color: #777;
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.mb-info li .mb-info-t::before {
    content: '';
    display: block;
    background-color: var(--yellow-color);
    width: 8px;
    height: 8px;
    margin-right: 8px;
    transform: skew(-5deg);
}

.mb-info li .mb-info-c {
    color: #333;
    padding-left: 0px;
}

@media (max-width: 576px) {
    .mb-info li {
        width: 100%;
    }
}

.mb-info-btn {
    background-color: var(--yellow-color);
    padding: 6px 15px;
    color: #333;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: .3s ease;
}

.mb-info-btn:hover {
    opacity: .9;
}

.mb-news li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.mb-news li a {
    display: flex;
    align-items: center;
}

.mb-news li .mb-news-date {
    font-size: 15px;
    margin-right: 10px;
    width: 150px;
    min-width: 150px;
    color: #aaa;
    text-align: center;
    padding: 3px;
    background-color: #f2f2f2;
    transition: .3s ease;
}

.mb-news li:hover .mb-news-date {
    background-color: rgba(253, 208, 8, 0.3);
    color: #333;
}

.mb-news li .mb-news-t {
    letter-spacing: 2px;
    color: var(--gray-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: .3s ease;
}

.mb-news li:hover .mb-news-t {
    color: var(--red-color);
}

@media (max-width: 576px) {
    .mb-news li {
        margin-bottom: 15px;
    }

    .mb-news li a {
        flex-wrap: wrap;
    }

    .mb-news li .mb-news-date {
        width: 100%;
        margin: 0 0 5px;
    }
}

.mbNews-content {
    line-height: 30px;
    font-size: 15px;
    color: var(--gray-color);
}

.mb-order li {
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #eee;
    border-radius: 10px;
    transition: .3s ease;
}

.mb-order li:hover {
    border-color: #ccc;
}

.mb-order li.active {
    border: 1px solid #fdeb9b;
    background-color: rgba(255, 243, 192, 0.25);
}

.mb-order li.active:hover {
    border-color: var(--red-color);
}

.mb-order li a {
    display: flex;
    padding: 30px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.mb-order li .mb-order-date {
    font-size: 15px;
    transform: skew(-5deg);
    color: #999;
    padding: 3px 10px;
    width: 190px;
    min-width: 190px;
    text-align: center;
    background-color: #f2f2f2;
    margin-right: 10px;
    transition: .3s ease;
}

.mb-order li.active .mb-order-date {
    background-color: #fff;
    color: var(--red-color);
}

.mb-order li.active:hover .mb-order-date {
    background-color: var(--red-color);
    color: #fff;
}

.mb-order li:hover .mb-order-date {
    background-color: var(--yellow-color);
    color: #333;
}

.mb-order li .mb-order-number {
    color: var(--gray-color);
    width: 200px;
    min-width: 200px;
    transition: .3s ease;
}

.mb-order li:hover .mb-order-number {
    color: var(--red-color);
}

.mb-order li .mb-order-price {
    color: #999;
    width: 130px;
    min-width: 130px;
    transition: .3s ease;
}

.mb-order li:hover .mb-order-price {
    color: #333;
}

.mb-order li .mb-order-state {
    width: 100px;
    text-align: right;
    min-width: 100px;
    color: #999;
}

.mb-order li .mb-order-state.lightgray {
    color: #ccc;
}

.mb-order li .mb-order-state.red {
    color: var(--red-color);
}

@media (max-width: 768px) {
    .mb-order li a {
        flex-wrap: wrap;
    }

    .mb-order li a .mb-order-date,
    .mb-order li a .mb-order-state {
        transform: skew(0deg);
        width: 100%;
        margin: 0 0 5px;
    }

    .mb-order li a .mb-order-number,
    .mb-order li a .mb-order-price {
        width: 50%;
    }

    .mb-order li a .mb-order-price {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .mb-order li a .mb-order-price {
        width: 100%;
        text-align: left;
    }

    .mb-order li a .mb-order-number {
        font-weight: 700;
    }

    .mb-order li a .mb-order-date {
        background-color: transparent;
        text-align: left;
        padding: 2px 0;
        font-size: 14px;
        margin: 0 0 3px;
    }
}

.mb-content .cart-info {
    box-shadow: none;
    border: 1px solid #eee;
}

.mb-coupon {
    display: flex;
    justify-content: space-between;
}

.mb-coupon li {
    width: 49%;
    background-color: #fffced;
    border-left: 20px solid var(--yellow-color);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .mb-coupon {
        flex-wrap: wrap;
    }

    .mb-coupon li {
        width: 100%;
        margin-bottom: 15px;
    }
}

.mb-coupon li .mb-coupon-price {
    font-size: 35px;
    font-weight: 700;
    width: 100%;
    color: var(--red-color)
}

.mb-coupon li .mb-coupon-t {
    font-size: 18px;
    color: var(--gray-color);
    font-weight: 700;
    align-self: flex-end;
}

.mb-coupon li .mb-coupon-date {
    font-size: 15px;
    text-align: right;
    color: #999;
}

@media (max-width: 576px) {
    .mb-coupon li {
        width: 100%;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mb-coupon li .mb-coupon-price {
        font-size: 28px;
        text-align: center;
    }

    .mb-coupon li .mb-coupon-t {
        text-align: center;
        width: 100%;
        margin-bottom: 3px;
    }

    .mb-coupon li .mb-coupon-date {
        width: 100%;
        text-align: center;
    }
}

/* ---- member end ---- */



/* ---- contact ---- */
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.contact-form {
    box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.15);
    padding: 25px 25px 20px;
    border-radius: 5px;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 25px 15px;
    }
}

.contact-form .fm-group textarea::placeholder {
    color: #999;
}

.contact-info li {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.contact-info li .ci-t {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.contact-info li .ci-t::before {
    display: inline-block;
    content: '';
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background-color: var(--yellow-color);
}

.contact-info li .ci-c {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.contact-info li .ci-c,
.contact-info li .ci-c a {
    color: #222;
}

.recaptcha img {
    width: 280px;
    display: block;
    margin: 0 auto;
}

.contact-form button {
    background-color: var(--gray-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
}

/* ---- contact end ---- */



/* ---- form group ---- */
.fm-group {
    margin-bottom: 10px;
}

.fm-group label {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    color: var(--gray-color);
}

.fm-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    letter-spacing: 1.5px;
}

.fm-group input,
.fm-group select {
    width: 100%;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    letter-spacing: 1.5px;
}

.fm-group input:disabled,
.fm-group select:disabled,
.fm-group textarea:disabled {
    opacity: .9;
    background-color: #f5f5f5;
    color: #555;
    border: none;
}

select option:disabled {
    background-color: #eee;
    color: #aaa;
}

.fm-group .cart-item-qty {
    height: 35px;
}

.fm-group .cart-item-qty input {
    border: 1px solid #ddd;
    margin: 0 10px;
}

.fm-group .cart-item-qty i {
    width: 35px;
    min-width: 35px;
    line-height: 35px;
    border-radius: 3px;
}

/* ---- form group end ---- */



/* ---- cart side list ---- */
.cart-sidelist {
    display: none;
    position: fixed;
    right: 0;
    top: 0px;
    z-index: 1031;
    box-shadow: -5px 0px 5px -4px rgba(0, 0, 0, 0.1);
    height: calc(100vh);
    width: 380px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 15px 25px 22px;
    overflow-y: scroll;
}

@media (max-width: 576px) {
    .cart-sidelist {
        width: 100%;
    }
}

.cart-sidelist #cart-sidelist-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--main-color);
    transition: .3s ease;
}

.cart-sidelist #cart-sidelist-close:hover {
    cursor: pointer;
}

.cart-sidelist::-webkit-scrollbar {
    width: 7px;
}

.cart-sidelist::-webkit-scrollbar-button {
    background: transparent;
    border-radius: 4px;
}

.cart-sidelist::-webkit-scrollbar-track-piece {
    background: transparent;
}

.cart-sidelist::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(102, 102, 102, 0.2);
}

.cart-sidelist::-webkit-scrollbar-track {
    box-shadow: transparent;
}

.cart-sidelist h3 {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    margin: 5px 0 25px;
    color: var(--main-color);
}

.cart-sidelist .cart-itemlist li {
    display: flex;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.cart-sidelist .cart-itemlist li .cart-item-delete {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: var(--main-color);
    transition: .3s ease;
}

.cart-sidelist .cart-itemlist li .cart-item-delete:hover {
    color: #da4a4a;
    cursor: pointer;
}

.cart-sidelist .cart-itemlist li>a {
    width: 100px;
    margin-right: 10px;
}

.cart-sidelist .cart-item-desc {
    width: calc(100%);
}

.cart-sidelist .cart-item-desc .cart-title {
    font-size: 14px;
}

.cart-sidelist .cart-item-desc .cart-price {
    font-size: 13px;
    color: #aaa;
}

.cart-item-qty {
    display: flex;
    height: 28px;
}

.cart-item-qty input {
    width: 100%;
    background-color: #fff;
    border: none;
    text-align: center;
}

.cart-item-qty input:disabled {
    background-color: #eee;
    color: #aaa;
    border: none;
}

.cart-item-qty i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    font-size: 13px;
    min-width: 25px;
    text-align: center;
    background-color: #eee;
    color: #222;
    font-weight: 600;
    border-radius: 3px;
    transition: .3s ease;
}

.cart-item-qty i:hover {
    cursor: pointer;
}

.cart-item-qty i:active {
    opacity: .7;
}

.cart-item-spec {
    font-size: 14px;
    position: relative;
    transition: .3s ease;
}


.cart-item-spec .spec-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    position: relative;
    padding: 3px 0px;
}

.cart-item-spec .spec-title span {
    margin: 0 2px;
}

.cart-item-spec .spec-title i {
    position: absolute;
    right: 0px;
    top: -3px;
    height: 100%;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spec-box {
    display: none;
    position: absolute;
    width: 100%;
    background-color: rgba(247, 247, 247, 0.98);
    padding: 15px;
    top: 105%;
    right: 0;
    z-index: 1;
    box-shadow: 0 3px 10px -6px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 5px 5px;
}

@media (max-width: 576px) {
    .spec-box {
        display: none !important;
    }
}

.spec-box .spec-item {
    margin-bottom: 10px;
}

.spec-box .spec-item-title {
    font-size: 14px;
    margin-bottom: 2px;
    text-align: left;
}

.spec-box select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    color: #333;
}

.spec-box button {
    background-color: #3d3d3d;
    color: #fff;
    width: 100%;
    padding: 3px;
    font-size: 13px;
    letter-spacing: 2px;
}

/* input [number] without arrows */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.cart-sidelist .cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    letter-spacing: 2px;
}

.cart-sidelist .cart-link {
    display: block;
    background-color: #3d3d3d;
    color: #fff;
    padding: 10px 25px;
    text-align: center;
    transition: .3s ease;
}

.cart-sidelist .cart-link:hover {
    background-color: #444;
}

/* ---- cart side list end ---- */



/* ---- footer ---- */
footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--gray-color);
    padding: 25px 0px 10px;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    footer {
        padding: 25px 0 55px;
    }
}

footer .f-logo {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

footer .f-logo img {
    width: 85%;
    display: block;
}

footer .f-desc {
    font-size: 14px;
    color: #fefefe;
}

footer .f-desc a {
    color: #fefefe;
}

@media (max-width: 1200px) {
    footer .f-logo {
        width: 250px;
        margin: 0 auto 15px;
    }

    footer .f-logo img {
        width: 100%;
    }

    footer .f-desc-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    footer .f-desc-flex .f-desc {
        margin-bottom: 10px;
    }

    footer .f-desc-flex .f-desc:not(:last-of-type) {
        margin-right: 50px;
    }

    footer .f-desc-flex .f-desc:first-of-type {
        display: none;
    }
}

@media (max-width: 768px) {
    footer .f-desc-flex .f-desc:not(:last-of-type) {
        margin-right: 0px;
    }

    footer .f-desc-flex .f-desc {
        width: 100%;
        text-align: center;
    }
}

footer .f-link {
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    justify-content: start;
}

@media (max-width: 768px) {
    footer .f-link {
        justify-content: center;
    }
}

footer .f-link .f-link-t {
    font-size: 18px;
    line-height: 18px;
    display: block;
    color: var(--yellow-color);
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 2px solid var(--yellow-color);
}

footer .f-link>li {
    display: block;
    width: 175px;
    margin-right: 10px;
}

@media (max-width: 1500px) {
    footer .f-link>li {
        width: calc(100%/5);
    }
}

@media (max-width: 992px) {
    footer .f-link {
        flex-wrap: wrap;
        justify-content: start;
    }

    footer .f-link>li {
        width: calc(100%/2);
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    footer .f-link {
        margin-top: 35px;
    }

    footer .f-link>li {
        width: calc(100%/2);
        margin-bottom: 20px;
    }
}

footer .f-link ul {
    padding-left: 11.5px;
}

footer .f-link li a {
    font-size: 14px;
    color: #fefefe;
    transition: .3s ease;
}

footer .f-link li a:hover {
    color: #ccc;
}

@media (max-width: 992px) {
    footer .f-link>li {
        margin-bottom: 40px;
    }

    footer .f-link .f-link-t {
        width: 80%;
        margin: 0 auto 5px;
        text-align: center;
        padding-left: 0;
        padding-bottom: 5px;
        border-left: none;
        border-bottom: 1px solid #777;
    }

    footer .f-link ul {
        padding-left: 0;
    }

    footer .f-link ul li {
        text-align: center;
    }
}

.footer-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

footer .copyright {
    font-size: 13px;
    color: #ccc;
    transition: .3s ease;
}

@media (max-width: 768px) {
    footer .copyright {
        font-size: 12px;
        text-align: center;
    }
}

.footer-sns ul {
    display: flex;
    align-items: center;
}

.footer-sns ul li {
    margin-left: 8px;
}

.footer-sns ul li a img {
    width: 35px;
}

@media (max-width: 1200px) {
    .footer-bottom {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    footer .copyright {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        order: 2;
    }

    .footer-sns {
        width: 100%;
    }

    .footer-sns ul {
        width: 100%;
        justify-content: center;
    }

    .footer-sns ul li a img {
        width: 30px;
    }
}

@media (max-width: 992px) {
    .footer-bottom {
        margin-top: 10px;
    }
}

/* ---- footer end ---- */

.hidden{
	display:none;
}
.recaptcha .g-recaptcha {
    display: block;
    margin: 10px auto;
    width: 300px;
}
.fm-alert{
	font-size: 14px;
    text-align: center;
    color: #da4a4a;
    letter-spacing: 1.5px;
}
.cart-price .new-price {
    color: var(--red-color);
}

.pdt-dt-desc img{
    width: 100% !important;
    height:auto !important;
}
@media (max-width: 576px) {
    .pdt-dt-desc iframe {
        width: 100% !important;
    }

    .news-dt img {
        width: 100% !important;
        height: auto !important;
    }
}