/*****************************
03 - Base - Typhography
*****************************/
/*...::: Font Weight :::... */
.font--light {
    font-weight: 300 !important;
}
.font--regular {
    font-weight: 400 !important;
}
.font--semi {
    font-weight: 500 !important;
}
.font--semi-bold {
    font-weight: 600 !important;
}
.font--bold {
    font-weight: 700 !important;
}
.ft_init {
    font-size: initial;
    margin-bottom: 0;
}
/*...::: Font Size :::... */
.font_12 {
    font-size: 12px !important;
}
.font_14 {
    font-size: 14px !important;
}
.font_16 {
    font-size: 16px !important;
    line-height: 1.8 !important;
}
.font_17 {
    font-size: 17px !important;
}
.font_18 {
    font-size: 18px !important;
    line-height: 1.8 !important;
}
.font_20 {
    font-size: 20px !important;
}
.font_21 {
    font-size: 21px !important;
}
.font_22 {
    font-size: 22px !important;
}
.font_25 {
    font-size: 25px !important;
    line-height: 1.3 !important;
}
.font_26 {
    font-size: 26px !important;
    line-height: 1.3 !important;
}
.font_32 {
    font-size: 32px !important;
}
.font_40 {
    font-size: 40px !important;
}
.title {
    display: block;
    line-height: 1.5;
    font-weight: 400;
}
.title--xlarge {
    font-size: 26px;
}
.title--large {
    font-size: 26px;
}

.title--medium {
    font-size: 18px;
}
.title--medium2 {
    font-size: 22px;
}
.title--normal {
    font-size: 18px;
}
.title--small {
    font-size: 12px;
}
.title--product {
    font-size: 24px;
}
@media (min-width: 576px) {
    .title--xlarge {
        font-size: 32px;
    }
    .title--large {
        font-size: 32px;
    }
    .title--small {
        font-size: 13px;
    }
}
@media (min-width: 768px) {
    .title--xlarge {
        font-size: 44px;
    }
    .title--large {
        font-size: 44px;
    }
    .title--medium {
        font-size: 22px;
    }
    .title--medium2 {
        font-size: 26px;
    }
    .title--normal {
        font-size: 22px;
    }
    .title--small {
        font-size: 17px;
    }
    .title--product {
        font-size: 24px;
    }
}
@media (min-width: 992px) {
    .title--xlarge {
        font-size: 53px;
    }
    .title--large {
        font-size: 53px;
    }
    .title--medium {
        font-size: 28px;
    }
    .title--medium2 {
        font-size: 32px;
    }
    .title--normal {
        font-size: 28px;
    }
    .title--product {
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .title--xlarge {
        font-size: 35px;
    }
    .title--large {
        font-size: 35px;
    }
    .title--small {
        font-size: 11px;
    }
}
@media (min-width: 1566px) {
    .title--xlarge {
        font-size: 60px;
    }
    .title--large {
        font-size: 56px;
    }
    .title--medium {
        font-size: 30px;
    }
    .title--medium2 {
        font-size: 34px;
    }
    .title--normal {
        font-size: 32px;
    }
    .title--small {
        font-size: 18px;
    }
}
/*****************************
04 - Base - Animation
*****************************/
@keyframes animate-top {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes animate-bottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes animate-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes animate-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes animate-zoom {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes animate-zoom-blink {
    0% {
        transform: scale(1.1);
    }
    25% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1.1);
    }
}
@keyframes slideInDown {
    from {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.glossy-flash-animate::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 50%;
    top: 0;
    opacity: 1;
}
.glossy-flash-animate::after {
    background: rgba(255, 255, 255, 0.6);
    bottom: 80%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
}
.glossy-flash-animate:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear;
}
.glossy-flash-animate:hover::after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear;
}

/*****************************
07 - Component - CMS
*****************************/
.cms.m-t-100 {
    margin-top: 60px;
}
.cms .col-12 {
    margin-bottom: 40px;
}
.cms .col-12:last-child {
    margin-bottom: 0;
}
.cms__content {
    text-align: center;
}
@media (min-width: 576px) {
    .cms .col-12:nth-child(3) {
        margin-bottom: 0;
    }
    .cms .col-12:nth-child(4) {
        margin-bottom: 0;
    }
}
@media (min-width: 768px) {
    .cms.m-t-100 {
        margin-top: 80px;
    }
    .cms .col-12:nth-child(3) {
        margin-bottom: 0;
    }
    .cms .col-12:nth-child(4) {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .cms.m-t-100 {
        margin-top: 100px;
    }
    .cms .col-12 {
        margin-bottom: 0px;
    }
}
/*****************************
11 - Component - Modal
*****************************/
.modal {
    z-index: 1003;
    background: rgba(24, 24, 24, 0.6);
    padding-right: 0 !important;
}
.modal-product-image--large {
    margin-bottom: 20px;
}
.modal-dialog {
    max-width: calc(100% - 20px) !important;
    margin:auto !important;
    top: 30%;
    transform: translateY(-30%) !important;
}
/* @media(max-width:767px){
	.modal-dialog {
	    margin:0.5rem !important;
	}
} */

.modal-header {
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    background: #000000;
    color: #fff;
}
.modal-header.white {
    background: #fff;
    color: #000000;
}
.modal-header .close {
    margin: 0 !important;
    color: #fff;
    position: absolute;
    right: 0;
    top:-64px;
    line-height: 0;
    width:48px;
    height:48px!important;
    border-radius:50%;
    padding:4px;
    background:rgba(0, 0, 0, 0.2);
}
.modal-header .close i{
	font-size:32px;
}
@media(max-width:767px){
	.modal-header .close {
		width:30px;
		height:30px!important;
		top:-46px;
		padding:0;
	}
	.modal-header .close i{
		font-size:24px;
	}
}

.modal-header.white .close {
    color: #000000;
}
.modal-title {
    margin: 0;
}
.modal-title.text-left {
    margin: 0;
}
.modal__border {
    border-left: none;
}
.modal__product-img {
    text-align: center;
}
.modal__product-title {
    margin-top: 25px;
}
.modal__product-title,
.modal__product-price {
    display: block;
}
.modal__product-price {
    padding-left:10px;
}
.modal__product-info span,
.modal__product-shipping-info span {
    font-weight: 300;
    padding-left: 5px;
}
.modal__product-cart-buttons {
    display: flex;
    flex-direction: column;
}
.modal__product-cart-buttons a {
    margin-bottom: 15px;
}
.modal__product-cart-buttons a:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .modal__product-cart-buttons {
        flex-direction: row;
    }
    .modal__product-cart-buttons a {
        margin-bottom: 0;
        margin-right: 30px;
    }
    .modal__product-cart-buttons a:last-child {
        margin-right: 0;
    }
    .modal__product-title {
        margin-top: 0px;
    }
}
@media (min-width: 992px) {
    .modal-header {
        padding:0 0 16px;
    }
    .modal__border {
        border-left: 1px solid #ddd;
    }
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px!important;
  }
  .modal-sm {
    max-width: 606px!important;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 870px!important;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px!important;
  }
}
.modal-backdrop{
	height:auto;
}
/*****************************
14 - Component - Pagination
*****************************/
.page-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
    text-align: center;
}
@media (min-width: 768px) {
    .page-pagination {
        flex-direction: row;
        align-items: center;
    }
}
@media (min-width: 992px) {
    .page-pagination {
        margin-top: 30px;
    }
}/* 
.page-pagination__list {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .page-pagination__list {
        margin-top: 0;
    }
} */
.page-pagination__item {
    display: flex;
    justify-content:center;
    height:40px;
    min-width:40px;
    margin: 0 4px 8px 4px;
    line-height:3;
}
.page-pagination__item:last-child {
    margin-right: 0;
}
.page-pagination__item i{
	font-size:24px;
}
.page-pagination__link {
	font-weight:450;
	display: flex;
    align-items: center;
    justify-content: center;
    border-color:transparent;
    height:40px;
    width:40px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.page-pagination__item.post-btn:hover .page-pagination__link {
    font-weight: 700;
}
.page-pagination__link.active {
	font-weight:500;
    border: 1.5px solid var(--black_color);
    color: var(--black_color)!important;
    background-color:transparent;
}
.page-pagination__link:hover {
	font-weight:500;
    border: 1.5px solid var(--black_color);
    color: var(--white_color)!important;
    background-color:var(--black_color);
}

/*****************************
38 - Layout - Addcart Offcanvas
*****************************/
.offcanvas-add-cart {
    background: #fff;
    overflow-y: auto;
    box-shadow: none;
}
.offcanvas-add-cart__menu .offcanvas-add-cart__list {
    display: flex;
    font-size: 14px;
    padding: 24px 0;
    border:0;
}
.offcanvas-add-cart__menu > .offcanvas-add-cart__list:not(:first-of-type){
	border-top:1px solid #e0e0e0;
}
.offcanvas-add-cart__list.cartitem-template + .offcanvas-add-cart__list{
    border: 0;
}
.offcanvas-add-cart__list:last-child {
    margin-bottom: 0;
}
.offcanvas-add-cart__img-box {
    margin-right: 16px;
}
.offcanvas-add-cart__img {
    width: 100%;
}
.offcanvas-add-cart__link {
    display: block;
    font-weight:700;
    line-height:16.8px;
    font-family: "futura-pt", "Noto Sans TC", sans-serif;
  	color: var(--gray_900);
    letter-spacing: 0.28px;
}
.offcanvas-add-cart__link:hover {
    color: var(--header_link_hover_color);
}
.offcanvas-add-cart__detail{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.offcanvas-add-cart__spec{
	color:var(--gray_800);
}
.offcanvas-add-cart__detail span {
    display: flex;
}
.offcanvas-add-cart__detail{
	justify-content: space-between;
}
.offcanvas-add-cart__detail .top-item{
	display:flex;
	flex-direction:column;
	gap:0;
}
.offcanvas-add-cart__item-dismiss {
    width: fit-content;
    background: transparent;
    color: #000;
    font-size: 14px;
    margin: 0;
    text-decoration: underline;
    position: relative;
    white-space:nowrap;
}

.offcanvas-add-cart__item-count {
    left: 0;
    top: 0;
    color: var(--header_main_f_color, #000000);
    background: transparent;
    width: fit-content;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    letter-spacing: 0.32px;
    font-family: "futura-pt", sans-serif;
    white-space: nowrap;
    margin: 0;
    height:auto;
}
.offcanvas-add-cart__price {
    color: var(--header_main_f_color, #000000);
    font-weight: 600;
    font-family: "futura-pt", sans-serif;
    font-size: 16px;
    line-height:16px;
    margin:0;
    letter-spacing: 0.32px;
}
.offcanvas-add-cart__info {
    font-size: 12px;
    color: #777;
}
.offcanvas-add-cart__checkout-list {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
    align-items:center;
}
.offcanvas-add-cart__checkout-left-info {
	font-weight: 400;
	font-family: "futura-pt", sans-serif;
    color: var(--header_main_f_color, #000000);
    font-size: 14px;
    line-height:14px;
    margin: 3px 0;
}
.offcanvas-add-cart__checkout-right-info {
    font-size: 20px !important;
    font-family: "futura-pt", sans-serif;
    line-height:20px;
    font-weight:600;
    letter-spacing: 0.4px;
    color: var(--header_main_f_color, #000000);
}
.offcanvas-add-cart__btn-checkout {
    margin-top: 24px;
}
.offcanvas-add-cart__checkout-box-bottom {
    padding-bottom: 15px;
    border-top:1px solid #212529;;
}
.offcanvas-add-cart .wishlist-item-count {
    background: transparent;
    color: black;
    font-size: inherit;
}
.offcanvas-add-cart .btn.btn--red{
    background: var(--header_main_f_color, #000000) !important;
    font-size:16px;
    font-weight:500;
}
.offcanvas-add-cart .btn.btn--red:hover{
    background:#0075E0 !important;
}
.grid-1-10-1{
	display: flex;
    /* grid-template-columns: 1fr 10fr 1fr; */
    gap:8px;
    margin-top: 10px;
    align-items:flex-end;
    justify-content: space-between;
}
.offcanvas-add-cart__content{
	display:flex;
	align-items: stretch;
}

.cbp-hropen #hor_drop_menu_2_pb1 li .cbp-hrsub .container {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr !important;
}
#hor_drop_menu_2_pb1 .cbp-hrsub .right-col .menu-ad-block {
    justify-items: start;
}
#hor_drop_menu_1_pb1 .left-col {
    align-items: end;
}
#hor_drop_menu_1_pb1 .left-col span {
    font-family: Noto Sans TC;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 3%;
}
#hor_drop_menu_1_pb1 .left-col > div {
    margin-right: 16px;
    margin-left: auto;
    max-width: 250px;
}
#hor_drop_menu_1_pb1 .left-col ul {
    margin: unset;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap !important;
    flex-direction:row;
    max-width: 250px;
}
#hor_drop_menu_1_pb1 .left-col li {
    flex: 0 0 20%; /* 每個佔 20% 寬度 */
    box-sizing: border-box;
}
/* 推薦商品 黑色版本 */
.recmd-bg-black{
    border-bottom: 1px solid var(--gray_400, #CED4DA);
}
.recmd-bg-black h3{
    color: white;
}
.recmd-bg-black .product__img {
    background-color: white;
}
.recmd-bg-black {
    background-color: black;
}
.recmd-bg-black .product__content,
.recmd-bg-black .product__price-reg,
.recmd-bg-black .product-title,
.recmd-bg-black .brand_title,
.recmd-bg-black .brand_title a
{
    color: #fff;
}
/* 下載APP */
#download-app-btn {
    text-decoration: underline;
}