.tc-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 360px;
}
.tc-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}
.tc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff331f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.tc-content {
    padding: 20px;
}
.tc-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
}
.tc-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}
.tc-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tc-meta-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.tc-action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tc-btn {
    background: #ff5224;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s ease;
}
.tc-btn:hover {
    background: #e03f14;
}
.tc-price-box {
    text-align: right;
}
.tc-price-label {
    display: block;
    font-size: 12px;
    color: #888;
}
.tc-price-value {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}
.tc-footer {
    display: flex;
    border-top: 1px solid #eaeaea;
    background: #fafafa;
    padding: 12px 20px;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}
.tc-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tc-footer-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
