.shop-choice-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    margin: 0 8px 6px 0;
    padding: 4px 12px 4px 7px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 9px;
    box-sizing: border-box;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .01em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .22);
    vertical-align: middle;
    white-space: nowrap;
    isolation: isolate;
    transform: translateZ(0);
}

.shop-choice-badge::before {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    margin-right: 6px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 6px;
    background: rgba(255, 255, 255, .2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
    font-size: 11px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.shop-choice-badge::after {
    position: absolute;
    z-index: 1;
    top: -18px;
    left: 32%;
    width: 24px;
    height: 66px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    content: "";
    pointer-events: none;
    transform: rotate(24deg);
}

.shop-choice-badge--excellent {
    border-color: #7c3aed;
    background: linear-gradient(135deg, #9333ea 0%, #6d28d9 58%, #4c1d95 100%);
    box-shadow: 0 4px 11px rgba(109, 40, 217, .33), inset 0 1px 0 rgba(255, 255, 255, .23);
}

.shop-choice-badge--excellent::before {
    content: "✦";
}

.shop-choice-badge--recommend {
    border-color: #058a86;
    background: linear-gradient(135deg, #14b8a6 0%, #0f8f8c 56%, #075e64 100%);
    box-shadow: 0 4px 11px rgba(13, 148, 136, .32), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.shop-choice-badge--recommend::before {
    content: "✓";
    font-size: 12px;
}

.shop-choice-badge--best {
    border-color: #c26b00;
    color: #fff9dc;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #a43d08 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, .4), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.shop-choice-badge--best::before {
    border-color: rgba(255, 247, 195, .75);
    background: rgba(92, 38, 3, .22);
    color: #fff7c2;
    content: "♛";
    font-size: 13px;
}

.shop-choice-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 29px;
    margin-bottom: 4px;
}

.shop-choice-badge-row--premium {
    min-height: 42px;
    margin: 4px 0 17px;
}

.shop-choice-badge-row--premium:empty {
    display: none;
}

.shop-choice-badge-row--premium .shop-choice-badge {
    min-height: 42px;
    margin: 0;
    padding: 6px 15px 6px 7px;
    border-width: 2px;
    border-radius: 13px 13px 13px 4px;
    font-size: 14px;
    letter-spacing: .04em;
}

.shop-choice-badge-row--premium .shop-choice-badge::before {
    width: 28px;
    height: 28px;
    margin-right: 9px;
    border-radius: 9px;
    font-size: 16px;
}

.shop-choice-badge-row--gold-overlay {
    position: absolute;
    z-index: 8;
    top: 12px;
    right: 12px;
    min-height: 0;
    margin: 0;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, .25));
}

.shop-choice-badge-row--gold-overlay:empty {
    display: none;
}

.shop-choice-badge-row--gold-overlay .shop-choice-badge {
    min-height: 34px;
    margin: 0;
    padding: 5px 12px 5px 6px;
    border-width: 2px;
    border-radius: 7px 7px 12px 7px;
    font-size: 12px;
}

.shop-choice-badge-row--gold-overlay .shop-choice-badge::before {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    border-radius: 7px;
    font-size: 13px;
}

@media (hover: hover) {
    .shop-choice-badge {
        transition: transform .18s ease, filter .18s ease;
    }

    .shop-choice-badge:hover {
        filter: saturate(1.08) brightness(1.05);
        transform: translateY(-1px);
    }
}

@media (max-width: 767px) {
    .shop-choice-badge {
        min-height: 25px;
        margin-right: 6px;
        padding: 3px 9px 3px 5px;
        border-radius: 8px;
        font-size: 11px;
    }

    .shop-choice-badge::before {
        width: 17px;
        height: 17px;
        margin-right: 5px;
        border-radius: 5px;
        font-size: 10px;
    }

    .shop-choice-badge--best::before {
        font-size: 11px;
    }

    .shop-choice-badge-row {
        min-height: 25px;
    }

    .shop-choice-badge-row--premium {
        min-height: 35px;
        margin: 2px 0 11px;
    }

    .shop-choice-badge-row--premium .shop-choice-badge {
        min-height: 35px;
        padding: 4px 10px 4px 5px;
        border-radius: 11px 11px 11px 4px;
        font-size: 12px;
    }

    .shop-choice-badge-row--premium .shop-choice-badge::before {
        width: 23px;
        height: 23px;
        margin-right: 7px;
        border-radius: 7px;
        font-size: 13px;
    }

    .shop-choice-badge-row--gold-overlay {
        top: 8px;
        right: 8px;
        min-height: 0;
    }

    .shop-choice-badge-row--gold-overlay .shop-choice-badge {
        min-height: 29px;
        padding: 4px 9px 4px 5px;
        font-size: 11px;
    }

    .shop-choice-badge-row--gold-overlay .shop-choice-badge::before {
        width: 19px;
        height: 19px;
        margin-right: 5px;
        font-size: 11px;
    }
}
