:root {
    --cmp-bg: #f4f7fc;
    --cmp-card: #ffffff;
    --cmp-border: #d8e1ee;
    --cmp-muted: #6b7a90;
    --cmp-title: #112744;
    --cmp-accent: #ff6a00;
    --cmp-btn: #133b5c;
    --cmp-btn-hover: #102f49;
    --cmp-soft: #eef4fc;
    --cmp-score: #6da623;
}

body.cmp-modal-open {
    overflow: hidden;
}

.cmp-page {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.cmp-page .card {
    border: 1px solid var(--cmp-border) !important;
    border-radius: 16px;
    background: var(--cmp-card);
}

.cmp-page h1,
.cmp-page h2,
.cmp-page h3 {
    color: var(--cmp-title);
}

.cmp-block-title {
    font-size: 1.95rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-left: 12px;
    line-height: 1.2;
    position: relative;
}

.cmp-block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 10px;
    background: var(--cmp-accent);
}

.cmp-select-grid {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cmp-slot {
    min-height: 170px;
    border-radius: 16px;
    border: 1px solid var(--cmp-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex: 1 1 0;
    padding: 18px;
    color: #7c8ca4;
}

.cmp-slot-empty {
    border-style: dashed;
    background: var(--cmp-soft);
    color: #8192ad;
    font-size: 3rem;
    font-weight: 700;
    flex-direction: column;
    gap: 6px;
}

.cmp-slot-empty span:last-child {
    font-size: 4.1rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.cmp-slot-empty:hover {
    color: var(--cmp-title);
    border-color: #9db1cd;
}

.cmp-slot-empty:focus {
    outline: 2px solid #90b6ff;
    outline-offset: 2px;
}

.cmp-slot-plus {
    line-height: 1;
}

.cmp-slot-filled {
    flex-direction: column;
    color: var(--cmp-title);
}

.cmp-slot-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff1f0;
    border: 1px solid #ffc6c3;
    color: #c92f27;
    font-weight: 700;
    text-decoration: none;
    line-height: 17px;
}

.cmp-slot-remove:hover {
    color: #a72721;
}

.cmp-slot-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 8px;
}

.cmp-slot-name {
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--cmp-title);
    font-weight: 700;
}

.cmp-vs {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
}

.cmp-now-btn {
    min-width: 460px;
    border-radius: 16px;
    padding: 0.9rem 1.6rem;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    border: 1px solid #adb5c0;
    background: #f3f3f5;
}

.cmp-now-btn:hover,
.cmp-now-btn:focus {
    color: #ffffff;
    background: #eaedf1;
}

.cmp-now-btn.disabled,
.cmp-now-btn:disabled {
    pointer-events: none;
    opacity: 0.68;
}

.cmp-brand-status {
    min-height: 20px;
}

.cmp-empty-products {
    border: 1px dashed var(--cmp-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: var(--cmp-muted);
    background: var(--cmp-soft);
}

.cmp-product-card {
    border: 1px solid var(--cmp-border);
    border-radius: 12px;
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.cmp-product-image {
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto 10px;
    width: auto;
}

.cmp-product-name {
    color: var(--cmp-title);
    font-weight: 700;
    line-height: 1.3;
    min-height: 42px;
    margin-bottom: 6px;
}

.cmp-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--cmp-muted);
    margin-bottom: 10px;
}

.cmp-add-btn {
    margin-top: auto;
    background: var(--cmp-btn);
    border: 1px solid var(--cmp-btn);
    color: #ffffff;
    font-weight: 600;
}

.cmp-add-btn:hover {
    background: var(--cmp-btn-hover);
    border-color: var(--cmp-btn-hover);
    color: #ffffff;
}

.cmp-add-btn.disabled,
.cmp-add-btn:disabled {
    background: #cbd5e1;
    border-color: #cbd5e1;
    color: #334155;
}

.cmp-suggest-card {
    border: 1px solid var(--cmp-border);
    border-radius: 12px;
    padding: 12px;
    min-height: 124px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cmp-suggest-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
    flex: 0 0 72px;
}

.cmp-suggest-meta {
    min-width: 0;
    width: 100%;
}

.cmp-suggest-name {
    color: var(--cmp-title);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cmp-vs-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--cmp-border);
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    color: var(--cmp-title);
    min-height: 110px;
}

.cmp-vs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 0;
}

.cmp-vs-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
}

.cmp-vs-item span {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.cmp-vs-round {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 48px;
}

.cmp-search-modal {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cmp-search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.cmp-search-dialog {
    width: min(860px, 100%);
    max-height: calc(100vh - 32px);
    overflow: auto;
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--cmp-border);
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(2, 8, 23, 0.22);
}

.cmp-search-dialog h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    color: var(--cmp-title);
}

.cmp-search-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--cmp-border);
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-weight: 700;
    padding-bottom: 28px;
    cursor: pointer;
}

.cmp-search-note {
    font-size: 0.95rem;
    color: #0f3d6d;
    background: #edf5ff;
    border: 1px solid #cfe2ff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.cmp-search-hint {
    min-height: 18px;
    font-size: 0.9rem;
    margin-top: 8px;
}

.cmp-search-results {
    max-height: 420px;
    overflow: auto;
}

.cmp-search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--cmp-border);
    border-radius: 10px;
    margin-bottom: 8px;
    background: #ffffff;
}

.cmp-search-item:last-child {
    margin-bottom: 0;
}

.cmp-search-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.cmp-search-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.cmp-search-name {
    color: var(--cmp-title);
    font-weight: 700;
    line-height: 1.35;
}

.cmp-search-sub {
    font-size: 12px;
    color: var(--cmp-muted);
}

.cmp-search-empty {
    border: 1px dashed var(--cmp-border);
    border-radius: 10px;
    padding: 14px;
    color: var(--cmp-muted);
    text-align: center;
    background: var(--cmp-soft);
}

.cmp-detail-sticky-wrap {
    position: sticky;
    top: 62px;
    z-index: 30;
}

.cmp-detail-sticky .card-body {
    border-radius: 16px;
    overflow: hidden;
}

.cmp-sticky-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--cmp-border);
    background: #f4f6fa;
}

.cmp-sticky-title {
    color: var(--cmp-title);
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
}

.cmp-share-btn {
    border: 1px solid var(--cmp-border);
    background: #fff;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 600;
    padding: 0.38rem 0.7rem;
}

.cmp-sticky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    border-bottom: 1px solid var(--cmp-border);
}

.cmp-sticky-product,
.cmp-sticky-add {
    text-align: center;
    border-right: 1px solid var(--cmp-border);
    padding: 12px;
    min-height: 198px;
    position: relative;
    background: #fff;
}

.cmp-sticky-grid > :last-child {
    border-right: 0;
}

.cmp-sticky-remove {
    position: absolute;
    right: 10px;
    top: 8px;
    color: #1f2937;
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 500;
}

.cmp-sticky-score {
    position: absolute;
    left: 10px;
    top: 8px;
    background: var(--cmp-score);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.78rem;
    padding: 4px 6px;
}

.cmp-sticky-image {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 8px;
}

.cmp-sticky-name {
    color: var(--cmp-title);
    font-size: 1.07rem;
    font-weight: 700;
    line-height: 1.25;
    min-height: 50px;
}

.cmp-sticky-name.short {
    display: none;
}

.cmp-sticky-price {
    font-size: 1.85rem;
    color: #111827;
    font-weight: 800;
    line-height: 1.05;
}

.cmp-sticky-meta {
    font-size: 1.1rem;
    color: #7a889f;
}

.cmp-sticky-store {
    font-size: 1rem;
    color: var(--cmp-accent);
    font-weight: 700;
    text-decoration: none;
}

.cmp-sticky-add {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--cmp-accent);
    border: 0;
    background: #fff;
}

.cmp-sticky-add span {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffc48d;
    background: #fff5eb;
    font-size: 1.7rem;
    line-height: 1;
}

.cmp-sticky-add strong {
    font-size: 1.4rem;
}

.cmp-sticky-footer {
    padding: 10px 14px;
    display: flex;
    justify-content: flex-end;
    background: #f4f6fa;
}

.cmp-diff-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 500;
}

.cmp-vs-inline {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin: 0 10px;
    vertical-align: middle;
}

.cmp-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    border-top: 1px solid var(--cmp-border);
}

.cmp-price-cell {
    text-align: center;
    padding: 16px;
    border-right: 1px solid var(--cmp-border);
}

.cmp-price-grid > :last-child {
    border-right: 0;
}

.cmp-price-value {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.cmp-price-store {
    margin-top: 4px;
    display: inline-block;
    color: var(--cmp-accent);
    font-weight: 700;
    text-decoration: none;
}

.cmp-spec-section {
    overflow: hidden;
}

.cmp-spec-section > summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    border-bottom: 1px solid var(--cmp-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--cmp-title);
}

.cmp-spec-section > summary::-webkit-details-marker {
    display: none;
}

.cmp-summary-arrow {
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.cmp-spec-section:not([open]) .cmp-summary-arrow {
    transform: rotate(180deg);
}

.cmp-spec-table {
    margin-bottom: 0;
}

.cmp-spec-table th,
.cmp-spec-table td {
    border: 1px solid var(--cmp-border);
    padding: 14px;
    text-align: center;
    vertical-align: middle;
    color: #1f2937;
    font-size: 1.04rem;
}

.cmp-field-label th {
    text-align: left;
    font-size: 1.3rem;
    color: #0f172a;
    background: #f0f3f8;
    font-weight: 700;
}

.cmp-field-values td {
    background: #ffffff;
    min-width: 220px;
}

.cmp-cell-muted {
    color: #97a5ba;
}

.cmp-score-badge {
    display: inline-block;
    min-width: 56px;
    background: var(--cmp-score);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    padding: 6px 9px;
    line-height: 1.1;
}

.cmp-rating-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cmp-rating-track {
    width: 132px;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: #dbe5f2;
}

.cmp-rating-track > span {
    display: block;
    height: 100%;
    background: #8cb927;
}

.cmp-rating-label {
    font-size: 0.92rem;
    color: #5d6a7e;
    font-weight: 600;
}

/* Selection page compact sizing */
.cmp-page-select .cmp-block-title {
    font-size: 1.45rem;
}

.cmp-page-select .cmp-select-grid {
    gap: 12px;
}

.cmp-page-select .cmp-slot {
    min-height: 110px;
    border-radius: 14px;
    padding: 12px;
}

.cmp-page-select .cmp-slot-empty {
    font-size: 1.35rem;
    gap: 2px;
}

.cmp-page-select .cmp-slot-empty span:last-child {
    font-size: 1.3rem;
    letter-spacing: 0;
}

.cmp-page-select .cmp-slot-image {
    width: 64px;
    height: 64px;
    margin-bottom: 6px;
}

.cmp-page-select .cmp-slot-name {
    font-size: 0.94rem;
}

.cmp-page-select .cmp-vs {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    flex: 0 0 42px;
}

.cmp-page-select .cmp-now-btn {
    min-width: 300px;
    padding: 0.68rem 1.4rem;
    font-size: 1.55rem;
    border-radius: 14px;

}

/* Compare details compact typography + sticky style */
.cmp-page-details {
    font-size: 0.95rem;
}

.cmp-page-details .cmp-detail-sticky-wrap {
    top: 0;
    z-index: 100;
}

.cmp-page-details .cmp-detail-sticky {
    border-top: 4px solid #133B5C !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.cmp-page-details .cmp-detail-sticky .card-body {
    border-radius: 0;
}

.cmp-page-details .cmp-sticky-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    border-bottom: 1px solid var(--cmp-border);
}

.cmp-page-details .cmp-sticky-product,
.cmp-page-details .cmp-sticky-add {
    min-height: 96px;
    padding: 10px 12px;
}

.cmp-page-details .cmp-sticky-product {
    text-align: left;
}

.cmp-page-details .cmp-sticky-add {
    text-align: center;
}

.cmp-page-details .cmp-sticky-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmp-page-details .cmp-sticky-content {
    min-width: 0;
}

.cmp-page-details .cmp-sticky-image {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex: 0 0 52px;
}

.cmp-page-details .cmp-sticky-name {
    font-size: 0.94rem;
    line-height: 1.25;
    min-height: 0;
    margin-bottom: 2px;
}

.cmp-page-details .cmp-sticky-price {
    font-size: 1.35rem;
}

.cmp-page-details .cmp-sticky-meta {
    font-size: 0.9rem;
}

.cmp-page-details .cmp-sticky-store {
    font-size: 0.84rem;
}

.cmp-page-details .cmp-sticky-add {
    gap: 4px;
}

.cmp-page-details .cmp-sticky-add span {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
}

.cmp-page-details .cmp-sticky-add strong {
    font-size: 1rem;
}

.cmp-page-details .cmp-sticky-score {
    top: 6px;
    left: 8px;
    padding: 3px 6px;
    font-size: 0.72rem;
}

.cmp-page-details .cmp-sticky-remove {
    top: 5px;
    right: 8px;
    font-size: 1rem;
}

.cmp-page-details .cmp-sticky-footer {
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
}

.cmp-page-details .cmp-diff-toggle {
    font-size: 0.92rem;
}

.cmp-page-details .cmp-share-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
}

.cmp-page-details .cmp-spec-section > summary {
    font-size: 1.2rem;
    padding: 12px 14px;
}

.cmp-page-details .cmp-spec-table th,
.cmp-page-details .cmp-spec-table td {
    padding: 9px 10px;
    font-size: 0.9rem;
}

.cmp-page-details .cmp-field-label th {
    font-size: 0.96rem;
}

.cmp-page-details .cmp-price-cell {
    padding: 10px 12px;
}

.cmp-page-details .cmp-price-value {
    font-size: 1.2rem;
}

.cmp-page-details .cmp-price-store {
    font-size: 0.84rem;
}

.cmp-page-details .cmp-rating-track {
    width: 92px;
    height: 7px;
}

.cmp-page-details .cmp-rating-label {
    font-size: 0.8rem;
}

@media (max-width: 1400px) {
    .cmp-now-btn {
        font-size: 2rem;
    }

    .cmp-slot-empty span:last-child {
        font-size: 3.3rem;
    }
}

@media (max-width: 1200px) {
    .cmp-block-title,
    .cmp-spec-section > summary {
        font-size: 1.5rem;
    }

    .cmp-now-btn {
        min-width: 360px;
        font-size: 2.5rem;
    }

    .cmp-vs-item span {
        font-size: 1.05rem;
    }
}

@media (max-width: 991px) {
    .cmp-page {
        padding-left: 8px;
        padding-right: 8px;
    }

    .cmp-select-grid {
        flex-wrap: wrap;
    }

    .cmp-slot {
        flex: 1 1 calc(50% - 7px);
    }

    .cmp-vs {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        flex: 0 0 46px;
    }

    .cmp-now-btn {
        min-width: 300px;
        font-size: 2.2rem;
    }

    .cmp-sticky-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cmp-detail-sticky-wrap {
        top: 58px;
    }
}

@media (max-width: 767px) {
    .cmp-block-title,
    .cmp-spec-section > summary {
        font-size: 1.28rem;
    }

    .cmp-select-grid {
        flex-direction: column;
        gap: 10px;
    }

    .cmp-slot {
        width: 100%;
        flex: 1 1 100%;
        min-height: 140px;
    }

    .cmp-slot-empty {
        font-size: 2.3rem;
    }

    .cmp-slot-empty span:last-child {
        font-size: 2.85rem;
    }

    .cmp-vs {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        flex: 0 0 34px;
    }

    .cmp-now-btn {
        width: 100%;
        min-width: 0;
        font-size: 1.85rem;
    }

    .cmp-search-dialog {
        padding: 14px;
    }

    .cmp-search-item {
        flex-wrap: wrap;
    }

    .cmp-search-item .cmp-add-btn {
        width: 100%;
    }

    .cmp-sticky-grid {
        grid-template-columns: 1fr;
    }

    .cmp-sticky-product,
    .cmp-sticky-add {
        border-right: 0;
        border-bottom: 1px solid var(--cmp-border);
    }

    .cmp-sticky-grid > :last-child {
        border-bottom: 0;
    }

    .cmp-sticky-price,
    .cmp-price-value {
        font-size: 1.45rem;
    }

    .cmp-price-grid {
        grid-template-columns: 1fr;
    }

    .cmp-price-cell {
        border-right: 0;
        border-bottom: 1px solid var(--cmp-border);
    }

    .cmp-price-grid > :last-child {
        border-bottom: 0;
    }

    .cmp-page-select .cmp-now-btn {
        min-width: 0;
        width: 100%;
        font-size: 1.3rem;
    }

    .cmp-page-select .cmp-slot {
        min-height: 94px;
    }

    .cmp-page-select .cmp-slot-empty {
        font-size: 1rem;
    }

    .cmp-page-select .cmp-slot-empty span:last-child {
        font-size: 1.5rem;
    }

    .cmp-page-details .cmp-detail-sticky-wrap {
        top: 0;
    }

    .cmp-page-details .cmp-sticky-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cmp-page-details .cmp-sticky-product,
    .cmp-page-details .cmp-sticky-add {
        min-height: 84px;
    }

    .cmp-page-details .cmp-sticky-footer {
        align-items: flex-start;
        gap: 8px;
    }

    .cmp-page-details .cmp-sticky-image {
        width: 42px;
        height: 42px;
        flex: 0 0 40px;
    }

    .cmp-page-details .cmp-sticky-name,
    .cmp-page-details .cmp-sticky-meta {
        font-size: 0.74rem;
    }

    .cmp-page-details .cmp-sticky-add span {
        width: 24px;
        height: 24px;
        font-size: 1.15rem;
    }

    .cmp-page-details .cmp-sticky-add strong {
        font-size: 0.70rem;
    }

    .cmp-field-values td {
        min-width: unset;
    }

    .cmp-page-details .cmp-spec-section > summary {
        font-size: 1rem;
        padding: 8px;
    }

    .cmp-page-details .cmp-spec-table th, .cmp-page-details .cmp-spec-table td {
        padding: 8px;
        font-size: 0.79rem;
    }

    .cmp-page-details .cmp-field-label th {
        font-size: 0.76rem;
    }

    .cmp-page-details .cmp-sticky-price {
        font-size: 0.80rem;
    }

    .cmp-page-details .cmp-sticky-store {
        font-size: 0.64rem;
    }

    .cmp-page-details .cmp-sticky-product, .cmp-page-details .cmp-sticky-add {
        min-height: 75px;
        padding: 5px 8px;
    }

    .cmp-page-details .cmp-sticky-score {
        top: 4px;
        left: 5px;
        padding: 2px 4px;
        font-size: 0.44rem;
    }

    .cmp-sticky-name.full {
        display: none;
    }

    .cmp-sticky-name.short {
        display: block;
    }

    .cmp-page-details .cmp-sticky-main {
        gap: 0px;
    }

    .cmp-page-details .cmp-sticky-remove {
        right: 5px;
        font-size: 0.75rem;
    }

    .cmp-page-details .cmp-rating-track {
        width: 55px;
        height: 5px;
    }

    .cmp-vs-round {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: 12px;
    }

    .cmp-vs-item span {
        font-size: 0.76rem;
    }
}
