.equipment-cards {
    margin-bottom: 80px;
}
.equipment-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: space-around;
}
.spec-card {
    padding-bottom: 10px;
    max-width: 380px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spec-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 16px 24px 12px;
    background-color: #f9f9f9;
}

.spec-image img {
    width: 100%;
    min-height: 300px;
    max-height: 340px;
    display: block;
    object-fit: cover;
}

.spec-table-wrapper {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
    font-size: 15px;
}

.spec-model {
    font-size: 18px;
    font-weight: 700;
}

.spec-table th,
.spec-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.spec-table th {
    background-color: #eaeaea;
    font-weight: 600;
    color: #333;
}

.spec-table .spec-head th {
    background-color: #f2f2f2;
    text-align: center;
    font-weight: 700;
    color: #111;
}

.spec-table .price {
    font-size: 18px;
    font-weight: 700;
}

.download-row a.spec-download {
    display: block;
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s ease;
}

/* Add */
.spec-scroll-wrapper {
    max-height: 260px; /* Отображает примерно 2 строки + заголовок */
    overflow-y: auto;
    border-top: 1px solid #eee;
}

.spec-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}

.spec-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.spec-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

/* Add */
.spec-price-row td:first-child {
    width: 60%;
    font-weight: 500;
}

.spec-price-row td.price {
    width: 40%;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}
