.kpc-compare-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-top: 8px;
    cursor: pointer;
}

#kpc-floating-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kpc-bar-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.kpc-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.kpc-bar-item img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.kpc-bar-item button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.kpc-bar-compare-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.kpc-title {
    margin: 50px 0 8px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pdp-ink);
}

.kpc-table-wrap {
    overflow-x: auto;
    margin: 30px 0 80px;
}

.kpc-compare-table {
    width: 100%;
    border-collapse: collapse;
    border-top: none !important;
    table-layout: fixed;
}

.kpc-compare-table th,
.kpc-compare-table td {
    border-bottom: 1px solid var(--pdp-line) !important;
    padding: 12px 16px !important;
    text-align: center;
    vertical-align: top;
}

.kpc-compare-table thead th {
    vertical-align: bottom;
    padding-top: 30px;
}

.kpc-compare-table thead .kpc-row-label {
    border-bottom: none;
}

.kpc-compare-table thead tr th:first-child {
    border-left-color: #fff !important;
    border-top-color: #fff !important;
}

.kpc-compare-table thead .kpc-product-col {
    border-top-color: var(--pdp-line) !important;
    border-top-width: 0.5px !important;
    border-top-style: solid !important;
}

.kpc-compare-table tbody tr:nth-child(even) {
    background: var(--pdp-grey-band);
}

.kpc-row-label {
    width: 220px;
    text-align: left !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pdp-grey-text);
}

.kpc-compare-table td {
    color: var(--pdp-ink);
    font-size: 15px;
}

.kpc-product-col {
    position: relative;
    min-width: 240px;
    text-align: center !important;
}

.kpc-product-col img {
    border-radius: 8px;
}

.kpc-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--pdp-line);
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    color: var(--pdp-grey-text);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.kpc-remove:hover {
    color: var(--pdp-orange);
    border-color: var(--pdp-orange);
}

.kpc-product-name {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 14px;
    color: var(--pdp-ink);
}

.kpc-product-price {
    margin: 8px 0 18px;
}

/* Compact variant of the site's real artusi-button pill (see custom.css) -
   its default gap:48px/padding are sized for a full CTA, not a ~240px
   table column, so tighten those here rather than inventing a new button
   style from scratch. */
.kpc-view-product .artusi-button {
    gap: 14px;
    padding: 11px 20px;
    font-size: 13px;
}

.kpc-view-product-fallback {
    display: inline-block;
    background: var(--pdp-orange);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 11px 20px;
    border-radius: 999px;
}
