/**
 * Simple Comparison Tables – frontend styles.
 * Class-based + CSS custom properties. The scroller (.tc-scroll) is the only
 * horizontally-scrolling element, so the feature column sticks correctly and the
 * hint/controls stay fixed above it. var() fallbacks keep sensible defaults.
 */

.tineco-compare{
    font-family: var(--tc-font-family, inherit);
    position: relative;
    border: 0; /* defeats the WP block-library phantom border */
}
.tineco-compare *{ box-sizing: border-box; }

/* Optional outer container (so shortcodes dropped into archive "after products" have a frame) */
.tineco-compare.tc-has-container{
    background: var(--tc-container-bg, #fff);
    border: var(--tc-container-bd-w, 1px) solid var(--tc-container-bd-c, #e2e2e2);
    border-radius: var(--tc-container-radius, 12px);
    padding: var(--tc-container-pad, 16px);
}

/* Header: comparison name (left) + controls (right) */
.tineco-compare .tc-header{
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px 18px; flex-wrap: wrap; margin: 0 0 12px;
}
.tineco-compare .tc-heading{
    margin: 0; font-weight: 700; line-height: 1.2;
    font-size: var(--tc-heading-size, 22px); color: var(--tc-heading-color, inherit);
    margin-right: auto;
}

/* Controls (toggle / column picker / print) */
.tineco-compare .tc-controls{
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
    margin-left: auto; font-size: var(--tc-controls-size, 14px);
}
.tineco-compare .tc-col-picker{ display: flex; flex-wrap: wrap; gap: 6px 12px; }
.tineco-compare .tc-col-chip{ display: inline-flex; align-items: center; gap: 5px; cursor: pointer; padding: 3px 8px; border: 1px solid var(--tc-line, #ddd); border-radius: 999px; }
.tineco-compare .tc-print-btn{
    cursor: pointer; border: 1px solid var(--tc-toggle-border, #ccc); background: var(--tc-toggle-bg, transparent);
    color: var(--tc-toggle-color, #333); border-radius: var(--tc-toggle-radius, 8px);
    padding: 8px 14px; font-size: var(--tc-controls-size, 14px); line-height: 1;
}
.tineco-compare .tc-print-btn:hover{ filter: brightness(.97); }

/* "Differences only" eye-toggle button */
.tineco-compare .tc-diff-btn{
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer; line-height: 1;
    font-size: var(--tc-controls-size, 14px); font-weight: 600;
    padding: 8px 14px; border-radius: var(--tc-toggle-radius, 8px);
    background: var(--tc-toggle-bg, #fff); color: var(--tc-toggle-color, #1a1a1a);
    border: 1px solid var(--tc-toggle-border, #d6d6db);
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.tineco-compare .tc-diff-btn svg{ display: block; width: 18px; height: 18px; }
.tineco-compare .tc-diff-btn .tc-eye{ display: inline-flex; }
.tineco-compare .tc-diff-btn .tc-eye-open{ display: none; }
.tineco-compare .tc-diff-btn[aria-pressed="true"]{
    background: var(--tc-toggle-active-bg, #5725d1); color: var(--tc-toggle-active-color, #fff);
    border-color: var(--tc-toggle-active-bg, #5725d1);
}
.tineco-compare .tc-diff-btn[aria-pressed="true"] .tc-eye-closed{ display: none; }
.tineco-compare .tc-diff-btn[aria-pressed="true"] .tc-eye-open{ display: inline-flex; }

/* Mobile slide hint — outside the scroller so it never scrolls away */
.tineco-compare .tc-slide-hint{
    display: none; text-align: center; font-weight: 600;
    font-size: var(--tc-hint-size, 13px);
    color: var(--tc-hint-color, #555); background: var(--tc-hint-bg, rgba(0,0,0,.04));
    border-radius: var(--tc-toggle-radius, 8px); padding: 8px 12px; margin: 0 0 10px;
}

/* Scroll area */
.tineco-compare .tc-scroll-wrap{ position: relative; }
.tineco-compare .tc-scroll{
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--tc-radius, 12px);
    border: var(--tc-table-bd-w, 0px) solid var(--tc-table-bd-c, transparent);
}
.tineco-compare.tc-dragging .tc-scroll{ cursor: grabbing; user-select: none; }

.tineco-compare table{
    width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed;
    min-width: var(--tc-min-width, 920px); background: transparent; border: 0; margin: 0;
}
.tineco-compare th, .tineco-compare td{ text-align: left; vertical-align: top; border: 0; position: relative; }

.tineco-compare thead th{
    background: var(--tc-header-bg, #fff); color: var(--tc-header-text, inherit);
    border-bottom: 1px solid var(--tc-line, rgba(0,0,0,.08));
    font-weight: inherit;
}
.tineco-compare tbody td, .tineco-compare tbody th{
    background: var(--tc-row-bg, #fff); color: var(--tc-text, inherit);
    border-bottom: 1px solid var(--tc-line, rgba(0,0,0,.06));
}

.tineco-compare .tc-col-inner{ display: block; }
/* block so the recommended ribbon sits on its own line above the product, not beside it */
.tineco-compare .tc-prod-link{ text-decoration: none; color: inherit; display: block; }
.tineco-compare .tc-ribbon{ vertical-align: top; }
.tineco-compare .tc-hdr-left{ width: 220px; }

/* Fixed column sizing on desktop */
.tineco-compare thead th.tc-col-feature-head,
.tineco-compare tbody .tc-feature-name-cell{ width: 220px; min-width: 220px; max-width: 220px; }
.tineco-compare thead th:not(.tc-col-feature-head),
.tineco-compare tbody td:not(.tc-feature-name-cell){ width: 200px; min-width: 200px; max-width: 200px; }

/* Sticky feature (left) column */
.tineco-compare .tc-feature-col{ position: sticky; left: 0; z-index: 2; background: var(--tc-header-bg, #fff); }
.tineco-compare tbody .tc-feature-col{ background: var(--tc-row-bg, #fff); }

/* Best-effort sticky product header (works when not in a clipping scroll context) */
.tineco-compare.tc-sticky-head thead th{ position: sticky; top: 0; z-index: 3; }
.tineco-compare.tc-sticky-head thead th.tc-feature-col{ z-index: 4; }

/* Product image */
.tineco-compare .tc-img-wrap{ display: block; width: 100%; max-width: 150px; border-radius: 10px; background: rgba(0,0,0,.03); line-height: 0; }
.tineco-compare .tc-img-wrap img{ display: block; width: 100%; height: auto; max-height: 150px; object-fit: contain; }

/* Feature-label cell — do NOT set display:block (it's a <th> table cell; that breaks row alignment) */
.tineco-compare .tc-row-label{ font-weight: 650; color: var(--tc-text, inherit); font-size: var(--tc-label-size, 14px); }
.tineco-compare .tc-model{ display: block; margin: 10px 0; font-weight: 800; line-height: 1.25; color: var(--tc-header-text, inherit); font-size: var(--tc-model-size, 15px); }

/* Price + sale */
.tineco-compare .tc-price{ display: block; font-size: var(--tc-price-size, 13px); color: var(--tc-price-color, inherit); }
.tineco-compare .tc-price-current{ opacity: .9; }
.tineco-compare .tc-price-regular del{ opacity: .65; margin-right: 4px; }
.tineco-compare .tc-price-sale{ font-weight: 800; }
.tineco-compare .tc-badge-sale{ display: inline-block; background: #e8453c; color: #fff; font-size: 11px; font-weight: 700; padding: 1px 6px; border-radius: 999px; vertical-align: middle; margin-left: 2px; }

.tineco-compare .tc-mobile-label{ display: none; font-size: var(--tc-mobile-label-size, 11px); opacity: .7; margin-bottom: 6px; color: var(--tc-text, inherit); }
.tineco-compare .tc-value{ display: block; font-size: var(--tc-font-size, 14px); font-weight: 650; color: var(--tc-text, inherit); }

/* Cell types */
.tineco-compare .tc-bool{ display: inline-block; font-size: calc(var(--tc-font-size, 14px) + 4px); font-weight: 800; line-height: 1; }
.tineco-compare .tc-bool-yes{ color: #1a7f37; }
.tineco-compare .tc-bool-no{ color: #b32d2e; }
.tineco-compare .tc-bool-empty{ opacity: .5; }
.tineco-compare .tc-stars{ white-space: nowrap; letter-spacing: 1px; }
.tineco-compare .tc-star-full{ color: #f5a623; }
.tineco-compare .tc-star-half{ color: #f5a623; opacity: .6; }
.tineco-compare .tc-star-empty{ color: #c9c9c9; }

/* Recommended column = bordered, rounded card via inset box-shadow (no layout shift) */
.tineco-compare .tc-col-recommended{
    background: var(--tc-recommended-bg, #f5f1ff) !important;
    box-shadow:
        inset var(--tc-rec-bd-w, 2px) 0 0 var(--tc-recommended-border, #5725d1),
        inset calc(-1 * var(--tc-rec-bd-w, 2px)) 0 0 var(--tc-recommended-border, #5725d1);
}
.tineco-compare thead th.tc-rec-top{
    border-top-left-radius: var(--tc-rec-radius, 12px);
    border-top-right-radius: var(--tc-rec-radius, 12px);
    box-shadow:
        inset var(--tc-rec-bd-w, 2px) 0 0 var(--tc-recommended-border, #5725d1),
        inset calc(-1 * var(--tc-rec-bd-w, 2px)) 0 0 var(--tc-recommended-border, #5725d1),
        inset 0 var(--tc-rec-bd-w, 2px) 0 var(--tc-recommended-border, #5725d1);
}
.tineco-compare .tc-cta-row td.tc-rec-bottom{
    border-bottom-left-radius: var(--tc-rec-radius, 12px);
    border-bottom-right-radius: var(--tc-rec-radius, 12px);
    box-shadow:
        inset var(--tc-rec-bd-w, 2px) 0 0 var(--tc-recommended-border, #5725d1),
        inset calc(-1 * var(--tc-rec-bd-w, 2px)) 0 0 var(--tc-recommended-border, #5725d1),
        inset 0 calc(-1 * var(--tc-rec-bd-w, 2px)) 0 var(--tc-recommended-border, #5725d1);
}
.tineco-compare .tc-ribbon{
    display: inline-block; background: var(--tc-recommended-border, #5725d1); color: #fff;
    font-size: 10px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 999px; margin-bottom: 8px;
}

/* Winner highlight */
.tineco-compare .tc-winner .tc-value{ color: var(--tc-winner-color, #1a7f37); font-weight: 800; }
.tineco-compare .tc-winner .tc-value::before{ content: "✓ "; }

/* Buttons */
.tineco-compare .tc-btn{ display: inline-block; cursor: pointer; transition: color .15s ease, background-color .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.tineco-compare .tc-btn + .tc-btn{ margin-top: 8px; }
.tineco-compare .tc-btn-wrap{ padding: 14px 16px; border-bottom: none !important; }
.tineco-compare .tc-btn.tc-btn-style-link{ padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--tc-btn-text, #5725D1); text-decoration: underline; font-size: var(--tc-btn-font-size, 13px); font-weight: 800; }
.tineco-compare .tc-btn.tc-btn-style-link:hover{ color: var(--tc-btn-hover-text, #31117E); }
.tineco-compare .tc-btn.tc-btn-style-button{
    padding: var(--tc-btn-pad-y, 10px) var(--tc-btn-pad-x, 18px);
    border: var(--tc-btn-bd-w, 0px) solid var(--tc-btn-border, transparent);
    border-radius: var(--tc-btn-radius, 8px);
    background: var(--tc-btn-bg, #5725D1); color: var(--tc-btn-text-on-bg, #fff);
    text-decoration: none; font-size: var(--tc-btn-font-size, 14px); font-weight: 700;
}
.tineco-compare .tc-btn.tc-btn-style-button:hover{ background: var(--tc-btn-hover-bg, #31117E); color: var(--tc-btn-hover-text-on-bg, #fff); }
.tineco-compare .tc-btn.tc-btn-hover-lift:hover{ transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.15); }
.tineco-compare .tc-btn.tc-btn-hover-grow:hover{ transform: scale(1.05); }
.tineco-compare .tc-btn.tc-btn-hover-shadow:hover{ box-shadow: 0 4px 14px rgba(0,0,0,.18); }

/* Column hover (desktop only) */
@media (min-width: 769px){
    .tineco-compare.tc-colhover-highlight td.tc-col-hover,
    .tineco-compare.tc-colhover-highlight th.tc-col-hover{ background: var(--tc-col-hover-bg, rgba(87,37,209,.06)) !important; transition: background-color .15s ease; }
    .tineco-compare.tc-colhover-zoom .tc-col-inner{ transition: transform .15s ease; transform-origin: center; }
    .tineco-compare.tc-colhover-zoom th.tc-col-hover .tc-col-inner,
    .tineco-compare.tc-colhover-zoom td.tc-col-hover .tc-col-inner{ transform: scale(1.06); }
    .tineco-compare.tc-colhover-lift .tc-col-inner{ transition: transform .15s ease; }
    .tineco-compare.tc-colhover-lift th.tc-col-hover .tc-col-inner,
    .tineco-compare.tc-colhover-lift td.tc-col-hover .tc-col-inner{ transform: translateY(-3px); }
}

/* Edge fade overlays */
.tineco-compare .tc-fade{
    position: absolute; top: 0; bottom: 0; width: var(--tc-fade-w-d, 60px);
    pointer-events: none; opacity: 0; transition: opacity .2s ease; z-index: 4;
}
/* Left fade starts after the sticky feature column so it never covers the feature names */
.tineco-compare .tc-fade-left{ left: 220px; background: linear-gradient(to left, rgba(var(--tc-fade-rgb, 255,255,255), 0), rgba(var(--tc-fade-rgb, 255,255,255), var(--tc-fade-op-d, 1))); }
.tineco-compare .tc-fade-right{ right: 0; background: linear-gradient(to right, rgba(var(--tc-fade-rgb, 255,255,255), 0), rgba(var(--tc-fade-rgb, 255,255,255), var(--tc-fade-op-d, 1))); }
.tineco-compare .tc-fade.is-visible{ opacity: 1; }

/* Scroll arrow buttons */
.tineco-compare .tc-arrow{
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; padding: 0;
    width: var(--tc-arrow-size, 38px); height: var(--tc-arrow-size, 38px);
    border: 0; cursor: pointer; border-radius: var(--tc-arrow-radius, 50%);
    background: var(--tc-arrow-bg, #fff); color: var(--tc-arrow-color, #1a1a1a);
    box-shadow: var(--tc-arrow-shadow, 0 2px 8px rgba(0,0,0,.18));
    display: none; align-items: center; justify-content: center;
}
.tineco-compare .tc-arrow.is-visible{ display: inline-flex; }
.tineco-compare .tc-arrow:hover{ filter: brightness(.95); }
.tineco-compare .tc-arrow svg{ width: 58%; height: 58%; display: block; }
.tineco-compare .tc-arrow-left{ left: 228px; }
.tineco-compare .tc-arrow-right{ right: 8px; }

/* Auto dark mode */
@media (prefers-color-scheme: dark){
    .tineco-compare.tc-auto-dark{
        --tc-table-bg: #1e1e22; --tc-header-bg: #1e1e22; --tc-row-bg: #1e1e22;
        --tc-text: #e7e7ea; --tc-header-text: #ffffff; --tc-price-color: #b9b9c2;
        --tc-line: #33333a; --tc-recommended-bg: #2a2440;
    }
}

/* Visitor column visibility */
.tineco-compare .tc-col-hidden{ display: none !important; }

@media (max-width: 768px){
    .tineco-compare .tc-slide-hint{ display: block; }
    .tineco-compare table{ min-width: 0; }
    .tineco-compare .tc-feature-col{ position: static; }
    .tineco-compare .tc-col-feature-head,
    .tineco-compare .tc-feature-name-cell{ display: none; }
    .tineco-compare .tc-mobile-label{ display: block; }
    .tineco-compare thead th:not(.tc-col-feature-head),
    .tineco-compare tbody td:not(.tc-feature-name-cell){ width: 62vw; min-width: 62vw; }
    .tineco-compare .tc-btn.tc-btn-style-link{ width: 100%; text-align: center; }
    .tineco-compare .tc-btn.tc-btn-style-button{ display: block; text-align: center; }
    .tineco-compare .tc-fade{ width: var(--tc-fade-w-m, 38px); }
    /* feature column is hidden on mobile → fade/arrow return to the edge */
    .tineco-compare .tc-fade-left{ left: 0; background: linear-gradient(to left, rgba(var(--tc-fade-rgb, 255,255,255), 0), rgba(var(--tc-fade-rgb, 255,255,255), var(--tc-fade-op-m, .9))); }
    .tineco-compare .tc-fade-right{ background: linear-gradient(to right, rgba(var(--tc-fade-rgb, 255,255,255), 0), rgba(var(--tc-fade-rgb, 255,255,255), var(--tc-fade-op-m, .9))); }
    .tineco-compare .tc-arrow-left{ left: 8px; }

    /* Header stacks; differences button goes full-width centered */
    .tineco-compare .tc-header{ flex-direction: column; align-items: stretch; }
    .tineco-compare .tc-header .tc-controls{ margin-left: 0; }
    .tineco-compare .tc-diff-btn{ width: 100%; justify-content: center; }
}

/* Print / PDF */
@media print{
    .tineco-compare .tc-controls,
    .tineco-compare .tc-slide-hint,
    .tineco-compare .tc-fade,
    .tineco-compare .tc-arrow{ display: none !important; }
    .tineco-compare .tc-scroll{ overflow: visible !important; }
    .tineco-compare table{ min-width: 0 !important; table-layout: auto !important; }
    .tineco-compare .tc-col-feature-head,
    .tineco-compare .tc-feature-name-cell{ display: table-cell !important; }
    .tineco-compare .tc-btn{ box-shadow: none !important; transform: none !important; }
}

/* Shop-loop compare button + floating bar */
.tc-compare-toggle{ margin-top: 6px; }
.tc-compare-toggle.is-active{ background: #1a7f37 !important; color: #fff !important; border-color: #1a7f37 !important; }
.tc-compare-bar{
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 99999;
    background: #1e1e22; color: #fff; padding: 12px 18px; display: none;
    align-items: center; gap: 14px; flex-wrap: wrap; box-shadow: 0 -4px 18px rgba(0,0,0,.2); font-size: 14px;
}
.tc-compare-bar.is-visible{ display: flex; }
.tc-compare-bar .tc-compare-items{ display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.tc-compare-bar .tc-compare-go{ background: #8b5cf6; color: #fff; border: 0; border-radius: 8px; padding: 9px 18px; font-weight: 700; cursor: pointer; text-decoration: none; }
.tc-compare-bar .tc-compare-clear{ background: transparent; color: #ccc; border: 0; cursor: pointer; text-decoration: underline; }

/* =====================================================================
 * THEME / PAGE-BUILDER ARMOR
 * Aggressive builders (Divi, Avada, etc.) scope their CSS under an ID
 * (e.g. `.et-db #et-boc .et-l .et_pb_module a`), which outranks any
 * class selector no matter how specific — an ID always beats classes.
 * The only way a class-based rule can win is `!important`. These rules
 * re-assert the few properties builders clobber (link colours, button
 * fills, cell backgrounds/borders, text colours) so the table renders
 * identically inside a Divi Code module, an Elementor HTML widget, a
 * shortcode block, etc. Values still come from the CSS variables, so all
 * customisation keeps working.
 * ===================================================================== */
.tineco-compare, .tineco-compare *, .tineco-compare *::before, .tineco-compare *::after{ box-sizing: border-box !important; }

/* Links must not inherit the theme's link colour / underline / background */
.tineco-compare a{ box-shadow: none; }
.tineco-compare .tc-prod-link{ display: block !important; color: inherit !important; text-decoration: none !important; background: transparent !important; }

/* Text colours */
.tineco-compare .tc-heading{ color: var(--tc-heading-color, inherit) !important; font-size: var(--tc-heading-size, 22px) !important; }
.tineco-compare .tc-model{ color: var(--tc-header-text, inherit) !important; font-size: var(--tc-model-size, 15px) !important; }
.tineco-compare .tc-value{ color: var(--tc-text, inherit) !important; font-size: var(--tc-font-size, 14px) !important; }
.tineco-compare .tc-row-label{ color: var(--tc-text, inherit) !important; }
.tineco-compare .tc-mobile-label{ color: var(--tc-text, inherit) !important; }
.tineco-compare .tc-price,
.tineco-compare .tc-price del,
.tineco-compare .tc-price .tc-price-sale,
.tineco-compare .tc-price .tc-price-current,
.tineco-compare .tc-price-regular{ color: var(--tc-price-color, inherit) !important; }
.tineco-compare .tc-badge-sale{ color: #fff !important; background: #e8453c !important; }
.tineco-compare .tc-bool-yes{ color: #1a7f37 !important; }
.tineco-compare .tc-bool-no{ color: #b32d2e !important; }
.tineco-compare .tc-star-full, .tineco-compare .tc-star-half{ color: #f5a623 !important; }
.tineco-compare .tc-winner .tc-value{ color: var(--tc-winner-color, #1a7f37) !important; }
.tineco-compare .tc-ribbon{ display: inline-block !important; background: var(--tc-recommended-border, #5725d1) !important; color: #fff !important; }

/* Buttons (links & filled) */
.tineco-compare .tc-btn{ text-decoration: none !important; box-shadow: none; }
.tineco-compare .tc-btn.tc-btn-style-link{ background: transparent !important; color: var(--tc-btn-text, #5725d1) !important; text-decoration: underline !important; padding: 0 !important; border: 0 !important; }
.tineco-compare .tc-btn.tc-btn-style-link:hover{ color: var(--tc-btn-hover-text, #31117e) !important; }
.tineco-compare .tc-btn.tc-btn-style-button{
    background: var(--tc-btn-bg, #5725d1) !important;
    color: var(--tc-btn-text-on-bg, #fff) !important;
    border: var(--tc-btn-bd-w, 0px) solid var(--tc-btn-border, transparent) !important;
    border-radius: var(--tc-btn-radius, 8px) !important;
    padding: var(--tc-btn-pad-y, 10px) var(--tc-btn-pad-x, 18px) !important;
    text-decoration: none !important;
}
.tineco-compare .tc-btn.tc-btn-style-button:hover{ background: var(--tc-btn-hover-bg, #31117e) !important; color: var(--tc-btn-hover-text-on-bg, #fff) !important; }

/* Toggle / print / arrow controls */
.tineco-compare .tc-diff-btn{ background: var(--tc-toggle-bg, #fff) !important; color: var(--tc-toggle-color, #1a1a1a) !important; border: 1px solid var(--tc-toggle-border, #d6d6db) !important; }
.tineco-compare .tc-diff-btn[aria-pressed="true"]{ background: var(--tc-toggle-active-bg, #5725d1) !important; color: var(--tc-toggle-active-color, #fff) !important; }
.tineco-compare .tc-arrow{ background: var(--tc-arrow-bg, #fff) !important; color: var(--tc-arrow-color, #1a1a1a) !important; }

/* Table + cell backgrounds / borders (theme table resets often add or remove these) */
.tineco-compare table{ background: transparent !important; border: 0 !important; }
.tineco-compare th, .tineco-compare td{ border-top: 0 !important; border-left: 0 !important; border-right: 0 !important; }
.tineco-compare thead th{ background: var(--tc-header-bg, #fff) !important; border-bottom: 1px solid var(--tc-line, #ececec) !important; }
.tineco-compare tbody td, .tineco-compare tbody th{ background: var(--tc-row-bg, #fff) !important; border-bottom: 1px solid var(--tc-line, #ececec) !important; }
.tineco-compare thead th.tc-feature-col{ background: var(--tc-header-bg, #fff) !important; }
.tineco-compare tbody .tc-feature-col{ background: var(--tc-row-bg, #fff) !important; }
.tineco-compare th.tc-col-recommended, .tineco-compare td.tc-col-recommended{ background: var(--tc-recommended-bg, #f5f1ff) !important; }
.tineco-compare .tc-cta-row td{ border-bottom: 0 !important; }

/* Images */
.tineco-compare .tc-img-wrap img{ max-width: 100% !important; height: auto !important; max-height: 150px !important; }
