.kp-header {
    background: linear-gradient(180deg, #e0d1a2 0%, #af7c32 100%);
    color: #000;
}

/* cart page */
.kp-cart-page {
    background: #f5f5f5;
    min-height: calc(100vh - 180px);
}

.kp-cart-head {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1.5fr 0.45fr 0.45fr 0.45fr 0.35fr;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: #666;
}

.kp-cart-col-product {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.kp-cart-col-price,
.kp-cart-col-qty,
.kp-cart-col-total,
.kp-cart-col-action {
    text-align: center;
}

.kp-cart-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
}

.kp-cart-item-main {
    padding: 16px;
    display: grid;
    grid-template-columns: 1.5fr 0.45fr 0.45fr 0.45fr 0.35fr;
    gap: 12px;
    align-items: center;
}

.kp-cart-product-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.kp-cart-thumb {
    width: 82px;
    height: 82px;
    border: 1px solid #ececec;
    overflow: hidden;
    flex-shrink: 0;
}

.kp-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kp-cart-product-info h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #222;
}

.kp-cart-old-price {
    display: block;
    color: #9b9b9b;
    font-size: 13px;
    text-decoration: line-through;
}

.kp-cart-price-now {
    color: #333;
    font-size: 16px;
}

.kp-cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8d8d8;
    height: 34px;
}

.kp-cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    color: #444;
}

.kp-cart-qty-input {
    width: 46px;
    height: 32px;
    border: none;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    text-align: center;
    outline: none;
}

.kp-cart-line-total {
    color: #af7c32;
    font-size: 17px;
}

.kp-cart-remove {
    border: none;
    background: none;
    color: #af7c32;
    font-size: 15px;
}

.kp-cart-item-sub {
    border-top: 1px solid #f2f2f2;
    padding: 12px 16px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kp-cart-item-sub.ship {
    color: #3f8f58;
}

.kp-cart-item-sub a {
    color: #0d5db8;
    text-decoration: none;
}

.kp-cart-footer {
    margin-top: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kp-cart-footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.kp-cart-footer-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.kp-cart-grand {
    color: #333;
    font-size: 16px;
}

.kp-cart-grand strong {
    color: #af7c32;
    font-size: 30px;
    margin-left: 6px;
}

.kp-cart-buy-btn {
    min-width: 180px;
    background: #af7c32;
    border: 1px solid #af7c32;
    color: #fff;
    font-weight: 500;
    padding: 11px 18px;
}

.kp-cart-buy-btn:hover {
    color: #fff;
    background: #d73f22;
    border-color: #d73f22;
}

.kp-cart-checkout {
    margin-top: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 16px;
}

.kp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}

.kp-checkout-title {
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}

.kp-checkout-qr {
    border: 1px dashed #d8d8d8;
    border-radius: 6px;
    padding: 12px;
    background: #fafafa;
}

.kp-checkout-qr img {
    width: 100%;
    height: auto;
    display: block;
}

.kp-cart-empty {
    margin-top: 12px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 42px 16px;
    text-align: center;
}

.kp-cart-empty i {
    font-size: 34px;
    color: #af7c32;
}

.kp-cart-empty p {
    margin: 12px 0;
}

.kp-cart-back {
    background: #af7c32;
    border-color: #af7c32;
    color: #fff;
}

.kp-cart-back:hover {
    color: #fff;
    background: #d73f22;
    border-color: #d73f22;
}

@media (max-width: 991.98px) {
    .kp-cart-head {
        display: none;
    }

    .kp-cart-item-main {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kp-cart-col-price,
    .kp-cart-col-qty,
    .kp-cart-col-total,
    .kp-cart-col-action {
        text-align: left;
    }

    .kp-cart-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .kp-cart-footer-right {
        width: 100%;
        justify-content: space-between;
    }

    .kp-cart-grand strong {
        font-size: 24px;
    }

    .kp-cart-buy-btn {
        min-width: 140px;
    }

    .kp-cart-checkout {
        padding: 14px;
    }

    .kp-checkout-grid {
        grid-template-columns: 1fr;
    }
}

.kp-header a {
    color: #000;
    text-decoration: none;
}

.kp-topbar {
    padding-top: 8px;
    font-size: 13px;
    line-height: 1.2;
}

.kp-top-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.95;
    margin-right: 12px;
}

.kp-top-link:hover,
.kp-icon-link:hover,
.kp-hotkeys a:hover {
    color: #000;
    opacity: 1;
}

.kp-divider {
    opacity: 0.5;
    margin-right: 12px;
}

.kp-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    font-size: 14px;
}

.kp-user {
    margin-right: 0;
    gap: 6px;
}

.kp-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.kp-user-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    color: #000;
    margin-right: 0;
}

.kp-user-toggle:focus {
    outline: none;
}

.kp-user-caret {
    font-size: 12px;
    opacity: 0.9;
}

.kp-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    display: none;
    z-index: 1000;
}

.kp-user-menu.open .kp-user-dropdown {
    display: block;
}

.kp-user-dropdown-item {
    display: block;
    width: 100%;
    padding: 9px 14px;
    color: #333 !important;
    text-decoration: none;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

.kp-user-dropdown-item:hover {
    background: #fff5f0;
    color: #af7c32 !important;
}

.kp-user-dropdown-divider {
    height: 1px;
    background: #f1f1f1;
    margin: 4px 0;
}

.kp-user-logout-form {
    margin: 0;
}

.kp-user-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #9f3a1e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.kp-main-row {
    padding: 10px 0 12px;
}

.kp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kp-logo-mark {
    width: 42px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.kp-brand-text {
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
}

.kp-search-wrap {
    background: #fff;
    border-radius: 2px;
    padding: 3px;
    display: flex;
    align-items: center;
}

.kp-search-input {
    border: 0;
    border-radius: 0;
    padding: 4px 12px;
    color: #5c5c5c;
}

.kp-search-input::placeholder {
    color: #7a7a7a;
    text-transform: uppercase;
}

.kp-search-input:focus {
    box-shadow: none;
}

.kp-search-btn {
    background: #af7c32;
    color: #fff;
    border: 0;
    border-radius: 2px;
    min-width: 52px;
    height: 32px;
    font-size: 20px;
}

.kp-search-btn:hover,
.kp-search-btn:focus,
.kp-search-btn:active {
    color: #fff;
    background: #cf9948;
    box-shadow: none;
}

.kp-hotkeys {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.kp-hotkeys a {
    opacity: 0.95;
}

span.cart_count {
    position: absolute;
    font-size: 19px;
    right: -11px;
    color: #af7c32;
    top: -6px;
    background: #fff;
    padding: 0px 8px;
    border-radius: 10px;
}

.kp-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 30px;
    position: relative;
}

.kp-hotkeys-mobile {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 0;
    gap: 12px;
    scrollbar-width: none;
}

.kp-hotkeys-mobile::-webkit-scrollbar {
    display: none;
}

@media (max-width: 991.98px) {
    .kp-brand-text {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .kp-main-row {
        padding: 12px 0 8px;
    }

    .kp-logo-mark {
        width: 34px;
        height: 34px;
        font-size: 24px;
        border-width: 2px;
    }

    .kp-brand-text {
        font-size: 28px;
    }

    .kp-search-wrap {
        padding: 2px;
    }

    .kp-search-input {
        height: 36px;
        font-size: 14px;
        padding: 8px 10px;
    }

    .kp-search-btn {
        height: 36px;
        min-width: 44px;
        font-size: 16px;
    }

    .kp-cart {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .kp-hotkeys {
        font-size: 12px;
    }
}

.kp-home-carousel {
    height: 100%;
}

.kp-home-carousel .carousel-inner,
.kp-home-carousel .carousel-item,
.kp-home-carousel .kp-hero-slide {
    height: 100%;
}

.kp-hero-slide {
    min-height: 320px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    color: #fff;
    position: relative;
}

.kp-hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.32), transparent 38%),
        radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.2), transparent 35%);
    pointer-events: none;
}

.kp-hero-slide-1 {
    background: linear-gradient(98deg, #ffbf00 0%, #ff9011 52%, #ff6424 100%);
}

.kp-hero-slide-2 {
    background: linear-gradient(98deg, #ff4b2b 0%, #f33f4d 48%, #db1f58 100%);
}

.kp-hero-slide-3 {
    background: linear-gradient(98deg, #f7991c 0%, #f2720c 50%, #ea4a2c 100%);
}

.kp-hero-copy {
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.kp-hero-chip {
    display: inline-block;
    background: #045abf;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 3px;
    padding: 5px 12px;
    margin-bottom: 14px;
}

.kp-hero-copy h2 {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.kp-hero-copy p {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
}

.kp-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.15);
}

.kp-hero-art {
    position: relative;
    width: 270px;
    height: 230px;
    z-index: 1;
}

.kp-art-bubble {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 3px solid rgba(255, 255, 255, 0.35);
}

.kp-art-item {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    color: #ff6b00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.kp-art-bag {
    top: 26px;
    left: 16px;
}

.kp-art-camera {
    bottom: 16px;
    right: 14px;
}

.kp-art-box {
    top: 22px;
    right: 20px;
}

.kp-art-gift {
    bottom: 14px;
    left: 22px;
}

.kp-art-shirt {
    top: 22px;
    left: 24px;
}

.kp-art-star {
    bottom: 16px;
    right: 20px;
}

.kp-home-carousel .carousel-control-prev,
.kp-home-carousel .carousel-control-next {
    width: 44px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 60px;
    opacity: 1;
}

.kp-home-carousel .carousel-control-prev {
    border-radius: 0 4px 4px 0;
}

.kp-home-carousel .carousel-control-next {
    border-radius: 4px 0 0 4px;
}

.kp-home-carousel .carousel-control-prev:hover,
.kp-home-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.35);
}

.kp-home-carousel .carousel-indicators {
    margin-bottom: 12px;
}

.kp-home-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
}

.kp-side-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 154px;
    border-radius: 4px;
    padding: 18px 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.kp-side-banner:before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.kp-side-banner-top {
    background: linear-gradient(102deg, #ff312f, #bb0f25);
}

.kp-side-banner-bottom {
    background: linear-gradient(102deg, #ecb16b, #d9934a);
}

.kp-side-chip {
    display: inline-block;
    width: fit-content;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kp-side-banner strong,
.kp-side-banner small {
    position: relative;
    z-index: 1;
}

.kp-side-banner strong {
    font-size: 28px;
    line-height: 1.1;
}

.kp-side-banner small {
    margin-top: 6px;
    font-size: 16px;
    opacity: 0.95;
}

@media (max-width: 1199.98px) {
    .kp-hero-copy h2 {
        font-size: 34px;
    }
}

@media (max-width: 991.98px) {
    .kp-hero-slide {
        min-height: 280px;
    }

    .kp-side-banner {
        min-height: 130px;
    }

    .kp-side-banner strong {
        font-size: 22px;
    }

    .kp-side-banner small {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .kp-hero-slide {
        min-height: 230px;
        padding: 16px;
    }

    .kp-hero-chip {
        font-size: 11px;
        margin-bottom: 8px;
        padding: 4px 9px;
    }

    .kp-hero-copy h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .kp-hero-copy p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .kp-hero-tag {
        font-size: 11px;
        padding: 4px 9px;
        border-width: 1px;
    }

    .kp-home-carousel .carousel-control-prev,
    .kp-home-carousel .carousel-control-next {
        width: 34px;
        height: 44px;
    }

    .kp-home-carousel .carousel-control-prev-icon,
    .kp-home-carousel .carousel-control-next-icon {
        background-size: 14px 14px;
    }

    .kp-side-banner {
        min-height: 110px;
        padding: 12px;
    }

    .kp-side-banner strong {
        font-size: 16px;
    }

    .kp-side-banner small {
        font-size: 12px;
    }
}

.kp-home-cat .kp-cat-box {
    background: #fff;
    border: 1px solid #ececec;
}

.kp-home-cat .kp-cat-heading {
    padding: 14px 20px;
    font-size: 30px;
    text-transform: uppercase;
    color: #666;
    border-bottom: 1px solid #ececec;
}

.kp-cat-item {
    min-height: 170px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 14px 10px;
    color: #222;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.kp-cat-item:hover {
    background: #fafafa;
    color: #222;
    transform: translateY(-1px);
}

.kp-cat-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #f1f1f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #af7c32;
    font-size: 38px;
}

.kp-cat-name {
    font-size: 17px;
    line-height: 1.35;
}

.kp-home-cat .row>.col:nth-child(10n) .kp-cat-item {
    border-right: 0;
}

@media (max-width: 1199.98px) {
    .kp-home-cat .row>.col:nth-child(10n) .kp-cat-item {
        border-right: 1px solid #ececec;
    }

    .kp-home-cat .row>.col:nth-child(5n) .kp-cat-item {
        border-right: 0;
    }
}

@media (max-width: 991.98px) {
    .kp-home-cat .kp-cat-heading {
        font-size: 24px;
        padding: 12px 14px;
    }

    .kp-home-cat .row>.col:nth-child(5n) .kp-cat-item {
        border-right: 1px solid #ececec;
    }

    .kp-home-cat .row>.col:nth-child(4n) .kp-cat-item {
        border-right: 0;
    }

    .kp-cat-item {
        min-height: 150px;
    }

    .kp-cat-icon {
        width: 74px;
        height: 74px;
        font-size: 32px;
    }

    .kp-cat-name {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .kp-home-cat .kp-cat-heading {
        font-size: 20px;
        padding: 10px 12px;
    }

    .kp-home-cat .row>.col:nth-child(4n) .kp-cat-item {
        border-right: 1px solid #ececec;
    }

    .kp-home-cat .row>.col:nth-child(3n) .kp-cat-item {
        border-right: 0;
    }

    .kp-cat-item {
        min-height: 130px;
        padding: 10px 8px;
        gap: 8px;
    }

    .kp-cat-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .kp-cat-name {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .kp-home-cat .row>.col:nth-child(3n) .kp-cat-item {
        border-right: 1px solid #ececec;
    }

    .kp-home-cat .row>.col:nth-child(2n) .kp-cat-item {
        border-right: 0;
    }
}

.kp-home-sale .kp-sale-box {
    background: #fff;
    padding: 16px 12px 14px;
}

.kp-sale-head {
    padding: 0 4px;
}

.kp-sale-title {
    font-size: 22px;
    line-height: 1;
    color: #af7c32;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.kp-sale-timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.kp-sale-timer span {
    width: 27px;
    height: 24px;
    border-radius: 2px;
    background: #1f1f1f;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kp-sale-viewall {
    color: #af7c32;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.kp-sale-viewall:hover {
    color: #af7c32;
}

.kp-sale-track-wrap {
    position: relative;
    margin-top: 10px;
}

.kp-sale-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 38px 2px 2px;
    scrollbar-width: none;
}

.kp-sale-track::-webkit-scrollbar {
    display: none;
}

.kp-sale-item {
    flex: 0 0 calc((100% - 60px) / 6);
    min-width: 0;
    scroll-snap-align: start;
}

.kp-sale-card {
    display: block;
    text-decoration: none;
}

.kp-sale-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 64px;
    background-size: cover;
}

.kp-thumb-1 {
    background: linear-gradient(140deg, #f6d89c, #ca8e5f);
}

.kp-thumb-2 {
    background: linear-gradient(140deg, #2a7bd9, #522fbe);
}

.kp-thumb-3 {
    background: linear-gradient(140deg, #b08a68, #5d626b);
}

.kp-thumb-4 {
    background: linear-gradient(140deg, #adadad, #ededed);
}

.kp-thumb-5 {
    background: linear-gradient(140deg, #e11f2d, #8d0212);
}

.kp-thumb-6 {
    background: linear-gradient(140deg, #ececec, #cad6e6);
    color: #3875bf;
}

.kp-thumb-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #d0011b;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    padding: 5px 8px;
}

.kp-thumb-tag-love {
    background: #f05323;
}

.kp-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: #fadb3d;
    color: #af7c32;
    font-size: 16px;
    line-height: 1;
    padding: 4px 8px 6px;
}

.kp-sale-price {
    margin: 8px 0 6px;
    text-align: center;
    color: #af7c32;
    font-size: 19px;
    line-height: 1.1;
}

.kp-sale-price sup {
    font-size: 80%;
    top: -0.3em;
}

.kp-sale-progress {
    height: 27px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5c2ad;
}

.kp-sale-progress:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 86%;
    background: linear-gradient(90deg, #f5a623, #f45d23);
}

.kp-sale-item:nth-child(2) .kp-sale-progress:before {
    width: 72%;
}

.kp-sale-item:nth-child(6) .kp-sale-progress:before {
    width: 86%;
}

.kp-sale-fire {
    position: relative;
    z-index: 1;
    color: #ffe03f;
    margin-right: 7px;
    font-size: 16px;
}

.kp-sale-progress-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.kp-sale-next {
    position: absolute;
    right: 4px;
    top: 46%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #8f8f8f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.kp-sale-next:hover {
    color: #666;
}

@media (max-width: 1199.98px) {
    .kp-sale-item {
        flex-basis: calc((100% - 36px) / 4);
    }
}

@media (max-width: 991.98px) {
    .kp-home-sale .kp-sale-box {
        padding: 12px 10px;
    }

    .kp-sale-title {
        font-size: 20px;
    }

    .kp-sale-timer span {
        width: 22px;
        height: 20px;
        font-size: 16px;
    }

    .kp-sale-viewall {
        font-size: 22px;
    }

    .kp-sale-item {
        flex-basis: calc((100% - 24px) / 3);
    }

    .kp-sale-thumb {
        font-size: 52px;
    }

    .kp-thumb-tag {
        font-size: 12px;
        padding: 4px 6px;
    }

    .kp-discount {
        font-size: 14px;
        padding: 3px 6px 4px;
    }

    .kp-sale-price {
        font-size: 28px;
    }

    .kp-sale-progress {
        height: 24px;
    }

    .kp-sale-progress-text {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .kp-sale-title {
        font-size: 18px;
    }

    .kp-sale-timer span {
        width: 20px;
        height: 18px;
        font-size: 13px;
    }

    .kp-sale-viewall {
        font-size: 16px;
    }

    .kp-sale-track {
        gap: 10px;
        padding-right: 2px;
    }

    .kp-sale-item {
        flex-basis: calc((100% - 10px) / 2);
    }

    .kp-sale-thumb {
        font-size: 44px;
    }

    .kp-sale-price {
        font-size: 24px;
        margin-top: 7px;
    }

    .kp-sale-progress {
        height: 22px;
    }

    .kp-sale-fire {
        font-size: 13px;
    }

    .kp-sale-progress-text {
        font-size: 11px;
    }
}

.kp-home-hot .kp-hot-box {
    background: #fff;
    border: 1px solid #ececec;
}

.kp-hot-head {
    padding: 14px 18px;
    border-bottom: 1px solid #ececec;
}

.kp-hot-title {
    font-size: 22px;
    line-height: 1.1;
    color: #af7c32;
    font-weight: 500;
    text-transform: uppercase;
}

.kp-hot-viewall {
    color: #af7c32;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

.kp-hot-viewall:hover {
    color: #af7c32;
}

.kp-hot-track-wrap {
    position: relative;
    padding: 12px 8px 14px;
}

.kp-hot-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 40px 0 2px;
    scrollbar-width: none;
}

.kp-hot-track::-webkit-scrollbar {
    display: none;
}

.kp-hot-item {
    flex: 0 0 calc((100% - 60px) / 6);
    min-width: 0;
    scroll-snap-align: start;
}

.kp-hot-card {
    display: block;
    color: #333;
    text-decoration: none;
}

.kp-hot-card:hover {
    color: #333;
}
.kp-hot-thumb img {
    width: 100%;
}
.kp-hot-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 82px;
}

.kp-hot-thumb-1 {
    background: linear-gradient(145deg, #f5f5f5, #dddddd);
    color: #2d2d2d;
}

.kp-hot-thumb-2 {
    background: linear-gradient(145deg, #2a2a2a, #4a4a4a);
    color: #ff3b30;
}

.kp-hot-thumb-3 {
    background: linear-gradient(145deg, #2f64d9, #ff5e2f);
    color: #fff;
}

.kp-hot-thumb-4 {
    background: linear-gradient(145deg, #18397e, #f3f3f3);
    color: #f7f7f7;
}

.kp-hot-thumb-5 {
    background: linear-gradient(145deg, #1b1b1b, #464646);
    color: #f7f7f7;
}

.kp-hot-thumb-6 {
    background: linear-gradient(145deg, #736d73, #f4dbe1);
    color: #f8f8f8;
}

.kp-hot-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff7336;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 8px 6px;
}

.kp-hot-top:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    border-left: 12px solid #ff7336;
    border-top: 8px solid transparent;
}

.kp-hot-sold {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(120, 120, 120, 0.55);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 7px 6px;
}

.kp-hot-name {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.25;
    color: #303030;
    font-weight: 400;
}

.kp-hot-next {
    position: absolute;
    right: 4px;
    top: 46%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #8f8f8f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.kp-hot-next:hover {
    color: #666;
}

@media (max-width: 1199.98px) {
    .kp-hot-item {
        flex-basis: calc((100% - 36px) / 4);
    }

    .kp-hot-name {
        font-size: 30px;
    }
}

@media (max-width: 991.98px) {
    .kp-hot-head {
        padding: 12px 12px;
    }

    .kp-hot-title {
        font-size: 20px;
    }

    .kp-hot-viewall {
        font-size: 24px;
    }

    .kp-hot-item {
        flex-basis: calc((100% - 24px) / 3);
    }

    .kp-hot-thumb {
        font-size: 62px;
    }

    .kp-hot-top {
        font-size: 13px;
        padding: 5px 6px 4px;
    }

    .kp-hot-top:after {
        border-left-width: 10px;
    }

    .kp-hot-sold {
        font-size: 13px;
        padding: 6px 4px;
    }

    .kp-hot-name {
        font-size: 22px;
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .kp-hot-title {
        font-size: 18px;
    }

    .kp-hot-viewall {
        font-size: 15px;
    }

    .kp-hot-track {
        gap: 10px;
        padding-right: 2px;
    }

    .kp-hot-item {
        flex-basis: calc((100% - 10px) / 2);
    }

    .kp-hot-thumb {
        font-size: 50px;
    }

    .kp-hot-name {
        font-size: 18px;
    }
}

.kp-home-today .kp-today-box {
    background: #fff;
    border: 1px solid #ececec;
    padding: 0 6px 8px;
}

.kp-today-head {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 76px;
    border-bottom: 4px solid #af7c32;
    margin: 0 -6px 12px;
}

.kp-today-title {
    color: #af7c32;
    font-size: 37px;
    font-weight: 500;
    text-transform: uppercase;
}

.kp-today-card {
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.kp-today-link {
    display: block;
    color: #222;
    text-decoration: none;
    height: 100%;
}

.kp-today-link:hover {
    color: #222;
}

.kp-today-thumb {
    aspect-ratio: 1 / 1;
    position: relative;
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 98px;
    color: #fff;
    overflow: hidden;
}

.kp-today-thumb-1 {
    background: linear-gradient(135deg, #c6c9cf, #6f7784);
}

.kp-today-thumb-2 {
    background: linear-gradient(135deg, #d9d9d9, #45454e);
}

.kp-today-thumb-3 {
    background: linear-gradient(135deg, #9ad1ee, #2e4d88);
}

.kp-today-thumb-4 {
    background: linear-gradient(135deg, #d7d9dc, #535a63);
}

.kp-today-thumb-5 {
    background: linear-gradient(135deg, #8dd2ff, #f4b2bf);
}

.kp-today-thumb-6 {
    background: linear-gradient(135deg, #f4f4f4, #3d3d3d);
}

.kp-today-thumb-7 {
    background: linear-gradient(135deg, #b6bde8, #d9e3f6);
}

.kp-today-thumb-8 {
    background: linear-gradient(135deg, #727272, #222);
}

.kp-today-thumb-9 {
    background: linear-gradient(135deg, #f5f7fb, #9ca8bc);
}

.kp-today-thumb-10 {
    background: linear-gradient(135deg, #b18c67, #252730);
}

.kp-today-thumb-11 {
    background: linear-gradient(135deg, #f2e7d6, #8f8072);
}

.kp-today-thumb-12 {
    background: linear-gradient(135deg, #b0e2f4, #8bc2dc);
}

.kp-today-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: #fadb3d;
    color: #af7c32;
    font-size: 14px;
    line-height: 1;
    padding: 4px 6px 5px;
}

.kp-today-voucher {
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ffcc00, #ff9d00);
    color: #0064d2;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    padding: 5px 8px;
}

.kp-today-voucher em {
    color: #fff;
    font-style: normal;
    font-size: 65%;
    margin-left: 3px;
}

.kp-today-thumb-next {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.kp-today-body {
    padding: 8px 8px 10px;
}

.kp-today-tags {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
}

.kp-today-tag {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 5px;
    border-radius: 3px;
    background: #ff6d4a;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.kp-today-tag-mall {
    background: #d5001b;
}

.kp-today-name {
    margin: 5px 0 8px;
    font-size: 16px;
    line-height: 1.25;
    color: #222;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kp-today-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.kp-today-price {
    color: #af7c32;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.kp-today-price sup {
    font-size: 52%;
    top: -0.25em;
}

.kp-today-sold {
    color: #1f1f1f;
    font-size: 16px;
    white-space: nowrap;
}

.kp-today-thumb img {
    height: 100%;
}

@media (max-width: 1399.98px) {
    .kp-today-title {
        font-size: 30px;
    }

    .kp-today-name {
        font-size: 23px;
    }

    .kp-today-price {
        font-size: 30px;
    }

    .kp-today-sold {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .kp-today-head {
        min-height: 62px;
    }

    .kp-today-title {
        font-size: 24px;
    }

    .kp-today-thumb {
        font-size: 74px;
    }

    .kp-today-discount {
        font-size: 18px;
    }

    .kp-today-voucher {
        font-size: 16px;
        padding: 4px 6px;
    }

    .kp-today-name {
        font-size: 16px;
    }

    .kp-today-price {
        font-size: 25px;
    }

    .kp-today-sold {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .kp-home-today .kp-today-box {
        padding: 0 4px 6px;
    }

    .kp-today-head {
        margin: 0 -4px 8px;
        min-height: 52px;
        border-bottom-width: 3px;
    }

    .kp-today-title {
        font-size: 18px;
    }

    .kp-today-thumb {
        font-size: 58px;
    }

    .kp-today-discount {
        font-size: 13px;
        padding: 3px 5px;
    }

    .kp-today-voucher {
        font-size: 12px;
    }

    .kp-today-tag {
        font-size: 10px;
        height: 16px;
    }

    .kp-today-name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .kp-today-price {
        font-size: 22px;
    }

    .kp-today-sold {
        font-size: 12px;
    }
}

.kp-footer {
    background: #f5f5f5;
    margin-top: 18px;
    padding: 32px 0 28px;
    border-top: 1px solid #e8e8e8;
}

.kp-footer-policies {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.kp-footer-policies li {
    position: relative;
    padding: 0 24px;
}

.kp-footer-policies li+li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #d6d6d6;
    transform: translateY(-50%);
}

.kp-footer-policies a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.kp-footer-policies a:hover {
    color: #444;
}

.kp-footer-certs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.kp-cert-badge {
    height: 42px;
    border-radius: 999px;
    background: #e02425;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.kp-cert-badge i {
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.kp-cert-seal {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #e02425;
    color: #e02425;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.kp-footer-company {
    margin: 10px 0 16px;
    text-align: center;
    color: #4e4e4e;
    font-size: 23px;
}

.kp-footer-info p {
    margin: 0 0 6px;
    text-align: center;
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .kp-footer {
        padding: 24px 0 20px;
    }

    .kp-footer-policies li {
        padding: 0 14px;
    }

    .kp-footer-policies a {
        font-size: 12px;
    }

    .kp-footer-company {
        font-size: 18px;
    }

    .kp-footer-info p {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .kp-footer-policies {
        row-gap: 8px;
    }

    .kp-footer-policies li {
        padding: 0 10px;
    }

    .kp-footer-policies li+li:before {
        display: none;
    }

    .kp-footer-certs {
        gap: 8px;
        margin-top: 18px;
    }

    .kp-cert-badge {
        height: 34px;
        font-size: 8px;
        padding: 0 8px;
        gap: 5px;
    }

    .kp-cert-badge i {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .kp-cert-seal {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-width: 2px;
    }

    .kp-footer-company {
        font-size: 15px;
        margin: 10px 0 12px;
    }

    .kp-footer-info p {
        font-size: 12px;
        line-height: 1.4;
    }
}

.kp-cat-page {
    background: #f5f5f5;
}

.kp-cat-sidebar {
    background: #fff;
    border: 1px solid #ececec;
    padding: 12px 0;
    position: sticky;
    top: 12px;
}

.kp-cat-side-title {
    margin: 0;
    padding: 0 14px 12px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #efefef;
    color: #1f1f1f;
}

.kp-cat-menu {
    padding: 8px 14px 0;
}

.kp-cat-menu li {
    margin-bottom: 8px;
}

.kp-cat-menu li:last-child {
    margin-bottom: 0;
}

.kp-cat-menu a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: 16px;
}

.kp-cat-menu li.active>a {
    color: #af7c32;
}

.kp-cat-menu li.active>a:before {
    content: "› ";
    font-size: 16px;
}

.kp-filter-group {
    border-top: 1px solid #efefef;
    margin-top: 12px;
    padding: 12px 14px 0;
}

.kp-filter-group h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.kp-filter-group h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.kp-filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 14px;
    color: #3f3f3f;
}

.kp-filter-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #af7c32;
}

.kp-filter-more {
    display: inline-block;
    margin-top: 4px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.kp-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.kp-btn-apply {
    width: 100%;
    background: #af7c32;
    color: #fff;
    border: 0;
}

.kp-btn-apply:hover {
    color: #fff;
    background: #df4123;
}

.kp-cat-sortbar {
    background: #ededed;
    border: 1px solid #e4e4e4;
    padding: 10px 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kp-sort-label {
    color: #666;
    font-size: 14px;
}

.kp-sort-btn {
    border-radius: 2px;
    background: #fff;
    border: 1px solid #e4e4e4;
    color: #222;
    font-size: 14px;
    min-width: 84px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kp-sort-btn.active {
    background: #af7c32;
    border-color: #af7c32;
    color: #fff;
}

.kp-sort-price {
    min-width: 140px;
    justify-content: space-between;
}

.kp-sort-price-wrap {
    position: relative;
}

.kp-sort-price-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    display: none;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 6px;
    z-index: 20;
}

.kp-sort-price-menu.is-show {
    display: block;
}

.kp-sort-price-option {
    width: 100%;
    border: 0;
    border-radius: 2px;
    background: transparent;
    text-align: left;
    padding: 8px 10px;
    font-size: 14px;
    color: #222;
}

.kp-sort-price-option:hover {
    background: #f5f5f5;
}

.kp-sort-page {
    color: #af7c32;
    font-size: 14px;
}

.kp-nav-btn {
    width: 34px;
    height: 32px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #e4e4e4;
    color: #777;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kp-cat-product {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.kp-cat-product-link {
    display: block;
    color: #222;
    text-decoration: none;
    height: 100%;
}

.kp-cat-product-link:hover {
    color: #222;
}

.kp-cat-thumb {
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 88px;
    color: #fff;
    overflow: hidden;
}

.kp-cat-thumb img {
    height: 100%;
}

.kp-cat-thumb-1 {
    background: linear-gradient(140deg, #f9c6d0, #8eb4cf);
}

.kp-cat-thumb-2 {
    background: linear-gradient(140deg, #f7f7f7, #2f7eb8);
    color: #2c4f7e;
}

.kp-cat-thumb-3 {
    background: linear-gradient(140deg, #f7b4c5, #f9efe8);
}

.kp-cat-thumb-4 {
    background: linear-gradient(140deg, #3f3f46, #7d6552);
}

.kp-cat-thumb-5 {
    background: linear-gradient(140deg, #ece8e4, #b5b0b9);
}

.kp-cat-thumb-6 {
    background: linear-gradient(140deg, #e3b0b4, #f5ede7);
}

.kp-cat-thumb-7 {
    background: linear-gradient(140deg, #daedfd, #9fc2e6);
}

.kp-cat-thumb-8 {
    background: linear-gradient(140deg, #d8dde1, #6f7b8d);
}

.kp-cat-thumb-9 {
    background: linear-gradient(140deg, #f7d95f, #f8fbff);
}

.kp-cat-thumb-10 {
    background: linear-gradient(140deg, #eaf5ff, #f4d9d0);
}

.kp-cat-thumb-11 {
    background: linear-gradient(140deg, #c9c7f4, #f5e9ff);
}

.kp-cat-thumb-12 {
    background: linear-gradient(140deg, #6d533d, #111);
}

.kp-cat-thumb-13 {
    background: linear-gradient(140deg, #52a3ff, #234489);
}

.kp-cat-thumb-14 {
    background: linear-gradient(140deg, #f4d0d5, #f9f1e9);
}

.kp-cat-thumb-15 {
    background: linear-gradient(140deg, #efefef, #d8d8d8);
    color: #777;
}

.kp-cat-off {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffe8d9;
    color: #af7c32;
    font-size: 16px;
    line-height: 1;
    padding: 3px 6px 4px;
}

.kp-cat-voucher {
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ffcc00, #ff9c00);
    color: #005dd0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 4px 6px;
}

.kp-cat-voucher em {
    font-style: normal;
    color: #fff;
    font-size: 58%;
    margin-left: 2px;
}

.kp-cat-body {
    padding: 7px 7px 8px;
}

.kp-cat-tags {
    min-height: 18px;
}

.kp-tag {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 5px;
    background: #ff724d;
    color: #fff;
    border-radius: 2px;
    font-size: 10px;
}

.kp-tag-#af7c32 {
    background: #af7c32;
}

.kp-tag-mall {
    background: #d0011b;
}

.kp-cat-body h3 {
    margin: 5px 0 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #222;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kp-cat-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.kp-cat-price {
    color: #af7c32;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.kp-cat-price sup {
    font-size: 55%;
    top: -0.25em;
}

.kp-cat-sold {
    color: #222;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .kp-cat-sidebar {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .kp-cat-sortbar {
        padding: 10px;
    }

    .kp-sort-btn {
        min-width: 74px;
        font-size: 13px;
    }

    .kp-sort-price {
        min-width: 120px;
    }

    .kp-cat-thumb {
        font-size: 72px;
    }

    .kp-cat-price {
        font-size: 22px;
    }

    .kp-cat-sold {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .kp-cat-side-title {
        font-size: 14px;
    }

    .kp-cat-menu a {
        font-size: 14px;
    }

    .kp-filter-group {
        padding-top: 10px;
    }

    .kp-filter-group h3 {
        font-size: 15px;
    }

    .kp-filter-group h4,
    .kp-filter-group label,
    .kp-filter-more {
        font-size: 13px;
    }

    .kp-cat-sortbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .kp-cat-thumb {
        font-size: 58px;
    }

    .kp-cat-off,
    .kp-cat-voucher {
        font-size: 12px;
    }

    .kp-cat-body h3 {
        font-size: 13px;
    }

    .kp-cat-price {
        font-size: 18px;
    }

    .kp-cat-sold {
        font-size: 11px;
    }
}

.kp-product-page {
    background: #f5f5f5;
}

.kp-p-breadcrumb {
    border-top: 4px solid #af7c32;
    background: #f0f0f0;
    color: #4a4a4a;
    font-size: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.kp-p-breadcrumb a {
    color: #0468d7;
    text-decoration: none;
}

.kp-p-main-box,
.kp-p-shop-box,
.kp-p-section-box {
    background: #fff;
    border: 1px solid #ececec;
}

.kp-p-main-box {
    margin-top: 10px;
    padding: 14px;
}

.kp-p-gallery,
.kp-p-info {
    height: 100%;
}

.kp-p-main-image img {
    max-height: 350px;
    width: auto;
}

.kp-p-main-image {


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    color: #3e3e3e;
}

.kp-p-main-title {
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 42px;
    color: #11a857;
    font-weight: 700;
}

.kp-p-main-off {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffe8d9;
    color: #af7c32;
    font-size: 22px;
    line-height: 1;
    padding: 5px 8px;
}

.kp-p-main-side {
    position: absolute;
    right: 8px;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kp-p-main-side span {
    width: 92px;
    min-height: 68px;
    border-radius: 14px;
    border: 2px solid #f6b6b4;
    background: #fff;
    color: #e05052;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 6px;
}

.kp-p-main-side i {
    font-size: 19px;
    margin-bottom: 4px;
}

.kp-p-main-voucher {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ffcb00, #ff9700);
    color: #005dcf;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 12px;
}

.kp-p-main-voucher em {
    font-style: normal;
    color: #fff;
    font-size: 40%;
    margin-left: 8px;
}

.kp-p-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    border: 1px solid #e9e9e9;
    text-decoration: none;
    color: #8e8e8e;
    font-size: 24px;
    background: #fafafa;
}

.kp-p-thumb.active {
    border-color: #af7c32;
    color: #af7c32;
}

.kp-p-share {
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
}

.kp-p-share a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9f3ff;
    color: #0a75dc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.kp-p-liked {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #e0e0e0;
}

.kp-p-info h1 {
    font-size: 40px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #222;
    font-weight: 500;
}

.kp-p-badge {
    display: inline-block;
    height: 22px;
    padding: 0 8px;
    background: #af7c32;
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    line-height: 22px;
    margin-right: 8px;
    vertical-align: middle;
}

.kp-p-score-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.kp-p-score-row a {
    color: #888;
    text-decoration: none;
}

.kp-p-score {
    color: #af7c32;
}

.kp-p-score i {
    color: #f7b500;
    margin-left: 2px;
}

.kp-p-price-box {
    background: #fafafa;
    border: 1px solid #f2f2f2;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.kp-p-price-now {
    font-size: 50px;
    line-height: 1;
    color: #af7c32;
}

.kp-p-price-now sup,
.kp-p-price-old sup {
    font-size: 52%;
    top: -0.25em;
}

.kp-p-price-old {
    color: #9c9c9c;
    font-size: 30px;
    text-decoration: line-through;
}

.kp-p-price-off {
    display: inline-flex;
    align-items: center;
    height: 20px;
    background: #af7c32;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    padding: 0 5px;
}

.kp-p-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    margin: 12px 0;
}

.kp-p-label {
    color: #757575;
    font-size: 18px;
}

.kp-p-content p {
    margin: 0 0 5px;
    font-size: 18px;
    color: #303030;
}

.kp-p-sizechart {
    color: #0468d7;
    text-decoration: none;
    font-size: 18px;
}

.kp-variant-btn {
    border-radius: 2px;
    border: 1px solid #e3e3e3;
    background: #fff;
    color: #222;
    font-size: 16px;
    padding: 7px 10px;
}

.kp-variant-btn.active {
    border-color: #af7c32;
    color: #af7c32;
    background: #fff8f6;
}

.kp-qty {
    width: 168px;
}

.kp-btn-cart,
.kp-btn-buy {
    height: 44px;
    border-radius: 2px;
    font-size: 20px;
    padding: 0 18px;
    min-width: 180px;
}

.kp-btn-cart {
    border: 1px solid #af7c32;
    color: #af7c32;
    background: #fff8f5;
}

.kp-btn-buy {
    background: #af7c32;
    border: 1px solid #af7c32;
    color: #fff;
}

.kp-p-shop-box {
    padding: 14px;
}

.kp-shop-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff7cc, #a36b25);
    color: #fff;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kp-shop-name {
    font-size: 28px;
    line-height: 1.2;
    color: #222;
}

.kp-shop-online {
    font-size: 17px;
    color: #7b7b7b;
}

.kp-btn-chat,
.kp-btn-view {
    border-radius: 2px;
    height: 32px;
    font-size: 15px;
    padding: 0 14px;
}

.kp-btn-chat {
    border: 1px solid #af7c32;
    color: #af7c32;
    background: #fff7f4;
}

.kp-btn-view {
    border: 1px solid #d9d9d9;
    color: #555;
    background: #fff;
}

.kp-shop-stat {
    display: flex;
    justify-content: space-between;
    border-left: 1px solid #f0f0f0;
    padding: 0 8px;
    font-size: 16px;
}

.kp-shop-stat span {
    color: #8a8a8a;
}

.kp-shop-stat strong {
    color: #af7c32;
    font-weight: 500;
}

.kp-p-section-box {
    padding: 12px;
}

.kp-p-section-title {
    margin: 0;
    background: #f5f5f5;
    padding: 12px 14px;
    color: #222;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.kp-spec-list {
    padding: 14px;
}

.kp-spec-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    padding: 8px 0;
    font-size: 17px;
}

.kp-spec-item span:first-child {
    color: #8a8a8a;
}

.kp-spec-item a {
    color: #0468d7;
    text-decoration: none;
}

.kp-p-desc {
    padding: 14px;
    color: #222;
    font-size: 17px;
    line-height: 1.5;
}

.kp-p-desc p {
    margin: 0 0 6px;
}

.kp-review-summary {
    margin: 12px 0;
    border: 1px solid #efdfd8;
    background: #fff9f7;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.kp-review-score strong {
    color: #af7c32;
    font-size: 30px;
    font-weight: 500;
}

.kp-review-score span {
    color: #af7c32;
    font-size: 28px;
    margin-left: 5px;
}

.kp-stars {
    color: #af7c32;
    font-size: 28px;
}

.kp-stars.small {
    font-size: 20px;
}

.kp-review-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.kp-review-filters .btn {
    height: 32px;
    border-radius: 2px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 0 12px;
}

.kp-review-filters .btn.active {
    border-color: #af7c32;
    color: #af7c32;
}

.kp-review-item {
    padding: 14px;
    border-top: 1px solid #efefef;
    font-size: 15px;
    color: #2f2f2f;
}

.kp-r-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #a0a0a0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.kp-r-user {
    font-size: 15px;
    color: #111;
}

.kp-r-meta {
    margin: 4px 0 8px;
    color: #8d8d8d;
    font-size: 13px;
}

.kp-r-media {
    width: 64px;
    height: 64px;
    background: linear-gradient(140deg, #dfdfdf, #c5c5c5);
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
}

.kp-r-like {
    color: #8f8f8f;
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .kp-p-main-image {
        min-height: 360px;
        font-size: 140px;
    }

    .kp-p-main-title {
        font-size: 28px;
    }

    .kp-p-main-voucher {
        font-size: 36px;
    }

    .kp-p-info h1 {
        font-size: 30px;
    }

    .kp-p-price-now {
        font-size: 38px;
    }

    .kp-p-price-old {
        font-size: 24px;
    }

    .kp-p-label,
    .kp-p-content p,
    .kp-p-sizechart {
        font-size: 15px;
    }

    .kp-p-section-title {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    .kp-p-main-image {
        min-height: 320px;
        font-size: 120px;
    }

    .kp-p-main-side {
        top: 64px;
    }

    .kp-p-main-side span {
        width: 72px;
        min-height: 56px;
        font-size: 11px;
    }

    .kp-p-main-voucher {
        font-size: 28px;
    }

    .kp-p-row {
        grid-template-columns: 92px 1fr;
    }

    .kp-p-main-box {
        padding: 10px;
    }

    .kp-btn-cart,
    .kp-btn-buy {
        font-size: 16px;
        min-width: 150px;
        height: 40px;
    }

    .kp-shop-name {
        font-size: 22px;
    }

    .kp-shop-online {
        font-size: 14px;
    }

    .kp-shop-stat {
        font-size: 14px;
    }

    .kp-spec-item {
        grid-template-columns: 140px 1fr;
        font-size: 15px;
    }

    .kp-p-desc {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .kp-p-breadcrumb {
        font-size: 12px;
        padding: 8px 10px;
    }

    .kp-p-main-image {
        min-height: 250px;
        font-size: 88px;
    }

    .kp-p-main-title {
        font-size: 20px;
        left: 10px;
    }

    .kp-p-main-side {
        display: none;
    }

    .kp-p-main-voucher {
        font-size: 22px;
        padding: 6px 8px;
    }

    .kp-p-thumb {
        min-height: 52px;
        font-size: 18px;
    }

    .kp-p-share,
    .kp-p-share span,
    .kp-p-liked {
        font-size: 13px;
    }

    .kp-p-info h1 {
        font-size: 22px;
    }

    .kp-p-score-row {
        font-size: 13px;
        gap: 10px;
    }

    .kp-p-price-now {
        font-size: 34px;
    }

    .kp-p-price-old {
        font-size: 20px;
    }

    .kp-p-row {
        grid-template-columns: 1fr;
        gap: 4px;
        margin: 10px 0;
    }

    .kp-p-label {
        font-size: 14px;
    }

    .kp-p-content p,
    .kp-p-sizechart {
        font-size: 14px;
    }

    .kp-variant-btn {
        font-size: 13px;
        padding: 6px 8px;
    }

    .kp-qty {
        width: 135px;
    }

    .kp-btn-cart,
    .kp-btn-buy {
        min-width: 140px;
        font-size: 14px;
        height: 36px;
    }

    .kp-p-shop-box {
        padding: 10px;
    }

    .kp-shop-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .kp-btn-chat,
    .kp-btn-view {
        font-size: 12px;
        padding: 0 8px;
        height: 28px;
    }

    .kp-shop-stat {
        border-left: 0;
        border-top: 1px solid #f2f2f2;
        padding: 4px 0;
        font-size: 13px;
    }

    .kp-p-section-title {
        font-size: 19px;
        padding: 9px 10px;
    }

    .kp-spec-list,
    .kp-p-desc {
        padding: 10px;
    }

    .kp-spec-item {
        grid-template-columns: 1fr;
        gap: 2px;
        font-size: 13px;
        padding: 6px 0;
    }

    .kp-review-summary {
        padding: 10px;
        gap: 10px;
    }

    .kp-review-score strong {
        font-size: 34px;
    }

    .kp-review-score span,
    .kp-stars {
        font-size: 20px;
    }

    .kp-review-filters .btn {
        font-size: 12px;
        height: 30px;
        padding: 0 8px;
    }

    .kp-review-item {
        padding: 10px;
        font-size: 13px;
    }

    .kp-r-media {
        width: 52px;
        height: 52px;
    }
}

.kp-regis-page {
    min-height: 100vh;
    background: #d7c79a;
    display: flex;
    align-items: center;
    padding: 36px 0;
}

.kp-regis-brand {
    color: #fff;
    text-align: center;
}

.kp-regis-logo-mark {

    margin: 0 auto 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    line-height: 1;
    position: relative;
}



.kp-regis-logo-text {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 22px;
}

.kp-regis-brand p {
    margin: 0;
    font-size: 44px;
    line-height: 1.45;
}

.kp-regis-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    padding: 20px;
}

.kp-regis-card h1 {
    font-size: 34px;
    margin: 0 0 18px;
    color: #222;
    font-weight: 500;
}

.kp-regis-input {
    height: 42px;
    border-radius: 2px;
    border-color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 14px;
}

.kp-regis-submit {
    width: 100%;
    height: 36px;
    border: 0;
    border-radius: 2px;
    background: #ee7c67;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.kp-regis-submit:hover {
    background: #e26d57;
    color: #fff;
}

.kp-regis-divider {
    margin: 14px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    color: #b0b0b0;
    font-size: 12px;
}

.kp-regis-divider:before,
.kp-regis-divider:after {
    content: "";
    height: 1px;
    background: #e4e4e4;
}

.kp-social-btn {
    height: 36px;
    border-radius: 2px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #222;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.kp-social-btn i {
    font-size: 21px;
}

.kp-social-btn .fa-facebook {
    color: #2270e0;
}

.kp-social-btn .fa-google {
    color: #ea4335;
}

.kp-regis-terms {
    text-align: center;
    margin: 18px 0 12px;
    font-size: 13px;
    color: #222;
    line-height: 1.5;
}

.kp-regis-terms a {
    color: #af7c32;
    text-decoration: none;
}

.kp-regis-login {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #b3b3b3;
}

.kp-regis-login a {
    color: #af7c32;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .kp-regis-logo-mark {
        width: 140px;
        height: 140px;
        font-size: 90px;
        border-width: 6px;
    }



    .kp-regis-logo-text {
        font-size: 52px;
    }

    .kp-regis-brand p {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .kp-regis-page {
        min-height: auto;
        padding: 28px 0 38px;
    }

    .kp-regis-brand {
        margin-bottom: 10px;
    }

    .kp-regis-brand p {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {



    .kp-regis-logo-text {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .kp-regis-brand p {
        font-size: 18px;
    }

    .kp-regis-card {
        padding: 14px;
    }

    .kp-regis-card h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

.kp-profile-page {
    background: #f5f5f5;
    min-height: calc(100vh - 140px);
}

.kp-profile-sidebar {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 2px;
    padding: 16px 14px;
}

.kp-profile-user {
    gap: 12px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 14px;
    margin-bottom: 12px;
}

.kp-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6d6d6d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 500;
}

.kp-profile-user-name {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    line-height: 1.2;
}

.kp-profile-edit-link {
    font-size: 15px;
    color: #888;
    text-decoration: none;
}

.kp-profile-edit-link:hover {
    color: #666;
}

.kp-profile-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    text-decoration: none;
    padding: 7px 0;
    font-size: 16px;
}

.kp-profile-nav-item i {
    width: 20px;
    text-align: center;
    color: #296fd2;
    font-size: 17px;
}

.kp-profile-nav-group {
    margin-top: 2px;
}

.kp-profile-nav-sub a {
    display: block;
    text-decoration: none;
    color: #424242;
    padding: 6px 0 6px 30px;
    font-size: 15px;
    line-height: 1.2;
}

.kp-profile-nav-sub a.active {
    color: #af7c32;
}

.kp-profile-nav-sub a:hover,
.kp-profile-nav-item:hover {
    color: #af7c32;
}

.kp-profile-main {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 2px;
}

.kp-profile-main-head {
    padding: 20px 28px 16px;
    border-bottom: 1px solid #efefef;
}

.kp-profile-main-head h1 {
    margin: 0;
    color: #222;
    font-size: 34px;
    font-weight: 500;
}

.kp-profile-main-head p {
    margin: 6px 0 0;
    color: #555;
    font-size: 16px;
}

.kp-profile-main-body {
    padding: 26px 28px 30px;
}

.kp-profile-form .col-form-label {
    text-align: right;
    color: #6f6f6f;
    font-size: 16px;
    padding-right: 18px;
}

.kp-profile-form .form-control-plaintext,
.kp-profile-form span {
    color: #333;
    font-size: 16px;
}

.kp-profile-input {
    border-radius: 2px;
    border-color: #dcdcdc;
    height: 40px;
    font-size: 16px;
}

.kp-profile-input:focus {
    border-color: #cfcfcf;
    box-shadow: none;
}

.kp-profile-inline-link {
    margin-left: 8px;
    font-size: 15px;
    color: #2673dd;
    text-decoration: none;
}

.kp-profile-inline-link:hover {
    color: #1f63b9;
}

.kp-profile-radio label {
    margin: 0;
    color: #333;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.kp-profile-radio .form-check-input {
    margin-top: 0;
}

.kp-profile-save-btn {
    min-width: 88px;
    border-radius: 2px;
    border: 0;
    height: 40px;
    background: #af7c32;
    color: #fff;
    font-size: 16px;
}

.kp-profile-save-btn:hover {
    color: #fff;
    background: #e24021;
}

.kp-profile-photo-col {
    border-left: 1px solid #efefef;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-left: 20px;
}

.kp-profile-photo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #c84311;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    font-weight: 500;
}

.kp-profile-photo-avatar-img {
    object-fit: cover;
    background: #f5f5f5;
}

.kp-profile-upload-btn {
    min-width: 110px;
    height: 36px;
    border-radius: 2px;
    font-size: 15px;
    color: #555;
}

.kp-profile-photo-note {
    margin: 0;
    color: #9a9a9a;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 1199.98px) {
    .kp-profile-photo-col {
        border-left: 0;
        border-top: 1px solid #efefef;
        padding-left: 0;
        padding-top: 18px;
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .kp-profile-page {
        padding: 16px 0 26px;
    }

    .kp-profile-main-head,
    .kp-profile-main-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .kp-profile-form .col-form-label {
        text-align: left;
        padding-right: 12px;
        margin-bottom: 4px;
    }

    .kp-profile-nav-item {
        font-size: 16px;
    }

    .kp-profile-nav-sub a {
        font-size: 15px;
        padding-left: 30px;
    }
}

@media (max-width: 767.98px) {
    .kp-profile-main-head h1 {
        font-size: 24px;
    }

    .kp-profile-main-head p {
        font-size: 14px;
    }

    .kp-profile-form .col-form-label {
        font-size: 14px;
    }

    .kp-profile-form .form-control-plaintext,
    .kp-profile-form span,
    .kp-profile-radio label,
    .kp-profile-input {
        font-size: 14px;
    }

    .kp-profile-inline-link {
        font-size: 13px;
    }

    .kp-profile-save-btn {
        font-size: 14px;
    }

    .kp-profile-photo-note {
        font-size: 13px;
    }

    .kp-profile-upload-btn {
        font-size: 14px;
    }
}

.kp-buy-page {
    background: #f6f6f6;
    min-height: calc(100vh - 80px);
}

.kp-buy-topbar {
    border-top: 2px solid #af7c32;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.kp-buy-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.kp-buy-brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: #af7c32;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
}

.kp-buy-brand-text {
    color: #af7c32;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
}

.kp-buy-brand-sub {
    margin-left: 8px;
    color: #222;
    font-size: 36px;
    line-height: 1;
}

.kp-buy-sidebar-wrap {
    border-right: 1px solid #e7e7e7;
    min-height: calc(100vh - 56px);
    background: #fff;
}

.kp-buy-sidebar-toggle {
    border: 0;
    border-radius: 0;
    width: 100%;
    text-align: left;
    height: 44px;
    background: #fff;
    color: #222;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px;
}

.kp-buy-sidebar {
    padding: 10px 0;
}

.kp-buy-menu-group {
    padding: 0 16px 18px;
}

.kp-buy-menu-group:last-child {
    padding-bottom: 8px;
}

.kp-buy-menu-group h3 {
    margin: 8px 0 6px;
    color: #7c7c7c;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kp-buy-menu-group h3 i {
    color: #969696;
    font-size: 13px;
}

.kp-buy-menu-group a {
    display: block;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    line-height: 1.35;
    padding: 4px 8px;
    margin-left: 2px;
    border-radius: 3px;
}

.kp-buy-menu-group a.active,
.kp-buy-menu-group a:hover {
    color: #af7c32;
}

.kp-buy-main {
    padding: 16px;
}

.kp-buy-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.kp-buy-status-item {
    padding: 10px;
    border-radius: 6px;
}

.kp-buy-status-item.active {
    background: #f2f2f2;
}

.kp-buy-status-item strong {
    display: block;
    color: #1f66d5;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 6px;
}

.kp-buy-status-item span {
    display: block;
    color: #232323;
    font-size: 15px;
    line-height: 1.35;
}

.kp-buy-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.kp-buy-card-head h2 {
    margin: 0;
    color: #1f1f1f;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.kp-buy-card-head p {
    margin: 0;
    color: #8a8a8a;
    font-size: 15px;
}

.kp-buy-card-head a {
    text-decoration: none;
    white-space: nowrap;
    color: #1b66d8;
    font-size: 16px;
}

.kp-buy-metric h4 {
    margin: 0 0 8px;
    color: #343434;
    font-size: 14px;
    font-weight: 500;
}

.kp-buy-metric h4 i {
    color: #a4a4a4;
}

.kp-buy-metric strong {
    display: block;
    color: #222;
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
}

.kp-buy-metric span {
    color: #222;
    font-size: 30px;
    font-weight: 600;
}

.kp-buy-skeleton span {
    display: block;
    height: 8px;
    background: #efefef;
    border-radius: 999px;
    margin-bottom: 14px;
}

.kp-buy-skeleton span:first-child {
    width: 100%;
}

.kp-buy-skeleton span:last-child {
    width: 82%;
    margin-bottom: 0;
}

.kp-buy-skeleton-lg {
    padding: 6px 8px;
}

.kp-buy-skeleton-lg span {
    height: 10px;
}

.kp-buy-skeleton-lg span:nth-child(1) {
    width: 58%;
}

.kp-buy-skeleton-lg span:nth-child(2) {
    width: 98%;
}

.kp-buy-skeleton-lg span:nth-child(3) {
    width: 98%;
}

.kp-buy-skeleton-lg span:nth-child(4) {
    width: 98%;
    margin-bottom: 0;
}

.kp-sale-thumb img {
    height: 100%;
}

@media (max-width: 991.98px) {
    .kp-buy-sidebar-wrap {
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
        min-height: auto;
    }

    .kp-buy-main {
        padding: 12px;
    }

    .kp-buy-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .kp-buy-card-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .kp-buy-topbar {
        min-height: 52px;
    }

    .kp-buy-brand-text {
        font-size: 20px;
    }

    .kp-buy-brand-sub {
        font-size: 19px;
    }

    .kp-buy-status-item strong {
        font-size: 23px;
    }

    .kp-buy-status-item span {
        font-size: 13px;
    }

    .kp-buy-card-head h2 {
        font-size: 27px;
    }

    .kp-buy-card-head p {
        font-size: 13px;
    }

    .kp-buy-card-head a {
        font-size: 14px;
    }

    .kp-buy-metric strong {
        font-size: 26px;
    }

    .kp-buy-metric span {
        font-size: 15px;
    }
}

.kp-order-page {
    background: #f5f5f5;
    min-height: calc(100vh - 140px);
}

.kp-order-tabs {
    background: #fff;
    border: 1px solid #e9e9e9;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.kp-order-tabs a {
    color: #222;
    text-decoration: none;
    padding: 12px 18px;
    border-bottom: 2px solid transparent;
    font-size: 15px;
}

.kp-order-tabs a.active {
    color: #af7c32;
    border-bottom-color: #af7c32;
}

.kp-order-tabs a span {
    color: #af7c32;
}

.kp-order-search {
    background: #efefef;
    border: 1px solid #e5e5e5;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    margin-bottom: 10px;
}

.kp-order-search i {
    color: #999;
}

.kp-order-search input {
    border: 0;
    background: transparent;
    width: 100%;
    outline: none;
    color: #666;
    font-size: 15px;
}

.kp-order-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
}

.kp-order-shop-row {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kp-order-shop-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #222;
    font-size: 15px;
}

.kp-order-tag {
    background: #af7c32;
    color: #fff;
    font-size: 11px;
    border-radius: 2px;
    padding: 1px 4px;
}

.kp-order-chat,
.kp-order-shop-btn {
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    background: #fff;
    color: #555;
    font-size: 15px;
    line-height: 1;
    padding: 7px 10px;
}

.kp-order-chat {
    background: #af7c32;
    border-color: #af7c32;
    color: #fff;
}

.kp-order-shop-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.kp-order-delivery {
    color: #22a686;
}

.kp-order-status {
    color: #af7c32;
}

.kp-order-item {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.kp-order-item-left {
    display: flex;
    gap: 12px;
}

.kp-order-item-left img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    border: 1px solid #e4e4e4;
}

.kp-order-item-left h3 {
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.kp-order-item-left p {
    margin: 4px 0 2px;
    color: #777;
    font-size: 14px;
}

.kp-order-item-left span {
    color: #222;
    font-size: 14px;
}

.kp-order-item-price {
    min-width: 120px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.kp-order-item-price del {
    color: #b1b1b1;
    font-size: 14px;
}

.kp-order-item-price strong {
    color: #af7c32;
    font-size: 24px;
    font-weight: 400;
}

.kp-order-card-foot {
    border-top: 1px solid #efefef;
    padding: 14px 20px 18px;
}

.kp-order-total {
    text-align: right;
    color: #333;
    font-size: 24px;
}

.kp-order-total strong {
    color: #af7c32;
    margin-left: 4px;
    font-size: 40px;
    font-weight: 400;
}

.kp-order-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.kp-order-btn {
    min-width: 160px;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    color: #555;
    background: #fff;
    font-size: 14px;
    line-height: 1.1;
    padding: 10px
}

.kp-order-btn-primary {
    border-color: #af7c32;
    background: #af7c32;
    color: #fff;
}

.kp-order-btn-primary:hover {
    color: #fff;
    background: #af7c32;
    border-color: #af7c32;
}

@media (max-width: 991.98px) {
    .kp-order-tabs a {
        font-size: 15px;
        padding: 10px 12px;
    }

    .kp-order-item-left h3 {
        font-size: 17px;
    }

    .kp-order-total strong {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .kp-order-shop-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .kp-order-item {
        flex-direction: column;
    }

    .kp-order-item-price {
        text-align: left;
    }

    .kp-order-actions {
        justify-content: flex-start;
    }

    .kp-order-btn {
        min-width: 140px;
    }
}

.kp-store-page {
    background: #f5f5f5;
}

.kp-store-head {
    background: #fff;
    border: 1px solid #efefef;
}

.kp-store-owner {
    height: 100%;
    padding: 18px;
    border-radius: 2px;
    background: linear-gradient(135deg, #2d3153, #4f5378);
    color: #fff;
}

.kp-store-avatar-wrap {
    position: relative;
}

.kp-store-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.85);
    object-fit: cover;
}

.kp-store-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    background: #af7c32;
}

.kp-store-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    background: #af7c32;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

.kp-store-name {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    color: #fff;
}

.kp-store-online {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.kp-store-btn {
    flex: 1;
    min-width: 0;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    color: #fff;
    background: transparent;
    font-size: 14px;
}

.kp-store-btn:hover {
    color: #fff;
    border-color: #fff;
}

.kp-store-meta {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    align-content: center;
    padding: 18px 10px 18px 0;
}

.kp-store-meta-item {
    font-size: 19px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
}

.kp-store-meta-item span {
    color: #555;
    white-space: nowrap;
}

.kp-store-meta-item strong {
    color: #af7c32;
    font-weight: 500;
}

.kp-store-tabs {
    margin-top: 10px;
    border-top: 1px solid #f1f1f1;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0 14px;
    background: #fff;
}

.kp-store-tabs a {
    display: inline-flex;
    align-items: center;
    height: 52px;
    color: #444;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    font-size: 23px;
    white-space: nowrap;
}

.kp-store-tabs a.active,
.kp-store-tabs a:hover {
    color: #af7c32;
    border-color: #af7c32;
}

.kp-store-search {
    margin-top: 14px;
    padding: 12px;
    background: #fff;
    border: 1px solid #efefef;
}

.kp-store-search .form-control {
    border-radius: 2px;
    height: 42px;
    border-color: #e3e3e3;
}

.kp-store-search-btn,
.kp-store-reset-btn {
    border-radius: 2px;
    height: 42px;
    border: 1px solid #e3e3e3;
    background: #fff;
    color: #555;
    font-size: 14px;
}

.kp-store-search-btn {
    border-color: #af7c32;
    background: #af7c32;
    color: #fff;
}

.kp-store-search-btn:hover {
    color: #fff;
    border-color: #af7c32;
    background: #af7c32;
}

.kp-store-section {
    margin-top: 14px;
    background: #fff;
    border: 1px solid #efefef;
    padding: 14px;
}

.kp-store-section-head {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kp-store-section-head h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 26px;
    color: #444;
    font-weight: 500;
}

.kp-store-section-head a {
    color: #af7c32;
    text-decoration: none;
    font-size: 19px;
}

.kp-store-product {
    height: 100%;
    border: 1px solid #ececec;
    border-radius: 2px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.kp-store-product:hover {
    border-color: #ffd4ca;
    box-shadow: 0 10px 24px rgba(238, 77, 45, 0.14);
    transform: translateY(-2px);
}

.kp-store-product-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.kp-store-product-thumb {
    position: relative;
    padding-top: 100%;
    background: #fafafa;
}

.kp-store-product-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kp-store-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    background: #af7c32;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 2px;
}

.kp-store-product-body {
    padding: 8px 8px 10px;
}

.kp-store-product-body h3 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.35;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kp-store-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.kp-store-price-row strong {
    color: #af7c32;
    font-size: 19px;
    font-weight: 500;
}

.kp-store-price-row del {
    color: #a4a4a4;
    font-size: 16px;
}

.kp-store-product-foot {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.kp-store-rating {
    color: #f5a623;
    font-size: 13px;
}

.kp-store-product-foot span {
    color: #666;
    font-size: 14px;
}

@media (max-width: 1399.98px) {
    .kp-store-name {
        font-size: 28px;
    }

    .kp-store-meta-item {
        font-size: 16px;
    }

    .kp-store-tabs a {
        font-size: 17px;
    }

    .kp-store-section-head h2 {
        font-size: 20px;
    }

    .kp-store-section-head a {
        font-size: 16px;
    }

    .kp-store-product-body h3 {
        font-size: 15px;
        min-height: 42px;
    }

    .kp-store-price-row strong {
        font-size: 19px;
    }

    .kp-store-price-row del {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .kp-store-meta {
        padding: 4px 0 0;
        grid-template-columns: 1fr;
    }

    .kp-store-meta-item {
        font-size: 15px;
    }

    .kp-store-tabs {
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .kp-store-name {
        font-size: 22px;
    }

    .kp-store-online {
        font-size: 14px;
    }

    .kp-store-avatar {
        width: 72px;
        height: 72px;
    }

    .kp-store-section-head h2 {
        font-size: 17px;
    }

    .kp-store-section-head a {
        font-size: 14px;
    }
}
