button {
    cursor: pointer;
}

.notyf {
    font-size: 15px;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    max-width: 100%;
}

.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span.loading {
    display: none;
}

.btn-loading.is-loading span.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.75s linear infinite;
}

.c-btn__addCart a,
.c-btn__addCart button {
    padding: 10px;
    padding-right: 10px;
    width: auto;
    justify-content: center;
}
.c-btn__addCart a .text,
.c-btn__addCart button .text {
    white-space: nowrap;
}
.c-btn__addCart a svg,
.c-btn__addCart button svg {
    margin-left: 0px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.c-wishlist__empty {
    text-align: center;
    margin-top: 2rem;
    font-size: 100%;
    font-size: 14px;
}

.is-invalid {
    border-color: var(--color-03) !important;
}

.bi-heart .heart-outline {
    display: block;
}

.bi-heart .heart-fill {
    display: none;
}

.bi-heart-fill .heart-outline {
    display: none;
}

.bi-heart-fill .heart-fill {
    display: block;
    fill: var(--color-03);
}

.bi-heart {
    fill: currentColor;
}

.c-cardProduct__delete,
.c-cardProduct__favorite {
    cursor: pointer;
    z-index: 9;
}
.c-cardProduct__delete:disabled,
.c-cardProduct__favorite:disabled {
    cursor: no-drop;
}

/** Message notify **/
.c-message {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.c-message--error {
    background-color: rgba(255, 87, 87, 0.1);
    border-left: 4px solid #ff5757;
    color: #d32f2f;
}

.c-message--success {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.c-message__icon {
    flex-shrink: 0;
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.c-message__icon svg {
    width: 100%;
    height: 100%;
}

.c-message--error .c-message__icon {
    color: #ff5757;
}

.c-message--success .c-message__icon {
    color: #4caf50;
}

.c-message__content {
    flex: 1;
}

.c-login__left .c-message {
    width: 100%;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.c-message {
    animation: messageAppear 0.3s ease-out;
}

#nprogress .bar {
    background: var(--color-03);
    height: 2px;
}

#nprogress .peg {
    box-shadow: 0 0 10px var(--color-03), 0 0 5px var(--color-03);
}

#nprogress .spinner-icon {
    border-top-color: var(--color-03);
    border-left-color: var(--color-03);
}

.c-product__detail .c-detail__gr .c-btn__addCart button {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
}

.c-map__frame {
    position: relative;
    min-height: 715px;
}
.c-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.c-map__search input {
    width: 100%;
}

.c-map__content {
    justify-content: start;
}

.c-map__list .c-map__item {
    cursor: pointer;
}
.c-map__list .c-map__item.active {
    border-color: var(--color-03);
}

.post-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 10px;
}
.post-socials a {
    display: inline-block;
    line-height: 1;
}

.c-news__article-content {
    margin: 1.5rem 0;
}

.c-news__article-content p {
    margin-bottom: 1rem;
}

.p-product .c-tabs__content #content p {
    margin-bottom: 1rem;
}

.c-news-detail__share {
    margin-top: 1.5rem;
}

.p-news-detail .c-news__header {
    margin-bottom: 1.5rem;
}
.p-news-detail .c-news__meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/** Box empty **/
.c-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin: 2rem 0;
}

.c-empty__inner {
    text-align: center;
    max-width: 500px;
}

.c-empty__icon {
    margin-bottom: 1.5rem;
}

.c-empty__title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.c-empty__text {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.c-empty:hover .c-empty__icon svg path {
    transition: fill 0.3s ease;
}

.c-empty:hover .c-empty__icon svg path {
    fill: #111;
}

.p-about .c-feature__list {
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0px;
    margin-right: 0px;
}
.p-about .c-feature__list .c-feature__item {
    padding: 0;
    width: calc(50% - 10px);
}

.c-cardProduct__img {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
}

.c-cardProduct__img .image-first,
.c-cardProduct__img .image_second {
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-cardProduct__img .image_second {
    opacity: 0;
}

.c-cardProduct__img:hover .image-first {
    opacity: 0;
}

.c-cardProduct__img:hover .image_second {
    opacity: 1;
}

.c-collection-products {
    margin-top: 40px;
}

.text-line-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.text-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-product__layout {
    margin-top: 40px;
}

.c-topService__list {
    justify-content: space-around;
}

.c-discover li.active a,
.c-origin li.active a {
    color: var(--color-03) !important;
}

/** Empty data **/
.c-product__empty {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 30px 0;
}

.c-product__empty-icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
}

.c-product__empty-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.c-product__empty-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 500px;
    margin: 0 auto 24px;
}

.c-product__empty-button {
    display: inline-block;
    background-color: #333;
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.c-product__empty-button:hover {
    background-color: #555;
}

.loading-products {
    text-align: center;
    padding: 40px 0;
    font-size: 16px;
    color: #666;
}

#productDetail.show {
    display: flex;
}

.c-product__detail .c-detail__favorite::before {
    display: none !important;
}

.c-product__detail .c-detail__favorite {
    gap: 4px;
    cursor: pointer;
}

.c-product__detail .c-detail__name {
    margin-bottom: 16px;
}

.c-product__detail .c-detail__tag {
    display: inline-block;
    border-radius: 3px;
    width: auto;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1;
}

.c-cartPopup__title {
    font-size: 16px;
    line-height: 24px;
}

.c-checkout__btn {
    height: 36px;
    background: rgb(255, 255, 255);
    cursor: pointer;
}

.c-checkout__item-customer {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.c-checkout__logout {
    cursor: pointer;
}

.account-logout {
    cursor: pointer;
}

.disabled {
    cursor: no-drop !important;
    opacity: 0.7 !important;
}

.c-cardProduct__title {
    min-height: 34px;
}

.c-checkout__item {
    align-items: start;
}

.shipping-action-add {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.shipping-action-add .c-form__submit {
    margin: 0;
}

.c-form__submit-cancel-shipping {
    background: #fff;
    color: #111;
}

.address-item-show {
    display: none !important;
}
.address-item-show.show {
    display: block !important;
}

.c-payment__text__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.c-checkout__form {
    order: unset;
}

#shippingEdit {
    margin-top: 0;
}

#shippingCustom {
    margin-top: 20px;
}

.c-checkout__label {
    font-size: 18px;
}

.c-checkout__item-box-heading {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.c-checkout__item-box-heading .c-checkout__item-box-heading-action {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.c-checkout__item-box-method-name {
    padding-left: 20px;
    font-size: 24px;
    flex: 1;
}

.c-checkout__item-box-method-info {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.c-checkout__payment-shipping-method {
    display: none;
}

.c-checkout__label {
    min-width: 100px;
}

.c-checkout__btn {
    min-width: 75px;
}

.address-billing-use,
.address-billing-active,
.address-item-active,
.address-shipping-use,
.address-shipping-active {
    display: none;
}
.address-billing-use.active,
.address-billing-active.active,
.address-item-active.active,
.address-shipping-use.active,
.address-shipping-active.active {
    display: block !important;
}

.address-billing-choice.active,
.address-shipping-choice.active {
    background: #fff4dd;
}

.c-selectCustom__list li:not(last-child) {
    border-bottom: 1px solid #ebebeb;
}

.c-checkout__item-submit .c-checkout__btn {
    margin-top: 24px;
    width: 100%;
    background: var(--color-03);
    border: none;
    color: var(--color-05);
    text-transform: uppercase;
    height: 48px;
    font-weight: 500;
}
.c-checkout__item-submit .c-checkout__btn:disabled {
    cursor: no-drop !important;
    opacity: 0.6 !important;
}

.c-tabs__content #content {
    border: none;
}

.p-product .c-tabs__list .js-tab {
    cursor: pointer;
}

.c-profile__inner #previewImage {
    border-radius: 50%;
}

/** Checkout bulk discount **/
/* Bulk Buy Discount Styles */
.c-checkout__boxDiscounts {
    margin-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
}

.c-checkout__boxDiscountHeader {
    font-weight: 600;
    margin-bottom: 8px;
    color: #4caf50;
}

.c-checkout__boxDiscount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9em;
    padding-left: 10px;
}

.c-checkout__boxDiscount span {
    font-weight: 600;
    color: #4caf50;
}

.c-checkout__boxDiscountTotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 8px;
    border-top: 1px dotted #e0e0e0;
    padding-top: 8px;
    justify-content: space-between;
}
.c-checkout__boxDiscountTotal .text {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    color: var(--color-49);
    margin-bottom: 20px;
}
.c-checkout__boxDiscountTotal .price {
    color: var(--color-04);
}

/* Coupon Styles */
.c-checkout__boxCouponApplied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f9ff;
    border: 1px solid #cce5ff;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.c-checkout__boxCouponInfo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.c-checkout__boxCouponName {
    font-weight: 600;
    color: #0066cc;
}

.c-checkout__boxCouponCode {
    color: #666;
    font-size: 0.9em;
}

.c-checkout__boxCouponDiscount {
    font-weight: 600;
    color: #4caf50;
    margin-left: 5px;
}

.c-checkout__boxCouponRemove {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-checkout__boxCouponRemove svg {
    width: 16px;
    height: 16px;
}

.c-checkout__boxCouponRemove:hover {
    color: #ff3333;
}

/* Styles for coupon input form */
#couponApply {
    margin-top: 10px;
}

#couponApply .c-form__gr.is-single {
    display: flex;
    gap: 10px;
}

#couponApply .c-form__input {
    flex-grow: 1;
}

#couponApply input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.9em;
}

#couponApply .c-form__submit:hover {
    background-color: #333;
}

.c-form__error_coupon_code {
    color: #ff3333;
    font-size: 0.8em;
    margin-top: 5px;
}

.no-spin-buttons::-webkit-outer-spin-button,
.no-spin-buttons::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-spin-buttons {
    -moz-appearance: textfield;
}

.c-topAbout__gr .c-comment::after {
    display: none;
}

.top-brand {
    margin-top: 40px;
}
.top-brand .c-topProduct__wrap {
    padding-bottom: 20px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    transition: all 0.4s;
}
.brand-item:hover {
    opacity: 0.8;
}

#mv-brands {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}
#mv-brands .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    background: var(--color-03);
    margin: 0px 2px;
}

.c-topProduct__sub_title {
    margin-top: 6px;
}

@media only screen and (max-width: 1024px) {
    .c-topAbout__gr {
        width: 100%;
        max-width: 100%;
        display: block;
    }
}
@keyframes spinPayment {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.payment-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}
.payment-loading.show {
    display: flex !important;
}
.payment-loading-container {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
}
.payment-loading .spinner {
    margin: 10px auto;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spinPayment 2s linear infinite;
}

@media only screen and (max-width: 767px) {
    .c-mv__slide .swiper-slide img {
        -o-object-fit: cover;
        object-fit: cover;
        min-height: auto;
    }
    .c-mv__wrap .swiper-button-next,
    .c-mv__wrap .swiper-button-prev {
        position: absolute;
        top: calc(50% - 14px);
    }
    .c-mv-child__title {
        font-size: 24px;
    }
    .c-mv-child__img img {
        min-height: auto;
    }
}
@media only screen and (max-width: 767px) {
    .c-header__list li a {
        font-size: 20px;
        line-height: 1.5;
    }
    .c-topProduct__title {
        font-size: 18px;
    }
}
.c-map__list .c-map__tit {
    display: none;
}

.c-selectCustom__list {
    z-index: 99;
}

.c-payment__form {
    position: relative;
    z-index: 1;
}

.cart-product-info {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
}
.cart-product-info a {
    text-decoration: none;
}
.cart-product-info a:hover {
    color: var(--color-03);
}

.cart-header-action {
    width: 80px;
}

.c-cartPopup__title__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-cartPopup__title__price .qty {
    display: inline-block;
    height: 23px;
    line-height: 23px;
    min-width: 25px;
    padding: 0 3px;
    text-align: center;
    background: #f5f5f5;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(225, 227, 228, 0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.c-cartPopup__title__price .price {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.c-cartPopup__content {
    flex: 1;
    padding-left: 8px;
}

.c-cartPopup__img {
    max-width: 63px;
}

.c-cartPopup__bottom button {
    font-size: 13px;
}

.c-checkout__boxTaxes {
    padding: 10px 0;
    border-top: 1px dashed #eee;
}

.c-checkout__boxTaxItem {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 4px;
}

.c-checkout__boxTaxTotal {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.gst {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
}
.gst .c-checkout__boxTaxItem:last-child {
    margin-bottom: 0px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    to {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
.c-btn__shop {
    animation: pulse 1.5s infinite 0.4s;
    border-radius: 6px;
}

.c-checkout__item-submit .c-checkout__btn {
    font-weight: 600;
    font-family: var(--font-main);
    line-height: 48;
}

.c-user__gr__customize {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#addAddress .c-modal__content,
.addAddress .c-modal__content {
    overflow-y: scroll;
    max-height: 600px;
}

.c-position__delete.disabled {
    background: #2e7d32;
}

/** Brand **/
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200px;
    margin-bottom: 20px;
    text-align: center;
}

.brand-item a {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.brand-item h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}

.added-success,
.wishlist-added-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: 200px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

.added-content {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    gap: 6px;
}

.added-content span {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto;
}

.added-content span svg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.added-content span svg path {
    stroke-width: 3px;
}

.added-content span:after {
    content: "";
    border-top: 10px solid #fff;
    border-left: 3px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    bottom: -4px;
    left: 4px;
    transform: rotate(23deg);
}

.added-content p {
    margin: 10px 0 0;
    font-size: 16px;
    font-family: var(--font-main);
}

.added-success.active,
.wishlist-added-success.active {
    display: block;
}

.c-cartPopup__body.is-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    color: #484646;
    gap: 10px;
}
.c-cartPopup__body .svgico-mini-cart svg {
    width: 50px;
    height: 50px;
    fill: #484646;
}

.c-cardProduct__priceContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
    margin-top: 4px;
}
.c-cardProduct__priceContainer .c-cardProduct__price {
    margin: 0;
    line-height: 1;
}

.c-cardProduct__oldPrice {
    line-height: 1;
}

.c-cardProduct__discount {
    position: absolute;
    left: 10px;
    right: 10px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.c-cardProduct__discount span {
    display: inline;
    background: var(--color-03);
    color: #fff;
    border-radius: 3px;
    padding: 3px 5px;
    font-size: 12px;
}

.c-cardProduct__price {
    font-size: 14px;
}

.c-cardProduct__oldPrice {
    color: #666;
    text-decoration: line-through;
    position: relative;
    top: 1px;
    font-size: 12px;
}

.c-detail__priceContainer {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}
.c-detail__priceContainer .c-detail__price {
    margin: 0px;
}
.c-detail__priceContainer .c-detail__price__oldPrice {
    color: #666;
    text-decoration: line-through;
    font-size: 16px;
    position: relative;
}

.c-detail__bulk-buy {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.c-detail__bulk-buy .link {
    text-decoration: underline;
    cursor: pointer;
}
.c-detail__bulk-buy .text {
    color: var(--color-03);
    font-weight: bold;
    margin-right: 5px;
}

.modal-background {
    background: rgba(45, 45, 45, 0.45);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1004;
    left: 0;
}

body.has-modal .modal-background {
    display: block;
}
body.has-modal .c-modal {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.c-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1004;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.c-modal-content {
    background: #fff;
}
.c-modal-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 1rem 0;
    padding-left: 2.25rem;
    padding-right: 3.03571rem;
    position: relative;
    align-items: center;
    position: relative;
}
.c-modal-header h2 {
    font-size: 18px;
}
.c-modal-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.25rem 2.25rem;
}
.c-modal-body p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.c-modal-body ul {
    list-style-type: disc;
    margin-left: 1.15rem;
}
.c-modal-body ul li {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.c-modal-close {
    height: 2.28571rem;
    width: 2.28571rem;
    color: #4f4f4f;
    font-size: 26px;
    line-height: 2.28571rem;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    z-index: 50;
    font-size: 32px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

#bulk-buy-modal .c-modal-content {
    max-width: 500px;
}
#bulk-buy-modal .c-modal-header {
    text-align: center;
}

.c-text span {
    font-weight: initial;
}

.c-cart__quantity-btn:disabled {
    cursor: no-drop !important;
    opacity: 0.7 !important;
}

.c-client__catalog li:nth-child(2),
.c-client__catalog li:nth-child(5) {
    margin-top: 0;
}

.c-client__catalog li:nth-child(3) {
    width: 50%;
}

.c-client__catalog li:nth-child(even) {
    margin-top: 100px;
}

.c-contact__content-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.c-contact__content-form input {
    margin-top: 0px !important;
}
.c-contact__content-form .form-subscription-input {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.c-contact__content-form .form-subscription-input input {
    width: 100%;
}

.c-btn__addCart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
    margin-top: 12px;
}
.c-btn__addCart .c-btn__addCart-button {
    border-radius: 4px;
    width: 40px;
}

.c-btn__addCart-qty {
    display: flex;
    justify-content: space-between;
    width: 120px;
    border: 1px solid #ebebeb;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}
.c-btn__addCart-qty .btn-action {
    width: 35px;
    background: #ebebeb;
    height: 35px;
    border: none;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}
.c-btn__addCart-qty .btn-action svg {
    width: 20px;
    height: 20px;
    fill: #000;
}
.c-btn__addCart-qty .btn-action:disabled {
    cursor: no-drop;
    opacity: 0.5;
}
.c-btn__addCart-qty .qty {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
}

.c-cart__quantity {
    display: flex;
    justify-content: space-between;
    width: 120px;
    border: 1px solid #ebebeb;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}
.c-cart__quantity .c-cart__quantity-btn {
    width: 35px;
    background: #ebebeb;
    height: 35px;
    border: none;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}
.c-cart__quantity .c-cart__quantity-btn svg {
    width: 16px;
    height: 16px;
    fill: #000;
}
.c-cart__quantity .c-cart__quantity-btn:disabled {
    cursor: no-drop;
    opacity: 0.5;
}
.c-cart__quantity .qty {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
}

.cart-qty-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 210px;
}
.cart-qty-item .c-cart__save {
    width: 80px;
    height: 35px;
}
.cart-qty-item .button-save {
    width: 100%;
    border: 1px solid var(--color-03);
    border-radius: 4px;
    cursor: pointer;
    background: var(--color-03);
    color: #fff;
    display: none;
    height: 35px;
}
.cart-qty-item .button-save.show {
    display: inline-flex;
}
.cart-qty-item .c-cart__quantity {
    flex: 1;
}

.p-product .c-btn__addCart {
    margin-top: 0px;
}

.mt-12 {
    margin-top: 12px !important;
}

.c-detail__sku {
    font-size: 14px;
    line-height: 19.6px;
    color: var(--color-04);
    font-weight: 500;
    margin-bottom: 5px;
}

.c-topChoose__img {
    overflow: hidden;
}
.c-topChoose__img img {
    transition: all 0.3s;
}

.c-topChoose__content {
    transition: all 0.5s;
}

.c-topChoose__box:hover img {
    transform: scale(1.1);
}
.c-topChoose__box:hover .c-topChoose__content {
    padding-bottom: 40px;
}

.c-topChoose__box:nth-child(1) .c-topChoose__content {
    padding-bottom: 15px;
}

.c-topService__text {
    min-height: 36px;
}

.p-product #content ul,
.p-product #content ol {
    list-style: initial;
    margin-left: 17px;
}

.c-feature__blTrademark {
    margin-top: 15px;
}
.c-feature__blTrademark img {
    border-radius: 4px;
    overflow: hidden;
}

#mv_brand_about .swiper-pagination {
    position: relative;
    margin-top: 10px;
}
#mv_brand_about .swiper-pagination-bullet {
    width: 27px;
    background: var(--color-03);
    height: 2px;
    border-radius: 3px;
}

.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.c-detail__thumb .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-detail__slide .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-detail__slide .youtube-video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.c-detail__slide .youtube-video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
}

.h-card {
    display: none;
}

.hidden-seo {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.credit-card-button,
.afterpayment-card-button {
    background: #2c2e2f;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 99%;
    margin: 0 auto;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: 55px;
    line-height: 1;
}
.credit-card-button img,
.afterpayment-card-button img {
    width: 29px;
    height: 22px;
}
.credit-card-button .text,
.afterpayment-card-button .text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-main);
    top: 1px;
    position: relative;
}

.credit-card-button{
    background:var(--color-03) !important;
}

.c-tabs__box .c-review__gr {
    margin: 0px;
    margin-bottom: 15px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin: 0 5px;
    position: relative;
}

.star-rating label svg {
    color: #ccc;
    transition: color 0.2s, margin-top 0.2s;
}

.star-rating input:checked ~ label svg {
    color: #ffd700;
}

.star-rating label:hover svg,
.star-rating label:hover ~ label svg {
    color: #ffd700;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin: 0 5px;
    position: relative;
}

/* Use empty stars by default */
.star-rating label svg.star-empty {
    display: inline;
}

.star-rating label svg.star-filled {
    display: none;
}

/* Show filled stars for checked state and hover */
.star-rating input:checked ~ label svg.star-filled,
.star-rating label:hover svg.star-filled,
.star-rating label:hover ~ label svg.star-filled {
    display: inline;
}

.star-rating input:checked ~ label svg.star-empty,
.star-rating label:hover svg.star-empty,
.star-rating label:hover ~ label svg.star-empty {
    display: none;
}

/* Color for stars */
.star-rating label svg {
    color: #ccc;
}

.star-rating input:checked ~ label svg.star-filled,
.star-rating label:hover svg.star-filled,
.star-rating label:hover ~ label svg.star-filled {
    color: #ffd700;
}

/* Default checked state - gold color */
.star-rating input:checked ~ label svg {
    color: #ffd700;
}

/* Individual hover effect - only the hovered star moves up */
.star-rating label:hover svg {
    color: #e6c200; /* Darker shade of gold for hover */
    transform: translateY(-3px); /* Move only this star up when hovering */
}

/* Keep the color effect for preceding stars but without movement */
.star-rating label:hover ~ label svg {
    color: #e6c200; /* Darker shade of gold for hover */
}

/* Active/pressed state - even darker for feedback */
.star-rating label:active svg {
    color: #cca300; /* Even darker shade when clicking */
    transform: translateY(
        -5px
    ); /* Move only this star up even more when clicking */
}

.c-review__star {
    justify-content: start;
    align-items: center;
    margin-bottom: 15px;
}
.c-review__star .title span {
    position: relative;
    top: 4px;
}

.c-review__gr {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.c-review__gr-item {
    flex: 1;
    min-width: calc(33.33% - 10px);
}

.c-review__gr-item input,
.c-review__gr-item textarea {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}

#form-review.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.btn-after-payment {
    background: #b3fbe3 !important;
    color: #000000 !important;
}
.btn-after-payment img {
    width: 36px;
    height: 36px;
}

/* Click & Collect Styling */
.click_collect {
    margin-top: 10px;
    padding: 20px;
    padding-top: 0px;
}

.click_collect small {
    display: block;
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.store-details {
    font-size: 0.9em;
    line-height: 1.5;
}

.store-name {
    color: #333;
    margin-bottom: 5px;
}

.store-address {
    color: #555;
    margin-bottom: 5px;
}

.store-phone {
    color: #555;
    margin-bottom: 5px;
}

.store-hours {
    color: #555;
    font-style: italic;
}

.c-btn__addCart .c-btn__addCart-button {
    position: relative;
    overflow: hidden;
    background: transparent;
}
.c-btn__addCart .c-btn__addCart-button svg {
    position: relative;
    z-index: 1;
}
.c-btn__addCart .c-btn__addCart-button::after {
    background: #000;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.c-btn__addCart .c-btn__addCart-button::before {
    background: var(--color-03);
    transition: all 0.4s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    right: -110%;
    height: 100%;
    z-index: 2;
}
.c-btn__addCart .c-btn__addCart-button:hover::before {
    right: 0px;
}
.c-btn__addCart .c-btn__addCart-button:hover svg {
    z-index: 3;
}

.btn-hover {
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.btn-hover::after {
    background: #000;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -2;
    width: 100%;
    height: 100%;
    content: "";
}
.btn-hover::before {
    background: var(--color-03);
    transition: all 0.4s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    right: -110%;
    height: 100%;
    z-index: -1;
}
.btn-hover.red::after {
    background: var(--color-03);
}
.btn-hover.red::before {
    background: #000;
}
.btn-hover:hover::before {
    right: 0px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .click_collect {
        padding: 10px;
    }
    .store-details {
        font-size: 0.85em;
    }
}
@media only screen and (max-width: 767px) {
    .c-cate-slide__title {
        font-size: 18px;
    }
    .c-cate-slide__content {
        padding: 10px;
    }
    .c-topProduct__img {
        display: none;
    }
    .c-topAbout__title {
        font-size: 24px;
        line-height: 1.4;
    }
    .c-topAbout__title span {
        font-size: 18px;
    }
    .c-product__detail {
        padding-top: 20px;
    }
    .c-tabs__box .c-review textarea {
        width: 100%;
    }
    .c-tabs__box .c-review__gr input {
        width: 100%;
    }
    .c-tabs__box .c-review__upload {
        width: 120px;
    }
    .p-about .c-feature__list .c-feature__item {
        width: 100% !important;
    }
    .c-map__frame {
        min-height: 400px;
    }
}
.li-cart {
    position: relative;
}

.count-cart {
    position: absolute;
    top: -3px;
    right: -3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-04);
    font-family: var(--font-01);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-05);
    border-radius: 50%;
    z-index: 99;
}

.flex-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-footer__copyright {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.c-topChoose__box {
    flex-grow: 1;
    flex-basis: 0;
    transition-duration: 0.7s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    height: 400px;
    cursor: pointer;
}
.c-topChoose__box:hover {
    flex-grow: 2;
}
.c-topChoose__box:not(:hover) img {
    filter: brightness(50%);
}

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

.verification-message {
    line-height: 1.5;
}

.p-forgot-password .c-login__left {
    max-width: 600px;
}

.ecommerce-links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-left: 10px;
    white-space: nowrap;
}
.ecommerce-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    margin: 0px;
    background: transparent;
    border: 1px solid #ebebeb;
    background: #ebebeb;
    border-radius: 6px;
    height: 40px;
}
.ecommerce-links a img {
    width: auto;
    max-width: 70px;
}

.c-btn__addCart.has-ecommerce-links {
    margin-right: 0;
}

.btn-hover::before,
.btn-hover::after {
    top: 0px;
}

.c-header__user.gray:before,
.c-header__user.gray::after,
.c-header__heart.gray:before,
.c-header__heart.gray::after {
    background: var(--color-02);
}
.c-header__user.gray:after,
.c-header__heart.gray:after {
    display: none;
}
.c-header__user.gray:hover,
.c-header__heart.gray:hover {
    color: white !important;
}
.c-header__user.gray:hover::before,
.c-header__user.gray:hover::after,
.c-header__heart.gray:hover::before,
.c-header__heart.gray:hover::after {
    background: var(--color-03);
}

li .c-checkout__btn.white:before,
li .c-checkout__btn.white::after {
    background: white;
}
li .c-checkout__btn.white:after {
    display: none;
}
li .c-checkout__btn.white:hover {
    color: #000 !important;
    border-color: white !important;
}
li .c-checkout__btn.white:hover::before,
li .c-checkout__btn.white:hover::after {
    background: var(--color-03);
}

@media only screen and (max-width: 767px) {
    .c-topChoose__wrap {
        display: grid;
        gap: 20px;
    }
    .p-product .c-detail__gr.parentBoxAddToCart {
        flex-wrap: wrap;
    }
    .p-product .c-detail__gr.parentBoxAddToCart .ecommerce-links {
        width: 100%;
        margin-top: 15px;
        margin-left: 0px;
        flex-wrap: wrap;
    }
}

/** Artical content **/
.c-news__article-content ul,
.c-news__article-content ol {
    margin-left: 17px;
    margin-bottom: 1rem;
    list-style: revert;
    line-height: 1.5;
}

.c-news__article-content a {
    text-decoration: revert;
    color: revert;
}

.c-news__article-content img {
    height: auto !important;
    max-width: 100% !important;
}

.c-news__article-content table[align="center"] {
    margin-left: auto;
    margin-right: auto;
}

button:disabled {
    opacity: 0.7 !important;
    cursor: no-drop;
}

@media only screen and (max-width: 767px) {
    .c-checkout__item.c-checkout__item-shipping
        .c-checkout__item-box-method-name {
        padding-left: 0px;
    }
}
