/* CAW Value Points — front-end styling
   Note: badge layout, colors, and icon sizing are inlined directly in
   caw_vp_badge_html() (see includes/display.php) rather than left to
   this stylesheet alone, so theme CSS can't override the icon size or
   hide the score text. This file only adds the hover transition. */

.caw-vp-badge {
    transition: background 0.15s ease;
}
.caw-vp-badge:hover {
    background: #f7ecd6 !important;
    color: #5c4400 !important;
}

/* Review form */
.caw-vp-review-form {
    max-width: 480px;
    margin: 0 auto;
}
.caw-vp-question {
    margin-bottom: 1.5rem;
}
.caw-vp-question label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.caw-vp-question input[type="range"] {
    width: 100%;
}
.caw-vp-question output {
    display: inline-block;
    margin-top: 0.3rem;
    font-weight: 700;
    color: #7a2331;
}
.caw-vp-submit-btn {
    background: #7a2331;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.caw-vp-submit-btn:hover {
    background: #5c1a25;
}
.caw-vp-thankyou {
    text-align: center;
    padding: 2rem;
}

/* Explainer page */
.caw-vp-explainer {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}
.caw-vp-explainer-hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
}
.caw-vp-explainer-beagle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #c9a84c;
}
.caw-vp-explainer-hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
}
.caw-vp-explainer-sub {
    font-size: 1.1rem;
    color: #6b6255;
    max-width: 540px;
    margin: 0 auto;
}
.caw-vp-explainer-section {
    margin-bottom: 2.5rem;
}
.caw-vp-explainer-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #7a2331;
}
.caw-vp-explainer-list {
    padding-left: 1.3rem;
}
.caw-vp-explainer-list li {
    margin-bottom: 0.6rem;
}
.caw-vp-explainer-benefits {
    list-style: none;
    padding-left: 0;
}
.caw-vp-explainer-benefits li {
    background: #fdf6ec;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.6rem;
}
.caw-vp-explainer-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.caw-vp-explainer-table th,
.caw-vp-explainer-table td {
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid #e5e0d8;
}
.caw-vp-explainer-table th {
    color: #7a2331;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.caw-vp-explainer-table td:first-child {
    color: #6b6255;
    font-weight: 600;
}
.caw-vp-explainer-cta {
    text-align: center;
    background: #f8f5f0;
    border-radius: 10px;
    padding: 1.75rem;
    font-size: 1rem;
}

