
.table-comparator-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.tc-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.tc-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.tc-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}
.tc-badge {
    background: #e60023;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 12px;
    text-transform: uppercase;
}
.tc-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #000;
}
.tc-bonus {
    font-size: 16px;
    margin-bottom: 10px;
    color: #0073aa;
}
.tc-rating {
    margin: 10px 0;
}
.tc-stars {
    color: gold;
    font-size: 20px;
    animation: sparkle 2s infinite;
}
.tc-score {
    font-size: 14px;
    margin-top: 4px;
    color: #000;
}
.tc-avis {
    font-size: 14px;
    margin: 10px 0;
    color: #555;
}
.tc-cta {
    margin-top: 10px;
}
.tc-button {
    background-color: #e60023;
    color: #fff !important;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.tc-button:hover {
    background-color: #ff0033;
    transform: scale(1.05);
    color: #fff !important;
}
@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@media (max-width: 768px) {
    .table-comparator-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
    }
    .tc-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        max-width: 280px;
    }
}
