.tech-spec-card {
    --tech-orange: #ff6a00;
    --tech-orange-dark: #d95400;
    --tech-soft: #fff3e8;
    --tech-border: #ffd0ad;
    border: 2px solid var(--tech-orange);
    border-radius: 18px;
    padding: 22px;
    margin: 22px 0;
    background: linear-gradient(135deg, #fffaf5 0%, #ffffff 55%, #fff0e2 100%);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.12);
    font-family: inherit;
    clear: both;
}

.tech-spec-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--tech-border);
    padding-bottom: 14px;
}

.tech-spec-kicker {
    color: var(--tech-orange-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.tech-spec-header h3 {
    margin: 3px 0 0;
    color: #1f1f1f;
    font-size: 24px;
    line-height: 1.2;
}

.tech-spec-header h3 i {
    color: var(--tech-orange);
    margin-right: 8px;
}

.tech-spec-badge {
    background: var(--tech-orange);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.tech-product-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tech-soft);
    color: var(--tech-orange-dark);
    border: 1px solid var(--tech-border);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tech-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tech-spec-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 14px;
    padding: 13px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tech-spec-item:hover {
    transform: translateY(-2px);
    border-color: var(--tech-border);
    box-shadow: 0 10px 22px rgba(255, 106, 0, 0.10);
}

.tech-spec-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--tech-soft);
    color: var(--tech-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.tech-spec-item span {
    display: block;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.tech-spec-item strong {
    display: block;
    color: #222;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 700px) {
    .tech-spec-grid {
        grid-template-columns: 1fr;
    }

    .tech-spec-header {
        align-items: flex-start;
        flex-direction: column;
    }
}
