.telcon-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
}

.telcon-tab {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all .18s ease;
}

.telcon-tab.active,
.telcon-tab:hover {
    background: #ffffff;
    color: #111827;
    border-color: rgba(255,255,255,0.75);
}

.telcon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    text-align: left;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.telcon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.42) 100%);
    pointer-events: none;
}

.telcon-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.telcon-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    font-size: 0.85rem;
    font-weight: 700;
}

.telcon-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.12);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: help;
}

.telcon-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    z-index: 1;
    padding: 0 16px;
}

.telcon-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 20px;
}

.telcon-card-body h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.25;
}

.telcon-price {
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 2px;
}

.telcon-weight,
.telcon-stock {
    font-size: 0.95rem;
    opacity: 0.92;
}

.telcon-empty {
    padding: 28px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-align: center;
}

@media(max-width: 900px) {
    .telcon-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}
