.ww-eval {
    position: relative;
    padding: 3rem 1.5rem;
}

.ww-eval-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.ww-eval-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ww-eval-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .ww-eval-header {
        margin-bottom: 2rem;
    }

    .ww-eval-title {
        font-size: 1.4rem;
    }

    .ww-eval-desc {
        font-size: 0.95rem;
    }
}

.ww-eval-title-accent {
    font-weight: 800;
}

.ww-eval-desc {
    font-size: 1.125rem;
    color: #666;
    max-width: 36rem;
    margin: 0 auto;
}


.ww-mode-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.ww-mode-toggle {
    display: inline-flex;
    background: #f4f4f4;
    padding: 0.35rem;
    border-radius: 9999px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ww-mode-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ww-mode-btn:hover {
    color: #333;
}

.ww-mode-btn.active {
    color: #1a1a1a;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ww-eval-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
}

.ww-eval-result {
    position: sticky;
    top: 6rem;
}


.ww-card {
    background: #ffffff;
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 8px 24px -4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ww-eval-left .ww-card,
.ww-eval-right .ww-card.ww-result-card {
    background: #ffffff;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 8px 24px -4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .ww-card {
        padding: 2.5rem;
    }
}

.ww-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        0 20px 40px -10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .ww-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .ww-card:hover {
        transform: none;
    }
}

.ww-card:focus-within {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.ww-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    pointer-events: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.ww-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ww-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4a4a4a;
}

.ww-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ww-card-sub {
    font-size: 0.875rem;
    color: #666;
}


.ww-result-card {
    display: flex;
    flex-direction: column;
}

.ww-result-card .ww-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ww-result-status {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ww-result-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ww-result-version {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.ww-result-icon {
    font-size: 1.5rem;
    color: #ccc;
}


.ww-rec-view {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.ww-rec-view .ww-btn-action {
    flex-shrink: 0;
}

.ww-rec-content-area {
    min-height: 2rem;
}

.ww-price-display {
    text-align: center;
    padding: 2rem 0;
}

.ww-price-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

@media (max-width: 1024px) {
    .ww-price-display {
        padding: 1.5rem 0;
    }

    .ww-price-value {
        font-size: 2.25rem;
    }
}

.ww-price-currency {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.6;
}

.ww-price-sep {
    font-size: 1.25rem;
    opacity: 0.4;
    margin: 0 0.25rem;
}

.ww-price-hint {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

.ww-rec-view > .ww-price-hint {
    margin-bottom: 1rem;
}

.ww-rec-feedback-hint-wrap {
    margin-top: 0.35rem;
    text-align: center;
}


.ww-valuation-buyback-wrap {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.ww-valuation-buyback-text {
    margin-right: 0.25rem;
}

.ww-rec-find-wrap {
    margin-top: 0.35rem;
    text-align: center;
}


.ww-wx-qr-modal-content {
    width: min(28rem, 94vw) !important;
    max-width: 28rem !important;
    min-height: auto !important;
    max-height: 90vh !important;
    padding: 1.25rem 1.5rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ww-wx-qr-modal-content .ww-modal-header {
    flex-shrink: 0;
    margin-bottom: 0.75rem;
    min-width: 0;
    overflow: visible;
    padding-right: 2.5rem;
}

.ww-wx-qr-modal-content .ww-modal-header h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    word-break: break-word;
}

.ww-wx-qr-modal-content .ww-modal-sub {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin: 0;
    word-break: break-word;
    color: #555;
}

.ww-wx-qr-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0;
    flex: 0 0 auto;
    min-height: 15rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0.75rem;
}

.ww-wx-qr-image {
    width: 14rem;
    height: 14rem;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    display: block;
}

.ww-price-model-only-tip {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 193, 7, 0.12);
    border-radius: 6px;
    border-left: 3px solid #f0ad4e;
}

.ww-price-model-only-tip-text {
    font-size: 0.8125rem;
    color: #856404;
    margin: 0;
}

.ww-price-ref-lines {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #555;
}

.ww-price-ref-line {
    margin: 0.25rem 0;
}

.ww-rec-results-section {
    margin-top: 2.25rem;
}

.ww-rec-results-inline {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.ww-recommendation-results {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: stretch;
}

.ww-rec-header-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ww-rec-section-title {
    margin: 0;
    font-size: 1.05rem;
    color: #374151;
    font-weight: 600;
}

.ww-rec-section-sub {
    margin: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.ww-rec-hint {
    width: 100%;
    margin: 0 0 0.45rem 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.ww-rec-card {
    position: relative;
    flex: 1 1 calc(33.333% - 0.75rem);
    min-width: 0;
    max-width: none;
    padding: 1rem 1.15rem 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}


.ww-rec-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ww-rec-card-header .ww-rec-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.ww-rec-card-header .ww-rec-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    flex-shrink: 0;
    margin: 0;
}

.ww-rec-card-header .ww-rec-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.ww-rec-card-header .ww-rec-score {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.ww-rec-card-header .ww-rec-score i {
    font-size: 0.85rem;
}

.ww-rec-layout {
    width: 100%;
}

.ww-rec-card .ww-rec-layout-compact {
    margin-top: 0;
}

.ww-rec-layout-compact .ww-rec-header {
    margin-bottom: 0.15rem;
}

.ww-rec-layout-compact .ww-rec-subtitle {
    margin-bottom: 0.35rem;
}

.ww-rec-header {
    margin-bottom: 0.3rem;
}

.ww-rec-title-block {
    margin-bottom: 0.2rem;
}

.ww-rec-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 0;
}

.ww-rec-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

.ww-recommendation-results .rec-avatars-row.pairing-avatars {
    justify-content: flex-start !important;
    margin-top: 0;
    margin-bottom: 0;
}

.ww-recommendation-results .rec-avatars-row.pairing-avatars .pairing-avatar-item {
    gap: 0.3rem;
}

.ww-recommendation-results .rec-avatars-row.pairing-avatars .pairing-avatar-circle {
    width: 48px;
    height: 48px;
}

.ww-recommendation-results .rec-avatars-row.pairing-avatars .pairing-avatar-name {
    font-size: 0.75rem;
}

.ww-recommendation-results .ww-rec-plus {
    display: none;
}

.ww-rec-avatar-trigger {
    cursor: pointer;
}

.ww-rec-avatar-trigger .pairing-avatar-item:hover .pairing-avatar-circle {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 960px) {
    .ww-rec-card {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.ww-rec-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    margin: 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #9ca3af;
}

.ww-rec-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    margin-bottom: 0.35rem;
}

.ww-rec-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.ww-rec-score {
    font-size: 0.78rem;
    color: #4b5563;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ww-rec-score i {
    font-size: 0.9rem;
}

.ww-rec-detail {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.8;
}

.ww-rec-detail-line {
    margin-bottom: 0.1rem;
}

.ww-rec-recommend {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 18rem;
}

.ww-rec-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start; 
    gap: 0.5rem;
}

@media (max-width: 960px) {
    .ww-rec-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
    }

    .ww-rec-price-block {
        align-items: flex-start;
    }
}

