.cvc-product-advisor {
    --cvc-bg: #f4f6f8;
    --cvc-card: #ffffff;
    --cvc-accent: #2f63a2;
    --cvc-accent-dark: #244f83;
    --cvc-text: #1a2733;
    --cvc-muted: #667685;
    --cvc-border: #e2e8ef;
    --cvc-ok: #1e874b;
    --cvc-warn: #b25d00;
    color: var(--cvc-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
}
.cvc-product-advisor,
.cvc-product-advisor * { box-sizing: border-box; }
.cvc-product-advisor .cvc-advisor-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}
.cvc-product-advisor .cvc-advisor-header h1 { font-size: 1.6rem; margin: 0 0 4px; }
.cvc-product-advisor .cvc-advisor-header p { color: var(--cvc-muted); margin: 0 0 24px; }
.cvc-product-advisor .cvc-advisor-search {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
    background: var(--cvc-card);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,40,80,.06);
    border: 1px solid var(--cvc-border);
}

.cvc-product-advisor .cvc-advisor-search input[type=text] {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 14px;
    background: transparent;
    color: var(--cvc-text);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.cvc-product-advisor .cvc-advisor-search button {
    flex: 0 0 auto;
    min-width: 140px;
    border: none;
    background: var(--cvc-accent);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    transition: background .15s;
}

.cvc-product-advisor .cvc-advisor-search button:hover {
    background: var(--cvc-accent-dark);
}

.cvc-product-advisor .cvc-advisor-search button:disabled {
    opacity: .7;
    cursor: not-allowed;
}
.cvc-product-advisor .cvc-advisor-examples {
    font-size: .85rem;
    color: var(--cvc-muted);
    margin: -18px 0 28px;
}
.cvc-product-advisor .cvc-advisor-examples a {
    color: var(--cvc-accent);
    text-decoration: none;
    margin-right: 12px;
}
.cvc-product-advisor .advice {
    background: var(--cvc-card); border: 1px solid var(--cvc-border);
    border-left: 4px solid var(--cvc-accent); border-radius: 10px;
    padding: 20px 24px; margin-bottom: 28px; box-shadow: 0 2px 8px rgba(10,40,80,.05);
}
.cvc-product-advisor .advice p { margin: 0 0 12px; }
.cvc-product-advisor .advice p:last-child { margin-bottom: 0; }
.cvc-product-advisor .error {
    background: #fff3f3; border: 1px solid #f0c0c0; color: #9b2020;
    padding: 14px 18px; border-radius: 10px; margin-bottom: 24px; font-size: .92rem;
    word-break: break-word;
}
.cvc-product-advisor .rate-limit {
    background: #f2f7fc; border: 1px solid #bfd0e4; border-left: 4px solid var(--cvc-accent);
    color: #24425f; padding: 16px 18px; border-radius: 10px; margin-bottom: 24px;
    font-size: .94rem; box-shadow: 0 2px 8px rgba(47,99,162,.06);
}
.cvc-product-advisor .rate-limit strong { display: block; color: var(--cvc-accent-dark); margin-bottom: 3px; font-size: .98rem; }
.cvc-product-advisor .cvc-advisor-section {
    font-size: 1.05rem;
    margin: 8px 0 14px;
    color: var(--cvc-muted);
    font-weight: 600;
}
.cvc-product-advisor .cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; align-items: stretch; }
.cvc-product-advisor .card {
    background: var(--cvc-card); border: 1px solid var(--cvc-border); border-radius: 10px;
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: box-shadow .15s, transform .15s;
}
.cvc-product-advisor .card:hover { box-shadow: 0 6px 18px rgba(10,40,80,.10); transform: translateY(-2px); }
.cvc-product-advisor .card .imgbox {
    aspect-ratio: 4/3; background: #fafbfc; display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--cvc-border); overflow: hidden;
}
.cvc-product-advisor .card .imgbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cvc-product-advisor .card .body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.cvc-product-advisor .card .hersteller { font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: var(--cvc-muted); }
.cvc-product-advisor .card .name { font-size: .9rem; font-weight: 600; margin: 3px 0 8px; line-height: 1.3; }
.cvc-product-advisor .card .preis { font-weight: 700; color: var(--cvc-text); margin-top: auto; }
.cvc-product-advisor .card .status { font-size: .78rem; margin: 6px 0 10px; }
.cvc-product-advisor .card .status.ok { color: var(--cvc-ok); }
.cvc-product-advisor .card .status.warn { color: var(--cvc-warn); }
.cvc-product-advisor .card a.btn {
    display: block; text-align: center; text-decoration: none; font-size: .85rem; font-weight: 600;
    background: var(--cvc-accent); color: #fff; padding: 9px 0; border-radius: 6px; transition: background .15s;
}
.cvc-product-advisor .card a.btn:hover { background: var(--cvc-accent-dark); }
.cvc-product-advisor .cvc-advisor-note {
    display: block;
    margin-top: 40px;
    padding: 0;
    font-size: .78rem;
    color: var(--cvc-muted);
    text-align: center;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.cvc-product-advisor .cvc-advisor-loading {
    position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center;
    padding: 20px; background: rgba(20,35,50,.56); backdrop-filter: blur(3px);
}
.cvc-product-advisor .cvc-advisor-loading.active { display: flex; }
.cvc-product-advisor .loading-box {
    width: min(440px,100%); background: var(--cvc-card); border-radius: 16px; padding: 30px 34px 28px;
    text-align: center; box-shadow: 0 16px 50px rgba(0,0,0,.28); border-top: 5px solid var(--cvc-accent);
}
.cvc-product-advisor .loading-title { margin-top: 18px; font-size: 1.22rem; font-weight: 700; color: var(--cvc-text); }
.cvc-product-advisor .loading-text { margin-top: 7px; font-size: .92rem; color: var(--cvc-muted); line-height: 1.5; }
.cvc-product-advisor .loading-dots { display: inline-block; min-width: 24px; text-align: left; }
.cvc-product-advisor .loading-dots::after { content: ''; animation: cvcAdvisorDots 1.4s steps(4,end) infinite; }
.cvc-product-advisor .spinner {
    width: 46px; height: 46px; margin: 0 auto; border: 4px solid #dfe8f1;
    border-top-color: var(--cvc-accent); border-radius: 50%; animation: cvcAdvisorSpin .8s linear infinite;
}
@keyframes cvcAdvisorSpin { to { transform: rotate(360deg); } }
@keyframes cvcAdvisorDots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75%,100% { content: '...'; }
}
.cvc-product-advisor .card.dimmed { opacity: .55; filter: grayscale(.35); }
.cvc-product-advisor .card.dimmed:hover { opacity: .85; filter: grayscale(0); }
.cvc-product-advisor .rest-divider {
    grid-column: 1 / -1; font-size: .85rem; color: var(--cvc-muted); border-top: 1px dashed var(--cvc-border);
    padding-top: 16px; margin-top: 4px;
}
.cvc-product-advisor .service-hinweis {
    background: var(--cvc-card); border: 1px solid var(--cvc-border); border-left: 4px solid var(--cvc-accent);
    border-radius: 10px; padding: 24px 28px; margin-bottom: 28px; box-shadow: 0 2px 8px rgba(10,40,80,.06);
}
.cvc-product-advisor .service-badge {
    display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--cvc-accent); margin-bottom: 8px;
}
.cvc-product-advisor .service-titel { font-size: 1.2rem; margin: 0 0 10px; color: var(--cvc-text); }
.cvc-product-advisor .service-text { margin: 0 0 18px; color: var(--cvc-text); line-height: 1.55; }
.cvc-product-advisor .service-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cvc-product-advisor .service-btn {
    display: inline-block; text-decoration: none; font-weight: 600; font-size: .9rem;
    background: var(--cvc-accent); color: #fff; padding: 11px 20px; border-radius: 8px; transition: background .15s;
}
.cvc-product-advisor .service-btn:hover { background: var(--cvc-accent-dark); }
.cvc-product-advisor .service-btn-tel { background: transparent; color: var(--cvc-accent); border: 1px solid var(--cvc-accent); }
.cvc-product-advisor .service-btn-tel:hover { background: rgba(10,92,168,.08); }
@media (max-width: 640px) {
    .cvc-product-advisor .cvc-advisor-wrap { padding: 18px 8px 50px; }
    .cvc-product-advisor .cvc-advisor-header h1 { font-size: 1.4rem; }
    .cvc-product-advisor .cvc-advisor-search { flex-direction: column; gap: 8px; }
    .cvc-product-advisor .cvc-advisor-search button { width: 100%; min-width: 0; }
    .cvc-product-advisor .loading-box { padding: 26px 22px 24px; }
    .cvc-product-advisor .cards { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
}
@media (max-width: 430px) {
    .cvc-product-advisor .cards { grid-template-columns: 1fr; }
}