.tc-section {
    padding: 40px 0;
    border-radius: 16px;
    overflow: hidden;
}

.tc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.tc-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.tc-nav {
    display: flex;
    gap: 8px;
}

.tc-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.tc-nav-btn:hover {
    border-color: #999;
    background: #f5f5f5;
}

.tc-slider {
    overflow: hidden;
    position: relative;
}

.tc-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.tc-card {
    min-width: calc(33.333% - 14px);
    background: var(--tc-card-bg, #fff);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
}

.tc-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tc-card-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.tc-brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.tc-brand-name {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.tc-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.tc-reviews,
.tc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tc-reviews svg,
.tc-rating svg {
    width: 14px;
    height: 14px;
}

.tc-rating svg {
    color: #f59e0b;
}

.tc-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 14px;
    line-height: 1.35;
    flex-grow: 1;
}

.tc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.tc-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tc-card-prices {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.tc-price-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-price-label {
    font-size: 11px;
    color: #999;
}

.tc-price-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.tc-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tc-card-btn:hover {
    opacity: 0.85;
    color: #1a1a2e;
}

.tc-empty {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 15px;
}

@media (max-width: 992px) {
    .tc-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .tc-card {
        min-width: 100%;
    }
    .tc-title {
        font-size: 20px;
    }
    .tc-card-prices {
        flex-direction: column;
        gap: 8px;
    }
}
