﻿:root {
    --range-primary: var(--primary, #313131);
    --range-dark: var(--primary-light, #1d1e1f);
    --range-accent: var(--secondary, #dcec96);
    --range-surface: #ffffff;
    --range-soft: #f4f5f1;
    --range-border: rgba(28, 31, 28, 0.12);
    --range-muted: #626861;
    --range-shadow: 0 20px 55px rgba(19, 22, 19, 0.1);
    --range-shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.range-page {
    padding-bottom: 0 !important;
    color: var(--range-primary);
    background: var(--range-soft);
}

.range-page *,
.range-page *::before,
.range-page *::after {
    box-sizing: border-box;
}

.range-page h1,
.range-page h2,
.range-page h3,
.range-page p,
.range-page ul,
.range-page figure {
    margin-top: 0;
}

.range-page p {
    line-height: 1.75;
}

.range-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(9.5rem, 13vw, 12rem) 0 clamp(4rem, 8vw, 7rem);
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgba(220, 236, 150, 0.22), transparent 28%),
        linear-gradient(120deg, #151615 0%, #242624 62%, #323632 100%);
}

.range-hero::before,
.range-hero::after {
    position: absolute;
    border: 1px solid rgba(220, 236, 150, 0.16);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.range-hero::before {
    top: -12rem;
    right: -8rem;
    width: 30rem;
    height: 30rem;
}

.range-hero::after {
    right: 18%;
    bottom: -18rem;
    width: 34rem;
    height: 34rem;
}

.range-hero .container {
    position: relative;
    z-index: 1;
}

.range-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.range-kicker,
.range-section-kicker,
.range-panel-label {
    margin-bottom: 0.75rem;
    color: var(--range-accent);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.range-hero h1 {
    max-width: 860px;
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 6.7vw, 6.2rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.range-hero-lead {
    max-width: 750px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.range-hero-actions,
.range-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.range-button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.82rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 0;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.range-button:hover,
.range-button:focus-visible {
    transform: translate(2px, 2px);
    text-decoration: none;
}

.range-button-primary {
    color: #111;
    background: var(--range-accent);
    border-color: var(--range-accent);
}

.range-button-primary:hover,
.range-button-primary:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.range-button-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
}

.range-button-secondary:hover,
.range-button-secondary:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.range-assurance-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.35rem;
    margin-top: 1.65rem;
}

.range-assurance-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 650;
}

.range-assurance-list i {
    color: var(--range-accent);
}

.range-hero-panel {
    padding: clamp(1.35rem, 3vw, 2.25rem);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--range-shadow-dark);
    backdrop-filter: blur(8px);
}

.range-panel-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.range-panel-feature:first-of-type {
    border-top: 0;
}

.range-panel-icon {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
}

.range-panel-feature strong,
.range-panel-feature span {
    display: block;
}

/* Keep the circular feature icon centred; the generic span rule above must not override its flex layout. */
.range-panel-feature .range-panel-icon {
    display: inline-flex;
    flex: 0 0 2.65rem;
    align-items: center;
    justify-content: center;
}

.range-panel-icon i {
    display: block;
    width: 1em;
    line-height: 1;
    text-align: center;
}

.range-panel-feature strong {
    margin-bottom: 0.3rem;
    color: #fff;
    font-size: 1rem;
}

.range-panel-feature div > span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.55;
}

.range-overview-section,
.range-layout-section,
.classic-feature-section,
.classic-parts-section,
.classic-video-section,
.classic-faq-section,
.range-review-section,
.range-final-cta {
    padding: clamp(3.75rem, 7vw, 7rem) 0;
}

.range-overview-section {
    background: var(--range-soft);
}

.range-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}

.range-gallery-card,
.range-overview-card {
    background: var(--range-surface);
    border: 1px solid var(--range-border);
    box-shadow: var(--range-shadow);
}

.range-gallery-card {
    overflow: hidden;
}

.range-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
}

.range-gallery-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    line-height: 1.15;
}

.range-gallery-heading .range-section-kicker {
    color: #72786e;
}

.range-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--range-primary);
    border-bottom: 2px solid var(--range-accent);
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
}

.range-text-link:hover,
.range-text-link:focus-visible {
    color: #000;
    border-color: var(--range-primary);
    text-decoration: none;
}

.range-carousel-shell {
    position: relative;
    overflow: hidden;
    background: #111211;
}

.range-carousel-shell[aria-busy="true"]::after {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(17, 18, 17, 0.72);
    content: "Loading photos…";
    font-weight: 800;
    letter-spacing: 0.02em;
    backdrop-filter: blur(3px);
}

.range-gallery-viewer {
    position: relative;
    outline: none;
}

.range-gallery-viewer:focus-visible {
    box-shadow: inset 0 0 0 3px var(--range-accent);
}

.range-gallery-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 340px;
    background: #0e0f0e;
    isolation: isolate;
}

.range-gallery-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.range-gallery-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.range-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0e0f0e;
}

.range-gallery-caption {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 0.7rem 0.85rem;
    color: #fff;
    background: linear-gradient(90deg, rgba(17, 18, 17, 0.18), rgba(17, 18, 17, 0.86));
    font-size: 0.88rem;
    font-weight: 800;
    text-align: right;
    backdrop-filter: blur(5px);
}

.range-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    color: #111;
    background: var(--range-accent);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.range-gallery-nav:hover,
.range-gallery-nav:focus-visible {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.range-gallery-nav-prev {
    left: 0.85rem;
}

.range-gallery-nav-next {
    right: 0.85rem;
}

.range-gallery-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem 1rem;
    background: #171817;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.range-gallery-position {
    min-width: 5.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    white-space: nowrap;
}

.range-gallery-position strong {
    color: var(--range-accent);
}

.range-gallery-thumbnails {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.35rem;
    scrollbar-color: rgba(220, 236, 150, 0.55) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

.range-gallery-thumbnail {
    position: relative;
    flex: 0 0 4.25rem;
    width: 4.25rem;
    height: 3.1rem;
    overflow: hidden;
    padding: 0;
    background: #0d0e0d;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.58;
    transition: opacity 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.range-gallery-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-gallery-thumbnail:hover,
.range-gallery-thumbnail:focus-visible,
.range-gallery-thumbnail.is-active {
    border-color: var(--range-accent);
    opacity: 1;
}

.range-gallery-thumbnail.is-active {
    transform: translateY(-2px);
}

.range-carousel-empty {
    display: grid;
    min-height: 390px;
    place-items: center;
    align-content: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
}

.range-carousel-empty i {
    margin-bottom: 1rem;
    color: var(--range-accent);
    font-size: 2.4rem;
}

.range-carousel-empty h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.range-overview-card {
    padding: clamp(1.5rem, 3vw, 2.75rem);
}

.range-overview-card h2,
.range-section-heading h2,
.range-trust-copy h2,
.range-review-summary h2,
.range-final-cta h2,
.classic-faq-intro h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.range-overview-card .range-section-kicker,
.range-section-heading .range-section-kicker,
.range-trust-copy .range-section-kicker,
.range-review-summary .range-section-kicker,
.classic-faq-intro .range-section-kicker {
    color: #73796f;
}

.range-rich-copy,
.range-secondary-copy {
    color: var(--range-muted);
}

.range-rich-copy p + p,
.range-secondary-copy p + p {
    margin-top: 1rem;
}

.range-ideal-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    margin: 1.4rem 0;
    padding: 1rem;
    background: #f1f4e8;
    border-left: 4px solid var(--range-accent);
}

.range-ideal-icon {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
    font-size: 0.75rem;
}

.range-ideal-card strong {
    display: block;
    margin-bottom: 0.2rem;
}

.range-ideal-card p {
    margin-bottom: 0;
}

.range-fitting-note {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.35rem;
    padding-top: 1rem;
    color: var(--range-muted);
    border-top: 1px solid var(--range-border);
    font-size: 0.92rem;
}

.range-fitting-note i {
    margin-top: 0.35rem;
    color: #7d8f33;
}

.range-overview-actions {
    margin-top: 1.75rem;
}

.range-overview-actions .range-button-primary:hover,
.range-overview-actions .range-button-primary:focus-visible,
.range-final-cta .range-button-primary:hover,
.range-final-cta .range-button-primary:focus-visible {
    border-color: var(--range-primary);
}

.range-section-heading {
    max-width: 820px;
    margin-bottom: 2.1rem;
}

.range-section-heading > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--range-muted);
}

.range-gallery-filter {
    padding: 1rem 1.5rem 1.1rem;
    background: #f7f8f4;
    border-top: 1px solid var(--range-border);
    border-bottom: 1px solid var(--range-border);
}

.range-gallery-filter-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.range-gallery-filter-heading p {
    margin-bottom: 0;
}

.range-gallery-filter-label {
    color: var(--range-primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.range-gallery-filter-heading > div > p:last-child {
    margin-top: 0.15rem;
    color: var(--range-muted);
    font-size: 0.8rem;
}

.range-layout-status {
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0.45rem 0.65rem;
    color: #4e554b !important;
    background: #fff;
    border: 1px solid var(--range-border);
    font-size: 0.76rem;
    font-weight: 700;
}

.range-layout-status.is-loading::before {
    display: inline-block;
    width: 0.72rem;
    height: 0.72rem;
    margin-right: 0.4rem;
    border: 2px solid rgba(49, 49, 49, 0.2);
    border-top-color: var(--range-primary);
    border-radius: 50%;
    content: "";
    vertical-align: -0.08rem;
    animation: range-spin 0.7s linear infinite;
}

@keyframes range-spin {
    to { transform: rotate(360deg); }
}

.range-layout-filter-list {
    display: flex;
    gap: 0.55rem;
    margin: 0;
    padding: 0.15rem 0 0.35rem;
    overflow-x: auto;
    list-style: none;
    scrollbar-color: rgba(49, 49, 49, 0.35) rgba(49, 49, 49, 0.08);
    scrollbar-width: thin;
}

.range-layout-filter-item {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.range-layout-filter-button {
    display: grid;
    grid-template-columns: 2.45rem minmax(5.5rem, auto) 1.25rem;
    gap: 0.55rem;
    min-width: 9.5rem;
    min-height: 3.15rem;
    align-items: center;
    padding: 0.32rem 0.5rem 0.32rem 0.32rem;
    color: var(--range-primary);
    background: #fff;
    border: 1px solid var(--range-border);
    font-size: 0.8rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.range-layout-filter-button:hover,
.range-layout-filter-button:focus-visible {
    border-color: #829438;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(27, 30, 26, 0.1);
}

.range-layout-filter-button.selected,
.range-layout-filter-item.selected .range-layout-filter-button {
    background: #f0f4df;
    border-color: #788b31;
    box-shadow: inset 0 0 0 1px #788b31;
}

.range-layout-filter-thumb {
    display: block;
    width: 2.45rem;
    height: 2.45rem;
    overflow: hidden;
    background: #e8ebe4;
}

.range-layout-filter-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-layout-filter-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.range-layout-filter-check {
    display: inline-flex;
    width: 1.2rem;
    height: 1.2rem;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: #edf0ea;
    border-radius: 50%;
    font-size: 0.58rem;
}

.range-layout-filter-button.selected .range-layout-filter-check,
.range-layout-filter-item.selected .range-layout-filter-check {
    color: #111;
    background: var(--range-accent);
}

.range-trust-section {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    color: #fff;
    background: var(--range-dark);
}

.range-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.range-trust-copy p:last-child {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
}

.range-trust-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.range-trust-points > div {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.range-trust-points i {
    display: block;
    margin-bottom: 1rem;
    color: var(--range-accent);
    font-size: 1.4rem;
}

.range-trust-points strong,
.range-trust-points span {
    display: block;
}

.range-trust-points strong {
    margin-bottom: 0.45rem;
}

.range-trust-points span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.55;
}

.range-more-detail-section {
    background: #fff;
}

.classic-feature-section {
    background: #fff;
}

.classic-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.classic-feature-card {
    position: relative;
    min-height: 100%;
    padding: 1.5rem;
    overflow: hidden;
    background: var(--range-soft);
    border: 1px solid var(--range-border);
}

.classic-feature-card > i {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.4rem;
    place-items: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
}

.classic-feature-number {
    position: absolute;
    top: 0.55rem;
    right: 0.8rem;
    color: rgba(49, 49, 49, 0.08);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.classic-feature-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.28rem;
}

.classic-feature-card p {
    margin-bottom: 0;
    color: var(--range-muted);
    font-size: 0.92rem;
}

.classic-parts-section {
    color: #fff;
    background: var(--range-dark);
}

.range-section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.classic-parts-section .range-section-heading h2,
.classic-video-section .range-section-heading h2 {
    color: #fff;
}

.classic-parts-section .range-section-heading > p:last-child,
.classic-video-section .range-section-heading > p:last-child {
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.66);
}

.classic-parts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.classic-part-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.classic-part-image {
    min-height: 360px;
    background: #111;
}

.classic-part-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.classic-part-copy {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: center;
}

.classic-part-copy h3 {
    margin-bottom: 0.75rem;
    font-size: 1.55rem;
}

.classic-part-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.classic-part-copy small {
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.5;
}

.classic-video-section {
    color: #fff;
    background: #111211;
}

.classic-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.classic-video-card {
    overflow: hidden;
    background: #202220;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.classic-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.classic-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.classic-video-copy {
    padding: 1.25rem;
}

.classic-video-copy > span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--range-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.classic-video-copy h3 {
    margin-bottom: 0.65rem;
    font-size: 1.22rem;
}

.classic-video-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
}

.classic-faq-section {
    background: var(--range-soft);
}

.classic-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.classic-faq-intro {
    position: sticky;
    top: 9rem;
}

.classic-faq-intro > p:not(.range-section-kicker) {
    color: var(--range-muted);
}

.classic-faq-list {
    border-top: 1px solid var(--range-border);
}

.classic-faq-list details {
    background: #fff;
    border-right: 1px solid var(--range-border);
    border-bottom: 1px solid var(--range-border);
    border-left: 1px solid var(--range-border);
}

.classic-faq-list summary {
    position: relative;
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    color: var(--range-primary);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.classic-faq-list summary::-webkit-details-marker {
    display: none;
}

.classic-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    width: 1.8rem;
    height: 1.8rem;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
    content: "+";
    font-size: 1.25rem;
    line-height: 1.7rem;
    text-align: center;
    transform: translateY(-50%);
}

.classic-faq-list details[open] summary::after {
    content: "−";
}

.classic-faq-list details > div {
    padding: 0 1.25rem 1.25rem;
    color: var(--range-muted);
}

.classic-faq-list details > div p {
    margin-bottom: 0;
}

.range-review-section {
    background: #fff;
}

.range-review-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.range-rating {
    min-width: 235px;
    padding: 1rem;
    background: var(--range-soft);
    border: 1px solid var(--range-border);
    text-align: right;
}

.range-rating-stars {
    display: flex;
    justify-content: flex-end;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
}

.range-rating-stars span {
    color: #c8cbc5;
    font-size: 1.2rem;
}

.range-rating-stars span.is-filled {
    color: #7d9133;
}

.range-rating strong,
.range-rating > span {
    display: block;
}

.range-rating > span {
    color: var(--range-muted);
    font-size: 0.82rem;
}

.range-review-toggle {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    color: var(--range-primary);
    background: var(--range-soft);
    border: 1px solid var(--range-border);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.range-review-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.range-review-list {
    display: grid;
    gap: 1rem;
    padding-top: 1.25rem;
}

.range-review-list[hidden] {
    display: none !important;
}

.range-review-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--range-border);
    box-shadow: 0 14px 40px rgba(24, 27, 23, 0.08);
}

.range-review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.5rem;
    background: #f7f8f4;
    border-bottom: 1px solid var(--range-border);
}

.range-review-eyebrow {
    margin-bottom: 0.35rem;
    color: #758130;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.range-review-card-header h3 {
    margin-bottom: 0.4rem;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 1.2;
}

.range-review-byline {
    margin-bottom: 0;
    color: var(--range-muted);
    font-size: 0.86rem;
}

.range-review-score {
    flex: 0 0 auto;
    text-align: right;
}

.range-review-stars {
    display: flex;
    justify-content: flex-end;
    gap: 0.13rem;
    margin-bottom: 0.2rem;
}

.range-review-stars span {
    color: #c8cbc5;
    font-size: 1rem;
}

.range-review-stars span.is-filled {
    color: #7d9133;
}

.range-review-score p {
    margin: 0;
    line-height: 1;
}

.range-review-score p strong {
    font-size: 1.65rem;
}

.range-review-score p span {
    color: var(--range-muted);
    font-size: 0.78rem;
}

.range-review-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.range-review-main {
    padding: 1.5rem;
}

.range-review-main blockquote {
    position: relative;
    margin: 0;
    padding-left: 1.15rem;
    color: #363a35;
    border-left: 3px solid var(--range-accent);
    font-size: 1rem;
    line-height: 1.75;
}

.range-review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.range-review-photo {
    position: relative;
    width: 5.25rem;
    height: 5.25rem;
    overflow: hidden;
    padding: 0;
    background: #111;
    border: 2px solid transparent;
    cursor: zoom-in;
}

.range-review-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.range-review-photo > span {
    position: absolute;
    right: 0.35rem;
    bottom: 0.35rem;
    display: inline-flex;
    width: 1.55rem;
    height: 1.55rem;
    align-items: center;
    justify-content: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
    font-size: 0.7rem;
}

.range-review-photo:hover,
.range-review-photo:focus-visible {
    border-color: #788b31;
}

.range-review-photo:hover img {
    transform: scale(1.06);
}

.range-review-pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1.25rem 0 0;
}

.range-review-pros-cons > div {
    padding: 0.85rem;
    background: #f7f8f4;
    border: 1px solid var(--range-border);
}

.range-review-pros-cons > div.is-summary {
    grid-column: 1 / -1;
    background: #f0f4df;
    border-color: rgba(121, 139, 49, 0.28);
}

.range-review-pros-cons dt {
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.range-review-pros-cons dt i {
    margin-right: 0.35rem;
    color: #7d9133;
}

.range-review-pros-cons .is-negative dt i {
    color: #9a5e51;
}

.range-review-pros-cons dd {
    margin: 0;
    color: var(--range-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.range-review-details {
    padding: 1.5rem;
    background: #f7f8f4;
    border-left: 1px solid var(--range-border);
}

.range-review-owned {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--range-border);
}

.range-review-owned span,
.range-review-owned strong,
.range-review-owned small {
    display: block;
}

.range-review-owned > span {
    margin-bottom: 0.3rem;
    color: var(--range-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.range-review-owned strong {
    line-height: 1.45;
}

.range-review-owned small {
    margin-top: 0.35rem;
    color: var(--range-muted);
}

.range-review-metrics {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.range-review-metric > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
}

.range-review-metric > div span {
    color: var(--range-muted);
}

.range-review-metric meter {
    display: block;
    width: 100%;
    height: 0.55rem;
    background: #e2e5de;
    border: 0;
}

.range-review-metric meter::-webkit-meter-bar {
    background: #e2e5de;
    border: 0;
    border-radius: 0;
}

.range-review-metric meter::-webkit-meter-optimum-value {
    background: #879a3c;
}

.range-review-metric meter::-moz-meter-bar {
    background: #879a3c;
}

body.range-lightbox-open {
    overflow: hidden;
}

.range-review-lightbox[hidden] {
    display: none !important;
}

.range-review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.range-review-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.range-review-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(92vw, 1100px);
    height: min(88vh, 820px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
}

.range-review-lightbox-dialog figure {
    display: grid;
    min-width: 0;
    min-height: 0;
    max-height: 88vh;
    margin: 0;
    place-items: center;
}

.range-review-lightbox-dialog img {
    display: block;
    max-width: 100%;
    max-height: calc(88vh - 3.5rem);
    object-fit: contain;
}

.range-review-lightbox-dialog figcaption {
    width: 100%;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(17, 18, 17, 0.82);
    font-size: 0.82rem;
    text-align: center;
}

.range-review-lightbox-close,
.range-review-lightbox-nav {
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    color: #111;
    background: var(--range-accent);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.range-review-lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.range-review-lightbox-nav {
    margin: 0 0.75rem;
}

.range-review-lightbox-close:hover,
.range-review-lightbox-close:focus-visible,
.range-review-lightbox-nav:hover,
.range-review-lightbox-nav:focus-visible {
    background: #fff;
}

.range-final-cta {
    color: #fff;
    background: var(--range-dark);
}

.range-final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(1.75rem, 4vw, 3.5rem);
    background: var(--range-primary);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--range-shadow-dark);
}

.range-final-cta-card > div {
    max-width: 820px;
}

.range-final-cta h2 {
    margin-bottom: 0.8rem;
}

.range-final-cta p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.range-final-cta .range-button {
    flex: 0 0 auto;
}

.range-error-state {
    padding: 12rem 0 6rem;
    text-align: center;
}

#formShedPics {
    display: none;
}

@media (max-width: 1199px) {
    .classic-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .classic-part-card {
        grid-template-columns: 1fr;
    }

    .classic-part-image,
    .classic-part-image img {
        min-height: 300px;
    }
}

@media (max-width: 991px) {
    .range-hero-grid,
    .range-overview-grid,
    .range-trust-grid,
    .classic-faq-layout {
        grid-template-columns: 1fr;
    }

    .range-hero-panel {
        max-width: 760px;
    }

    .range-overview-card {
        order: -1;
    }

    .range-trust-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .classic-faq-intro {
        position: static;
    }

    .classic-video-grid {
        grid-template-columns: 1fr;
    }

    .classic-video-card {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
        align-items: center;
    }

    .range-final-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .range-hero {
        padding-top: 8.5rem;
    }

    .range-hero-actions,
    .range-overview-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .range-button {
        width: 100%;
    }

    .range-assurance-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .range-gallery-heading,
    .range-section-heading-split,
    .range-review-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .range-carousel-empty {
        min-height: 320px;
    }

    .classic-feature-grid,
    .classic-parts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .range-trust-points {
        grid-template-columns: 1fr;
    }

    .classic-parts-grid {
        grid-template-columns: 1fr;
    }

    .classic-video-card {
        display: block;
    }

    .range-rating {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .range-rating-stars {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .range-overview-section,
    .classic-feature-section,
    .classic-parts-section,
    .classic-video-section,
    .classic-faq-section,
    .range-review-section,
    .range-final-cta {
        padding: 3.25rem 0;
    }

    .range-hero h1 {
        font-size: 3rem;
    }

    .range-gallery-heading {
        padding: 1.15rem;
    }

    .classic-feature-grid {
        grid-template-columns: 1fr;
    }

    .range-final-cta-card {
        padding: 1.35rem;
    }
}


@media (max-width: 991px) {
    .range-review-card-grid {
        grid-template-columns: 1fr;
    }

    .range-review-details {
        border-top: 1px solid var(--range-border);
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .range-gallery-filter-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .range-layout-status {
        width: 100%;
    }

    .range-gallery-stage {
        min-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .range-gallery-controls {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .range-review-card-header {
        flex-direction: column;
    }

    .range-review-score,
    .range-review-stars {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .range-gallery-filter {
        padding: 0.9rem 1rem 1rem;
    }

    .range-layout-filter-button {
        min-width: 8.75rem;
    }

    .range-gallery-stage {
        min-height: 260px;
    }

    .range-gallery-nav {
        width: 2.45rem;
        height: 2.45rem;
    }

    .range-review-main,
    .range-review-details,
    .range-review-card-header {
        padding: 1.1rem;
    }

    .range-review-pros-cons {
        grid-template-columns: 1fr;
    }

    .range-review-pros-cons > div.is-summary {
        grid-column: auto;
    }

    .range-review-lightbox-dialog {
        width: 96vw;
        grid-template-columns: 1fr;
    }

    .range-review-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        margin: 0;
        transform: translateY(-50%);
    }

    .range-review-lightbox-prev {
        left: 0.35rem;
    }

    .range-review-lightbox-next {
        right: 0.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .range-page *,
    .range-page *::before,
    .range-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* Classic range flooring video partial */
.classic-flooring-video-wrap {
    overflow: hidden;
    padding: clamp(1rem, 3vw, 2rem);
    background: var(--range-surface);
    border: 1px solid var(--range-border);
    box-shadow: var(--range-shadow);
}

.classic-flooring-video-wrap::after {
    display: table;
    clear: both;
    content: "";
}

.classic-flooring-video-wrap > div {
    width: 100% !important;
    max-width: 100%;
    margin-right: 0 !important;
    margin-left: 0 !important;
    float: none !important;
}

.classic-flooring-video-wrap iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 340px;
    border: 0;
}

.classic-flooring-video-wrap img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .classic-flooring-video-wrap iframe {
        min-height: 230px;
    }
}


/* Tanalised range uses the shared modern range detail components. */


/* Beast heavy-duty range */
.beast-range-page .range-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(220, 236, 150, 0.16), transparent 34%),
        linear-gradient(135deg, #111311 0%, #252825 56%, #101110 100%);
}

.beast-feature-card {
    background: #f4f5f0;
}

.beast-parts-section .classic-part-image,
.beast-parts-section .classic-part-image img {
    min-height: 390px;
}

.beast-detail-page .range-section-heading > p:last-child {
    max-width: 760px;
}

@media (max-width: 767px) {
    .beast-parts-section .classic-part-image,
    .beast-parts-section .classic-part-image img {
        min-height: 260px;
    }
}


/* Security range component compatibility */
/* Restores the shared Security Range sections when this stylesheet is used by multiple range pages. */

.range-overview-section,
.range-layout-section,
.security-feature-section,
.security-parts-section,
.security-video-section,
.security-faq-section,
.range-review-section,
.range-final-cta {
    padding: clamp(3.75rem, 7vw, 7rem) 0;
}

.range-overview-card h2,
.range-section-heading h2,
.range-trust-copy h2,
.range-review-summary h2,
.range-final-cta h2,
.security-faq-intro h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.range-overview-card .range-section-kicker,
.range-section-heading .range-section-kicker,
.range-trust-copy .range-section-kicker,
.range-review-summary .range-section-kicker,
.security-faq-intro .range-section-kicker {
    color: #73796f;
}

.security-feature-section {
    background: #fff;
}

.security-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.security-feature-card {
    position: relative;
    min-height: 100%;
    padding: 1.5rem;
    overflow: hidden;
    background: var(--range-soft);
    border: 1px solid var(--range-border);
}

.security-feature-card > i {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.4rem;
    place-items: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
}

.security-feature-number {
    position: absolute;
    top: 0.55rem;
    right: 0.8rem;
    color: rgba(49, 49, 49, 0.08);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.security-feature-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.28rem;
}

.security-feature-card p {
    margin-bottom: 0;
    color: var(--range-muted);
    font-size: 0.92rem;
}

.security-parts-section {
    color: #fff;
    background: var(--range-dark);
}

.security-parts-section .range-section-heading h2,
.security-video-section .range-section-heading h2 {
    color: #fff;
}

.security-parts-section .range-section-heading > p:last-child,
.security-video-section .range-section-heading > p:last-child {
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.66);
}

.security-parts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.security-part-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.security-part-image {
    min-height: 360px;
    background: #111;
}

.security-part-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.security-part-copy {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: center;
}

.security-part-copy h3 {
    margin-bottom: 0.75rem;
    font-size: 1.55rem;
}

.security-part-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.security-part-copy small {
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.5;
}

.security-video-section {
    color: #fff;
    background: #111211;
}

.security-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.security-video-card {
    overflow: hidden;
    background: #202220;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.security-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.security-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.security-video-copy {
    padding: 1.25rem;
}

.security-video-copy > span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--range-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.security-video-copy h3 {
    margin-bottom: 0.65rem;
    font-size: 1.22rem;
}

.security-video-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
}

.security-faq-section {
    background: var(--range-soft);
}

.security-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.security-faq-intro {
    position: sticky;
    top: 9rem;
}

.security-faq-intro > p:not(.range-section-kicker) {
    color: var(--range-muted);
}

.security-faq-list {
    border-top: 1px solid var(--range-border);
}

.security-faq-list details {
    background: #fff;
    border-right: 1px solid var(--range-border);
    border-bottom: 1px solid var(--range-border);
    border-left: 1px solid var(--range-border);
}

.security-faq-list summary {
    position: relative;
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    color: var(--range-primary);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.security-faq-list summary::-webkit-details-marker {
    display: none;
}

.security-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    width: 1.8rem;
    height: 1.8rem;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
    content: "+";
    font-size: 1.25rem;
    line-height: 1.7rem;
    text-align: center;
    transform: translateY(-50%);
}

.security-faq-list details[open] summary::after {
    content: "−";
}

.security-faq-list details > div {
    padding: 0 1.25rem 1.25rem;
    color: var(--range-muted);
}

.security-faq-list details > div p {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
.security-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.security-part-card {
        grid-template-columns: 1fr;
    }

.security-part-image,
    .security-part-image img {
        min-height: 300px;
    }
}

@media (max-width: 991px) {
.range-hero-grid,
    .range-overview-grid,
    .range-trust-grid,
    .security-faq-layout {
        grid-template-columns: 1fr;
    }

.security-faq-intro {
        position: static;
    }

.security-video-grid {
        grid-template-columns: 1fr;
    }

.security-video-card {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
        align-items: center;
    }
}

@media (max-width: 767px) {
.security-feature-grid,
    .security-parts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.security-parts-grid {
        grid-template-columns: 1fr;
    }

.security-video-card {
        display: block;
    }
}

@media (max-width: 540px) {
.range-overview-section,
    .security-feature-section,
    .security-parts-section,
    .security-video-section,
    .security-faq-section,
    .range-review-section,
    .range-final-cta {
        padding: 3.25rem 0;
    }

.security-feature-grid {
        grid-template-columns: 1fr;
    }
}
/* End security range component compatibility */


/* Summer House range */
.summer-house-range-page .range-hero {
    background:
        radial-gradient(circle at 79% 18%, rgba(220, 236, 150, 0.2), transparent 32%),
        radial-gradient(circle at 18% 92%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(135deg, #162018 0%, #354438 58%, #151a16 100%);
}

.summer-house-feature-card {
    background: #f7f8f2;
}

.summer-house-design-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: #fff;
    background: #151715;
}

.summer-house-design-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.summer-house-design-copy h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.summer-house-design-copy > p:not(.range-section-kicker) {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.summer-house-design-steps {
    display: grid;
    gap: 0.75rem;
}

.summer-house-design-steps > div {
    position: relative;
    min-height: 112px;
    padding: 1.25rem 1.25rem 1.25rem 5rem;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.summer-house-design-steps > div > span {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    color: #111;
    background: var(--range-accent);
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

.summer-house-design-steps strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1.05rem;
}

.summer-house-design-steps p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
    line-height: 1.55;
}

.summer-house-video-section {
    background: #f4f5ef;
}

.summer-house-flooring-video-wrap {
    margin-top: 2rem;
}

.summer-house-video-section .range-section-heading h2 {
    color:#313131 !important;
}
.summer-house-video-section .range-section-heading p
{
    color:#73796f !important;
}
.summer-house-flooring-video-wrap p{
    color:#313131 !important;
}
@media (max-width: 991px) {
    .summer-house-design-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .summer-house-design-section {
        padding: 3.25rem 0;
    }

    .summer-house-design-card {
        padding: 1.25rem;
    }

    .summer-house-design-steps > div {
        min-height: 0;
        padding: 4.6rem 1.1rem 1.1rem;
    }

    .summer-house-design-steps > div > span {
        top: 1.1rem;
        left: 1.1rem;
    }
}
