/* ==========================================================================
   EIRTHUM - 1-ON-1 SPICE VERSUS COMPARISON PAGE STYLES
   ========================================================================== */

.svd-page {
    background: #fbfaf6;
    color: #123321;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

.svd-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Breadcrumbs */
.svd-breadcrumbs {
    padding: 1.25rem 0 0.5rem;
    font-size: 0.84rem;
    color: #6a8276;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.svd-breadcrumbs a {
    color: #188a53;
    text-decoration: none;
    font-weight: 600;
}

.svd-breadcrumbs a:hover {
    text-decoration: underline;
}

.svd-breadcrumbs-sep {
    color: #a5b8ae;
}

/* --- HERO SECTION --- */
.svd-hero {
    padding: 2.5rem 0 3.5rem;
    background: linear-gradient(180deg, #f3efe4 0%, #fbfaf6 100%);
    border-bottom: 1px solid #e5dfd0;
}

.svd-hero-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.svd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef5f0;
    border: 1px solid #cbe0d3;
    color: #188a53;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.svd-hero-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #123321;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.015em;
}

.svd-hero-lead {
    font-size: 1.1rem;
    color: #4a6356;
    line-height: 1.7;
    margin: 0;
}

/* Side-by-Side Product Spotlight Cards */
.svd-spotlight-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: stretch;
}

.svd-spotlight-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1.5px solid #e5dfd0;
    padding: 2rem;
    box-shadow: 0 10px 32px rgba(18, 51, 33, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.svd-card-eirthum {
    border-color: #188a53;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9f6 100%);
    box-shadow: 0 14px 44px rgba(24, 138, 83, 0.12);
}

.svd-card-badge-top {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #188a53;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

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

.svd-product-img {
    width: 96px;
    height: 96px;
    min-width: 96px;
    object-fit: contain;
    border-radius: 14px;
    border: 1.5px solid #e5dfd0;
    background: #ffffff;
    padding: 6px;
    box-sizing: border-box;
}

.svd-product-meta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #123321;
    margin: 0 0 4px;
}

.svd-product-meta-sub {
    font-size: 0.82rem;
    color: #188a53;
    font-weight: 700;
}

.svd-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 6px;
}

.svd-price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: #123321;
}

.svd-price-original {
    font-size: 0.95rem;
    color: #94a39b;
    text-decoration: line-through;
}

.svd-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.svd-features-list li {
    font-size: 0.9rem;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.svd-features-list li.pro {
    color: #123321;
}

.svd-features-list li.pro svg {
    color: #188a53;
    flex-shrink: 0;
    margin-top: 3px;
}

.svd-features-list li.con {
    color: #6a8276;
}

.svd-features-list li.con svg {
    color: #b91c1c;
    flex-shrink: 0;
    margin-top: 3px;
}

.svd-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.svd-btn-buy {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #123321;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(18, 51, 33, 0.15);
}

.svd-btn-buy:hover {
    background: #188a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 138, 83, 0.25);
    color: #ffffff;
}

.svd-btn-lab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #188a53;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(24, 138, 83, 0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.svd-btn-lab:hover {
    color: #123321;
    border-bottom-color: #123321;
}

/* --- SECTION STYLES --- */
.svd-section {
    padding: 4rem 0;
    position: relative;
}

.svd-section:nth-child(even) {
    background: #ffffff;
}

.svd-section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.svd-section-title h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.15rem;
    font-weight: 700;
    color: #123321;
    margin: 0 0 0.75rem;
}

.svd-section-title p {
    font-size: 1.02rem;
    color: #556d61;
    margin: 0;
}

/* --- METRICS COMPARISON TABLE --- */
.svd-table-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e5dfd0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 51, 33, 0.04);
}

.svd-table-wrap {
    overflow-x: auto;
}

.svd-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.svd-table thead th {
    background: #f7f5ed;
    color: #123321;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 2px solid #dfd8c7;
    text-align: left;
}

.svd-table thead th.svd-th-eirthum {
    background: #123321;
    color: #ffffff;
    width: 42%;
}

.svd-table tbody tr {
    border-bottom: 1px solid #efebe0;
}

.svd-table tbody tr:hover {
    background: #faf8f2;
}

.svd-table tbody td {
    padding: 1.15rem 1.25rem;
    font-size: 0.88rem;
    color: #4a6356;
    vertical-align: middle;
}

.svd-table tbody td.svd-td-label {
    font-weight: 700;
    color: #123321;
    width: 25%;
}

.svd-table tbody td.svd-td-eirthum {
    background: rgba(24, 138, 83, 0.05);
    font-weight: 600;
    color: #123321;
    border-left: 2px solid #188a53;
    border-right: 2px solid #188a53;
}

/* --- KITCHEN TEST SPOTLIGHT --- */
.svd-kitchen-test-box {
    background: linear-gradient(135deg, #ffffff 0%, #fbf8ef 100%);
    border: 1.5px solid #e5dfd0;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 10px 32px rgba(18, 51, 33, 0.04);
}

.svd-test-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.svd-test-icon {
    font-size: 2rem;
}

.svd-test-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #123321;
    margin: 0 0 2px;
}

.svd-test-instruction {
    font-size: 0.95rem;
    color: #4a6356;
    background: #ffffff;
    border: 1px solid #ebd6a9;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.svd-test-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.svd-result-card {
    border-radius: 14px;
    padding: 1.25rem;
}

.svd-result-eirthum {
    background: #eaf5ee;
    border: 1.5px solid #bce6d0;
}

.svd-result-competitor {
    background: #fdf5eb;
    border: 1.5px solid #fedbb0;
}

.svd-result-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svd-result-eirthum .svd-result-title {
    color: #188a53;
}

.svd-result-competitor .svd-result-title {
    color: #a65800;
}

.svd-result-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #3f554a;
    margin: 0;
}

/* --- RELATED COMPARISONS DIRECTORY --- */
.svd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.svd-related-card {
    background: #ffffff;
    border: 1.5px solid #e5dfd0;
    border-radius: 14px;
    padding: 1.25rem;
    text-decoration: none;
    color: #123321;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(18, 51, 33, 0.02);
}

.svd-related-card:hover {
    transform: translateY(-3px);
    border-color: #188a53;
    box-shadow: 0 8px 24px rgba(18, 51, 33, 0.08);
}

.svd-related-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #123321;
}

.svd-related-card span {
    font-size: 0.78rem;
    color: #188a53;
    font-weight: 600;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .svd-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .svd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svd-hero {
        padding: 1.5rem 0 2rem;
    }

    .svd-hero-header h1 {
        font-size: 1.85rem;
    }

    .svd-spotlight-card {
        padding: 1.25rem;
    }

    .svd-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .svd-product-img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        padding: 4px;
    }

    .svd-test-results-grid {
        grid-template-columns: 1fr;
    }

    .svd-related-grid {
        grid-template-columns: 1fr;
    }
}
