#tmc-upsell-root {
    --tmc-upsell-bg: #f6f6f6;
    --tmc-upsell-card: #ffffff;
    --tmc-upsell-text: #111111;
    --tmc-upsell-muted: #7d7d7d;
    --tmc-upsell-accent: #ff4c39;
    --tmc-upsell-accent-hover: #f03f2d;
    --tmc-upsell-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --tmc-upsell-radius: 22px;
    --tmc-upsell-width: 480px;
    --tmc-upsell-gap: 16px;
    --tmc-upsell-font: Arial, sans-serif;
}

#tmc-upsell-root,
#tmc-upsell-root *,
#tmc-upsell-root *::before,
#tmc-upsell-root *::after {
    box-sizing: border-box;
}

#tmc-upsell-root {
    width: 100%;
    max-width: var(--tmc-upsell-width);
    margin: 0 auto;
    padding: 28px 14px 34px;
    font-family: var(--tmc-upsell-font);
}

#tmc-upsell-root .tmc-upsell-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--tmc-upsell-text);
    text-transform: uppercase;
}

#tmc-upsell-root .tmc-upsell-slider {
    position: relative;
    overflow: hidden;
}

#tmc-upsell-root .tmc-upsell-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

#tmc-upsell-root .tmc-upsell-slide {
    min-width: 100%;
    padding: 0 6px;
    flex: 0 0 100%;
}

#tmc-upsell-root .tmc-upsell-card {
    background: var(--tmc-upsell-card);
    border-radius: var(--tmc-upsell-radius);
    box-shadow: var(--tmc-upsell-shadow);
    padding: 16px;
}

#tmc-upsell-root .tmc-upsell-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #f2f2f2;
    margin-bottom: 14px;
}

#tmc-upsell-root .tmc-upsell-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#tmc-upsell-root .tmc-upsell-name {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--tmc-upsell-text);
    min-height: 42px;
}

#tmc-upsell-root .tmc-upsell-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

#tmc-upsell-root .tmc-upsell-price-box {
    min-width: 0;
}

#tmc-upsell-root .tmc-upsell-old {
    font-size: 14px;
    color: var(--tmc-upsell-muted);
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 6px;
}

#tmc-upsell-root .tmc-upsell-new-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

#tmc-upsell-root .tmc-upsell-fire {
    font-size: 26px;
    line-height: 1;
}

#tmc-upsell-root .tmc-upsell-price {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: var(--tmc-upsell-text);
    white-space: nowrap;
}

#tmc-upsell-root .tmc-upsell-btn {
    flex: 0 0 auto;
    min-width: 165px;
    height: 58px;
    border: 0;
    border-radius: 16px;
    background: var(--tmc-upsell-accent);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    padding: 0 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

#tmc-upsell-root .tmc-upsell-btn:hover {
    background: var(--tmc-upsell-accent-hover);
    transform: translateY(-1px);
}

#tmc-upsell-root .tmc-upsell-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

#tmc-upsell-root .tmc-upsell-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    color: #222;
    font-size: 22px;
    cursor: pointer;
}

#tmc-upsell-root .tmc-upsell-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

#tmc-upsell-root .tmc-upsell-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d3d3d3;
    border: 0;
    cursor: pointer;
    padding: 0;
}

#tmc-upsell-root .tmc-upsell-dot.is-active {
    width: 24px;
    background: #222;
}

@media (max-width: 520px) {
    #tmc-upsell-root {
        padding-left: 10px;
        padding-right: 10px;
    }

    #tmc-upsell-root .tmc-upsell-card {
        padding: 14px;
    }

    #tmc-upsell-root .tmc-upsell-bottom {
        gap: 10px;
    }

    #tmc-upsell-root .tmc-upsell-btn {
        min-width: 150px;
        height: 56px;
        font-size: 16px;
    }

    #tmc-upsell-root .tmc-upsell-price {
        font-size: 20px;
    }
}