/* Author Igor Veynik | Site: NexusLab.ru | Telegram: @thenexus | created 12.08.2026 | updated 12.08.2026 */
/* LS-14: блок подбора клея в корзине */

.ls14-glue {
    margin: 24px 0 8px;
    padding: 20px;
    border: 1px solid #e6e3df;
    border-radius: 14px;
    background: #fbfaf8;
}

.ls14-glue__head {
    margin-bottom: 14px;
}

.ls14-glue__title {
    font-size: 18px;
    font-weight: 600;
    color: #23201d;
}

.ls14-glue__sub {
    margin-top: 4px;
    font-size: 13px;
    color: #857e76;
}

.ls14-glue__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.ls14-glue__card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #ece8e3;
    border-radius: 10px;
    background: #fff;
}

.ls14-glue__card--own {
    border-color: #d7c4ad;
    box-shadow: 0 0 0 1px rgba(168, 96, 39, .08);
}

.ls14-glue__imglink {
    flex: 0 0 64px;
}

.ls14-glue__img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f3f0;
}

.ls14-glue__img--empty {
    background: #f0edea;
}

.ls14-glue__body {
    min-width: 0;
    flex: 1 1 auto;
}

.ls14-glue__brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #a8917a;
}

.ls14-glue__name {
    display: block;
    margin: 2px 0 6px;
    font-size: 13px;
    line-height: 1.3;
    color: #23201d;
    text-decoration: none;
}

.ls14-glue__name:hover {
    color: #a86027;
}

.ls14-glue__calc {
    font-size: 13px;
    color: #4d4741;
}

.ls14-glue__hint {
    color: #9b938b;
}

.ls14-glue__price {
    margin-top: 2px;
    font-size: 13px;
    color: #4d4741;
}

.ls14-glue__price--none {
    color: #9b938b;
}

.ls14-glue__inbasket {
    margin-top: 2px;
    font-size: 12px;
    color: #6f9457;
}

.ls14-glue__add {
    margin-top: 8px;
    padding: 7px 12px;
    border: 0;
    border-radius: 8px;
    background: #a86027;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.ls14-glue__add:hover {
    background: #90501f;
}

.ls14-glue__add:disabled {
    opacity: .6;
    cursor: default;
}

.ls14-glue__more {
    margin-top: 12px;
    padding: 8px 14px;
    border: 1px solid #ddd6cd;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    color: #4d4741;
    cursor: pointer;
}

.ls14-glue__more:hover {
    border-color: #a86027;
    color: #a86027;
}

.ls14-glue__msg {
    margin-top: 8px;
    font-size: 13px;
    color: #6f9457;
}

@media (max-width: 600px) {
    .ls14-glue {
        padding: 16px;
    }

    .ls14-glue__list {
        grid-template-columns: 1fr;
    }
}

/* LS-14: кнопка расчёта в карточке товара */
.ls14-calc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    padding: 10px 16px;
    border: 1px solid #d7c4ad;
    border-radius: 8px;
    background: #fbf6f1;
    color: #8a5320;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}

.ls14-calc-link:hover {
    background: #f4e9dd;
    border-color: #a86027;
    color: #8a5320;
    text-decoration: none;
}

.ls14-calc-link svg {
    flex: 0 0 auto;
}
