@charset "UTF-8";
:root {
    --clr-text-white: #ffffff;
    --clr-text-primary: #222222;
    --clr-text-secondary: #434343;
    --clr-text-third: #858585;
    --clr-text-hvr: #E60F0F;
    --clr-web-btn: #1182FC;
    --clr-brand-primary: #143D6F;
    --clr-brand-secondary: #E60F0F;
    --clr-brand-third: #D4E8FF;
    --clr-brand-fourth: #E4720F;
    --clr-brand-pointed: #E60F0F;
    --font-special-m: 'UTMAvoBold';
    --font-special-s: '';
}


/* General */

.f-w\:700 {
    font-weight: 700;
}

.f-w\:900 {
    font-weight: 900;
}

.f-sz\:18px {
    font-size: 18px;
}

.f-sz\:26px {
    font-size: clamp(21px, 3.1vw, 26px);
}

.f-sz\:38px {
    font-size: clamp(26px, 4.3vw, 38px);
}

.clr\:text-white {
    color: var(--clr-text-white);
}

.clr\:brand-primary {
    color: var(--clr-brand-primary);
}

.text-shadow\:2-2-0-\#0B438E {
    text-shadow: 2px 2px 0 #0B438E;
}

.mg\:30-0 {
    margin: 30px 0;
}

.home__heading.has-dot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    padding-left: 1.25rem;
}

.home__dots {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #FF000080;
}

.home__dots:before {
    --inset: 3px;
    content: '';
    position: absolute;
    top: var(--inset);
    right: var(--inset);
    bottom: var(--inset);
    left: var(--inset);
    z-index: 10;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #FF0000;
}

.home__heading.has-decor {
    isolation: isolate;
    position: relative;
}

.home__heading.has-decor:before {
    --w: 249px;
    --h: 51px;
    content: '';
    position: absolute;
    bottom: -1rem;
    left: -webkit-calc(50% - var(--w)/2);
    left: -moz-calc(50% - var(--w)/2);
    left: calc(50% - var(--w)/2);
    z-index: -1;
    width: var(--w);
    height: var(--h);
    background: url(../images/prd-featured-shining-star.png) center / contain no-repeat;
    pointer-events: none;
}

.home__heading.will-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem 1rem;
}

.home__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.home__btn span {
    color: var(--clr-brand-secondary);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.home__btn:hover>span {
    color: var(--clr-brand-primary);
}

.home__btn span:nth-child(1) {
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
}

.home__btn span:nth-child(2) {
    font-size: 16px;
}

.home__btn:hover>span:nth-child(2) {
    -webkit-animation: arrowBounceRight 1s linear infinite;
    -moz-animation: arrowBounceRight 1s linear infinite;
    -o-animation: arrowBounceRight 1s linear infinite;
    animation: arrowBounceRight 1s linear infinite;
}

.home__title {
    margin-bottom: 0;
}

.home__bg {
    overflow: hidden;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.home__bg\:white {
    background-color: #fff;
}

.home__bg\:brand-primary {
    background-color: var(--clr-brand-primary);
}


/* Filter */

.filter__group {
    margin-bottom: 1.5rem;
}

.filter {
    margin-bottom: 0.5rem;
}

.filter__title {
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-text-primary);
    margin-bottom: 0.5rem;
}

.filter__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    border: 1px solid #ccc;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background-color: #fff;
    padding: 0rem 1rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.filter__name {
    font-size: 15px;
    color: var(--clr-text-primary);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.filter__item.check,
.filter__item:hover {
    border-color: var(--clr-brand-primary);
}

.filter__item.check .filter__name,
.filter__item:hover .filter__name {
    color: var(--clr-brand-primary);
}

.filter__reset {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    border: 1px solid var(--clr-brand-primary);
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background-color: #fff;
    padding: 0.5rem 1.25rem;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.filter__reset.hidden {
    display: none !important;
}

.filter__reset:hover,
.filter__reset:focus {
    background-color: var(--clr-brand-primary);
}

.filter__reset span {
    color: var(--clr-text-primary);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.filter__reset:hover span,
.filter__reset:focus span {
    color: var(--clr-text-white);
}

.filter__reset span:nth-child(1) {
    font-size: 16px;
}

.filter__reset span:nth-child(2) {
    font-weight: 500;
    font-size: 15px;
}


/* Sort */

.sort {
    display: table;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.sort__inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.sort__inner::-webkit-scrollbar {
    display: none;
}

.sort__title,
.sort__item {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sort__title {
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-text-primary);
    margin-bottom: 0;
}

.sort__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    border: 1px solid #ccc;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background-color: #fff;
    padding: 0.4375rem 1rem;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.sort__button.check,
.sort__button:hover {
    border-color: var(--clr-brand-primary);
}

.sort__button span {
    font-size: 15px;
    color: var(--clr-text-primary);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.sort__button.check span,
.sort__button:hover span {
    color: var(--clr-brand-primary);
}


/* Social */

.social__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3125rem 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social__item-inner {
    display: block;
}


/* Header */

.header__bottom {
    border-bottom: 1px solid #fff;
    background-color: var(--clr-brand-primary);
    padding: 0.5rem 0rem;
}

.header__bottom>.header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__welcome {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 51px;
    font-family: var(--font-special-m);
    font-size: clamp(20px, 3vw, 25px);
    color: var(--clr-text-white) !important;
    -webkit-text-stroke: 4px #4689D9bf;
    paint-order: stroke fill;
    padding-bottom: 0.25rem;
}


/* Google Translate */

.google-translate .dropdown-toggle {
    font-size: 15px;
    text-transform: capitalize;
    color: var(--clr-text-white);
    background-color: var(--clr-brand-primary);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    padding: 0;
    padding-top: 0px;
}

.google-translate .dropdown-toggle::after {
    vertical-align: top;
    margin-left: 0.5em;
    margin-top: 10px;
}

.google-translate .dropdown .dropdown-menu .dropdown-item {
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    padding-left: 45px;
    padding-right: 10px;
    background-repeat: no-repeat;
    background-position: left 10px center;
    -webkit-background-size: 25px 25px;
    -moz-background-size: 25px;
    -o-background-size: 25px;
    background-size: 25px;
    height: 30px;
    line-height: 23px;
}

.google-translate .dropdown .dropdown-menu .dropdown-item:hover {
    color: #053780;
}

.dropdown-menu-right {
    -webkit-transform: translate3d(-80px, 47px, 0px) !important;
    -moz-transform: translate3d(-80px, 47px, 0px) !important;
    transform: translate3d(-80px, 47px, 0px) !important;
}


/* Slideshow */

.slideshow {
    position: relative;
    padding: 0.75rem 0rem;
}

.slideshow__inner {
    --aside-w: 230px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.slideshow__left {
    width: var(--aside-w);
}

.slideshow__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    width: 81.307692%;
    /* 1057/1300 */
}

.slideshow__list {
    position: relative;
    width: 70.104068%;
    /* 741/1057 */
}

.slideshow__item-inner {
    overflow: hidden;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
}


/* Banner Slide */

.banner-slide__list {
    width: 28.476821%;
    /* 301/1057 */
}

.banner-slide__item-inner {
    overflow: hidden;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
}


/* Search Suggest */

.search--suggest .search__inner {
    position: relative;
}

.search--suggest .search__title {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
    border-bottom: 1px solid #ccc;
    padding: 0.625rem;
}

.search--suggest .search__panel {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -webkit-calc(100% + 0.9375rem);
    top: -moz-calc(100% + 0.9375rem);
    top: calc(100% + 0.9375rem);
    right: 0;
    left: 0;
    z-index: 100;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 8px 0px #00000080;
    -moz-box-shadow: 0px 2px 8px 0px #00000080;
    box-shadow: 0px 2px 8px 0px #00000080;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.search--suggest .search__panel:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 2rem;
    z-index: 10;
    border-bottom: 15px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.search--suggest.show .search__panel {
    opacity: 1;
    visibility: visible;
}

.search--suggest .search__response {
    overflow: hidden;
    -webkit-border-bottom-right-radius: inherit;
    -moz-border-radius-bottomright: inherit;
    border-bottom-right-radius: inherit;
    -webkit-border-bottom-left-radius: inherit;
    -moz-border-radius-bottomleft: inherit;
    border-bottom-left-radius: inherit;
}

.search--suggest .search__output {
    overflow-y: auto;
    width: 100%;
    height: 360px;
}

.search--suggest .search__output::-webkit-scrollbar {
    width: 0.25rem;
}

.search--suggest .search__output::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.search--suggest .search__output::-webkit-scrollbar-thumb {
    background-color: var(--clr-brand-primary);
}

.search--suggest .suggest__item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    padding: 0.625rem;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.search--suggest .suggest__item-inner:hover {
    background-color: #f1f1f1;
}

.search--suggest .suggest__photo {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.search--suggest .suggest__info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.search--suggest .suggest__name {
    --line-clamp: 2;
    font-weight: 500;
    font-size: 15px;
    color: var(--clr-text-primary);
    margin-bottom: 0.125rem;
}

.search--suggest .suggest__price--new {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-brand-secondary);
}

.search--suggest .suggest__price--old {
    font-size: 13px;
    color: var(--clr-text-third);
    text-decoration: line-through;
}


/* Search Block */

.search--block {
    --clr-primary: var(--clr-text-primary);
    --clr-placeholder: #ccc;
}

.search--block .search__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 100%;
    height: 40px;
    -webkit-border-radius: 100rem;
    -moz-border-radius: 100rem;
    border-radius: 100rem;
    background-color: #fff;
}

.search--block .search__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 40px;
    font-size: 16px;
    color: var(--clr-primary);
    background: none;
}

.search--block .search__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    font-size: 14px;
    color: var(--clr-primary);
    background: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    padding-left: 0;
}

.search--block .search__input::-webkit-input-placeholder {
    color: var(--clr-placeholder);
}

.search--block .search__input:-moz-placeholder {
    color: var(--clr-placeholder);
}

.search--block .search__input::-moz-placeholder {
    color: var(--clr-placeholder);
}

.search--block .search__input:-ms-input-placeholder {
    color: var(--clr-placeholder);
}

.search--block .search__input::-ms-input-placeholder {
    color: var(--clr-placeholder);
}

.search--block .search__input::placeholder {
    color: var(--clr-placeholder);
}


/* Search Toggle */

.search--toggle {
    --clr-primary: var(--clr-text-white);
    --clr-active: var(--clr-brand-primary);
    --clr-placeholder: #ccc;
    position: relative;
}

.search--toggle .search__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    aspect-ratio: 1;
    width: 40px;
    font-size: 17px;
    color: var(--clr-primary);
    border: 1px solid transparent;
    cursor: pointer;
}

.search--toggle .search__icon.active {
    color: var(--clr-active);
    border-color: var(--clr-active);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.search--toggle .search__grid {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 0;
    height: 40px;
    border: 1px solid var(--clr-active);
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    background: #fff;
    padding: 0rem 0.25rem;
}

.search--toggle .search__icon.active+.search__grid {
    opacity: 1;
    visibility: visible;
}

.search--toggle .search__grid .search__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 35px;
    font-size: 17px;
    color: var(--clr-active);
    background: none;
}

.search--toggle .search__grid .search__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    font-size: 14px;
    color: var(--clr-primary);
    text-indent: 0.5rem;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.search--toggle .search__grid input::-webkit-input-placeholder {
    color: var(--clr-placeholder);
}

.search--toggle .search__grid input:-moz-placeholder {
    color: var(--clr-placeholder);
}

.search--toggle .search__grid input::-moz-placeholder {
    color: var(--clr-placeholder);
}

.search--toggle .search__grid input:-ms-input-placeholder {
    color: var(--clr-placeholder);
}

.search--toggle .search__grid input::-ms-input-placeholder {
    color: var(--clr-placeholder);
}

.search--toggle .search__grid input::placeholder {
    color: var(--clr-placeholder);
}


/* Product */

.product .product__list.flex-container {
    --columns: 4;
    --space-x: 0.5rem;
    --space-y: -webkit-calc(var(--space-x) * 2);
    --space-y: -moz-calc(var(--space-x) * 2);
    --space-y: calc(var(--space-x) * 2);
}

.product .product__item-inner {
    overflow: hidden;
    position: relative;
    border: 1px solid #E6E6E6;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    background-color: #fff;
    padding: 0.625rem;
}

.product .product__photo {
    overflow: hidden;
    display: block;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

.product .product__info {
    margin-top: 0.625rem;
}

.product__info-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
}

.product__warranty,
.product__duration {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-weight: 600;
    font-size: 11px;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    padding: 0.1875rem 0.4375rem;
}

.product__warranty {
    color: var(--clr-brand-primary);
    background-color: var(--clr-brand-third);
}

.product__duration {
    color: var(--clr-brand-fourth);
    background-color: #FBECDA;
}

.product .product__name {
    margin-bottom: 0.25rem;
}

.product .product__name a {
    --line-clamp: 2;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 15px);
    color: var(--clr-text-primary);
    text-transform: capitalize;
}

.product .product__item-inner .product__name a:hover {
    color: var(--clr-text-hvr);
}

.product .product__price--text {
    font-size: 14px;
    color: var(--clr-text-secondary);
}

.product .product__price--new {
    font-weight: 700;
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--clr-brand-pointed);
}

.product .product__price--old {
    font-size: clamp(13px, 1.9vw, 14px);
    color: var(--clr-text-third);
    text-decoration: line-through;
    padding-left: 0.5ch;
}

.product .product__price--per {
    position: absolute;
    top: 0;
    right: 0.625rem;
    z-index: 10;
    width: 40px;
    height: 33px;
    font-weight: 700;
    color: var(--clr-text-white);
    text-align: center;
    text-transform: uppercase;
    background-color: var(--clr-brand-secondary);
    pointer-events: none;
}

.product .product__price--per:before,
.product .product__price--per:after {
    content: '';
    position: absolute;
    top: 100%;
    border-bottom: 7px solid transparent;
}

.product .product__price--per:before {
    left: 0;
    border-left: 20px solid var(--clr-brand-secondary);
}

.product .product__price--per:after {
    right: 0;
    border-right: 20px solid var(--clr-brand-secondary);
}

.product .product__price--per span {
    display: block;
    line-height: 1.2em;
    text-align: center;
}

.product .product__price--per span:nth-child(2) {
    font-size: 12px;
}


/* Product Template */

.product-template__heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.product-template__heading .title-detail {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


/* Product Detail */

.properties__title {
    font-weight: 700;
    font-size: 15px;
}

.product-detail__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3125rem 0.625rem;
}

.product-detail__info .product__warranty,
.product-detail__info .product__duration {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    padding: 0.5rem 1rem;
}

.product-detail__promotion {
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right top, from(#1182FC), to(#143D6F));
    background: -webkit-linear-gradient(left, #1182FC, #143D6F);
    background: -moz-linear-gradient(left, #1182FC, #143D6F);
    background: -o-linear-gradient(left, #1182FC, #143D6F);
    background: linear-gradient(90deg, #1182FC, #143D6F);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.product-detail__promotion .promotion__title {
    font-weight: 600;
    font-size: clamp(16px, 2.2vw, 17px);
    color: var(--clr-text-white);
    padding: 10px 10px 5px 10px;
    margin-bottom: 0;
}

.product-detail__promotion .promotion__content {
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    background-color: #fff;
    padding: 20px 15px 15px 15px;
    margin: 5px;
}


/* Branch */

.branch .branch__list.flex-container {
    --columns: 4;
    --space-x: 0.5rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.branch .branch__photo {
    overflow: hidden;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.branch .branch__info {
    margin-top: 0.5rem;
}

.branch .branch__name {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
    margin-bottom: 0.5rem;
}

.branch .branch__desc {
    font-size: 14px;
}


/* News */

.news .news__list.flex-container {
    --columns: 4;
    --space-x: 0.5rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.news .news__photo {
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.news .news__info {
    margin-top: 0.5rem;
}

.news .news__name {
    margin-bottom: 0.25rem;
}

.news .news__name a {
    --line-clamp: 2;
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-primary);
}

.news .news__item-inner .news__name a:hover {
    color: var(--clr-text-hvr);
}

.news .news__desc {
    --line-clamp: 2;
    color: var(--clr-text-secondary);
    margin-bottom: 0;
}


/* Brand Featured */

.brand--featured .brand__item {
    padding: 0rem 0.125rem;
}

.brand--featured .brand__photo {
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 3px 0px #00000040;
    -moz-box-shadow: 0px 2px 3px 0px #00000040;
    box-shadow: 0px 2px 3px 0px #00000040;
    padding: 0.5rem;
}

.brand--featured .brand__info {
    margin-top: 0.5rem;
}

.brand--featured .brand__info-inner {
    text-align: center;
}

.brand--featured .brand__name {
    --line-clamp: 2;
    font-size: 14px;
    margin-bottom: 0;
}

.brand--featured .brand__item:hover .brand__name {
    color: var(--clr-text-hvr);
}


/* Product JSeen */

.product--jseen .product__item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.5rem;
    border: 1px solid #EDEDED;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.625rem;
}

.product--jseen .product__photo {
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 36.866359%;
    -moz-box-flex: 0;
    -ms-flex: 0 1 36.866359%;
    flex: 0 1 36.866359%;
    /* 80/217 */
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

.product--jseen .product__info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product--jseen .product__name {
    margin-bottom: 0.25rem;
}

.product--jseen .product__name a {
    --line-clamp: 2;
    font-weight: 500;
    font-size: 12px;
}

.product--jseen .product__name a:hover {
    color: var(--clr-text-hvr);
}

.product--jseen .product__price {
    line-height: 1.2em;
}

.product--jseen .product__price--new {
    font-weight: 700;
    font-size: 13px;
    color: var(--clr-brand-secondary);
}

.product--jseen .product__price--old {
    font-size: 12px;
    color: var(--clr-text-secondary);
    text-decoration: line-through;
}


/* Product Featured */

.product--featured .product__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #fff;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    padding: 0.25rem 0.3125rem 0.25rem 1.25rem;
    padding-left: 1.25rem;
    margin: 1rem auto 0;
}

.product--featured .product__btn:hover {
    background-color: #fff;
}

.product--featured .product__btn span {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.product--featured .product__btn span:nth-child(1) {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-white);
    text-transform: capitalize;
}

.product--featured .product__btn:hover span:nth-child(1) {
    color: var(--clr-brand-primary);
}

.product--featured .product__btn span:nth-child(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
    color: var(--clr-brand-primary);
    font-size: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
}

.product--featured .product__btn:hover span:nth-child(2) {
    color: var(--clr-text-white);
    background-color: var(--clr-brand-primary);
}


/* Product List Featured */

.product-list--featured .product__heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem 1rem;
    height: 63px;
    -webkit-border-radius: 0.75rem 0.75rem 0rem 0rem;
    -moz-border-radius: 0.75rem 0.75rem 0rem 0rem;
    border-radius: 0.75rem 0.75rem 0rem 0rem;
    padding: 0 1rem;
}

.product-list--featured .product__heading-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: 23.076923%;
    /* 300/1300 */
}

.product-list--featured .product__heading-right {
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product-list--featured .product__heading-name {
    font-weight: 900;
    font-size: 18px;
    color: var(--clr-text-white);
    text-transform: uppercase;
}

.product-list--featured .choose__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    height: 63px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list--featured .choose__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-list--featured .choose__list::-webkit-scrollbar {
    display: none;
}

.product-list--featured .choose__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 38px;
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-brand-primary);
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    background-color: #fff;
    padding: 0rem 0.75rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.product-list--featured .choose__item.active,
.product-list--featured .choose__item:hover {
    color: var(--clr-text-primary);
    background-color: var(--clr-brand-third);
}

.product-list--featured .product__main {
    -webkit-border-radius: 0rem 0rem 0.75rem 0.75rem;
    -moz-border-radius: 0rem 0rem 0.75rem 0.75rem;
    border-radius: 0rem 0rem 0.75rem 0.75rem;
    background-color: #fff;
    padding: 1rem 1.25rem;
}

.product-list--featured .product__btn,
.product-list--special .product__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-list--featured .product__btn,
.product-list--special .product__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid var(--clr-brand-primary);
    -webkit-border-radius: 100rem;
    -moz-border-radius: 100rem;
    border-radius: 100rem;
    padding: 0.25rem 0.3125rem 0.25rem 1.25rem;
    padding-left: 1.25rem;
    margin: 1rem auto 0;
}

.product-list--featured .product__btn:hover,
.product-list--special .product__btn:hover {
    background-color: var(--clr-brand-primary);
}

.product-list--featured .product__btn span,
.product-list--special .product__btn span {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.product-list--featured .product__btn span:nth-child(1),
.product-list--special .product__btn span:nth-child(1) {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-brand-primary);
    text-transform: capitalize;
}

.product-list--featured .product__btn:hover span:nth-child(1),
.product-list--special .product__btn:hover span:nth-child(1) {
    color: var(--clr-text-white);
}

.product-list--featured .product__btn span:nth-child(2),
.product-list--special .product__btn span:nth-child(2) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
    color: var(--clr-text-white);
    font-size: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--clr-brand-primary);
}

.product-list--featured .product__btn:hover span:nth-child(2),
.product-list--special .product__btn:hover span:nth-child(2) {
    color: var(--clr-brand-primary);
    background-color: #fff;
}


/* Product List Special */

.product-list--special .product__heading {
    margin-bottom: 1rem;
}

.product-list--special .product__heading-top {
    margin-bottom: 0.75rem;
}

.product-list--special .product__heading-name {
    font-weight: 900;
    font-size: 18px;
    color: var(--clr-brand-primary);
    text-transform: uppercase;
}

.product-list--special .product__heading-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.625rem;
}

.product-list--special .product__heading-bottom-left {
    width: 51.118211%;
    /* 640/1252 */
}

.product-list--special .product__heading-bottom-right {
    width: 48.322684%;
    /* 605/1252 */
}

.product-list--special .product__heading-banner {
    overflow: hidden;
    display: block;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.product-list--special .choose__list {
    list-style: none;
    padding: 0;
}

.product-list--special .choose__list.flex-container {
    --columns: 3;
    --space-x: 0.375rem;
    --space-y: -webkit-calc(var(--space-x, 0.625rem) * 2);
    --space-y: -moz-calc(var(--space-x, 0.625rem) * 2);
    --space-y: calc(var(--space-x, 0.625rem) * 2);
}

.product-list--special .choose__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    background-color: #F8F8F8;
    cursor: pointer;
}

.product-list--special .choose__item.active,
.product-list--special .choose__item:hover {
    background-color: var(--clr-brand-third);
}

.product-list--special .choose__name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    margin-top: 0.625rem;
    margin-left: 0.625rem;
}

.product-list--special .choose__photo {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


/* Why Choose */

.why-choose__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.why-choose__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15.873016%;
    /* 200/1260 */
}

.why-choose__right {
    width: 71.031746%;
    /* 895/1260 */
}

.why-choose__item {
    margin: 0.25rem;
}

.why-choose__item-inner {
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 4px 0px #1A477D40;
    -moz-box-shadow: 0px 0px 4px 0px #1A477D40;
    box-shadow: 0px 0px 4px 0px #1A477D40;
    padding: 1rem;
}

.why-choose__photo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.625rem;
}

.why-choose__name {
    --line-clamp: 2;
    --line-height: 1.2em;
    font-weight: 500;
    font-size: 16px;
    color: var(--clr-brand-primary);
    margin-bottom: 0;
}


/* Feedback */

.feedback__item-inner {
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}


/* Tags Featured */

.tags--featured .tags__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags--featured .tags__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    color: var(--clr-brand-primary);
    border: 1px solid var(--clr-brand-primary);
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    -webkit-box-shadow: 0px 1px 4px 0px #0000001d;
    -moz-box-shadow: 0px 1px 4px 0px #0000001d;
    box-shadow: 0px 1px 4px 0px #0000001d;
    padding: 0rem 0.625rem;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tags--featured .tags__link:hover {
    color: var(--clr-text-white);
    background-color: var(--clr-brand-primary);
}


/* Banner Ads */

.banner--ads .banner__item-inner {
    overflow: hidden;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
}


/* Newsletter */

.newsletter__form>div:not(:last-child) {
    margin-bottom: 0.625rem;
}

.newsletter__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.newsletter__list .newsletter__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.newsletter__item input {
    height: 42px;
}

.newsletter__item input,
.newsletter__item textarea {
    font-size: 14px;
    color: var(--clr-text-primary);
    text-indent: 0.5em;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    border-radius: 0.3125rem;
    background: #fff;
}

.newsletter__item input::placeholder,
.newsletter__item input:focus,
.newsletter__item textarea::placeholder,
.newsletter__item textarea:focus {
    /* autoprefixer: off */
    font-size: 14px;
    color: var(--clr-text-secondary);
    background: #fff;
    box-shadow: none !important;
}

.newsletter__item.is-button {
    text-align: center;
    margin-top: 1rem;
}

.newsletter__item button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 42px;
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text-white);
    text-transform: uppercase;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    border-radius: 0.3125rem;
    background: var(--clr-brand-primary);
    padding: 0 2rem;
}

.newsletter__item button::placeholder,
.newsletter__item button:focus {
    /* autoprefixer: off */
    box-shadow: none !important;
}

.newsletter__item button:hover {
    color: var(--clr-text-white);
    -webkit-box-shadow: 0px 0px 10px 0px var(--clr-brand-primary);
    -moz-box-shadow: 0px 0px 10px 0px var(--clr-brand-primary);
    box-shadow: 0px 0px 10px 0px var(--clr-brand-primary);
}


/* Home Article */

.home-article__content {
    overflow: hidden;
    max-height: 600px;
}

.home-article.show .home-article__content {
    max-height: unset;
}

.home-article__button {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
    margin: 1.5rem auto 0;
}

.home-article__button span {
    color: var(--clr-brand-primary);
}

.home-article__button span:nth-child(1) {
    font-size: clamp(14px, 2vw, 15px);
}

.home-article__button span:nth-child(2) {
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.home-article.show .home-article__button span:nth-child(2) {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* Footer */

.footer {
    background-color: #fff;
}

.footer__article {
    padding: 2rem 0 1rem;
}

.footer__article-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 1.5rem;
}

.footer__article-item:nth-child(1) {
    width: 19.230769%;
    /* 250/1300 */
}

.footer__article-item:nth-child(2) {
    width: 15.384615%;
    /* 200/1300 */
}

.footer__article-item:nth-child(3) {
    width: 16.923077%;
    /* 220/1300 */
}

.footer__article-item:nth-child(4) {
    width: 11.538462%;
    /* 150/1300 */
}

.footer__article-item:nth-child(5) {
    width: 18.461538%;
    /* 240/1300 */
}

.footer__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.625rem;
}

.footer__title {
    font-weight: 900;
    font-size: 16px;
    color: var(--clr-brand-primary);
    text-transform: capitalize;
    margin-bottom: 0.625rem;
}

.footer__content {
    color: var(--clr-text-primary);
}

.footer__info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.footer__info-item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.footer__info-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
}

.footer__info-icon>span {
    font-size: 16px;
    color: var(--clr-text-primary);
}

.footer__info-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.footer__info-content.each-line>span {
    display: block;
}

.footer__info-title,
.footer__info-value {
    color: var(--clr-text-primary);
}

.footer__info-value a.hvr-underline {
    --line-clr: var(--clr-text-primary);
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-item:not(:last-child) {
    margin-bottom: 0.625rem;
}

.footer__nav-name {
    color: var(--clr-text-primary);
}

.footer__nav-name.hvr-underline {
    --line-clr: var(--clr-text-primary);
}

.footer__nav-name:hover {
    color: var(--clr-text-primary);
}

.footer__social {
    margin-top: 1.25rem;
}

.footer__copyright {
    font-size: 12px;
    color: var(--clr-text-third);
}

.footer__copyright span:nth-child(1) {
    text-transform: capitalize;
}

.footer__copyright span:nth-child(2) {
    display: inline-block;
}

.footer__copyright a:hover {
    text-decoration: underline;
}

.footer__statistic {
    color: var(--clr-text-primary);
    text-align: right;
}

.footer__statistic span:not(:last-child) {
    padding-right: 0.625rem;
}

.footer__map {
    --h: 324px;
    padding: 1.25rem 0;
}

.footer__map .footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 0.5rem;
}

.footer__map .footer__left {
    overflow: hidden;
    width: 36.923077%;
    /* 480/1300 */
    height: var(--h);
    -webkit-border-radius: 0.75rem 0rem 0rem 0.75rem;
    -moz-border-radius: 0.75rem 0rem 0rem 0.75rem;
    border-radius: 0.75rem 0rem 0rem 0.75rem;
    background-color: #143D6F;
    padding: 0.625rem 1.25rem;
}

.footer__map .footer__right {
    overflow: hidden;
    width: 62.461538%;
    /* 812/1300 */
    -webkit-border-radius: 0rem 0.75rem 0.75rem 0rem;
    -moz-border-radius: 0rem 0.75rem 0.75rem 0rem;
    border-radius: 0rem 0.75rem 0.75rem 0rem;
}

.footer__map .choose__list {
    overflow-y: auto;
    height: 100%;
    padding-right: 0.5rem;
    margin-right: -0.5rem;
}

.footer__map .choose__item {
    border-bottom: 1px solid #194E8F;
    padding: 0.625rem 0rem;
    cursor: pointer;
}

.footer__map .choose__list::-webkit-scrollbar {
    width: 0.3125rem;
}

.footer__map .choose__list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.footer__map .choose__list::-webkit-scrollbar-thumb {
    background-color: var(--clr-brand-third);
}

.footer__map .choose__item.active {
    border-bottom-color: var(--clr-text-white) !important;
}

.footer__map .choose__item p {
    margin-bottom: 0;
}

.footer__map .choose__name {
    font-weight: 800;
    font-size: 16px;
    color: var(--clr-text-white);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.footer__map .choose__desc {
    font-size: 14px;
    color: var(--clr-text-white);
}

.footer__map .map-detail {
    position: relative;
    height: var(--h);
}

.footer__map .map-detail iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


/* Cart Fix */

.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 480px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-web-btn);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

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

.cart-fixed span {
    position: absolute;
    top: 0;
    right: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-brand-primary);
}


/* Scroll to top */

.scroll-to-top {
    --size: 50px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 20px;
    bottom: -100px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    width: var(--size);
    height: var(--size);
    border: 2px solid var(--clr-web-btn);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 5rem;
}

.scroll-to-top.is-bottom,
.scroll-to-top:hover {
    background: var(--clr-web-btn);
}

.scroll-to-top span {
    position: absolute;
    left: 32%;
    width: 36%;
    height: 2px;
}

.scroll-to-top span:nth-child(1) {
    top: 42%;
}

.scroll-to-top span:nth-child(2) {
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    -moz-transform: scale(.6);
    -o-transform: scale(.6);
    transform: scale(.6);
    top: 55%;
}

.scroll-to-top span:after,
.scroll-to-top span:before {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--clr-web-btn);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.scroll-to-top span:before {
    left: 0;
    -webkit-transform: skewY(-35deg);
    -ms-transform: skewY(-35deg);
    -moz-transform: skewY(-35deg);
    -o-transform: skewY(-35deg);
    transform: skewY(-35deg);
}

.scroll-to-top span:after {
    right: 0;
    -webkit-transform: skewY(35deg);
    -ms-transform: skewY(35deg);
    -moz-transform: skewY(35deg);
    -o-transform: skewY(35deg);
    transform: skewY(35deg);
}

.scroll-to-top.is-bottom span:before,
.scroll-to-top.is-bottom span:after,
.scroll-to-top:hover span:before,
.scroll-to-top:hover span:after {
    background-color: #fff;
}

.scroll-to-top:hover span:nth-child(1) {
    -webkit-animation: floatingArrow .7s ease-out 0s infinite forwards;
    -moz-animation: floatingArrow .7s ease-out 0s infinite forwards;
    -o-animation: floatingArrow .7s ease-out 0s infinite forwards;
    animation: floatingArrow .7s ease-out 0s infinite forwards;
}

.scroll-to-top:hover span:nth-child(2) {
    -webkit-animation: floatingArrow .7s ease-out .3s infinite forwards;
    -moz-animation: floatingArrow .7s ease-out .3s infinite forwards;
    -o-animation: floatingArrow .7s ease-out .3s infinite forwards;
    animation: floatingArrow .7s ease-out .3s infinite forwards;
}
