/**
 * cmshop: чекаут + блок хелпера подписки (без инлайновых стилей).
 */

.cmshop-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.cmshop-block__title {
    max-width: 520px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.cmshop-block__hint {
    max-width: 520px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background: #eff6ff;
    border-left: 4px solid #60a5fa;
    font-size: 13px;
    line-height: 1.6;
    color: #1e3a5f;
    box-sizing: border-box;
}

.cmshop-block__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 520px;
    width: 100%;
}

.cmshop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    box-sizing: border-box;
}

.cmshop-link__glyph {
    flex-shrink: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmshop-link__glyph svg {
    display: block;
}

.cmshop-link__img {
    display: block;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.cmshop-link__label {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    min-width: 60px;
}

/* OAuth */
.cmshop-link--auth {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.cmshop-link--auth .cmshop-link__glyph {
    color: #2563eb;
}

/* Статус: подписан */
.cmshop-link--status.cmshop-link--subscribed {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #18a058;
}

.cmshop-link--status.cmshop-link--subscribed .cmshop-link__glyph {
    color: #18a058;
}

/* Пауза */
.cmshop-link--status.cmshop-link--paused {
    background: #fffbeb;
    border-color: #fde68a;
    color: #f0a020;
}

.cmshop-link--status.cmshop-link--paused .cmshop-link__glyph {
    color: #f0a020;
}

/* Нет подписки / гость */
.cmshop-link--status.cmshop-link--none {
    background: #fefce8;
    border-color: #fef08a;
    color: #ca8a04;
}

.cmshop-link--status.cmshop-link--none .cmshop-link__glyph {
    color: #ca8a04;
}
