/* =========================================================
   PRODUCT DETAIL - HERO
========================================================= */

.product-detail-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: var(--hero-min-height);
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--hero-text-color);
}

.product-detail-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-detail-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-detail-hero__copy {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: var(--hero-copy-max);
    padding-top: var(--hero-padding-top);
    padding-right: 1.25rem;
    padding-bottom: var(--hero-padding-bottom);
    padding-left: 1.25rem;
    isolation: isolate;
}

.product-detail-hero__copy::before {
    content: "";
    position: absolute;
    top: 9.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(2px);
}

.product-detail-hero__copy > * {
    position: relative;
    z-index: 1;
}

.product-detail-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.product-detail-hero__eyebrow-line {
    width: 72px;
    height: 1px;
    flex-shrink: 0;
    background-color: var(--hero-line-color);
}

.product-detail-hero__eyebrow-text {
    color: var(--hero-text-color);
    font-family: var(--font-body);
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.product-detail-hero__title {
    max-width: min(100%, 1100px);
    margin: 0;
    color: var(--hero-text-color);
    line-height: 0.95;
}

.product-detail-hero__title-text {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    white-space: normal;
    overflow-wrap: break-word;
}

.product-detail-hero__description {
    max-width: 680px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.product-detail-hero__subtitle {
    margin-top: 0.9rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.15;
}

/* =========================================================
   PRODUCT DETAIL - SECTION SPACING
========================================================= */

.product-detail-page {
    --product-detail-container-max: 1680px;
    --product-detail-container-padding-x: 34px;
    --product-detail-section-space-sm: 24px;
    --product-detail-section-space-md: 40px;
    --product-detail-section-space-lg: 64px;
    --product-detail-pane-start-gap: var(--product-detail-section-space-md);
    --product-detail-card-hover-border: var(--color-primary);
}

.fendt-theme.product-detail-page {
    --product-detail-card-hover-border: var(--color-fendt, var(--color-primary));
}

.product-detail-page .container-shell-wide {
    width: 100%;
    max-width: var(--product-detail-container-max);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--product-detail-container-padding-x);
    padding-left: var(--product-detail-container-padding-x);
}

.product-detail-page .section-space-sm {
    padding-top: var(--product-detail-section-space-sm);
    padding-bottom: var(--product-detail-section-space-sm);
}

.product-detail-page .section-space-md,
.product-detail-page .section-spacing {
    padding-top: var(--product-detail-section-space-md);
    padding-bottom: var(--product-detail-section-space-md);
}

.product-detail-page .section-space-lg,
.product-detail-page .detail-section-lg {
    padding-top: var(--product-detail-section-space-lg);
    padding-bottom: var(--product-detail-section-space-lg);
}

.product-detail-page .section-head {
    margin-bottom: 24px;
}

/* Legacy product-detail section aliases still render from older Fendt blocks. */
.product-section {
    background: #ffffff;
}

/* =========================================================
   PRODUCT DETAIL - TABS SECTION
========================================================= */

.tabs-section {
    padding: var(--product-detail-section-space-sm, var(--section-space-sm)) 0 var(--product-detail-section-space-lg, var(--section-space-lg));
    background: #ffffff;
}

.tabs-section__head {
    margin-bottom: 2.5rem;
}

.tabs-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background: #ffffff;
    scrollbar-width: thin;
}

.tabs-nav-left {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    min-width: 0;
}

.tabs-nav-right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: auto;
    padding-left: 1rem;
}

.product-detail-tab-button {
    position: relative;
    flex: 0 0 auto;
    padding: 1rem 1.35rem;
    border: 0;
    border-right: 1px solid var(--color-border-soft);
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition:color var(--transition-fast), background-color var(--transition-fast);
}

.product-detail-tab-button:last-child {
    border-right: 0;
}

.product-detail-tab-button::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    left: 1.1rem;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.product-detail-tab-button.active {
    color: var(--color-primary);
    background: #ffffff;
}

.product-detail-tab-button.active::after {
    transform: scaleX(1);
}

.product-detail-tab-button:hover:not(.active) {
    color: var(--color-text);
    background: rgba(0, 94, 32, 0.04);
}

.tabs-brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 42px;
    padding: 0.7rem 0;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.tabs-brochure-link:hover,
.tabs-brochure-link:focus {
    color: var(--color-primary-hover);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.product-detail-pane {
    display: none;
    background: #ffffff;
}

.product-detail-pane.active {
    display: block;
}

.product-detail-pane > :first-child {
    margin-top: var(--product-detail-pane-start-gap);
}

.product-detail-pane > .section-space-sm:first-child,
.product-detail-pane > .section-space-md:first-child,
.product-detail-pane > .section-space-lg:first-child,
.product-detail-pane > .section-spacing:first-child,
.product-detail-pane > .detail-section-lg:first-child {
    margin-top: 0;
}

.product-detail-pane .spotlight-showcase {
    padding-top: 0.75rem;
}

.product-detail-pane .spotlight-showcase-head {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

/* =========================================================
   PRODUCT DETAIL - INLINE TABS
========================================================= */

.detail-inline-tabs-nav {
    --detail-inline-tabs-bg: transparent;
    --detail-inline-tabs-color: var(--color-text-muted);
    --detail-inline-tabs-hover-bg: var(--color-bg-soft);
    --detail-inline-tabs-hover-color: var(--color-text);
    --detail-inline-tabs-active-bg: rgba(0, 94, 32, 0.05);
    --detail-inline-tabs-letter-spacing: 0.08em;
    --detail-inline-tabs-padding: 0.8rem 1rem;

    gap: 0.65rem;
    flex-wrap: wrap;
    border-bottom: 0;
    background: var(--detail-inline-tabs-bg);
}

.detail-inline-tabs-nav .nav-item {
    margin: 0;
}

.detail-inline-tabs-nav .nav-link {
    margin: 0;
    padding: var(--detail-inline-tabs-padding);
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    color: var(--detail-inline-tabs-color);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: var(--detail-inline-tabs-letter-spacing);
    line-height: 1.2;
    text-transform: uppercase;
}

.detail-inline-tabs-nav .nav-link:hover,
.detail-inline-tabs-nav .nav-link:focus {
    border-color: var(--color-border-strong);
    background: var(--detail-inline-tabs-hover-bg);
    color: var(--detail-inline-tabs-hover-color);
}

.detail-inline-tabs-nav .nav-link.active {
    border-color: var(--color-primary);
    background: var(--detail-inline-tabs-active-bg);
    color: var(--color-primary);
}

/* =========================================================
   PRODUCT DETAIL - METRICS BAND
========================================================= */

.stats-band {
    position: relative;
    z-index: 5;
    margin-top: -4rem;
}

.stats-band__container {
    max-width: 1600px;
    padding-right: clamp(1rem, 3vw, 2.5rem);
    padding-left: clamp(1rem, 3vw, 2.5rem);
}

.stats-shell {
    background: linear-gradient(180deg, #eef3ee 0%, #f2faf2 100%);
    padding-bottom: 0;
}

.stats-grid {
    --stats-columns: 2;
}

.stat-col {
    flex: 0 0 calc(100% / var(--stats-columns));
    max-width: calc(100% / var(--stats-columns));
}

.stat-item {
    height: 100%;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--color-border-soft);
    background: transparent;
}

.stat-value {
    margin-bottom: 0.35rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    line-height: 0.95;
}

.stat-label {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.65;
}

@media (min-width: 992px) {
    .stats-grid {
        --stats-columns: var(--stats-count, 4);
        flex-wrap: nowrap;
    }

    .stats-band--count-5 .stat-item,
    .stats-band--count-6 .stat-item,
    .stats-band--count-7 .stat-item,
    .stats-band--count-8 .stat-item,
    .stats-band--count-9 .stat-item,
    .stats-band--count-10 .stat-item {
        padding: 1.5rem 1.1rem;
    }

    .stats-band--count-5 .stat-value,
    .stats-band--count-6 .stat-value,
    .stats-band--count-7 .stat-value {
        font-size: clamp(1.55rem, 2.35vw, 2.45rem);
    }

    .stats-band--count-8 .stat-value,
    .stats-band--count-9 .stat-value,
    .stats-band--count-10 .stat-value {
        font-size: clamp(1.2rem, 1.7vw, 1.85rem);
    }

    .stats-band--count-5 .stat-label,
    .stats-band--count-6 .stat-label,
    .stats-band--count-7 .stat-label {
        font-size: var(--fs-body);
        line-height: 1.5;
    }

    .stats-band--count-8 .stat-label,
    .stats-band--count-9 .stat-label,
    .stats-band--count-10 .stat-label {
        font-size: var(--fs-body);
        line-height: 1.35;
    }
}

/* =========================================================
   PRODUCT DETAIL - SECTION / EDITORIAL SPLIT
========================================================= */

.section-shell {
    position: relative;
    background: #ffffff;
}

.content-editorial__media {
    position: relative;
    min-height: 640px;
    background: var(--color-bg-soft);
    overflow: hidden;
}

.content-editorial__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center center;
}

.content-editorial__label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--color-border-soft);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.content-editorial__panel {
    min-height: 640px;
    padding: 5rem 5rem 5rem 4.5rem;
    background: #ffffff;
}

.content-editorial__text {
    max-width: 760px;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.9;
}

.content-editorial__text p:last-child {
    margin-bottom: 0;
}

.content-editorial__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 760px;
    border-top: 1px solid var(--color-border-soft);
}

.content-editorial__list li {
    position: relative;
    margin: 0;
    padding: 0.95rem 0 0.95rem 1rem;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text);
    font-size: var(--fs-body);
    font-weight: 500;
    line-height: 1.7;
}

.content-editorial__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.7rem;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
}

/* =========================================================
   PRODUCT DETAIL - CONTENT PANELS / TEXT
========================================================= */

.content-panel {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.content-panel--muted {
    background: var(--color-bg-soft);
}

.section-description {
    max-width: 42rem;
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.85;
}

.stack-lg {
    display: grid;
    gap: 1.5rem;
}

/* =========================================================
   PRODUCT DETAIL - FEATURE CARD
========================================================= */

.detail-feature-card {
    --detail-feature-media-basis: 42%;
    --detail-feature-media-ratio: 4 / 3;
    --detail-feature-media-min-height: 220px;
    --detail-feature-body-padding: 1.4rem 1.35rem 1.5rem;
    --detail-feature-icon-border: rgba(0, 94, 32, 0.16);
    --detail-feature-icon-bg: rgba(0, 94, 32, 0.05);
    --detail-feature-title-size: 1.35rem;

    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    transition: border-color var(--transition-fast);
}

.detail-feature-card:hover,
.detail-feature-card:focus-within {
    border-color: var(--product-detail-card-hover-border);
}

.detail-feature-card--media-left,
.detail-feature-card--media-right {
    flex-direction: row;
}

.detail-feature-card--media-right {
    flex-direction: row-reverse;
}

.detail-feature-card--media-bottom {
    flex-direction: column-reverse;
}

.detail-feature-card__media {
    aspect-ratio: var(--detail-feature-media-ratio);
    min-height: var(--detail-feature-media-min-height);
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.detail-feature-card--media-left .detail-feature-card__media,
.detail-feature-card--media-right .detail-feature-card__media {
    flex: 0 0 var(--detail-feature-media-basis);
    aspect-ratio: auto;
    min-height: 100%;
    border-bottom: 0;
}

.detail-feature-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: var(--detail-feature-media-min-height);
    object-fit: cover;
    object-position: center;
}

.detail-feature-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: var(--detail-feature-body-padding);
}

.detail-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.9rem;
    border: 1px solid var(--detail-feature-icon-border);
    background: var(--detail-feature-icon-bg);
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1;
}

.detail-feature-card__title {
    margin: 0 0 0.7rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: var(--detail-feature-title-size);
    font-weight: 700;
    line-height: 1.2;
}

.detail-feature-card__text {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.detail-feature-card__text > *:last-child {
    margin-bottom: 0;
}

/* Brand-neutral aliases for shared product section partials. */
.brand-feature-grid {
    align-items: stretch;
}

.brand-feature-card,
.brand-overview {
    min-width: 0;
}

.brand-feature-card__body,
.brand-overview__content {
    min-width: 0;
}

.brand-detail-feature-section__bottom-media {
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.brand-detail-feature-section__bottom-media img {
    display: block;
    width: 100%;
    height: auto;
}

.brand-gallery__media,
.brand-gallery__caption {
    min-width: 0;
}

.brand-editorial-split {
    background: #ffffff;
    overflow: hidden;
}

.brand-editorial-split .split-copy,
.brand-editorial-split .split-media {
    height: 100%;
}

.brand-editorial-split .split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
    padding: 1.5rem 1.75rem;
}

.brand-editorial-split .split-copy h3 {
    margin-bottom: 1rem;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.brand-editorial-split .split-copy p {
    margin-bottom: 1rem;
    color: var(--color-text-soft);
}

.brand-editorial-split .split-media {
    position: relative;
    min-height: 0;
    background: none;
    overflow: hidden;
}

.brand-editorial-split ~ .brand-editorial-split {
    margin-top: 4rem;
}

.brand-editorial-split .split-media::before,
.brand-editorial-split .split-media::after {
    display: none;
}

.brand-editorial-split .split-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   PRODUCT DETAIL - OVERVIEW
========================================================= */

.detail-overview {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
}

.detail-overview--text-only {
    grid-template-columns: minmax(0, 860px);
}

.detail-overview--media-right > :first-child {
    order: 2;
}

.detail-overview--media-right > :last-child {
    order: 1;
}

.detail-overview__image {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.detail-overview__title {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 2.4vw, 2.6rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.detail-overview__text {
    margin-bottom: 1rem;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.85;
}

.detail-overview__list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-border-soft);
}

.detail-overview__list li {
    position: relative;
    margin: 0;
    padding: 0.95rem 0 0.95rem 1rem;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text);
    font-size: var(--fs-body);
    font-weight: 500;
    line-height: 1.7;
}

.detail-overview__list li::before {
    content: "";
    position: absolute;
    top: 1.65rem;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
}

.brand-overview__text > *:last-child {
    margin-bottom: 0;
}

.overview-hotspot-block {
    margin-top: var(--section-space-lg);
}

/* =========================================================
   PRODUCT DETAIL - GENERIC DATA TABLE
========================================================= */

.data-table-wrap {
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    overflow: hidden;
}

.data-table-wrap--technical {
    border: 1px solid var(--color-border-strong);
    background: #ffffff;
    box-shadow: none;
}

.data-table-wrap--technical .table-responsive {
    overflow-x: auto;
}

.data-table {
    margin-bottom: 0;
    --bs-table-bg: #ffffff;
    --bs-table-border-color: var(--color-border-soft);
    --bs-table-striped-bg: var(--color-bg-soft);
    --bs-table-hover-bg: #fbfcfa;
}

.data-table thead th {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--color-border-strong);
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.data-table tbody td {
    padding: 1rem 1rem;
    border-top: 1px solid var(--color-border-soft);
    vertical-align: middle;
    background: #ffffff;
}

.data-table-col-label,
.data-table-row-label {
    width: 28%;
}

.data-table-col-unit,
.data-table-row-unit {
    width: 10%;
}

.data-table-col-value,
.data-table-row-value {
    min-width: 130px;
}

.data-table-row-label {
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.55;
}

.data-table-row-unit {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    white-space: nowrap;
}

.data-table-row-value {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.data-table-row-value.is-highlighted {
    background: var(--color-success-soft);
    color: var(--color-text);
    font-weight: 700;
}

.data-table-note {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =========================================================
   PRODUCT DETAIL - TECHNICAL TABLE PRO
========================================================= */

.data-table--pro {
    --dt-cell-y: 0.68rem;
    --dt-cell-x: 0.95rem;
    --dt-font-size: 0.90rem;
    --dt-line-height: 2;

    margin-bottom: 0;
    --bs-table-bg: transparent;
    --bs-table-hover-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-border-color: transparent;
}

.data-table--pro.table > :not(caption) > * > * {
    padding: 0.3rem;
}

.data-table--pro thead th {
    padding: var(--dt-cell-y) var(--dt-cell-x);
    border-top: 0;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.data-table--pro tbody td {
    padding: var(--dt-cell-y) var(--dt-cell-x);
    vertical-align: top;
    font-size: var(--dt-font-size);
    line-height: var(--dt-line-height);
    background: #ffffff;
}

.data-table--pro tbody tr:first-child td {
    border-top: 0;
}

.data-table--pro tbody tr:nth-child(even) td {
    background: #fbfcfa;
}

.data-table--pro tbody tr:hover td {
    background: rgba(0, 94, 32, 0.035);
}

.data-table--pro .data-table-col-label,
.data-table--pro .data-table-row-label {
    width: 31%;
    min-width: 220px;
}

.data-table--pro .data-table-col-unit,
.data-table--pro .data-table-row-unit {
    width: 10%;
    min-width: 90px;
}

.data-table--pro .data-table-col-value,
.data-table--pro .data-table-row-value {
    min-width: 140px;
}

.data-table--pro .data-table-row-label {
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.data-table--pro tbody tr:nth-child(even) .data-table-row-label {
    background: #f4f6f2;
}

.data-table--pro tbody tr:hover .data-table-row-label {
    background: rgba(0, 94, 32, 0.06);
}

.data-table--pro .data-table-row-unit {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    white-space: nowrap;
}

.data-table--pro .data-table-row-value {
    color: var(--color-text-soft);
    word-break: break-word;
}

.data-table--pro .data-table-row-value.is-highlighted {
    background: rgba(0, 94, 32, 0.10) !important;
    color: var(--color-text);
    font-weight: 700;
}

.data-table-wrap--technical .data-table-note {
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--color-border-strong);
    background: linear-gradient(
        180deg,
        rgba(247, 248, 245, 0.94) 0%,
        rgba(243, 243, 240, 0.94) 100%
    );
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* =========================================================
   PRODUCT DETAIL - COMPARE TABLE
========================================================= */

.compare-table {
    width: 100%;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    overflow: hidden;
}

.compare-table thead tr th {
    padding: 1rem 1.05rem;
    background: var(--color-text);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

.compare-table thead tr th:first-child {
    width: 32%;
    background: #1a241d;
    color: rgba(255, 255, 255, 0.72);
}

.compare-table thead tr th.hl {
    background: var(--color-primary);
}

.compare-table tbody tr td {
    padding: 0.82rem 1.05rem;
    border-bottom: 1px solid var(--color-border-soft);
    font-size: 0.84rem;
    line-height: 1.6;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr td:first-child {
    background: #fbfcfa;
    color: var(--color-text-soft);
    font-weight: 600;
}

.compare-table tbody tr td.hl {
    background: rgba(0, 94, 32, 0.06);
    font-weight: 600;
}

.compare-table tbody tr:nth-child(even) td:first-child {
    background: #f6f8f4;
}

.check-y {
    color: var(--color-primary);
    font-weight: 800;
}

.check-n {
    color: #c4cbc6;
}

/* =========================================================
   PRODUCT DETAIL - SPOTLIGHTS
========================================================= */

.spotlight-showcase {
    background: #ffffff;
}

.spotlight-showcase-head {
    margin-top: var(--section-space-sm);
}

.spotlight-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spotlight-showcase-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.spotlight-showcase-item:hover {
    border-color: var(--color-primary);
    background: rgba(0, 94, 32, 0.04);
}

.spotlight-showcase-item-main {
    min-width: 0;
}

.spotlight-showcase-item-title {
    margin: 0 0 0.15rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.spotlight-showcase-item-meta {
    margin: 0.2rem 0 0;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
}

.spotlight-showcase-item-text {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.5;
}

.spotlight-showcase-num {
    color: var(--color-text-faint);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
}

.spotlight-showcase-media-wrap {
    min-width: 0;
    height: 100%;
}

.spotlight-showcase-media-card {
    position: relative;
    height: 100%;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
    overflow: hidden;
}

.spotlight-showcase-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-showcase-caption {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--color-border-soft);
    background: rgba(255, 255, 255, 0.92);
}

.spotlight-showcase-caption-label {
    margin-bottom: 0.35rem;
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.spotlight-showcase-caption-title {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

/* =========================================================
   PRODUCT DETAIL - SMART FARMING MATRIX
========================================================= */

.matrix-compare-section {
    background: #ffffff;
}

.matrix-compare-section .container-shell-wide {
    overflow-x: auto;
}

.matrix-compare-heading {
    max-width: 880px;
}

.matrix-compare-label {
    margin: 0 0 0.45rem 0;
    color: var(--color-primary);
    font-size: var(--fs-body);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.matrix-compare-title {
    margin: 0 0 1rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.matrix-compare-notes {
    max-width: 760px;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.matrix-compare-notes p:last-child,
.matrix-compare-mod-desc p:last-child,
.matrix-compare-cell-content p:last-child {
    margin-bottom: 0;
}

.matrix-compare-header,
.matrix-compare-row {
    display: flex;
    align-items: stretch;
    min-width: 1100px;
}

.matrix-compare-header {
    border-top: 1px solid var(--color-border-strong);
    border-right: 1px solid var(--color-border-soft);
    border-left: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.matrix-compare-row {
    border-right: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-soft);
    border-left: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.matrix-compare-header-cell,
.matrix-compare-cell {
    min-width: 0;
    border-right: 1px solid var(--color-border-soft);
}

.matrix-compare-header-cell:last-child,
.matrix-compare-cell:last-child {
    border-right: 0;
}

.matrix-compare-header-cell--first,
.matrix-compare-cell--title {
    flex: 0 0 30%;
    max-width: 30%;
}

.matrix-compare-header-cell:not(.matrix-compare-header-cell--first),
.matrix-compare-cell:not(.matrix-compare-cell--title) {
    flex: 1 1 0;
}

.matrix-compare-header-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--color-text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.matrix-compare-header-cell--first {
    justify-content: flex-start;
    text-align: left;
}

.matrix-compare-cell {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    padding: 1.2rem 1rem;
    background: #ffffff;
    text-align: left;
}

.matrix-compare-cell--title {
    display: block;
    padding: 1.15rem 1.25rem;
    background: var(--color-bg-soft);
    text-align: left;
}

.matrix-compare-mod-name {
    margin: 0 0 0.4rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: var(--fs-body);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.matrix-compare-mod-desc {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.matrix-compare-cell-content {
    width: 100%;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.7;
    text-align: left;
}

.matrix-compare-cell-content ul,
.matrix-compare-cell-content ol {
    margin: 0;
    padding-left: 1.1rem;
}

.matrix-compare-cell-content li {
    text-align: left;
}

.matrix-compare-empty {
    color: var(--color-text-faint);
    font-size: 1.05rem;
    line-height: 1;
}

.matrix-compare-row:nth-child(even) .matrix-compare-cell:not(.matrix-compare-cell--title) {
    background: #fcfcfb;
}

/* =========================================================
   PRODUCT DETAIL - PACKAGE COMPARE TABS
========================================================= */

.compare-package-tabs {
    background: #ffffff;
}

.compare-package-tabs__nav-grid {
    gap: 0.75rem;
    border-bottom: 0;
}

.compare-package-tabs__nav-grid .nav-item {
    width: 100%;
}

.compare-package-tabs__nav-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid var(--color-border-soft) !important;
    background: #ffffff !important;
    color: var(--color-text) !important;
    text-align: left;
    box-shadow: none !important;
}

.compare-package-tabs__nav-card:hover,
.compare-package-tabs__nav-card:focus {
    border-color: var(--color-border-strong) !important;
    background: var(--color-bg-soft) !important;
    color: var(--color-text) !important;
}

.compare-package-tabs__nav-card.active {
    border-color: var(--color-primary) !important;
    background: rgba(0, 94, 32, 0.04) !important;
    color: var(--color-text) !important;
}

.compare-package-tabs__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(0, 94, 32, 0.16);
    background: rgba(0, 94, 32, 0.06);
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.compare-package-tabs__title {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.compare-package-tabs__subtitle {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.5;
}

.compare-package-tabs .tab-content {
    height: 100%;
}

.compare-package-tabs__pane {
    height: 100%;
    max-height: 299.86px;
    overflow-y: auto;
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.compare-package-tabs__pane::-webkit-scrollbar {
    width: 8px;
}

.compare-package-tabs__pane::-webkit-scrollbar-track {
    background: var(--color-bg-soft);
}

.compare-package-tabs__pane::-webkit-scrollbar-thumb {
    background: var(--color-border-strong);
}

.compare-package-tabs__pane::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-faint);
}

.compare-package-tabs__pane .ui-list-divided {
    border-top: 0;
}

.compare-package-tabs__pane .ui-list-divided > li {
    padding: 0.95rem 0 0.95rem 1rem;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.75;
}

.compare-package-tabs__pane .ui-list-divided > li:first-child {
    padding-top: 0;
}

.compare-package-tabs__pane .ui-list-divided > li:first-child::before {
    top: 0.9rem;
}

/* =========================================================
   PRODUCT DETAIL - FEATURE HOTSPOT
========================================================= */

.hotspot-section {
    background: #ffffff;
}

.hotspot-content {
    height: 100%;
}

.hotspot-intro {
    max-width: 760px;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.hotspot-intro p:last-child {
    margin-bottom: 0;
}

.hotspot-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hotspot-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    color: var(--color-text);
    text-align: left;
    box-shadow: none;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.hotspot-link::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.hotspot-link:hover,
.hotspot-link:focus,
.hotspot-link.is-linked-hover {
    border-color: var(--color-primary);
    background: rgba(0, 94, 32, 0.04);
    color: var(--color-text);
}

.hotspot-link-text {
    display: block;
    color: inherit;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.hotspot-visual {
    height: 100%;
}

.hotspot-image-wrap {
    position: relative;
    overflow: hidden;
}

.hotspot-main-image {
    display: block;
    width: 100%;
    height: auto;
}

.hotspot-pin,
.hotspot-pin-preview {
    position: absolute;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    background: rgba(0, 94, 32, 0.92);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translate(-50%, -50%);
}

.hotspot-pin i,
.hotspot-pin-preview i {
    font-size: 0.95rem;
    line-height: 1;
}

.hotspot-pin:hover,
.hotspot-pin:focus,
.hotspot-pin.is-linked-hover {
    background: var(--color-primary-hover);
    border-color: #ffffff;
    color: #ffffff;
}

.hotspot-pin-preview {
    display: none;
    pointer-events: none;
    z-index: 3;
    opacity: 0.85;
}

.hotspot-pin {
    z-index: 4;
}

.hotspot-offcanvas {
    --bs-offcanvas-width: 520px;
    border-left: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.hotspot-offcanvas .offcanvas-header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border-soft);
}

.hotspot-offcanvas .offcanvas-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hotspot-offcanvas .btn-close {
    box-shadow: none;
    opacity: 1;
}

.hotspot-offcanvas .offcanvas-body {
    padding: 1.25rem;
}

.hotspot-offcanvas-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotspot-offcanvas-hero {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotspot-offcanvas-hero--left,
.hotspot-offcanvas-hero--right {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    align-items: start;
}

.hotspot-offcanvas-hero--right .hotspot-offcanvas-hero__media {
    order: 2;
}

.hotspot-offcanvas-hero--right .hotspot-offcanvas-hero__content {
    order: 1;
}

.hotspot-offcanvas-hero--top,
.hotspot-offcanvas-hero--bottom,
.hotspot-offcanvas-hero--text-only {
    grid-template-columns: minmax(0, 1fr);
}

.hotspot-offcanvas-hero--bottom .hotspot-offcanvas-hero__media {
    order: 2;
}

.hotspot-offcanvas-hero--bottom .hotspot-offcanvas-hero__content {
    order: 1;
}

.hotspot-offcanvas-hero__media {
    overflow: hidden;
    background: var(--color-bg-soft);
}

.hotspot-offcanvas-hero__media img {
    display: block;
    width: 100%;
    height: auto;
}

.hotspot-offcanvas-hero__content {
    min-width: 0;
}

.hotspot-offcanvas-block {
    padding-bottom: 1.5rem;
}

.hotspot-offcanvas-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hotspot-offcanvas-block h6 {
    margin: 0 0 0.8rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
}

.hotspot-offcanvas-image {
    margin-bottom: 0.9rem;
    overflow: hidden;
    background: var(--color-bg-soft);
}

.hotspot-offcanvas-image img {
    display: block;
    width: 100%;
    height: auto;
}

.hotspot-offcanvas-text {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.hotspot-offcanvas-text p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   PRODUCT DETAIL - VARIANT COMPARE
========================================================= */

.variant-compare-table {
    --vc-cell-y: 0.68rem;
    --vc-cell-x: 0.95rem;
    --vc-font-size: 0.90rem;
    --vc-line-height: 2;

    min-width: 1120px;
    margin-bottom: 0;
    border-collapse: collapse;
    border: 1px solid var(--color-border-strong);
    background: #ffffff;
}

.variant-compare-table.table > :not(caption) > * > * {
    padding: 0.3rem;
}

.variant-compare-table thead th {
    padding: var(--vc-cell-y) var(--vc-cell-x);
    border-top: 0;
    border-right: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-strong);
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: left;
    vertical-align: middle;
}

.variant-compare-table thead th:last-child {
    border-right: 0;
}

.variant-compare-table thead th.variant-compare-label-col {
    width: 31%;
    min-width: 260px;
}

.variant-compare-table thead th.variant-compare-unit-col {
    width: 10%;
    min-width: 95px;
}

.variant-compare-table thead th.is-featured {
    background: var(--color-primary);
    color: #ffffff;
    border-right-color: rgba(255, 255, 255, 0.10);
}

.variant-compare-table thead th small {
    display: block;
    margin-top: 0.22rem;
    color: inherit !important;
    opacity: 0.72;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: none;
    line-height: 1.3;
}

.variant-compare-group-row td {
    padding: 8px 0 6px;
    border: 0;
    background: transparent;
    color: #6f7b74;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.variant-compare-table tbody tr > th,
.variant-compare-table tbody tr > td {
    padding: var(--vc-cell-y) var(--vc-cell-x);
    border-top: 1px solid var(--color-border-soft);
    border-right: 1px solid var(--color-border-soft);
    background: #ffffff;
    font-size: var(--vc-font-size);
    line-height: var(--vc-line-height);
    vertical-align: middle;
}

.variant-compare-table tbody tr:first-child > th,
.variant-compare-table tbody tr:first-child > td {
    border-top: 0;
}

.variant-compare-table tbody tr > th:last-child,
.variant-compare-table tbody tr > td:last-child {
    border-right: 0;
}

.variant-compare-table tbody tr:nth-child(even) > th,
.variant-compare-table tbody tr:nth-child(even) > td {
    background: #fbfcfa;
}

.variant-compare-table tbody tr:hover > th,
.variant-compare-table tbody tr:hover > td {
    background: rgba(0, 94, 32, 0.035);
}

.variant-compare-table tbody th.variant-compare-label-cell {
    min-width: 260px;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
}

.variant-compare-table tbody tr:nth-child(even) th.variant-compare-label-cell {
    background: #f4f6f2;
}

.variant-compare-table tbody tr:hover th.variant-compare-label-cell {
    background: rgba(0, 94, 32, 0.06);
}

.variant-compare-table tbody th.variant-compare-label-cell small {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-text-muted);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    line-height: 1.2;
    text-transform: uppercase;
}

.variant-compare-table tbody td.variant-compare-unit-cell {
    min-width: 95px;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    white-space: nowrap;
}

.variant-compare-table tbody td {
    min-width: 140px;
    color: var(--color-text-soft);
    text-align: left;
    word-break: break-word;
}

.variant-compare-table tbody td.is-featured {
    background: rgba(0, 94, 32, 0.10) !important;
    color: var(--color-text);
    font-weight: 700;
}

.variant-compare-table tbody tr:hover td.is-featured {
    background: rgba(0, 94, 32, 0.14) !important;
}

/* =========================================================
   PRODUCT DETAIL - HEADING / NOTES HELPERS
========================================================= */

.section-heading-block .section-title {
    margin-bottom: 0;
}

.section-heading-block .section-description {
    max-width: 900px;
}

.section-heading-block .section-description p {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.section-notes {
    padding-top: 0.9rem;
}

.section-notes p {
    color: var(--color-text-muted) !important;
    font-size: var(--fs-body);
    line-height: 1.7;
}

/* =========================================================
   PRODUCT DETAIL - PACKAGE COMPARE SCROLL
========================================================= */

.package-compare-scroll-section {
    background: transparent;
}

.package-compare-scroll-headline {
    max-width: 860px;
}

.package-compare-scroll-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-compare-scroll-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--color-primary);
}

.package-compare-scroll-title {
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.package-compare-scroll-description {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.9;
}

.package-compare-scroll-description > *:last-child {
    margin-bottom: 0;
}

.package-compare-scroll-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    margin-top: 28px;
}

.package-compare-scroll-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    align-self: start;
    background: #ffffff;
}

.package-compare-scroll-col + .package-compare-scroll-col {
    border-left: 1px solid var(--color-border-soft);
}

.package-compare-scroll-col-head {
    padding: 20px 22px 18px;
    border-bottom: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.package-compare-scroll-col.is-featured .package-compare-scroll-col-head {
    background: linear-gradient(180deg, #006826 0%, #005e20 100%);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.package-compare-scroll-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    background: rgba(0, 94, 32, 0.08);
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-compare-scroll-col.is-featured .package-compare-scroll-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.package-compare-scroll-col-title {
    margin: 0;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.package-compare-scroll-col-subtitle {
    margin: 8px 0 0;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.package-compare-scroll-col.is-featured .package-compare-scroll-col-title,
.package-compare-scroll-col.is-featured .package-compare-scroll-col-subtitle {
    color: #ffffff;
}

.package-compare-scroll-col-body {
    max-height: 560px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b5c1b9 transparent;
}

.package-compare-scroll-col.is-featured .package-compare-scroll-col-body {
    background: linear-gradient(180deg, rgba(0, 94, 32, 0.03) 0%, rgba(0, 94, 32, 0.05) 100%);
}

.package-compare-scroll-col-body::-webkit-scrollbar {
    width: 8px;
}

.package-compare-scroll-col-body::-webkit-scrollbar-thumb {
    background: #c2cbc4;
}

.package-compare-scroll-col-body::-webkit-scrollbar-thumb:hover {
    background: #aeb9b1;
}

.package-compare-scroll-col-body::-webkit-scrollbar-track {
    background: transparent;
}

.package-compare-scroll-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 22px;
    border-bottom: 1px solid var(--color-border-soft);
    transition: background-color 0.18s ease;
}

.package-compare-scroll-row:hover {
    background: rgba(0, 94, 32, 0.028);
}

.package-compare-scroll-col.is-featured .package-compare-scroll-row:hover {
    background: rgba(0, 94, 32, 0.06);
}

.package-compare-scroll-row:last-child {
    border-bottom: 0;
}

.package-compare-scroll-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-top: 8px;
    background: var(--color-primary);
}

.package-compare-scroll-col.is-featured .package-compare-scroll-dot {
    background: #4caf50;
}

.package-compare-scroll-row-title {
    margin: 0 0 5px;
    color: var(--color-text);
    font-size: var(--fs-body);
    font-weight: 600;
    line-height: 1.45;
}

.package-compare-scroll-row-note {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.package-compare-scroll-empty {
    padding: 18px 22px;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.package-compare-scroll-notes {
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .product-detail-hero__copy {
        max-width: 760px;
    }

    .content-editorial__media,
    .content-editorial__media img,
    .content-editorial__panel {
        min-height: 560px;
    }

    .content-editorial__panel {
        padding: 4rem 3rem;
    }

    .content-panel {
        padding: 1.6rem;
    }

    .detail-overview {
        gap: 1.75rem;
    }

    .matrix-compare-header,
    .matrix-compare-row {
        min-width: 980px;
    }

    .matrix-compare-header-cell--first,
    .matrix-compare-cell--title {
        flex-basis: 32%;
        max-width: 32%;
    }

    .matrix-compare-cell--title {
        padding: 1rem;
    }

    .hotspot-content {
        padding-right: 0 !important;
    }

    .package-compare-scroll-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .package-compare-scroll-col + .package-compare-scroll-col {
        border-left: 0;
    }

    .package-compare-scroll-col-body {
        max-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .tabs-section__head {
        margin-bottom: 2rem;
    }

    .product-detail-hero__copy {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .product-detail-hero__eyebrow {
        margin-bottom: 1.25rem;
    }

    .content-editorial__media,
    .content-editorial__media img {
        min-height: 420px;
    }

    .content-editorial__panel {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .content-editorial__title {
        font-size: clamp(1.9rem, 5vw, 2.6rem);
    }

    .content-editorial__text {
        font-size: var(--fs-body);
        line-height: 1.8;
    }

    .content-editorial__list li {
        font-size: var(--fs-body);
    }

    .content-panel {
        padding: 1.35rem;
    }

    .stack-lg {
        gap: 1.25rem;
    }

    .detail-feature-card--media-left,
    .detail-feature-card--media-right,
    .detail-feature-card--media-bottom {
        flex-direction: column;
    }

    .detail-feature-card__media {
        aspect-ratio: 5 / 4;
        min-height: 0;
    }

    .detail-feature-card--media-left .detail-feature-card__media,
    .detail-feature-card--media-right .detail-feature-card__media {
        flex: 0 0 auto;
        min-height: 0;
        border-bottom: 1px solid var(--color-border-soft);
    }

    .detail-overview {
        grid-template-columns: 1fr;
    }

    .detail-overview__image {
        aspect-ratio: 16 / 10;
    }

    .data-table thead th,
    .data-table tbody td {
        padding: 0.85rem 0.8rem;
    }

    .data-table-row-value,
    .data-table-row-label,
    .data-table-row-unit {
        font-size: 0.9rem;
    }

    .data-table--pro {
        --dt-cell-y: 0.58rem;
        --dt-cell-x: 0.75rem;
        --dt-font-size: 0.86rem;
    }

    .data-table--pro .data-table-col-label,
    .data-table--pro .data-table-row-label {
        min-width: 180px;
    }

    .data-table--pro .data-table-col-unit,
    .data-table--pro .data-table-row-unit {
        min-width: 80px;
    }

    .data-table--pro .data-table-col-value,
    .data-table--pro .data-table-row-value {
        min-width: 120px;
    }

    .matrix-compare-heading {
        margin-bottom: 1.5rem !important;
    }

    .matrix-compare-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .matrix-compare-header,
    .matrix-compare-row {
        min-width: 900px;
    }

    .matrix-compare-header-cell {
        padding: 0.9rem 0.85rem;
        font-size: 0.72rem;
    }

    .matrix-compare-cell {
        padding: 1rem 0.85rem;
    }

    .matrix-compare-mod-name {
        font-size: var(--fs-body);
    }

    .matrix-compare-mod-desc,
    .matrix-compare-cell-content,
    .matrix-compare-notes {
        font-size: var(--fs-body);
    }

    .compare-package-tabs__nav-card {
        padding: 0.9rem 0.9rem 0.85rem;
    }

    .compare-package-tabs__title {
        font-size: 0.98rem;
    }

    .compare-package-tabs__subtitle {
        font-size: 0.78rem;
    }

    .compare-package-tabs__pane {
        padding: 1rem;
        max-height: none;
        overflow-y: visible;
    }

    .compare-package-tabs__pane .ui-list-divided > li {
        font-size: var(--fs-body);
        line-height: 1.65;
    }

    .hotspot-list {
        margin-top: 1.25rem;
    }

    .hotspot-link {
        padding: 0.85rem 0.9rem;
    }

    .hotspot-link-text {
        font-size: 0.95rem;
    }

    .hotspot-pin,
    .hotspot-pin-preview {
        width: 34px;
        height: 34px;
    }

    .hotspot-pin i,
    .hotspot-pin-preview i {
        font-size: 0.82rem;
    }

    .hotspot-offcanvas {
        --bs-offcanvas-width: min(100vw, 460px);
    }

    .hotspot-offcanvas-hero--left,
    .hotspot-offcanvas-hero--right {
        grid-template-columns: minmax(0, 1fr);
    }

    .hotspot-offcanvas-hero--right .hotspot-offcanvas-hero__media,
    .hotspot-offcanvas-hero--right .hotspot-offcanvas-hero__content {
        order: initial;
    }

    .hotspot-offcanvas .offcanvas-title {
        font-size: 1.25rem;
    }

    .variant-compare-table {
        --vc-cell-y: 0.58rem;
        --vc-cell-x: 0.75rem;
        --vc-font-size: 0.86rem;
        min-width: 980px;
    }

    .variant-compare-table thead th.variant-compare-label-col,
    .variant-compare-table tbody th.variant-compare-label-cell {
        min-width: 220px;
    }

    .variant-compare-table thead th.variant-compare-unit-col,
    .variant-compare-table tbody td.variant-compare-unit-cell {
        min-width: 80px;
    }

    .variant-compare-table tbody td {
        min-width: 120px;
    }
}

@media (max-width: 767.98px) {
    .detail-inline-tabs-nav {
        gap: 0.5rem;
    }

    .detail-inline-tabs-nav .nav-link {
        width: 100%;
        padding: 0.72rem 0.9rem;
        font-size: 0.74rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .tabs-section {
        padding: var(--product-detail-section-space-sm, var(--section-space-sm)) 0 var(--product-detail-section-space-md, var(--section-space-md));
    }

    .product-detail-hero__copy {
        padding-top: 120px;
        padding-right: 1rem;
        padding-bottom: 52px;
        padding-left: 1rem;
    }

    .product-detail-hero__copy::before {
        top: 7.5rem;
    }

    .product-detail-hero__eyebrow {
        gap: 0.75rem;
    }

    .product-detail-hero__eyebrow-line {
        width: 46px;
    }

    .product-detail-hero__eyebrow-text {
        font-size: 0.70rem;
        letter-spacing: 0.10em;
    }

    .product-detail-hero__title-text {
        font-size: clamp(2rem, 8vw, 3.4rem);
    }

    .product-detail-hero__description {
        font-size: var(--fs-body);
        line-height: 1.7;
    }

    .product-detail-tab-button {
        padding: 0.9rem 1rem;
        font-size: 0.72rem;
    }

    .content-editorial__media,
    .content-editorial__media img {
        min-height: 300px;
    }

    .content-editorial__panel {
        padding: 2.25rem 1rem;
    }

    .content-editorial__label {
        left: 1rem;
        bottom: 1rem;
        padding: 0.4rem 0.7rem;
        font-size: 0.68rem;
    }

    .content-editorial__title {
        margin-bottom: 1rem;
    }

    .content-editorial__list li {
        padding: 0.8rem 0 0.8rem 0.95rem;
    }

    .content-editorial__list li::before {
        top: 1.45rem;
    }

    .content-panel {
        padding: 1rem;
    }

    .detail-feature-card__body {
        padding: 1.15rem 1.05rem 1.2rem;
    }

    .detail-feature-card__title {
        font-size: 1.12rem;
    }

    .detail-feature-card__text {
        font-size: var(--fs-body);
        line-height: 1.75;
    }

    .data-table thead th {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .data-table tbody td {
        padding: 0.75rem 0.7rem;
    }

    .data-table-note {
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
    }

    .data-table--pro {
        --dt-cell-y: 0.52rem;
        --dt-cell-x: 0.68rem;
        --dt-font-size: 0.82rem;
    }

    .data-table--pro thead th {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .data-table--pro .data-table-row-unit {
        font-size: 0.78rem;
    }

    .compare-table thead tr th,
    .compare-table tbody tr td {
        padding: 0.72rem 0.8rem;
        font-size: 0.78rem;
    }

    .matrix-compare-header,
    .matrix-compare-row {
        min-width: 820px;
    }

    .matrix-compare-header-cell--first,
    .matrix-compare-cell--title {
        flex-basis: 34%;
        max-width: 34%;
    }

    .compare-package-tabs__nav-grid {
        gap: 0.5rem;
    }

    .compare-package-tabs__nav-card {
        padding: 0.8rem 0.85rem;
    }

    .compare-package-tabs__badge {
        font-size: 0.64rem;
    }

    .compare-package-tabs__title {
        font-size: 0.92rem;
    }

    .compare-package-tabs__pane {
        padding: 0.9rem;
    }

    .hotspot-link {
        padding: 0.8rem 0.85rem;
    }

    .hotspot-link::after {
        font-size: 0.9rem;
    }

    .hotspot-pin,
    .hotspot-pin-preview {
        width: 30px;
        height: 30px;
    }

    .hotspot-pin i,
    .hotspot-pin-preview i {
        font-size: 0.76rem;
    }

    .hotspot-offcanvas .offcanvas-header,
    .hotspot-offcanvas .offcanvas-body {
        padding: 1rem;
    }

    .variant-compare-table {
        --vc-cell-y: 0.52rem;
        --vc-cell-x: 0.68rem;
        --vc-font-size: 0.82rem;
        min-width: 860px;
    }

    .variant-compare-table thead th {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .variant-compare-table tbody td.variant-compare-unit-cell {
        font-size: 0.78rem;
    }

    .section-heading-block .section-description p,
    .section-notes p {
        font-size: var(--fs-body);
        line-height: 1.7;
    }

    .package-compare-scroll-col-head,
    .package-compare-scroll-row {
        padding-right: 14px;
        padding-left: 14px;
    }

    .package-compare-scroll-description {
        font-size: var(--fs-body);
        line-height: 1.8;
    }

    .package-compare-scroll-col-body {
        max-height: 360px;
    }
}

/* Mobile quality pass for product detail pages. */
@media (max-width: 767.98px) {
    .product-detail-hero {
        min-height: max(520px, 82svh);
        background-position: center top;
    }

    .product-detail-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.34) 0%,
            rgba(0, 0, 0, 0.30) 36%,
            rgba(0, 0, 0, 0.76) 100%
        );
    }

    .product-detail-hero__content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .product-detail-hero .min-vh-100 {
        min-height: inherit !important;
    }

    .product-detail-hero__copy {
        max-width: 100%;
        padding-top: 116px;
        padding-right: 0;
        padding-bottom: 44px;
        padding-left: 0;
    }

    .product-detail-hero__copy::before {
        display: none;
    }

    .product-detail-hero__title,
    .product-detail-hero__title-text,
    .product-detail-hero__subtitle {
        letter-spacing: 0;
    }

    .product-detail-hero__title-text {
        font-size: 2.18rem;
        line-height: 1.06;
    }

    .product-detail-hero__subtitle {
        font-size: 1.08rem;
        line-height: 1.35;
    }

    .product-detail-hero__description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-detail-tab-nav {
        gap: 0.45rem;
        margin-right: -18px;
        margin-left: -18px;
        padding-right: 18px;
        padding-left: 18px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-detail-tab-button {
        flex: 0 0 auto;
        min-width: max-content;
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }
}

@media (max-width: 374.98px) {
    .product-detail-hero__title-text {
        font-size: 1.98rem;
    }

    .product-detail-hero__description {
        font-size: 0.9rem;
    }
}
