/* ==========================================================
   pressotherapy.co.uk - VS Comparison Page Styles
   Shared across all /vs/ pages.
   ========================================================== */

/* ========== HERO ========== */
.vs-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.vs-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(11,122,117,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.vs-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem 2rem 3rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.vs-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--grey-400);
    margin-bottom: 1.5rem;
}
.vs-hero .breadcrumb a {
    color: var(--grey-400);
    text-decoration: none;
    transition: var(--transition);
}
.vs-hero .breadcrumb a:hover { color: white; }
.vs-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}
.vs-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.vs-hero h1 .vs-badge {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 0.125rem 0.75rem;
    border-radius: 6px;
    vertical-align: middle;
    margin: 0 0.25rem;
    letter-spacing: 0;
}
.vs-hero .hero-subtitle {
    font-size: 1.0625rem;
    color: var(--grey-400);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* ========== VERDICT BOX ========== */
.verdict-box {
    max-width: 800px;
    margin: -1.5rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.verdict-card {
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-md);
}
.verdict-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 0.625rem;
}
.verdict-card p {
    font-size: 1rem;
    color: var(--navy-80);
    line-height: 1.7;
}
.verdict-card strong {
    color: var(--navy);
}

/* ========== ARTICLE LAYOUT ========== */
.vs-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}
.vs-layout h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin: 2.75rem 0 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.vs-layout h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}
.vs-layout p {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.vs-layout strong {
    color: var(--navy);
    font-weight: 600;
}
.vs-layout ul, .vs-layout ol {
    margin: 0 0 1.25rem 1.25rem;
    color: var(--grey-600);
    line-height: 1.75;
}
.vs-layout li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* ========== COMPARISON TABLE ========== */
.vs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.875rem;
}
.vs-table thead th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.8125rem;
    border-bottom: 2px solid var(--grey-200);
}
.vs-table thead th:first-child {
    background: transparent;
    color: var(--grey-500);
}
.vs-table thead th:nth-child(2) {
    background: var(--teal-50);
    color: var(--teal);
    border-radius: var(--radius-sm) 0 0 0;
}
.vs-table thead th:nth-child(3) {
    background: var(--grey-50);
    color: var(--navy);
    border-radius: 0 var(--radius-sm) 0 0;
}
.vs-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--grey-100);
    color: var(--grey-600);
    vertical-align: top;
}
.vs-table tbody td:first-child {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}
.vs-table tbody tr:hover {
    background: var(--grey-50);
}
.vs-table .winner {
    color: var(--teal);
    font-weight: 600;
}
.vs-table .draw {
    color: var(--gold);
    font-weight: 500;
}

/* ========== CHOOSE CARDS ========== */
.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}
.choose-card {
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    border: 1px solid;
}
.choose-card-presso {
    background: var(--teal-50);
    border-color: rgba(11,122,117,0.15);
}
.choose-card-gun, .choose-card-alt {
    background: var(--grey-50);
    border-color: var(--grey-200);
}
.choose-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.choose-card-presso h3 { color: var(--teal); }
.choose-card-gun h3, .choose-card-alt h3 { color: var(--navy); }
.choose-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.choose-card li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--grey-600);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.choose-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.choose-card-presso li::before { background: var(--teal); }
.choose-card-gun li::before, .choose-card-alt li::before { background: var(--navy); }

/* ========== BOTH TOGETHER BOX ========== */
.both-box {
    background: var(--gold-bg);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0 2rem;
}
.both-box-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B45309;
    margin-bottom: 0.5rem;
}
.both-box p {
    font-size: 0.9375rem;
    color: var(--navy-80);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}
.both-box p:last-child { margin-bottom: 0; }

/* ========== FINAL VERDICT ========== */
.final-verdict {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2e47 100%);
    border-radius: var(--radius);
    padding: 2rem 2rem;
    margin: 2.5rem 0;
}
.final-verdict h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem;
}
.final-verdict p {
    font-size: 0.9375rem;
    color: var(--grey-400);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.final-verdict p:last-of-type { margin-bottom: 0; }
.final-verdict .btn-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

/* ========== FAQ ========== */
.faq-list { margin-top: 1rem; }
.faq-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: white;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { background: var(--grey-50); }
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--grey-400);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
}
.faq-item.active .faq-answer { display: block; }
.faq-answer p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========== RELATED COMPARISONS ========== */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}
.related-card {
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}
.related-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}
.related-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}
.related-card p {
    font-size: 0.8125rem;
    color: var(--grey-500);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .vs-hero h1 { font-size: 1.875rem; }
    .vs-hero h1 .vs-badge { font-size: 1rem; }
    .choose-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .final-verdict .btn-row { flex-direction: column; }
}
@media (max-width: 640px) {
    .vs-hero-inner { padding: 2.5rem 1.5rem 2.5rem; }
    .vs-layout { padding: 2rem 1.5rem 3rem; }
    .verdict-box { padding: 0 1.5rem; }
    .vs-table { font-size: 0.8125rem; }
    .vs-table thead th, .vs-table tbody td { padding: 0.625rem 0.75rem; }
}
