#cc-container {
    font-size: 15px;
    margin-top: 30px;
    max-width: 700px;
}

/* ── Selektory ── */

#cc-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.cc-step {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    flex: 1 1 160px;
}

.cc-step-hidden {
    display: none;
}

.cc-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cc-select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    height: 42px;
}

.cc-select:focus {
    outline: none;
    border-color: #c11f1f;
}

/* ── Wyniki / tabela opon ── */

#cc-results {
    margin-top: 28px;
}

.cc-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    padding: 10px 0;
}

.cc-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #c11f1f;
    border-radius: 50%;
    animation: cc-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes cc-spin {
    to { transform: rotate(360deg); }
}

.cc-no-results {
    color: #666;
    font-style: italic;
}

.cc-tires-table {
    border-collapse: collapse;
    width: 100%;
}

.cc-tires-table thead th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    padding: 0 0 6px 0;
    border-bottom: 2px solid #eee;
}

.cc-tires-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.cc-tires-table tbody tr:last-child {
    border-bottom: none;
}

.cc-tire-size,
.cc-tire-badges {
    padding: 9px 6px;
    vertical-align: middle;
}

.cc-tire-size a {
    color: #c11f1f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #c11f1f !important;
    font-size: 15px;
}

.cc-tire-size a:hover {
    color: #a01818 !important;
    border-bottom-style: solid !important;
}

.cc-index {
    font-size: 12px;
    color: #999;
    margin-left: 6px;
}

/* ── Odznaki ── */

.cc-tire-badges {
    white-space: nowrap;
}

.cc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
    letter-spacing: 0.03em;
}

.cc-badge-oe {
    background: #1a6b1a;
    color: #fff;
}

.cc-badge-rf {
    background: #1a4fa0;
    color: #fff;
}

.cc-badge-xl {
    background: #7a4800;
    color: #fff;
}

.cc-badge-winter {
    background: #2d7faa;
    color: #fff;
}

.cc-badge-pos {
    background: #eee;
    color: #555;
}

/* ── Responsywność ── */

@media (max-width: 480px) {
    #cc-selects {
        flex-direction: column;
    }
    .cc-step {
        min-width: 100%;
    }
}
