/* =====================================================
   ST200 (t744) — контурные кнопки в описании товара
   Цвет: черный, без фоновой заливки
   ===================================================== */

/* Общий стиль ТОЛЬКО для ссылок */
.t744__descr a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;
    margin-top: 16px;
    margin-right: 12px;

    border-radius: 30px;
    border: 1px solid #000; /* контур 1px черный */
    background-color: transparent; /* без заливки */

    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #000; /* текст черный */
    line-height: 1.2;

    box-sizing: border-box;
    max-width: 100%;
}

/* Hover — минимальный, без лишних перерисовок */
@media (hover:hover) {
    .t744__descr a:hover {
        opacity: 0.8;
        color: #000;
        border-color: #000;
    }
}

/* Мобильная версия — КАК у кнопки "Заказать" */
@media (max-width: 640px) {
    .t744__descr a {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
}
