/* Compare Button */
.trioboost-compare-btn.added {
    color: #28a745;
    pointer-events: none;
    cursor: default;
}

.trioboost-compare-btn.loading {
    opacity: 0.5;
}

/* Compare Table */
.trioboost-compare-table-wrapper {
    overflow-x: auto;
}

.trioboost-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.trioboost-compare-table th,
.trioboost-compare-table td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.trioboost-compare-table th {
    background: #f9f9f9;
    font-weight: bold;
    width: 200px;
    text-align: left;
}

.trioboost-compare-table img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.trioboost-remove-compare {
    color: #dc3545;
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Swatches */
.trioboost-swatches-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 5px 0 15px;
}

.trioboost-swatch {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    background: #fff;
    min-width: 30px;
    text-align: center;
    transition: all 0.2s;
}

.trioboost-swatch:hover {
    border-color: #666;
}

.trioboost-swatch.active {
    border-color: #000;
    background: #f0f0f0;
    box-shadow: 0 0 0 1px #000;
}

.trioboost-swatch-color {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    text-indent: -9999px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
}

.trioboost-swatch-color.active {
    box-shadow: 0 0 0 2px #000;
}

.trioboost-hidden-select {
    display: none !important;
}

/* Wishlist */
.trioboost-wishlist-btn {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.9em;
}

.trioboost-wishlist-btn.added {
    color: #cb2027;
    /* Heart color */
    pointer-events: none;
}

.trioboost-remove-wishlist {
    color: #dc3545;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
}