*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #f4f4f4;
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
}

body.store-theme-tiktok {
    margin: 0;
    min-height: 100%;
    background: #f4f4f4;
    color: #0b0b0b;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.32;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.store-theme-tiktok a {
    color: inherit;
    text-decoration: none;
}

.store-theme-tiktok button,
.store-theme-tiktok input,
.store-theme-tiktok select,
.store-theme-tiktok textarea {
    font: inherit;
}

.store-theme-tiktok button {
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.store-theme-tiktok img,
.store-theme-tiktok video {
    max-width: 100%;
}

.tiktok-storefront svg {
    display: block;
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
}

.tiktok-storefront {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    overflow: visible;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 28px 70px rgba(15, 23, 42, .18);
}

.tiktok-app-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(16px);
    isolation: isolate;
}

.tiktok-topbar {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px 36px 36px;
    align-items: center;
    gap: 4px;
    min-height: 54px;
    padding: 8px 14px 7px;
}

.tiktok-icon-button,
.tiktok-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #050505;
    cursor: pointer;
}

.tiktok-icon-button svg,
.tiktok-icon-link svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.45;
}

.tiktok-icon-button:active,
.tiktok-icon-link:active,
.tiktok-bottom-mini:active,
.tiktok-save-button:active {
    opacity: .62;
}

.tiktok-search {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 32px;
    padding: 0 10px;
    border-radius: 9px;
    background: #f1f1f2;
    color: #85858a;
}

.tiktok-search svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    color: #050505;
}

.tiktok-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #4d4d52;
    font-size: 14.5px;
}

.tiktok-search input::placeholder {
    color: #8b8b90;
    opacity: 1;
}

.tiktok-tabs {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
}

.tiktok-tabs.is-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--tiktok-tab-indicator-width, 0px);
    height: 2.5px;
    border-radius: 999px 999px 0 0;
    background: #0b0b0b;
    transform: translateX(var(--tiktok-tab-indicator-left, 20px));
    transition:
        transform .32s cubic-bezier(.2, .8, .2, 1),
        width .32s cubic-bezier(.2, .8, .2, 1);
    will-change: transform, width;
    pointer-events: none;
}

.tiktok-tabs::-webkit-scrollbar {
    display: none;
}

.tiktok-tabs a {
    position: relative;
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 7px 0 11px;
    color: #747474;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    outline: none;
    transition: color .22s ease, transform .22s ease;
    -webkit-tap-highlight-color: transparent;
}

.tiktok-tabs a:focus {
    outline: none;
}

.tiktok-tabs a:focus-visible::before {
    content: "";
    position: absolute;
    inset: 4px -8px 7px;
    border-radius: 9px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .16);
    pointer-events: none;
}

.tiktok-tabs a.is-active {
    color: #090909;
    transform: translateY(-1px);
}

.tiktok-tabs a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: #0b0b0b;
}

.tiktok-tabs.is-animated a.is-active::after {
    opacity: 0;
}

.tiktok-main {
    padding-bottom: calc(94px + var(--tiktok-mobile-viewport-gap, 0px));
    background: #f6f6f6;
}

.tiktok-product-page #overview,
.tiktok-product-page #reviews,
.tiktok-product-page #description,
.tiktok-product-page #recommendations {
    scroll-margin-top: 106px;
}

.tiktok-section {
    background: #fff;
    border-top: 10px solid #f6f6f6;
    padding: 16px 14px;
    overflow: hidden;
}

.tiktok-section:first-child {
    border-top: 0;
}

.tiktok-section.is-tiktok-section-entering {
    animation: tiktok-section-enter .42s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes tiktok-section-enter {
    from {
        opacity: .78;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tiktok-section__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.tiktok-section__title > span,
.tiktok-section__title > strong {
    min-width: 0;
}

.tiktok-section__title a,
.tiktok-section__title button {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 600;
}

.tiktok-chevron {
    width: 18px;
    height: 18px;
    color: #8b8b8b;
}

.tiktok-gallery {
    position: relative;
    background: #fff;
}

.tiktok-gallery-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    touch-action: pan-y;
    cursor: zoom-in;
    user-select: none;
}

.tiktok-gallery-stage img,
.tiktok-gallery-stage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .16s ease, transform .16s ease;
}

.tiktok-gallery-stage img {
    pointer-events: none;
}

.tiktok-gallery-stage video {
    pointer-events: auto;
    touch-action: pan-y;
}

.tiktok-gallery-stage.is-video {
    cursor: default;
}

.tiktok-gallery-stage.is-dragging img,
.tiktok-gallery-stage.is-dragging video {
    transform: scale(.992);
}

.tiktok-gallery-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 28px;
    color: #7b7b7b;
    text-align: center;
    background: linear-gradient(180deg, #fff, #f3f3f3);
}

.tiktok-gallery-counter {
    position: absolute;
    right: 18px;
    bottom: 16px;
    min-width: 40px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.tiktok-gallery-thumbs {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.tiktok-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
}

.tiktok-image-lightbox[hidden] {
    display: none;
}

.tiktok-image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
}

.tiktok-image-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
}

.tiktok-image-lightbox__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
}

.tiktok-image-lightbox__counter {
    min-width: 46px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    text-align: center;
}

.tiktok-image-lightbox__close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.tiktok-image-lightbox__close svg {
    width: 28px;
    height: 28px;
}

.tiktok-image-lightbox__stage {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 8px 0 calc(22px + env(safe-area-inset-bottom));
    overflow: hidden;
    touch-action: none;
}

.tiktok-image-lightbox__stage img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: calc(100vh - 88px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    object-fit: contain;
    transform-origin: center center;
    user-select: none;
}

.tiktok-image-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    transform: translateY(-50%);
}

.tiktok-image-lightbox__nav svg {
    width: 24px;
    height: 24px;
}

.tiktok-image-lightbox__nav--prev {
    left: 12px;
}

.tiktok-image-lightbox__nav--prev svg {
    transform: rotate(180deg);
}

.tiktok-image-lightbox__nav--next {
    right: 12px;
}

body.store-theme-tiktok.sabino-lightbox-open {
    overflow: hidden;
}

.tiktok-product-summary {
    background: #fff;
    padding: 13px 14px 15px;
}

.tiktok-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    color: #fe2c55;
    min-width: 0;
}

.tiktok-flash-price-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    margin: -13px -14px 10px;
    padding: 9px 14px 8px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(100deg, #ff5f22 0%, #ff7a24 54%, #ff8a2a 100%);
}

.tiktok-flash-price-row::after {
    content: "";
    position: absolute;
    top: -18px;
    right: 68px;
    width: 82px;
    height: 96px;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-18deg);
    pointer-events: none;
}

.tiktok-flash-price-row__price,
.tiktok-flash-price-row__deal {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tiktok-flash-price-row__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.tiktok-flash-price-row__deal {
    display: grid;
    justify-items: end;
    gap: 3px;
    text-align: right;
    color: #fff;
}

.tiktok-flash-price-row__deal strong {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.tiktok-flash-price-row__deal small {
    color: rgba(255, 255, 255, 0.94);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.tiktok-discount-badge {
    align-self: center;
    padding: 4px 6px;
    border-radius: 4px;
    background: #fe2c55;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.05;
}

.tiktok-price-prefix {
    color: #fe2c55;
    font-size: 13.5px;
    font-weight: 800;
}

.tiktok-price {
    color: #fe2c55;
    font-weight: 700;
    line-height: 1;
}

.tiktok-price__currency {
    font-size: 13px;
    margin-right: 1px;
}

.tiktok-price__major {
    font-size: 24px;
}

.tiktok-price__minor {
    font-size: 15px;
}

.tiktok-price-card-icon {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    color: #fe2c55;
}

.tiktok-price-card-icon svg {
    width: 16px;
    height: 16px;
}

.tiktok-flash-price-row .tiktok-price,
.tiktok-flash-price-row .tiktok-price-prefix,
.tiktok-flash-price-row .tiktok-price-card-icon {
    color: #fff;
}

.tiktok-flash-price-row .tiktok-price__currency {
    color: #fff;
}

.tiktok-flash-price-row .tiktok-compare {
    display: inline-block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
}

.tiktok-flash-price-row .tiktok-compare[hidden] {
    display: none;
}

.tiktok-compare {
    color: #8d8d8d;
    font-size: 12.5px;
    line-height: 1;
    text-decoration: line-through;
}

.tiktok-small-line {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    gap: 6px;
    margin-top: 11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #242424;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.tiktok-small-line > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-small-line svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.tiktok-small-line strong {
    color: #fe2c55;
}

.tiktok-small-line .tiktok-interest-free {
    color: #fe2c55;
    font-weight: 500;
}

.tiktok-small-line .tiktok-chevron {
    margin-left: auto;
}

.tiktok-payment-sheet {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    align-items: end;
    justify-items: center;
    color: #111;
}

.tiktok-payment-sheet[hidden] {
    display: none;
}

.tiktok-payment-sheet__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .38);
}

.tiktok-payment-sheet__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    max-height: 78vh;
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.tiktok-payment-sheet__grabber {
    width: 42px;
    height: 4px;
    margin: 9px auto 2px;
    border-radius: 999px;
    background: #dedede;
}

.tiktok-payment-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.tiktok-payment-sheet__header strong {
    font-size: 17px;
    font-weight: 850;
}

.tiktok-payment-sheet__close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #111;
}

.tiktok-payment-sheet__close svg {
    width: 24px;
    height: 24px;
}

.tiktok-payment-sheet__body {
    display: grid;
    gap: 12px;
    padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
}

.tiktok-payment-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: #fff7f9;
    color: #111;
}

.tiktok-payment-highlight svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: #fe2c55;
}

.tiktok-payment-highlight strong,
.tiktok-payment-highlight span {
    display: block;
}

.tiktok-payment-highlight strong {
    color: #fe2c55;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.05;
}

.tiktok-payment-highlight span {
    margin-top: 3px;
    color: #555;
    font-size: 13px;
}

.tiktok-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 32px;
    color: #555;
    font-size: 14px;
}

.tiktok-payment-row strong {
    color: #111;
    font-weight: 850;
    text-align: right;
}

.tiktok-payment-note {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    color: #707070;
    font-size: 13px;
    line-height: 1.35;
}

body.store-theme-tiktok.tiktok-payment-sheet-open {
    overflow: hidden;
}

body.store-theme-tiktok.tiktok-protection-sheet-open {
    overflow: hidden;
}

body.store-theme-tiktok.tiktok-variant-sheet-open {
    overflow: hidden;
}

body.store-theme-tiktok.tiktok-creator-player-open {
    overflow: hidden;
}

body.store-theme-tiktok.tiktok-reviews-sheet-open {
    overflow: hidden;
}

.tiktok-protection-sheet {
    position: fixed;
    inset: 0;
    z-index: 245;
    display: grid;
    align-items: end;
    justify-items: center;
    color: #111;
}

.tiktok-protection-sheet[hidden] {
    display: none;
}

.tiktok-protection-sheet__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .56);
}

.tiktok-protection-sheet__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    max-height: min(90vh, 780px);
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -18px 46px rgba(0, 0, 0, .26);
    overflow: hidden;
    transition: transform .18s ease;
    touch-action: pan-y;
}

.tiktok-protection-sheet__grabber {
    width: 40px;
    height: 4px;
    margin: 6px auto 0;
    border-radius: 999px;
    background: #d3d3d3;
}

.tiktok-protection-sheet__close {
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #000;
    padding: 0;
    cursor: pointer;
}

.tiktok-protection-sheet__close svg {
    width: 31px;
    height: 31px;
}

.tiktok-protection-sheet__body {
    max-height: calc(min(90vh, 780px) - 10px);
    padding: 29px 31px calc(30px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tiktok-protection-sheet__title {
    margin: 0 40px 32px 0;
    color: #80520e;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: 0;
}

.tiktok-protection-detail {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 18px;
    margin: 0 0 34px;
}

.tiktok-protection-detail__icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    color: #8a570e;
}

.tiktok-protection-detail__icon svg {
    width: 25px;
    height: 25px;
}

.tiktok-protection-detail h3 {
    margin: 0 0 10px;
    color: #80520e;
    font-size: 19px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: 0;
}

.tiktok-protection-detail p {
    margin: 0 0 13px;
    color: #191919;
    font-size: 15px;
    line-height: 1.36;
    font-weight: 400;
}

.tiktok-protection-detail a {
    display: inline-block;
    margin: 0 0 2px;
    color: #2b61a7;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 400;
    text-decoration: none;
}

.tiktok-protection-label {
    margin: 3px 0 9px !important;
    color: #191919 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
}

.tiktok-payment-logos,
.tiktok-security-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 8px;
    margin: 9px 0 14px;
}

.tiktok-payment-logos span,
.tiktok-security-logos span {
    display: inline-grid;
    place-items: center;
    min-width: 58px;
    height: 31px;
    padding: 0 9px;
    border-radius: 5px;
    background: #f7f8fa;
    color: #214b7a;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.tiktok-payment-logos .is-mastercard {
    color: #152947;
}

.tiktok-payment-logos .is-visa {
    color: #143f8f;
}

.tiktok-payment-logos .is-elo {
    color: #222;
}

.tiktok-payment-logos .is-amex {
    color: #1965a7;
}

.tiktok-payment-logos .is-pix {
    color: #008f85;
}

.tiktok-payment-logos .is-boleto {
    color: #111;
}

.tiktok-payment-logos .is-gpay {
    color: #3a6fbd;
}

.tiktok-security-logos span {
    min-width: 82px;
    height: 30px;
    color: #235498;
    font-size: 9px;
}

.tiktok-variant-sheet {
    position: fixed;
    inset: 0;
    z-index: 235;
    display: grid;
    align-items: end;
    justify-items: center;
    color: #111;
}

.tiktok-variant-sheet[hidden] {
    display: none;
}

.tiktok-variant-sheet__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .46);
}

.tiktok-variant-sheet__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    width: min(100%, 430px);
    max-height: min(78vh, 680px);
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -18px 42px rgba(0, 0, 0, .2);
    overflow: visible;
    animation: tiktokVariantSheetIn .22s cubic-bezier(.2, .85, .25, 1);
}

@keyframes tiktokVariantSheetIn {
    from {
        transform: translateY(18px);
        opacity: .88;
    }

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

.tiktok-variant-sheet__float-close {
    position: absolute;
    right: 16px;
    top: -52px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .56);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.tiktok-variant-sheet__float-close svg {
    width: 24px;
    height: 24px;
}

.tiktok-variant-sheet__grabber {
    width: 38px;
    height: 3px;
    margin: 7px auto 0;
    border-radius: 999px;
    background: #dedede;
}

.tiktok-variant-sheet__head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 16px 9px;
    align-items: center;
}

.tiktok-variant-sheet__head img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #f5f5f5;
    object-fit: cover;
}

.tiktok-variant-sheet__summary {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.tiktok-variant-sheet__price-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
}

.tiktok-variant-sheet__discount {
    padding: 3px 6px;
    border-radius: 6px;
    background: #fe2c55;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.tiktok-variant-sheet__discount[hidden],
.tiktok-variant-sheet__compare[hidden] {
    display: none;
}

.tiktok-variant-sheet__price-line strong {
    color: #fe2c55;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.tiktok-variant-sheet__compare {
    width: max-content;
    color: #777;
    font-size: 13px;
    line-height: 1;
    text-decoration: line-through;
}

.tiktok-variant-sheet__shipping {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    max-width: 100%;
    min-height: 21px;
    padding: 2px 6px;
    border-radius: 5px;
    background: #dff8f6;
    color: #038884;
    font-size: 13px;
    font-weight: 600;
}

.tiktok-variant-sheet__shipping svg {
    width: 15px;
    height: 15px;
}

.tiktok-variant-sheet__body {
    min-height: 0;
    padding: 10px 16px 16px;
    overflow: auto;
    overscroll-behavior: contain;
}

.tiktok-variant-sheet .tiktok-option-picker {
    gap: 18px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.tiktok-variant-sheet .tiktok-option-group {
    gap: 10px;
}

.tiktok-variant-sheet .tiktok-option-label {
    color: #111;
    font-size: 16px;
    font-weight: 600;
}

.tiktok-variant-sheet .tiktok-option-current-wrap {
    display: none;
}

.tiktok-variant-sheet .tiktok-option-values {
    gap: 8px;
}

.tiktok-variant-sheet .tiktok-option-values:has(.has-image) {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.tiktok-variant-sheet .tiktok-swatch {
    min-width: 0;
}

.tiktok-variant-sheet .tiktok-swatch label {
    min-height: 32px;
    border-color: #d9d9d9;
    border-radius: 7px;
    background: #f7f7f7;
    color: #111;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 10px;
}

.tiktok-variant-sheet .tiktok-swatch label.has-image {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 108px;
    min-height: 130px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    color: #1a1a1a;
}

.tiktok-swatch__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
    overflow: hidden;
}

.tiktok-swatch__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok-variant-sheet .tiktok-swatch label.has-image > span:last-child {
    display: block;
    padding: 8px 6px 9px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #fff;
}

.tiktok-variant-sheet .tiktok-swatch input:checked + label {
    border-color: #fe2c55;
    background: #fff;
    color: #111;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px #fe2c55;
}

.tiktok-variant-sheet .tiktok-swatch input:checked + label.has-image {
    color: #111;
    box-shadow: inset 0 0 0 1px #fe2c55;
}

@media (max-width: 360px) {
    .tiktok-variant-sheet .tiktok-swatch label.has-image {
        width: 102px;
        min-height: 123px;
    }
}

.tiktok-variant-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.tiktok-variant-quantity strong {
    font-size: 16px;
    font-weight: 600;
}

.tiktok-quantity-stepper {
    display: grid;
    grid-template-columns: 36px 46px 36px;
    align-items: center;
    min-height: 34px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f4f4;
}

.tiktok-quantity-stepper button {
    display: grid;
    place-items: center;
    height: 34px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 24px;
    line-height: 1;
}

.tiktok-quantity-stepper span {
    display: grid;
    place-items: center;
    height: 24px;
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    color: #111;
    font-size: 18px;
    font-weight: 500;
}

.tiktok-variant-sheet__footer {
    padding: 12px 16px calc(13px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, .07);
    background: #fff;
}

.tiktok-variant-submit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 49px;
    border: 0;
    border-radius: 999px;
    background: #fe2c55;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.tiktok-variant-submit span {
    color: #fff;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
}

.tiktok-variant-submit small {
    color: #fff;
    margin-top: 2px;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
}

.tiktok-variant-submit small[hidden] {
    display: none;
}

.tiktok-variant-submit:disabled,
.tiktok-variant-submit.is-unavailable {
    opacity: .55;
    cursor: not-allowed;
}

.tiktok-creator-player {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
}

.tiktok-creator-player[hidden] {
    display: none;
}

.tiktok-creator-player__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .72);
}

.tiktok-creator-player__dialog {
    position: relative;
    z-index: 1;
    width: min(100vw, 430px);
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    background: #000;
}

.tiktok-creator-player__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
    background: rgba(0, 0, 0, .72);
}

.tiktok-creator-player__toolbar strong {
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-creator-player__close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.tiktok-creator-player__close svg {
    width: 24px;
    height: 24px;
}

.tiktok-creator-player video {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #000;
}

.tiktok-reviews-sheet {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: grid;
    align-items: end;
    justify-items: center;
    color: #111;
}

.tiktok-reviews-sheet[hidden] {
    display: none;
}

.tiktok-reviews-sheet__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .42);
}

.tiktok-reviews-sheet__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    max-height: 86vh;
    max-height: 86dvh;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.tiktok-reviews-sheet__grabber {
    width: 42px;
    height: 4px;
    margin: 9px auto 2px;
    border-radius: 999px;
    background: #dedede;
}

.tiktok-reviews-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.tiktok-reviews-sheet__header strong,
.tiktok-reviews-sheet__header span {
    display: block;
}

.tiktok-reviews-sheet__header strong {
    font-size: 17px;
    font-weight: 850;
}

.tiktok-reviews-sheet__header span {
    margin-top: 2px;
    color: #707070;
    font-size: 13px;
}

.tiktok-reviews-sheet__close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #111;
}

.tiktok-reviews-sheet__close svg {
    width: 24px;
    height: 24px;
}

.tiktok-reviews-sheet__body {
    min-height: 0;
    overflow: auto;
    padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
}

.tiktok-reviews-summary {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.tiktok-reviews-summary__score {
    display: grid;
    gap: 4px;
}

.tiktok-reviews-summary__score strong {
    color: #111;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.tiktok-reviews-summary__score small {
    color: #707070;
    font-size: 12px;
}

.tiktok-reviews-breakdown {
    display: grid;
    gap: 7px;
}

.tiktok-reviews-breakdown__row {
    display: grid;
    grid-template-columns: 10px 14px minmax(0, 1fr) 40px;
    gap: 6px;
    align-items: center;
    color: #707070;
    font-size: 12px;
}

.tiktok-reviews-breakdown__row .tiktok-star svg {
    width: 12px;
    height: 12px;
}

.tiktok-reviews-breakdown__row div {
    height: 5px;
    border-radius: 999px;
    background: #eee;
    overflow: hidden;
}

.tiktok-reviews-breakdown__row i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ffc400;
}

.tiktok-reviews-breakdown__row strong {
    overflow: hidden;
    color: #707070;
    font-size: 12px;
    font-weight: 650;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-reviews-detail-list {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.tiktok-review-detail-card {
    display: grid;
    gap: 9px;
    padding: 13px 0 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    scroll-margin-top: 14px;
}

.tiktok-review-detail-card.is-highlighted {
    animation: tiktokReviewHighlight 1.15s ease;
}

@keyframes tiktokReviewHighlight {
    0%,
    100% {
        background: transparent;
    }
    25% {
        background: #fff7df;
    }
}

.tiktok-review-detail-card__head {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.tiktok-review-detail-card__head strong {
    display: block;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-review-detail-card p {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
}

.tiktok-review-detail-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.tiktok-review-detail-images img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #e8e8e8;
}

.tiktok-coupon-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    margin-top: 9px;
    padding: 5px 8px;
    border-radius: 5px;
    background: #fff0f5;
    color: #fe2c55;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
}

.tiktok-coupon-strip span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-coupon-strip svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

.tiktok-product-title-row {
    position: relative;
    min-height: 0;
    margin-top: 10px;
    padding-right: 42px;
}

.tiktok-product-title {
    margin: 0;
    color: #0b0b0b;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.13;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.tiktok-save-button {
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-grid;
    place-items: start center;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    border: 0;
    background: transparent;
    color: #111;
    padding: 0;
    cursor: pointer;
}

.tiktok-save-button svg {
    width: 28px;
    height: 28px;
}

.tiktok-save-button svg path {
    transition: fill .14s ease, stroke .14s ease, transform .14s ease;
}

.tiktok-save-button[aria-pressed="true"],
.tiktok-save-button.is-saved {
    color: #111;
}

.tiktok-save-button[aria-pressed="true"] svg path,
.tiktok-save-button.is-saved svg path {
    fill: currentColor;
    stroke: currentColor;
}

.tiktok-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: -2px;
    color: #111;
    font-size: 13px;
    line-height: 1.15;
}

.tiktok-star {
    display: inline-flex;
    color: #ffbf00;
}

.tiktok-rating-row .tiktok-star svg {
    width: 14px;
    height: 14px;
}

.tiktok-rating-row a,
.tiktok-rating-row span.is-link {
    color: #2e5a9f;
}

.tiktok-divider {
    height: 1px;
    margin: 14px -14px 0;
    background: rgba(0, 0, 0, .06);
}

.tiktok-info-list {
    background: #fff;
}

.tiktok-info-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 7px;
    width: 100%;
    min-height: 58px;
    padding: 10px 14px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
    color: #1f1f1f;
    font-family: inherit;
    font-size: 14.5px;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.tiktok-info-row > div {
    min-width: 0;
}

.tiktok-info-row > .tiktok-chevron {
    justify-self: end;
}

.tiktok-info-row:first-child {
    border-top: 0;
}

.tiktok-info-row__icon {
    color: #0d0d0d;
}

.tiktok-info-row__icon svg {
    width: 21px;
    height: 21px;
}

.tiktok-free-badge {
    display: inline-block;
    margin-right: 5px;
    padding: 2px 5px;
    border-radius: 5px;
    background: #d8fbf5;
    color: #178f88;
    font-size: 14px;
    font-weight: 800;
}

.tiktok-old-shipping {
    color: #757575;
    text-decoration: line-through;
}

.tiktok-option-previews {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

.tiktok-option-previews img,
.tiktok-option-previews span {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
    background: #f1f1f1;
    border: 1px solid rgba(0, 0, 0, .04);
}

.tiktok-protection {
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    align-items: start;
    gap: 9px;
    min-height: 78px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #80520e;
}

.tiktok-protection > .tiktok-info-row__icon {
    align-self: start;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 15px;
    border-radius: 0;
    background: transparent;
    color: #80520e;
    box-shadow: none;
    padding: 0;
}

.tiktok-protection > .tiktok-info-row__icon svg {
    width: 22px;
    height: 22px;
}

.tiktok-protection > .tiktok-chevron {
    align-self: start;
    margin-top: 19px;
    color: #8d8d8d;
}

.tiktok-protection-summary {
    display: grid;
    gap: 6px;
}

.tiktok-protection strong {
    display: block;
    margin: 0;
    color: #80520e;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 800;
}

.tiktok-protection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 9px;
    overflow: hidden;
    color: #242424;
}

.tiktok-protection-grid span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
    overflow: hidden;
    color: #262626;
    font-size: 12.8px;
    line-height: 1.16;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tiktok-protection-grid svg {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    color: #80520e;
}

@media (max-width: 360px) {
    .tiktok-protection-grid {
        grid-template-columns: 1fr;
    }

    .tiktok-protection {
        min-height: 92px;
    }
}

.tiktok-offers {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 3px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.tiktok-offers::-webkit-scrollbar {
    display: none;
}

.tiktok-offers-section .tiktok-section__title {
    margin-bottom: 10px;
}

.tiktok-offers-section .tiktok-gift-section {
    padding-top: 0;
}

.tiktok-offer-ticket {
    position: relative;
    flex: 0 0 min(294px, 82vw);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 11px 12px;
    border: 1px solid #d2f3f3;
    border-radius: 8px;
    background: #effdff;
    scroll-snap-align: start;
}

.tiktok-offer-ticket strong {
    display: block;
    margin-bottom: 3px;
    color: #111;
    font-size: 15px;
}

.tiktok-offer-ticket span {
    display: block;
    color: #6d6d6d;
    font-size: 13px;
    line-height: 1.18;
}

.tiktok-offer-ticket button {
    height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: #16c7c9;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.tiktok-offer-ticket button:active,
.tiktok-cart-cta:active,
.tiktok-buy-cta:active,
.tiktok-visit:active {
    transform: scale(.985);
}

.tiktok-gift-section {
    padding-top: 14px;
    background: linear-gradient(180deg, #fff 0%, #fff 72%, #fff7fa 100%);
}

.tiktok-gift-head {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 12px;
}

.tiktok-gift-head__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff1f5;
    color: #fe2c55;
}

.tiktok-gift-head__icon svg {
    width: 22px;
    height: 22px;
}

.tiktok-gift-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-bottom: 5px;
    padding: 3px 8px;
    border-radius: 5px;
    background: #fff1f5;
    color: #fe2c55;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.tiktok-gift-head h2 {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.tiktok-gift-clock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 24px;
    padding: 2px 7px;
    border-radius: 5px;
    background: #101010;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.tiktok-gift-note {
    margin: 7px 0 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.25;
}

.tiktok-gift-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-right: -14px;
    padding: 0 14px 3px 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.tiktok-gift-strip::-webkit-scrollbar {
    display: none;
}

.tiktok-gift-strip.is-single {
    display: block;
    overflow: visible;
    margin-right: 0;
    padding: 0;
    scroll-snap-type: none;
}

.tiktok-gift-card {
    position: relative;
    flex: 0 0 min(304px, 84vw);
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
        "image body"
        "image select";
    gap: 8px 10px;
    min-height: 100px;
    padding: 9px;
    border: 1px solid rgba(254, 44, 85, .38);
    border-radius: 9px;
    background: #fff;
    color: #111;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(254, 44, 85, .06);
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.tiktok-gift-strip.is-single .tiktok-gift-card {
    width: 100%;
    min-height: 106px;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    grid-template-areas:
        "image body select";
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.tiktok-gift-card:active {
    transform: scale(.99);
}

.tiktok-gift-card.is-selected {
    border-color: #fe2c55;
    background: linear-gradient(180deg, #fff 0%, #fff6f8 100%);
    box-shadow: inset 0 0 0 1px rgba(254, 44, 85, .16), 0 8px 22px rgba(254, 44, 85, .12);
}

.tiktok-gift-card.is-soldout {
    cursor: default;
    opacity: .58;
}

.tiktok-gift-card__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tiktok-gift-card__image {
    grid-area: image;
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 8px;
    overflow: hidden;
    background: #f2f2f2;
    align-self: start;
}

.tiktok-gift-strip.is-single .tiktok-gift-card__image {
    width: 84px;
    height: 84px;
    align-self: center;
}

.tiktok-gift-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok-gift-card__body {
    grid-area: body;
    min-width: 0;
}

.tiktok-gift-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tiktok-gift-card__body small {
    display: block;
    overflow: hidden;
    margin-top: 5px;
    color: #777;
    font-size: 11.5px;
    line-height: 1.18;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tiktok-gift-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px 6px;
    margin-top: 5px;
    line-height: 1.05;
}

.tiktok-gift-price span {
    color: #7a7a7a;
    font-size: 12px;
    text-decoration: line-through;
}

.tiktok-gift-price b {
    color: #111;
    font-size: 12.5px;
    font-weight: 850;
}

.tiktok-gift-price em {
    padding: 2px 5px;
    border-radius: 4px;
    background: #fe2c55;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
}

.tiktok-gift-card__select {
    grid-area: select;
    justify-self: start;
    align-self: end;
    min-height: 28px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffeef3;
    color: #fe2c55;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(254, 44, 85, .1);
}

.tiktok-gift-strip.is-single .tiktok-gift-card__select {
    justify-self: end;
    align-self: center;
    white-space: nowrap;
}

.tiktok-gift-card.is-selected .tiktok-gift-card__select {
    background: #fe2c55;
    color: #fff;
    box-shadow: 0 5px 14px rgba(254, 44, 85, .22);
}

.tiktok-gift-card__soldout {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .68);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.tiktok-gift-success {
    margin: 11px 0 0;
    padding: 9px 10px;
    border-radius: 8px;
    background: #effdff;
    color: #078785;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
}

.tiktok-video-strip,
.tiktok-product-strip {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 6px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.tiktok-video-strip::-webkit-scrollbar,
.tiktok-product-strip::-webkit-scrollbar {
    display: none;
}

.tiktok-creator-card {
    position: relative;
    flex: 0 0 110px;
    height: 144px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #dedede;
    color: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
}

.tiktok-creator-card img,
.tiktok-creator-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-creator-card:active {
    transform: scale(.985);
}

.tiktok-creator-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .65));
}

.tiktok-creator-play {
    position: absolute;
    top: 10px;
    left: 9px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .42);
    color: #fff;
}

.tiktok-creator-play svg {
    width: 13px;
    height: 13px;
}

.tiktok-creator-name {
    position: absolute;
    left: 8px;
    right: 7px;
    bottom: 9px;
    z-index: 2;
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-review-head {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.tiktok-review-head > span:not(.tiktok-star) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tiktok-review-head .tiktok-star svg {
    width: 18px;
    height: 18px;
}

.tiktok-review-head .tiktok-chevron {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-left: auto;
    color: #9b9b9b;
}

.tiktok-review-list {
    display: grid;
    gap: 14px;
}

.tiktok-review {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 70px;
    gap: 9px;
    align-items: start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tiktok-review:active,
.tiktok-review-head:active,
.tiktok-review-store-title:active,
.tiktok-review-ticket:active {
    transform: scale(.992);
}

.tiktok-review > div,
.tiktok-review > span {
    min-width: 0;
}

.tiktok-review-avatar {
    display: block;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e5e5;
}

.tiktok-review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.tiktok-review-stars {
    display: inline-flex;
    vertical-align: middle;
    gap: 1px;
    color: #ffc400;
    font-size: 15px;
}

.tiktok-review-stars svg {
    width: 15px;
    height: 15px;
}

.tiktok-review-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
    color: #898989;
    font-size: 14px;
}

.tiktok-review p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 5px 0 0;
    color: #222;
    font-size: 15px;
    line-height: 1.22;
}

.tiktok-review-thumb {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 9px;
    overflow: hidden;
    background: #e8e8e8;
}

.tiktok-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-review-plus {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 30px;
    padding: 3px 5px;
    border-radius: 9px 0 0 0;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.tiktok-review-store-title {
    width: 100%;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.tiktok-review-ticket {
    flex-basis: 160px;
    border-color: #f5e6c7;
    background: #fff9ed;
    color: #111;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.tiktok-review-ticket:first-child {
    flex-basis: 235px;
}

.tiktok-store-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tiktok-store-main {
    min-width: 0;
}

.tiktok-store-logo {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 1px solid rgba(18, 200, 198, .28);
    border-radius: 50%;
    background: #15100b;
    color: #090909;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.tiktok-store-logo svg {
    width: 27px;
    height: 27px;
}

.tiktok-store-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok-store-title-line {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin-bottom: 3px;
}

.tiktok-store-name {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    color: #090909;
    font-size: 16.5px;
    font-weight: 850;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tiktok-store-verified {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    max-width: none;
    min-height: 22px;
    padding: 3px 8px 3px 5px;
    border: 1px solid rgba(18, 200, 198, .26);
    border-radius: 999px;
    background: #effefe;
    color: #078b89;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 850;
    white-space: nowrap;
}

.tiktok-store-verified svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
}

.tiktok-store-verified span {
    overflow: visible;
    text-overflow: clip;
}

.tiktok-store-sold {
    display: block;
    overflow: hidden;
    color: #666;
    font-size: 13.5px;
    line-height: 1.18;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tiktok-visit {
    min-width: 67px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f3f3f3;
    color: #080808;
    font-weight: 800;
}

.tiktok-store-stats {
    display: flex;
    gap: 14px;
    color: #838383;
    font-size: 13px;
    flex-wrap: wrap;
}

.tiktok-store-stats strong {
    color: #101010;
}

.tiktok-card {
    flex: 0 0 108px;
    min-width: 108px;
    color: inherit;
}

.tiktok-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 7px;
    background: #f1f1f1;
}

.tiktok-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease;
}

.tiktok-card:active .tiktok-card__media img {
    transform: scale(1.02);
}

.tiktok-card__body {
    padding-top: 7px;
}

.tiktok-product-strip .tiktok-card__body {
    min-height: 44px;
}

.tiktok-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 32px;
    overflow: hidden;
    margin: 7px 0 4px;
    color: #191919;
    font-size: 13px;
    line-height: 1.18;
}

.tiktok-card__price {
    color: #191919;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.tiktok-card__price small {
    font-size: 10.5px;
    font-weight: 700;
}

.tiktok-card__discount {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 5px;
    border-radius: 4px;
    background: #ffe9f0;
    color: #fe2c55;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 750;
}

.tiktok-recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tiktok-recommend-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 7px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .035);
}

.tiktok-recommend-card .tiktok-card__media {
    border-radius: 7px 7px 0 0;
}

.tiktok-recommend-card .tiktok-card__body {
    padding: 8px 8px 10px;
}

.tiktok-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #fe2c55;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
}

.tiktok-details {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 8px 15px;
    margin: 0 0 12px;
    color: #797979;
    font-size: 15px;
}

.tiktok-details dt,
.tiktok-details dd {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tiktok-details dd {
    margin: 0;
    color: #4d4d4d;
}

.tiktok-description {
    display: block;
    max-height: none;
    min-height: 0;
    overflow: visible;
    color: #212121;
    font-size: 16px;
    line-height: 1.36;
    overflow-wrap: anywhere;
    word-break: normal;
}

.tiktok-description:empty {
    display: none;
}

.tiktok-description,
.tiktok-description * {
    color: #212121 !important;
    font-size: inherit;
    letter-spacing: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.tiktok-description * {
    max-width: 100%;
}

.tiktok-description img,
.tiktok-description video,
.tiktok-description iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 12px;
    border-radius: 8px;
    object-fit: contain;
}

.tiktok-description img.is-description-media-broken {
    display: none !important;
}

.tiktok-description img[hidden],
.tiktok-description video[hidden],
.tiktok-description iframe[hidden] {
    display: none !important;
}

.tiktok-description h1,
.tiktok-description h2,
.tiktok-description h3,
.tiktok-description p {
    margin: 0 0 12px;
}

.tiktok-description > :last-child {
    margin-bottom: 0;
}

.tiktok-description p:empty,
.tiktok-description div:empty {
    display: none;
}

.tiktok-option-picker {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.tiktok-option-group {
    display: grid;
    gap: 9px;
}

.tiktok-option-label {
    display: block;
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
}

.tiktok-option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 8px;
}

.tiktok-swatch {
    position: relative;
}

.tiktok-swatch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tiktok-swatch label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 7px;
    background: #f7f7f7;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.tiktok-swatch input:checked + label {
    border-color: #fe2c55;
    background: #fff1f5;
    color: #fe2c55;
}

.tiktok-swatch input:disabled + label,
.tiktok-swatch.is-disabled label,
.tiktok-swatch.is-out-of-stock label {
    opacity: .42;
}

.tiktok-personalization {
    margin-top: 14px;
}

.tiktok-personalization label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
}

.tiktok-personalization input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 8px;
    padding: 0 12px;
    outline: none;
}

.tiktok-personalization small {
    display: block;
    margin-top: 6px;
    color: #fe2c55;
}

.tiktok-bottom-bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 45px 45px minmax(122px, 1fr) minmax(128px, 1.05fr);
    align-items: center;
    gap: 7px;
    width: min(100%, 430px);
    min-height: 74px;
    padding: 9px 12px calc(10px + env(safe-area-inset-bottom));
    transform: translate3d(-50%, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 -8px 18px rgba(0, 0, 0, .04);
    backface-visibility: hidden;
    isolation: isolate;
    overflow: visible;
    will-change: transform;
}

.tiktok-bottom-bar::after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    height: calc(var(--tiktok-mobile-viewport-gap, 0px) + env(safe-area-inset-bottom) + 12px);
    background: #fff;
    pointer-events: none;
}

.tiktok-bottom-mini {
    display: grid;
    grid-template-rows: 26px 13px;
    align-items: center;
    justify-items: center;
    gap: 1px;
    width: 45px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #090909;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 13px;
    min-width: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    appearance: none;
}

.tiktok-bottom-mini svg {
    display: block;
    width: 25px;
    height: 25px;
    transform-origin: center;
}

.tiktok-bottom-mini span {
    display: block;
    width: 45px;
    height: 13px;
    color: #090909;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 13px;
    text-align: center;
}

.tiktok-bottom-mini:nth-child(2) svg {
    transform: translateY(1px) scale(.9);
}

.tiktok-bottom-mini svg path,
.tiktok-bottom-mini svg circle,
.tiktok-bottom-mini svg rect {
    stroke-width: 2.15;
}

.tiktok-cart-cta,
.tiktok-buy-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 49px;
    border: 0;
    border-radius: 999px;
    padding: 7px 14px;
    text-align: center;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.12;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    overflow-wrap: normal;
}

.tiktok-cart-cta span,
.tiktok-buy-cta span,
.tiktok-buy-cta small {
    display: block;
    max-width: 100%;
}

.store-theme-tiktok .tiktok-cart-cta {
    flex-direction: column;
    background: #f2f2f2;
    color: #111;
}

.store-theme-tiktok .tiktok-buy-cta {
    flex-direction: column;
    background: #fe2c55;
    color: #fff;
}

.tiktok-cart-cta span {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.12;
}

.tiktok-buy-cta span {
    font-size: 15.5px;
    font-weight: 850;
    line-height: 1.02;
}

.tiktok-buy-cta small {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.05;
    overflow-wrap: normal;
}

.tiktok-cart-cta:disabled,
.tiktok-buy-cta:disabled,
.tiktok-cart-cta.is-unavailable,
.tiktok-buy-cta.is-unavailable {
    opacity: .55;
    cursor: not-allowed;
}

.tiktok-scroll-top {
    position: fixed;
    right: max(16px, calc((100vw - 430px) / 2 + 14px));
    bottom: 88px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #000;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.96);
    transition: opacity .18s ease, transform .18s ease;
}

.tiktok-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.tiktok-empty {
    padding: 34px 20px;
    text-align: center;
    color: #777;
}

.tiktok-empty strong {
    display: block;
    margin-bottom: 6px;
    color: #111;
    font-size: 18px;
}

.tiktok-home-hero {
    padding: 18px;
    background: #fff;
}

.tiktok-home-hero h1 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.08;
}

.tiktok-home-hero p {
    margin: 0 0 15px;
    color: #666;
}

.tiktok-filter-form {
    display: grid;
    gap: 10px;
}

.tiktok-filter-form input,
.tiktok-filter-form select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
}

.tiktok-filter-form button,
.tiktok-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: #fe2c55;
    color: #fff;
    font-weight: 850;
}

.tiktok-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    border: 0;
    background: rgba(0, 0, 0, .36);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.tiktok-cart-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.tiktok-cart-drawer {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 101;
    width: min(100%, 430px);
    max-height: 82vh;
    transform: translate(-50%, 105%);
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 -20px 45px rgba(0, 0, 0, .18);
    transition: transform .22s ease;
    overflow: hidden;
}

.tiktok-cart-drawer.is-open {
    transform: translate(-50%, 0);
}

.tiktok-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.tiktok-cart-drawer__header strong {
    font-size: 18px;
}

.tiktok-cart-drawer__close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f4f4f4;
}

.tiktok-cart-drawer__body {
    max-height: 48vh;
    overflow-y: auto;
    padding: 6px 18px;
}

.tiktok-cart-empty {
    padding: 24px 0;
    color: #777;
    text-align: center;
}

.mini-cart__line-item,
.sabino-cart-item,
.tiktok-cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mini-cart__image-wrapper,
.sabino-cart-item__image,
.sabino-cart-item__image-placeholder,
.tiktok-cart-item__image,
.tiktok-cart-item__image-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f1f1;
}

.mini-cart__image-wrapper img,
.sabino-cart-item__image img,
.tiktok-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-cart__product-title,
.sabino-cart-item__title,
.tiktok-cart-item__title {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.mini-cart__property-list,
.sabino-cart-item__variant,
.tiktok-cart-item__variant {
    margin: 4px 0;
    padding: 0;
    list-style: none;
    color: #777;
    font-size: 12px;
}

.mini-cart__price-list,
.sabino-cart-item__pricing,
.sabino-cart-item__prices,
.tiktok-cart-item__pricing,
.tiktok-cart-item__prices {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
}

.mini-cart__price-list .price,
.sabino-cart-item__price,
.tiktok-cart-item__price {
    color: #fe2c55;
    font-weight: 900;
}

.price--compare,
.sabino-cart-item__compare,
.tiktok-cart-item__compare {
    color: #999;
    text-decoration: line-through;
}

.mini-cart__quantity,
.sabino-cart-item__actions,
.sabino-cart-item__bottom,
.tiktok-cart-item__actions,
.tiktok-cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.quantity-selector,
.sabino-cart-item__qty,
.tiktok-cart-item__qty {
    display: inline-flex;
    align-items: center;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 999px;
    overflow: hidden;
}

.quantity-selector__button,
.sabino-cart-item__qty button,
.tiktok-cart-item__qty button {
    width: 30px;
    height: 30px;
    border: 0;
    background: #fff;
}

.quantity-selector__value,
.sabino-cart-item__qty-value,
.tiktok-cart-item__qty-value {
    width: 28px;
    border: 0;
    text-align: center;
    font-weight: 800;
}

.mini-cart__quantity-remove,
.sabino-cart-item__remove,
.tiktok-cart-item__remove {
    border: 0;
    background: transparent;
    color: #777;
    font-size: 12px;
}

.tiktok-cart-drawer__footer {
    padding: 14px 18px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.tiktok-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.tiktok-cart-subtotal strong {
    color: #fe2c55;
}

.tiktok-cart-checkout {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: #fe2c55;
    color: #fff;
    font-weight: 900;
}

.tiktok-cart-checkout:disabled {
    opacity: .5;
}

.sabino-scroll-locked {
    overflow: hidden;
}

@media (max-width: 480px) {
    .tiktok-storefront {
        max-width: none;
        box-shadow: none;
    }

    .tiktok-bottom-bar,
    .tiktok-cart-drawer {
        width: 100%;
    }

    .tiktok-scroll-top {
        right: 16px;
    }
}

@media (max-width: 390px) {
    .tiktok-topbar {
        grid-template-columns: 34px minmax(0, 1fr) 34px 34px 34px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .tiktok-icon-button,
    .tiktok-icon-link {
        width: 34px;
        height: 34px;
    }

    .tiktok-icon-button svg,
    .tiktok-icon-link svg {
        width: 25px;
        height: 25px;
    }

    .tiktok-tabs {
        gap: 7px;
        padding: 0 10px;
    }

    .tiktok-tabs a {
        font-size: 13.3px;
    }

    .tiktok-gift-card {
        flex-basis: min(284px, 84vw);
        grid-template-columns: 66px minmax(0, 1fr);
        min-height: 94px;
        padding: 9px;
    }

    .tiktok-gift-card__image {
        width: 66px;
        height: 66px;
    }

    .tiktok-gift-head h2 {
        font-size: 17px;
    }

    .tiktok-bottom-bar {
        grid-template-columns: 40px 40px minmax(106px, 1fr) minmax(116px, 1.06fr);
        gap: 5px;
        min-height: 72px;
        padding: 8px 8px calc(9px + env(safe-area-inset-bottom));
    }

    .tiktok-bottom-mini {
        grid-template-rows: 27px 13px;
        width: 40px;
        height: 46px;
        font-size: 10.5px;
    }

    .tiktok-bottom-mini svg {
        width: 25px;
        height: 25px;
    }

    .tiktok-cart-cta,
    .tiktok-buy-cta {
        height: 48px;
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .tiktok-cart-cta span {
        font-size: 14px;
    }

    .tiktok-buy-cta span {
        font-size: 14.5px;
    }

    .tiktok-buy-cta small {
        margin-top: 2px;
        font-size: 10.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tiktok-tabs.is-animated::after,
    .tiktok-tabs a {
        transition: none;
    }

    .tiktok-section.is-tiktok-section-entering {
        animation: none;
    }
}
