/* Truck product detail adjustments that previously lived in single-trucks.php. */
.single-trucks .product__image-stage {
    position: relative;
}

.single-trucks .model__usa-logo {
    height: 90px;
}

/* Make guard selection feel like the first step of the product-detail flow. */
body.single-trucks .product {
    padding: 0 0 6px;
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

body.single-trucks .product > .grid-container {
    display: grid !important;
    width: min(1200px, calc(100% - 80px));
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: clamp(32px, 4vw, 54px);
    align-items: start;
    margin-bottom: 0;
}

body.single-trucks .product__center,
body.single-trucks .product__left {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    float: none !important;
}

body.single-trucks .product__center {
    align-self: start;
}

body.single-trucks .product__image-stage {
    width: min(100%, 430px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: radial-gradient(circle at 50% 48%, #fff 0 48%, #f4f4f4 100%);
}

body.single-trucks .product__image {
    display: block;
    width: 100%;
    height: auto;
}

body.single-trucks .product__left {
    display: grid !important;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 3px;
    padding: 14px;
    border: 1px solid #dfdfdf;
    border-top: 6px solid var(--exg-gold);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(10, 10, 10, 0.1);
}

body.single-trucks .product__title {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    font-size: clamp(28px, 2.3vw, 36px);
    line-height: 0.94;
}

body.single-trucks .product__small {
    margin-top: 2px;
    font-size: 0.54em;
    line-height: 1.05;
}

body.single-trucks .product__select-color-guard,
body.single-trucks .product__guard,
body.single-trucks .product__guard-category-parent,
body.single-trucks .product__guard-category,
body.single-trucks .product__guard-wrapper,
body.single-trucks .product__select-color-guard-select,
body.single-trucks .product__color-picker,
body.single-trucks .product__bracket,
body.single-trucks .product__button {
    width: 100% !important;
    max-width: none !important;
}

body.single-trucks .product__select-color-guard {
    grid-column: 1 / -1;
    margin: 0 !important;
}

body.single-trucks .product__guard-category {
    position: relative;
    display: flex;
    appearance: none;
    min-height: 30px;
    align-items: center;
    margin: 3px 0 0 !important;
    padding: 5px 44px 5px 10px !important;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background: #f3f3f3;
    color: var(--exg-black);
    font-family: var(--exg-display);
    font-size: 13px !important;
    font-weight: var(--exg-weight-action);
    letter-spacing: 0.01em;
    line-height: 16px;
    text-align: left;
    cursor: pointer;
}

body.single-trucks .product__guard-category-parent > .product__guard-category:first-child {
    margin-top: 0 !important;
}

body.single-trucks .product__guard-category::after {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 18px;
    color: var(--exg-black);
    content: "+";
    font-family: var(--exg-body);
    font-size: 17px;
    font-weight: var(--exg-weight-regular);
    line-height: 1;
    text-align: center;
    transform: translateY(-50%);
}

body.single-trucks .product__guard-category::before {
    content: none !important;
}

body.single-trucks .product__guard-category.active {
    border-color: color-mix(in srgb, var(--exg-gold), var(--exg-black) 20%);
    border-radius: 5px 5px 0 0;
    background: color-mix(in srgb, var(--exg-gold), #fff 87%);
    color: var(--exg-black) !important;
}

body.single-trucks .product__guard-category.active::after {
    content: "−";
}

body.single-trucks .product__guard-category:focus-visible,
body.single-trucks .product__guard-item:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--exg-gold), var(--exg-gold) 28%);
    outline-offset: 2px;
}

body.single-trucks .product__guard-wrapper:not(.active) {
    display: none !important;
}

body.single-trucks .product__guard-wrapper.active {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 4px;
    width: 100% !important;
    margin: 0 !important;
    padding: 4px;
    border: 1px solid #dcdcdc;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    background: #fff;
}

body.single-trucks .product__guard-item {
    display: grid !important;
    min-height: 54px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 26px;
    gap: 1px;
    align-items: center;
    padding: 3px 5px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background: #fff;
    color: var(--exg-black);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.single-trucks .product__guard-item:hover {
    border-color: var(--exg-gold);
    transform: translateY(-1px);
}

body.single-trucks .product__guard-item.active {
    border-color: color-mix(in srgb, var(--exg-gold), var(--exg-black) 14%);
    background: color-mix(in srgb, var(--exg-gold), #fff 90%);
    color: var(--exg-black) !important;
    box-shadow: inset 4px 0 0 var(--exg-gold);
}

body.single-trucks .product__guard-item.active .product__guard-title {
    color: var(--exg-black) !important;
}

body.single-trucks .product__guard-title {
    color: inherit;
    font-family: var(--exg-display);
    font-size: 13px;
    font-weight: var(--exg-weight-action);
    line-height: 14px;
    text-align: center;
    white-space: nowrap;
}

body.single-trucks .product__guard-image {
    width: 40px;
    height: 26px;
    justify-self: center;
    object-fit: contain;
}

body.single-trucks .product__selection-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.single-trucks .product__select-color-guard-select,
body.single-trucks .product__color-picker {
    display: flex;
    min-height: 28px;
    align-items: center;
    gap: 5px;
    margin: 7px 0 0 !important;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.single-trucks .product__select-color-guard-subtitle,
body.single-trucks .product__color-picker-title {
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: var(--exg-weight-action);
    line-height: 1;
    white-space: nowrap;
}

body.single-trucks .product__select-color-guard-item {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
}

body.single-trucks .product__select-color-guard-img,
body.single-trucks .product__color-picker-wrapper-item {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    vertical-align: middle;
}

body.single-trucks .product__color-picker-wrapper {
    display: inline-flex;
    max-width: none;
    align-items: center;
    gap: 5px;
    margin: 0 !important;
    line-height: 1;
}

body.single-trucks .product__select-color-guard-item.active .product__select-color-guard-img::before,
body.single-trucks .product__color-picker-wrapper-item.active::before {
    content: none !important;
}

body.single-trucks .product__select-color-guard-item.active .product__select-color-guard-img,
body.single-trucks .product__color-picker-wrapper-item.active {
    outline: 1px solid var(--exg-gold);
    outline-offset: 2px;
}

body.single-trucks .product__bracket {
    display: flex;
    min-height: 40px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    margin: 7px 0 0 !important;
    padding: 3px 8px !important;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background: #f5f6f7;
}

body.single-trucks .product__bracket > div {
    display: flex;
    width: auto;
    align-items: baseline;
    gap: 8px;
}

body.single-trucks .product__bracket br {
    display: none;
}

body.single-trucks .product__bracket :is(.product__bracket-title, .product__bracket-model) {
    margin: 0;
    font-size: 13px;
    font-weight: var(--exg-weight-action);
    line-height: 1;
}

body.single-trucks .product__bracket-image {
    width: 34px;
    max-width: 34px;
    padding: 3px;
}

body.single-trucks .product__button {
    display: inline-flex;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px;
    align-items: center;
    align-self: start;
    justify-content: center;
    margin: 0 !important;
    padding: 0 14px !important;
    top: 0 !important;
    border-radius: 5px;
    font-family: var(--exg-display);
    font-weight: var(--exg-weight-action);
    letter-spacing: 0.03em;
}

body.single-trucks .product__quote-row {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 5px 0 4px;
}

body.single-trucks .guard {
    scroll-margin-top: 96px;
    padding: clamp(36px, 5vw, 64px) 0 !important;
    border-top: 1px solid #e6e6e6;
    background: #fff !important;
}

body.single-trucks .guard > .grid-container {
    width: min(1200px, calc(100% - 80px));
    margin-bottom: 0;
}

body.single-trucks .guard__wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

body.single-trucks .guard__half {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-trucks .guard__detail-gallery {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

body.single-trucks .guard__detail-stage {
    display: flex;
    min-width: 0;
    aspect-ratio: 4 / 3;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #f8f8f8;
}

body.single-trucks .guard__detail-stage[hidden],
body.single-trucks .guard__detail-thumbs[hidden] {
    display: none !important;
}

body.single-trucks .guard__detail-main {
    display: block;
    width: 100%;
    height: 100%;
    padding: clamp(12px, 2vw, 24px);
    object-fit: contain;
}

body.single-trucks .guard__detail-thumbs {
    display: flex;
    max-height: 440px;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

body.single-trucks .guard__detail-thumbs.has-more {
    -webkit-mask-image: linear-gradient(to bottom, #000 76%, rgba(0, 0, 0, 0.08) 100%);
    mask-image: linear-gradient(to bottom, #000 76%, rgba(0, 0, 0, 0.08) 100%);
}

body.single-trucks .guard__detail-thumb {
    display: flex;
    width: 70px;
    height: 60px;
    min-height: 60px;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    outline: 0;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.single-trucks .guard__detail-thumb:hover {
    border-color: #939393;
}

body.single-trucks .guard__detail-thumb.active,
body.single-trucks .guard__detail-thumb:focus-visible {
    border-color: var(--exg-gold);
    background: #fffaf0;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--exg-gold), transparent 38%);
}

body.single-trucks .guard__detail-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.single-trucks .guard__content {
    margin: 0 0 16px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid #e2e2e2;
}

body.single-trucks .guard__title {
    margin: 0 0 3px;
    color: var(--exg-black);
    font-family: var(--exg-display);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: var(--exg-weight-display);
    line-height: 0.95;
    text-transform: uppercase;
}

body.single-trucks .guard__sku {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 !important;
    color: #9b7200;
    font-family: var(--exg-display);
    font-size: 12px;
    font-weight: var(--exg-weight-action);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.single-trucks .guard__sku small {
    color: inherit;
    font: inherit;
}

body.single-trucks .guard__sku :is(small, span) {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
}

body.single-trucks .guard__detail-logos {
    display: flex !important;
    max-width: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 6px;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}

body.single-trucks .guard__detail-logos > :is(a, img) {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

body.single-trucks .guard__detail-logos > a {
    width: 88px;
    height: 76px;
    flex: 0 0 88px;
    overflow: visible;
}

body.single-trucks .guard__detail-logos > a:hover {
    opacity: 0.82;
}

body.single-trucks .guard__detail-logos > a:has(> img.dn) {
    display: none !important;
}

body.single-trucks .guard__detail-logos img {
    width: 72px !important;
    max-width: 72px;
    height: 54px !important;
    max-height: 54px;
    object-fit: contain;
    object-position: center;
}

body.single-trucks .guard__detail-logos > a > img {
    transform: scale(1.8);
    transform-origin: center;
}

body.single-trucks .guard__detail-logos > .model__usa-logo {
    width: 84px !important;
    max-width: 84px;
    flex: 0 0 84px;
    height: 62px !important;
    max-height: 62px;
}

body.single-trucks .guard__description {
    margin: 0 !important;
    color: #545454;
    font-family: var(--exg-body);
    font-size: 16px;
    line-height: 1.6;
}

body.single-trucks .guard__description p {
    margin: 0 0 14px;
    color: inherit !important;
    font: inherit;
}

body.single-trucks .guard__description p:last-child {
    margin-bottom: 0;
}

/* The engineering story and selected-guard specifications now read as one
   intentional lower-page sequence instead of a collection of legacy floats. */
body.single-trucks .guard-engineering {
    padding: clamp(56px, 6vw, 76px) 0;
    background: var(--exg-black);
    color: #fff;
}

body.single-trucks .guard-engineering > .grid-container,
body.single-trucks .model > .grid-container {
    width: min(1200px, calc(100% - 80px));
    margin-bottom: 0;
}

body.single-trucks .guard-engineering__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}

body.single-trucks .guard-engineering__content {
    grid-column: 1;
    grid-row: 1;
}

body.single-trucks .guard-engineering__media {
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 484 / 532;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #e9e9e7;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

body.single-trucks .guard-engineering__media img {
    display: block;
    width: 100%;
    height: auto;
}

body.single-trucks :is(.guard-engineering__eyebrow, .model__eyebrow, .model__card-eyebrow) {
    display: block;
    margin: 0 0 9px;
    color: #9b7200;
    font-family: var(--exg-display);
    font-size: 12px;
    font-weight: var(--exg-weight-action);
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.single-trucks .guard-engineering__eyebrow {
    color: var(--exg-gold);
}

body.single-trucks .guard-engineering__content h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: var(--exg-display);
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: var(--exg-weight-display);
    line-height: 0.95;
    text-transform: uppercase;
}

body.single-trucks .guard-engineering__intro {
    max-width: 720px;
    margin: 20px 0 0;
    color: #e0e0e0;
    font-family: var(--exg-body);
    font-size: 18px;
    line-height: 1.6;
}

body.single-trucks .guard-engineering__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 30px;
}

body.single-trucks .guard-engineering__features article {
    padding: 2px 0 2px 18px;
    border-left: 3px solid var(--exg-gold);
}

body.single-trucks .guard-engineering__features h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--exg-display);
    font-size: 22px;
    font-weight: var(--exg-weight-action);
    line-height: 1.05;
    text-transform: uppercase;
}

body.single-trucks .guard-engineering__features p {
    margin: 0;
    color: #c9c9c9;
    font-family: var(--exg-body);
    font-size: 15px;
    line-height: 1.55;
}

body.single-trucks .model {
    padding: clamp(58px, 6vw, 78px) 0;
    background: #f6f6f6;
}

body.single-trucks .model__wrapper {
    font-size: initial;
}

body.single-trucks .model__intro {
    max-width: 1040px;
    margin: 0 auto 34px;
    text-align: center;
}

body.single-trucks .model__title,
body.single-trucks .model__comparison-header h2 {
    margin: 0;
    color: var(--exg-black);
    font-family: var(--exg-display);
    font-size: clamp(40px, 4.4vw, 58px);
    font-weight: var(--exg-weight-display);
    line-height: 0.96;
    text-transform: uppercase;
}

body.single-trucks .model__description {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 0;
    color: #545454;
    font-family: var(--exg-body);
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
}

body.single-trucks .model__description p {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #e1e1e1;
    border-top: 3px solid var(--exg-gold);
    border-radius: 6px;
    background: #fff;
    color: inherit !important;
    font: inherit;
}

body.single-trucks .model__description :is(span, strong) {
    color: inherit !important;
    font-family: inherit;
}

body.single-trucks .model__description strong:first-child {
    display: block;
    margin-bottom: 6px;
    color: var(--exg-black) !important;
    font-family: var(--exg-display);
    font-size: 19px;
    font-weight: var(--exg-weight-action);
    line-height: 1.1;
    text-transform: uppercase;
}

body.single-trucks .model__information-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

body.single-trucks :is(.model__details-card, .model__support-card, .model__media-card) {
    min-width: 0;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
}

body.single-trucks .model__details-card {
    padding: clamp(22px, 2.5vw, 28px);
    border-top: 5px solid var(--exg-gold);
}

body.single-trucks :is(.model__details-card, .model__support-card, .model__media-card) h3 {
    margin: 0;
    color: var(--exg-black);
    font-family: var(--exg-display);
    font-size: 28px;
    font-weight: var(--exg-weight-action);
    line-height: 1;
    text-transform: uppercase;
}

body.single-trucks .model__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
    margin: 14px 0 0;
}

body.single-trucks .model__detail-row {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(130px, 0.78fr) minmax(0, 1.22fr);
    gap: 16px;
    align-items: center;
    margin: 0 !important;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7;
}

body.single-trucks .model :is(
    .model__intro,
    .model__information-grid,
    .model__details-card,
    .model__detail-row,
    .model__media-grid,
    .model__latch-media,
    .model__latch-video
)[hidden] {
    display: none !important;
}

body.single-trucks .model__detail-row dt,
body.single-trucks .model__detail-row dd {
    min-width: 0;
    margin: 0;
    color: #525252;
    font-family: var(--exg-body);
    font-size: 14px;
    line-height: 1.45;
}

body.single-trucks .model__detail-row dt {
    color: var(--exg-black);
    font-weight: var(--exg-weight-strong);
}

body.single-trucks .model__detail-row dd {
    overflow-wrap: anywhere;
}

body.single-trucks .model__support-card {
    overflow: hidden;
}

body.single-trucks .model__support-card.dn {
    display: none !important;
}

body.single-trucks .singleGuard__model-plate {
    display: grid !important;
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 32px;
    align-items: center;
    margin: 0 !important;
    padding: 24px 30px !important;
    background: #fff !important;
}

body.single-trucks .singleGuard__model-wrapper {
    width: auto !important;
    margin: 0 !important;
}

body.single-trucks .singleGuard__model-plate-description {
    max-width: 720px;
    margin: 10px 0 16px !important;
    color: #545454 !important;
    font-family: var(--exg-body) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

body.single-trucks .singleGuard__model-plate-button {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: #8f6800 !important;
    font-family: var(--exg-display);
    font-size: 16px;
    font-weight: var(--exg-weight-action);
    text-transform: uppercase;
}

body.single-trucks .singleGuard__model-plate-image {
    display: block;
    width: 180px !important;
    max-width: 100%;
    height: 120px !important;
    margin: 0 auto !important;
    object-fit: contain;
}

body.single-trucks .model__media-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
}

body.single-trucks .model__media-card {
    overflow: hidden;
}

body.single-trucks .singleGuard__model-video {
    position: relative;
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    margin: 0 !important;
    overflow: hidden;
}

body.single-trucks .singleGuard__model-video:empty {
    display: none;
}

body.single-trucks .singleGuard__model-video .fluid-width-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    padding-top: 0 !important;
}

body.single-trucks .singleGuard__model-video > p {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-trucks .singleGuard__model-video :is(iframe, video) {
    position: absolute !important;
    inset: 0;
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
}

body.single-trucks .model__latch-card {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    align-items: stretch;
    border-top: 5px solid var(--exg-gold);
}

body.single-trucks .singleGuard__model-latch.hide,
body.single-trucks .singleGuard__model-latch.dn {
    display: none !important;
}

body.single-trucks .model__latch-summary {
    display: block;
    min-width: 0;
}

body.single-trucks .model__latch-copy {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 24px 26px 26px;
}

body.single-trucks .model__image-title {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-trucks .model__latch-copy p {
    margin: 12px 0 0;
    color: #545454;
    font-family: var(--exg-body);
    font-size: 15px;
    line-height: 1.55;
}

body.single-trucks .model__latch-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    overflow: hidden;
    border: 1px solid var(--exg-black);
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

body.single-trucks .model__latch-actions .btn-howtoopen {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 48px !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: var(--exg-gold) !important;
    color: var(--exg-black) !important;
    font-family: var(--exg-display);
    font-size: 14px;
    font-weight: var(--exg-weight-action);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

body.single-trucks .model__latch-actions .btn-howtoopen + .btn-howtoopen {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--exg-black) !important;
    color: #fff !important;
}

body.single-trucks .model__latch-media {
    width: 100%;
    height: 190px;
    margin: 16px 0 0;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 7px 7px 0 0;
    background: #f6f6f6;
}

body.single-trucks .model__image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    min-height: 0;
    margin: 0 !important;
    object-fit: contain;
}

body.single-trucks .model__latch-video {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px 26px;
    border-left: 1px solid #e1e1e1;
    background: #f1f1f1;
}

body.single-trucks .model__latch-video > .model__card-eyebrow {
    margin-bottom: 10px;
}

body.single-trucks .model__latch-video .singleGuard__model-video {
    overflow: hidden;
    border-radius: 7px;
    background: var(--exg-black);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.14);
}

body.single-trucks .model__latch-video:has(.singleGuard__model-video:empty) {
    display: none;
}

body.single-trucks .model__latch-card:has(.singleGuard__model-video:empty) {
    grid-template-columns: 1fr;
}

body.single-trucks .model__comparison {
    margin-top: 52px;
    padding-top: 46px;
    border-top: 1px solid #dcdcdc;
}

body.single-trucks .model__comparison[hidden] {
    display: none !important;
}

body.single-trucks .model__comparison:not(:has(.model__comparison-tables > :not(.dn))) {
    display: none;
}

body.single-trucks .model__comparison-header {
    max-width: 780px;
    margin-bottom: 28px;
}

body.single-trucks .model__comparison-header h2 {
    font-size: clamp(34px, 3.7vw, 50px);
}

body.single-trucks .model__comparison-tables > div:not(.dn) {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

body.single-trucks .model__comparison-tables .icon-scroll-right {
    display: none;
}

body.single-trucks .guard_price,
body.single-trucks .guard > .price-caption {
    display: none !important;
}

body.single-trucks .product__selection-status.is-updated,
body.single-trucks .guard__content.is-updated {
    animation: exg-selection-confirm 0.72s ease;
}

body.single-trucks .product__image-stage.is-updated {
    animation: exg-preview-confirm 0.72s ease;
}

@keyframes exg-selection-confirm {
    0%, 100% { box-shadow: none; }
    38% { box-shadow: 0 0 0 5px rgba(255, 200, 0, 0.42); }
}

@keyframes exg-preview-confirm {
    0%, 100% { opacity: 1; transform: scale(1); }
    45% { opacity: 0.72; transform: scale(0.985); }
}

@media (max-width: 1020px) {
    body.single-trucks .product > .grid-container {
        width: min(760px, calc(100% - 64px));
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.single-trucks .product__image-stage {
        width: min(100%, 280px);
    }

    body.single-trucks .product__left {
        width: 100% !important;
    }

    body.single-trucks .guard > .grid-container {
        width: min(760px, calc(100% - 64px));
    }

    body.single-trucks .guard__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.single-trucks .guard__detail-gallery,
    body.single-trucks .guard__half:last-child {
        width: 100%;
        max-width: 720px;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    body.single-trucks .guard-engineering > .grid-container,
    body.single-trucks .model > .grid-container {
        width: min(760px, calc(100% - 64px));
    }

    body.single-trucks .guard-engineering__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.single-trucks .guard-engineering__content,
    body.single-trucks .guard-engineering__media {
        grid-column: 1;
    }

    body.single-trucks .guard-engineering__content {
        grid-row: 1;
    }

    body.single-trucks .guard-engineering__media {
        width: min(100%, 520px);
        grid-row: 2;
        margin: 0 auto;
    }

    body.single-trucks .model__details {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__media-grid {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__latch-card {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__latch-summary {
        grid-template-columns: minmax(0, 1fr) 180px;
    }

    body.single-trucks .model__latch-video {
        border-top: 1px solid #e1e1e1;
        border-left: 0;
    }
}

@media (max-width: 760px) {
    body.single-trucks .product {
        padding-bottom: 6px;
    }

    body.single-trucks .product > .grid-container {
        width: calc(100% - 32px);
        gap: 12px;
    }

    body.single-trucks .product__image-stage {
        width: min(100%, 250px);
    }

    body.single-trucks .product__left {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    body.single-trucks .product__color-picker {
        margin-top: 3px !important;
    }

    body.single-trucks .product__title {
        font-size: 30px;
    }

    body.single-trucks .product__guard-wrapper.active {
        grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    }

    body.single-trucks .product__guard-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto 32px;
    }

    body.single-trucks .guard {
        padding: 30px 0 !important;
    }

    body.single-trucks .guard > .grid-container {
        width: calc(100% - 32px);
    }

    body.single-trucks .guard__wrapper {
        gap: 24px;
    }

    body.single-trucks .guard__detail-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.single-trucks .guard__detail-stage {
        grid-column: 1;
        grid-row: 1;
    }

    body.single-trucks .guard__detail-main {
        padding: 12px;
    }

    body.single-trucks .guard__detail-thumbs {
        max-width: 100%;
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        gap: 7px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    body.single-trucks .guard__detail-thumbs.has-more {
        -webkit-mask-image: linear-gradient(to right, #000 76%, rgba(0, 0, 0, 0.08) 100%);
        mask-image: linear-gradient(to right, #000 76%, rgba(0, 0, 0, 0.08) 100%);
    }

    body.single-trucks .guard__detail-thumbs::-webkit-scrollbar {
        display: none;
    }

    body.single-trucks .guard__detail-thumb {
        width: 64px;
        height: 54px;
        min-height: 54px;
        flex-basis: 64px;
    }

    /* Keep a 44px touch target while matching the truck-color chip and its
       selected state to the 17px guard-finish swatch beside it. */
    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item {
        padding: 13.5px !important;
        border: 0 !important;
        background-clip: content-box !important;
        box-shadow: none !important;
        transform: none !important;
    }

    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block !important;
        box-sizing: border-box;
        width: 17px !important;
        height: 17px !important;
        border: 1px solid rgba(10, 10, 10, 0.28);
        border-radius: 50%;
        outline: 0;
        background: transparent;
        box-shadow: none;
        content: "";
        pointer-events: none;
        transform: translate(-50%, -50%);
    }

    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item.active,
    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item.active:hover {
        outline: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item.active::after,
    body.exg-shell.single-trucks .exg-unified-pdp .product__color-picker button.product__color-picker-wrapper-item.active:hover::after {
        width: 17px !important;
        height: 17px !important;
        outline: 2px solid var(--exg-gold) !important;
        outline-offset: 2px !important;
        box-shadow: 0 0 0 1px var(--exg-black);
    }

    /* The inner region owns horizontal scrolling. Opaque, bounded sticky row
       labels keep values from showing through or colliding while it moves. */
    body.single-trucks .model__comparison-tables > div:not(.dn) {
        overflow: visible;
    }

    body.single-trucks .model__comparison-tables .exg-comparison-scroll {
        position: relative;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        isolation: isolate;
        overscroll-behavior-inline: contain;
        scroll-padding-left: min(46vw, 180px);
        -webkit-overflow-scrolling: touch;
    }

    body.single-trucks .model__comparison-tables table.exg-comparison-table :is(th[scope="row"], thead th:first-child) {
        box-sizing: border-box;
        width: min(46vw, 180px);
        min-width: min(46vw, 180px);
        max-width: min(46vw, 180px);
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.single-trucks .model__comparison-tables table.exg-comparison-table thead th:first-child {
        position: sticky;
        left: 0;
        z-index: 4;
        background: var(--exg-gold);
    }

    body.single-trucks .model__comparison-tables table.exg-comparison-table tbody th[scope="row"] {
        z-index: 2;
        background: #fff;
        line-height: 1.15;
    }

    body.single-trucks .model__comparison-tables table.exg-comparison-table tbody > tr:not(.exg-comparison-table__section):nth-child(even) > th[scope="row"] {
        background: #f0f0ed;
    }

    body.single-trucks .model__comparison-tables table.exg-comparison-table td {
        min-width: 132px;
        white-space: normal;
    }

    body.single-trucks .guard__detail-logos {
        display: grid !important;
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    body.single-trucks .guard__detail-logos > a {
        width: 100%;
        height: 76px;
        flex-basis: auto;
    }

    body.single-trucks .guard__detail-logos img {
        width: 68px !important;
        max-width: 68px;
        height: 51px !important;
        max-height: 51px;
    }

    body.single-trucks .guard__detail-logos > .model__usa-logo {
        width: 76px !important;
        max-width: 76px;
        flex-basis: auto;
        height: 56px !important;
        max-height: 56px;
    }

    body.single-trucks .guard-engineering,
    body.single-trucks .model {
        padding: 40px 0;
    }

    body.single-trucks .guard-engineering > .grid-container,
    body.single-trucks .model > .grid-container {
        width: calc(100% - 32px);
    }

    body.single-trucks .guard-engineering__content h2 {
        font-size: 34px;
    }

    body.single-trucks .guard-engineering__intro {
        margin-top: 16px;
        font-size: 16px;
    }

    body.single-trucks .guard-engineering__features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 24px;
    }

    body.single-trucks .model__intro {
        margin-bottom: 26px;
    }

    body.single-trucks .model__title {
        font-size: 32px;
    }

    body.single-trucks .model__description {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 22px;
    }

    body.single-trucks .model__description p,
    body.single-trucks .model__details-card {
        padding: 20px;
    }

    body.single-trucks .singleGuard__model-plate {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px !important;
    }

    body.single-trucks .singleGuard__model-plate-image {
        width: 160px !important;
        height: 105px !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    body.single-trucks .model__latch-card {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__latch-summary {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__latch-copy {
        padding: 22px;
    }

    body.single-trucks .model__latch-media {
        width: 100%;
        height: 200px;
        min-height: 0;
        margin: 14px 0 0;
        padding: 10px;
    }

    body.single-trucks .model__latch-actions {
        grid-template-columns: 1fr;
    }

    body.single-trucks .model__latch-actions .btn-howtoopen + .btn-howtoopen {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }

    body.single-trucks .model__latch-video {
        padding: 18px;
    }

    body.single-trucks .model__comparison {
        margin-top: 38px;
        padding-top: 34px;
    }

    body.single-trucks .model__comparison-tables .icon-scroll-right {
        display: block;
    }
}

@media (max-width: 520px) {
    body.single-trucks .model__detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
