/* Основные стили каталога */
.page-header {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.page-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.social-contacts {
    font-size: 14px;
    color: #007bff;
}

.catalog-container {
    display: flex;
    gap: 30px;
}

.catalog-filters {
    width: 280px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    padding-bottom: 30px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 600;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.apply-filters, .reset-filters {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-filters {
    background: #ffc107;
    border: 1px solid #ffc107;
    color: #333;
}

.apply-filters:hover {
    background: #e0a800;
    border-color: #e0a800;
}

.reset-filters {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
}

.reset-filters:hover {
    background: #f8f9fa;
    border-color: #999;
}

.catalog-products {
    flex: 1;
}

.filters-toggle {
    display: none;
}

.products-sorting {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 15px;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 400;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #d82e2e;
    margin-bottom: 15px;
}

.buy-button {
    width: 100%;
    padding: 10px;
    background: #ffc107;
    border: none;
    border-radius: 4px;
    color: #333;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-button:hover {
    background: #e0a800;
}


/*   новое               */

.product-specs-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
    background: #f1f3f5;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-specs-row div {
    flex: 1;
    text-align: center;
}

.spec-label {
    font-weight: 600;
    color: #666;
    margin-right: 4px;
}


.product-specs-table {
    width: 100%;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.product-specs-table td {
    padding: 5px 8px;
    border-bottom: 1px solid #eee;
}

.product-specs-table tr:last-child td {
    border-bottom: none;
}

.tire-card {
    position: relative;
    width: 280px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.tire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Блок бренда (как на скриншоте) */
.tire-brand-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.tire-brand {
    font-size: 14px;
    font-weight: 500;
    color: #1976D2;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Изображение шины */
.tire-image-container {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 15px;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.tire-image {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tire-card:hover .tire-image {
    transform: scale(1.05);
}

/* Название модели */
.tire-model {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Спецификации */
.tire-specs {
    margin-bottom: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.spec-name {
    color: #666;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

/* Теги характеристик */
.tire-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: #f1f8ff;
    color: #1976D2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Цена и рейтинг */
.tire-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #e53935;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.rating-block {
    display: flex;
    align-items: center;
}

.stars {
    color: #FFA000;
    font-size: 16px;
    letter-spacing: 1px;
}

.reviews {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

/* Кнопки действий */
.tire-actions {
    display: block;              /* убираем flex */
    margin-top: 12px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart {
    background: #ffc107;
    color: #333;
}

.add-to-cart:hover {
    background: #ffb300;
}

.secondary-actions {
    display: flex;
    gap: 5px;
}

.action-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.action-icon:hover {
    background: #e0e0e0;
}

.action-icon svg {
    width: 18px;
    height: 18px;
    stroke: #555;
}

/* Статус наличия */
.stock-status {
    text-align: right;
}

.in-stock {
    font-size: 13px;
    color: #4CAF50;
    display: inline-flex;
    align-items: center;
}

.in-stock:before {
    content: "✓";
    margin-right: 5px;
}

/* === базовые переменные и сброс мелких отличий === */
:root {
    --yellow:     #ffc107;
    --yellow-dk:  #e0a800;
    --blue:       #1976D2;
    --green:      #4CAF50;
    --red:        #e53935;
    --text-main:  #333;
    --text-light: #666;
    --bg-light:   #f5f5f5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



/* === сетка каталога === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* === карточка шины === */
.tire-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    padding: 18px 18px 16px;
    transition: transform .3s ease, box-shadow .3s ease;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeInUp .45s forwards;
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.tire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}

/* бренд */
.tire-brand-wrapper {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
}
.tire-brand {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    background: rgba(255,255,255,.9);
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

/* изображение */
.tire-image-container {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white; /* ← был #f5f5f5 */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}
.tire-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform .3s;
}
.tire-card:hover .tire-image { transform: scale(1.05); }

/* модель */
.tire-model {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* спецификации */
.tire-specs { margin-bottom: 12px; }
.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    padding: 4px 0;
}
.spec-name  { color: var(--text-light); }
.spec-value { font-weight: 500; }

/* теги */
.tire-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.feature-tag {
    background: #f1f8ff;
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* цена + рейтинг */
.tire-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.price-block { display: flex; align-items: baseline; gap: 6px; }
.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
}
.currency { font-size: 14px; color: #888; }
.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.stars {
    color: #FFA000;
    font-size: 16px;
    letter-spacing: 1px;
}

/* действия */
.tire-actions { display: flex; gap: 10px; margin-bottom: 10px; }
.action-btn,
.action-icon {
    flex: 1;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.add-to-cart {
    padding: 10px;
    background: var(--yellow);
    color: var(--text-main);
}
.add-to-cart:hover { background: var(--yellow-dk); }

.action-icon {
    max-width: 46px;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
}
.action-icon:hover { background: #e0e0e0; }
.action-icon svg { width: 20px; height: 20px; stroke: #555; }

/* наличие */
.stock-status { text-align: right; font-size: 13px; }
.in-stock { color: var(--green); }
.in-stock::before { content: "✓"; margin-right: 4px; }
.tire-brand:hover {
    text-decoration: underline;
}
.catalog-filters {
    width: 280px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    align-self: flex-start; /* Добавьте это свойство */
}

/* Удалите лишние отступы снизу */
.filter-section {
    margin-bottom: 0;
}

.reset-filters {
    margin-bottom: 0;
}

/* === Счётчик найденных товаров === */
.products-count {
    font-size: 14px;
    color: var(--text-light);
    margin-right: auto;
}

/* === Сортировка === */
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sort-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

/* === Блок "товары не найдены" === */
.no-products {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}
.no-products p:first-child {
    font-weight: 600;
    color: var(--text-main);
}

/* === Социальные контакты === */
.social-contacts {
    display: flex;
    gap: 12px;
    font-size: 14px;
    margin-top: 8px;
}
.social-contacts span {
    background: var(--yellow);
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
}
.social-contacts span:hover {
    background: var(--yellow-dk);
}

/* === Пагинация === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 24px;
}

.pagination-btn,
.pagination-current {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.pagination-btn {
    background: var(--bg-light);
    color: var(--text-main);
}
.pagination-btn:hover {
    background: var(--yellow);
    color: var(--text-main);
}

.pagination-current {
    background: var(--yellow);
    color: var(--text-main);
}

.pagination-ellipsis {
    color: var(--text-light);
    font-size: 16px;
    padding: 0 6px;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pagination-nav svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}
.nav-text {
    display: inline;
}
.nav-text-short {
    display: none;
}

/* Адаптив: на мобильных показываем короткие подписи */
@media (max-width: 480px) {
    .nav-text {
        display: none;
    }
    .nav-text-short {
        display: inline;
    }
}

.filter-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-price input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-light);
    transition: border-color 0.2s, background 0.2s;
}

.filter-price input:focus {
    border-color: var(--yellow);
    background: #fff;
    outline: none;
}

/* Если цена в одной строке (от/до рядом) */
.filter-price-row {
    display: flex;
    gap: 8px;
}

.filter-price-row input {
    flex: 1;
}

/* === Сообщение "нет товаров" === */
.no-products {
    text-align: center;
    padding: 40px 20px;
    background: #fff; /* Белый фон */
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
    border-radius: 0; /* Без скруглений */
    box-shadow: none; /* Убираем тень */
}

/* Обертка диапазона цены */
.price-range {
    display: flex;
    gap: 8px;
}

/* Каждое поле цены */
.price-input-wrapper {
    flex: 1;
}

.price-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* При фокусе подсвечиваем в стиле фильтра */
.price-input:focus {
    border-color: #f9c400;
    box-shadow: 0 0 0 2px rgba(249, 196, 0, 0.2);
    outline: none;
}

/* Чтобы стрелочки у number были компактнее */
.price-input::-webkit-inner-spin-button,
.price-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* === красивый двойной range (ET/DIA) === */
.range-head{
    display:flex;
    justify-content: space-between;
    font-size: 13px;
    color:#666;
    margin: 6px 0 10px;
}
.range-slider{
    position: relative;
    height: 34px;
}
.range-track{
    position:absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    background: #e9ecef;
    border-radius: 999px;
}
.range-fill{
    position:absolute;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    background: #ffc107;
    border-radius: 999px;
}
.range-slider input[type="range"]{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:34px;
    margin:0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ffc107;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.range-slider input[type="range"]::-webkit-slider-runnable-track{
    height: 6px;
    background: transparent;
}
.range-slider input[type="range"]::-moz-range-thumb{
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ffc107;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.range-slider input[type="range"]::-moz-range-track{
    height: 6px;
    background: transparent;
}

/* === сетка дисков (если используется .tire-grid) === */
.tire-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* === карточки: больше картинка, меньше текст === */
.tire-image-container{
    height: 190px;
    margin: 10px 0 12px;
}
.tire-image{
    max-width: 95%;
    max-height: 95%;
}
.tire-title{
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 10px;
}
.spec-row{
    font-size: 12px;
    padding: 4px 0;
}
.tire-price{
    text-align: right;   /* ← главное */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}


/* === Каталог: сетка товаров (контейнер страницы — .container из layout) === */
.products-grid,
.tire-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Карточка всегда по ширине ячейки */
.tire-card{
    width: 100%;
}

/* Планшеты */
@media (max-width: 992px){
    .products-grid,
    .tire-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Телефоны */
@media (max-width: 600px){
    .products-grid,
    .tire-grid{
        grid-template-columns: 1fr;
    }
}

/* Адаптив каталога */
@media (max-width: 992px) {
    .catalog-container {
        flex-direction: column;
        gap: 16px;
    }

    .catalog-filters {
        width: 100%;
        max-width: none;
    }

    .filters-toggle {
        display: block;
        width: 100%;
        padding: 12px 16px;
        margin-bottom: 8px;
        border: 0;
        border-radius: 4px;
        background: #fbd303;
        font-size: 14px;
        font-weight: 600;
        color: #111;
        cursor: pointer;
    }

    .catalog-filters-panel:not(.is-open) .catalog-filters {
        display: none;
    }
}

@media (min-width: 993px) {
    .filters-toggle {
        display: none;
    }

    .catalog-filters-panel .catalog-filters {
        display: block;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 22px;
    }

    .page-description {
        font-size: 14px;
    }

    .products-sorting {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .products-count {
        margin-right: 0;
    }

    .sort-wrapper {
        width: 100%;
    }

    .sort-select {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 12px 0;
        margin-bottom: 16px;
    }

    .page-header h1 {
        font-size: 18px;
    }
}

/* Разноширокий комплект в каталоге шин */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.mixed-width-group {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.mixed-width-group h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.filter-select-small {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.tire-card.mixed-set {
    border: 2px solid #4CAF50;
    position: relative;
}

.tire-card.mixed-set::before {
    content: "КОМПЛЕКТ";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.mixed-set-details {
    margin-top: 10px;
    padding: 10px;
    background: #f0f8f0;
    border-radius: 5px;
}

.mixed-set-details h5 {
    margin-bottom: 5px;
    color: #2e7d32;
    font-size: 12px;
}

.tire-size-info {
    font-size: 12px;
    color: #666;
}

.modal {
    display:none;
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.45);
    justify-content:center;
    align-items:center;
    z-index: 9999;
    padding: 20px;
}

/* Окно */
.modal-content{
    background:#fff;
    width: min(820px, 96vw);
    border-radius: 14px;
    padding: 28px 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* Крестик */
.modal-close{
    position:absolute;
    top:16px;
    right:16px;
    width:40px;
    height:40px;
    border:none;
    background:transparent;
    font-size:28px;
    cursor:pointer;
    line-height: 1;
}

/* Заголовок */
.modal-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin: 0 0 22px;
}

/* Поля */
.form-row{
    margin-bottom: 16px;
}
.form-row label{
    display:block;
    margin-bottom: 8px;
    color:#444;
}
.form-row input,
.form-row textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Итого */
.order-total{
    text-align:center;
    margin: 22px 0;
}
.order-total-label{
    color:#666;
    margin-bottom: 8px;
}
.order-total-value{
    font-size: 22px;
    font-weight: 700;
}
.order-total-currency{
    color:#888;
    font-weight: 600;
    font-size: 16px;
}

/* Кнопка */
.submit-btn{
    width:100%;
    border:none;
    background:#fbd303;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    cursor:pointer;
}

.tire-actions .order-btn {
    width: 100%;                 /* на всю ширину */
    padding: 14px 0;             /* вертикальные отступы */
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
}