.product-page {
        --product-brown: #c5a47e;
        --product-soft: #f8f2ec;
        --product-text: #111111;
        --product-muted: #555555;
        font-family: 'Poppins', sans-serif;
        color: var(--product-text);
        background: #ffffff;
    }

    .product-page img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-wrap {
        width: min(1320px, calc(100% - 40px));
        margin: 0 auto;
    }

    .product-section {
        margin-top: 66px;
    }

    .product-section.faq-section {
        margin-bottom: 80px;
    }

    .product-title {
        font-size: 28px;
        line-height: 1.2;
        font-weight: 700;
        text-align: center;
        margin-bottom: 24px;
        letter-spacing: 0;
    }

    .product-title span,
    .product-accent {
        color: var(--product-brown);
    }

    .product-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 28px;
        border: 1px solid var(--product-brown);
        background: var(--product-brown);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(166, 109, 52, 0.3);
        cursor: pointer;
    }

    .product-button.secondary {
        background: #ffffff;
        color: var(--product-brown);
        box-shadow: none;
    }

    .product-hero {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
        gap: 48px;
        align-items: start;
        padding-top: 48px;
    }

    .product-breadcrumb {
        font-size: 9px;
        font-weight: 500;
        margin-bottom: 22px;
    }

    .product-breadcrumb a {
        color: #111111;
        text-decoration: none;
    }

    .product-breadcrumb span {
        color: var(--product-brown);
    }

    .product-hero h1 {
        font-size: 26px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 13px;
        letter-spacing: 0;
    }

    .product-material {
        display: inline-flex;
        background: var(--product-soft);
        color: var(--product-brown);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        padding: 12px 20px;
        margin-bottom: 20px;
    }

    .product-hero p {
        max-width: 485px;
        color: #202020;
        font-size: 14px;
        line-height: 1.85;
        text-align: justify;
        margin-bottom: 28px;
    }

    .product-actions {
        display: flex;
        gap: 13px;
        align-items: center;
    }

    .product-actions .product-button {
        min-width: 180px;
    }

    .hero-gallery {
        display: grid;
        gap: 14px;
    }

    .hero-gallery-main {
        height: 258px;
    }

    .hero-gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        height: 126px;
    }

    .hero-gallery-thumb {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 2px solid transparent;
        background: transparent;
        cursor: pointer;
        overflow: hidden;
        transition: border-color 0.2s ease, opacity 0.2s ease;
    }

    .hero-gallery-thumb:hover,
    .hero-gallery-thumb:focus-visible {
        border-color: rgba(166, 109, 52, 0.55);
        outline: none;
    }

    .hero-gallery-thumb.is-active {
        border-color: var(--product-brown);
    }

    .collection-grid {
        display: grid;
        grid-template-columns: 1.15fr 1.15fr 1.15fr 1.45fr;
        grid-template-rows: 220px 220px 178px;
        gap: 10px;
    }

    .collection-grid .tile:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .collection-grid .tile:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }

    .collection-grid .tile:nth-child(3) {
        grid-column: 4;
        grid-row: 1 / 3;
    }

    .collection-grid .tile:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }

    .collection-grid .tile:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }

    .collection-grid .tile:nth-child(6) {
        grid-column: 2;
        grid-row: 3;
    }

    .collection-grid .tile:nth-child(7) {
        grid-column: 3 / 5;
        grid-row: 3;
    }

    .collection-grid .tile {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: zoom-in;
        overflow: hidden;
        position: relative;
    }

    .collection-grid .tile img {
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .collection-grid .tile:hover img,
    .collection-grid .tile:focus-visible img {
        transform: scale(1.035);
        filter: brightness(0.92);
    }

    .collection-grid .tile:focus-visible {
        outline: 3px solid var(--product-brown);
        outline-offset: 3px;
    }

    .product-lightbox {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 28px;
    }

    .product-lightbox.is-open {
        display: flex;
    }

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

    .product-lightbox__backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(17, 17, 17, 0.84);
        cursor: zoom-out;
    }

    .product-lightbox__dialog {
        position: relative;
        z-index: 1;
        width: min(100%, 1120px);
        min-height: min(78vh, 760px);
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) 58px;
        align-items: center;
        gap: 18px;
    }

    .product-lightbox__figure {
        margin: 0;
        display: grid;
        gap: 14px;
        justify-items: center;
        min-width: 0;
    }

    .product-lightbox__image,
    .product-page .product-lightbox__image {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: calc(86vh - 82px);
        object-fit: contain;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .product-lightbox__caption {
        color: #fff;
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
    }

    .product-lightbox__close,
    .product-lightbox__arrow {
        display: inline-flex;
        align-items: baseline;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.2s ease;
    }

    .product-lightbox__close:hover,
    .product-lightbox__arrow:hover,
    .product-lightbox__close:focus-visible,
    .product-lightbox__arrow:focus-visible {
        background: rgba(197, 164, 126, 0.86);
        outline: none;
    }

    .product-lightbox__close {
        position: absolute;
        top: -14px;
        right: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        font-size: 32px;
        line-height: 1.3;
        z-index: 2;
    }

    .product-lightbox__arrow {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        font-size: 44px;
        line-height: 1.1;
        font-family: Arial, sans-serif;
    }

    .video-text {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
        align-items: center;
    }

    .video-card {
        position: relative;
        height: 310px;
        overflow: hidden;
    }

    .video-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.1);
    }

    .play-button {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    }

    .play-button::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 53%;
        transform: translate(-50%, -50%);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 14px solid #111111;
    }

    .feature-copy h2 {
        font-size: 29px;
        line-height: 1.28;
        margin-bottom: 10px;
    }

    .feature-copy p,
    .choose-copy p {
        color: #111111;
        font-size: 14px;
        line-height: 1.85;
        text-align: justify;
        margin-bottom: 20px;
    }

    .spec-section {
        display: grid;
        grid-template-columns: 420px 1fr;
        align-items: stretch;
        background: #ffffff;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    }

    .spec-image {
        min-height: 515px;
    }

    .spec-panel {
        padding: 26px 34px 32px;
    }

    .spec-panel h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .spec-table {
        overflow: hidden;
        border: 1px solid #d5d5d5;
        border-radius: 11px;
        margin-bottom: 28px;
    }

    .spec-row {
        display: grid;
        grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
        min-height: 64px;
        border-bottom: 1px solid #d5d5d5;
        align-items: center;
    }

    .spec-row:last-child {
        border-bottom: 0;
    }

    .spec-label {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
        padding: 16px 24px;
        font-size: 17px;
        font-weight: 700;
        overflow-wrap: anywhere;
    }

    .spec-label .fa-arrow-right {
        flex: 0 0 auto;
        color: var(--product-brown);
        font-size: 14px;
    }

    .spec-value {
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 50px;
        border-left: 1px solid #d5d5d5;
        font-size: 17px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .types-layout {
        display: grid;
        grid-template-columns: 330px 1fr;
        gap: 34px;
        align-items: start;
    }

    .types-copy h3 {
        font-size: 19px;
        line-height: 1.45;
        margin-bottom: 24px;
    }

    .check-list {
        list-style: none;
        display: grid;
        gap: 18px;
        padding: 0;
        margin: 0;
    }

    .check-list li {
        position: relative;
        padding-left: 40px;
        font-size: 17px;
        line-height: 1.35;
    }

    .check-list li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        top: -4px;
        color: var(--product-brown);
        font-size: 27px;
        font-weight: 700;
    }

    .types-image {
        height: 440px;
    }

    .suitable-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .image-label {
        position: relative;
        min-height: 244px;
        overflow: hidden;
    }

    .image-label.wide {
        grid-column: span 2;
        min-height: 270px;
    }

    .image-label::after,
    .other-card::after,
    .insight-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
    }

    .image-label span,
    .other-card span,
    .insight-card span {
        position: absolute;
        left: 20px;
        right: 16px;
        bottom: 16px;
        z-index: 1;
        color: #f4f4f4;
        font-size: 21px;
        line-height: 1.15;
        font-weight: 500;
    }

    .choose-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        align-items: start;
    }

    .choose-image {
        height: 375px;
    }

    .choose-copy p {
        margin-top: 2px;
    }

    .project-layout {
        display: grid;
        grid-template-columns: 0.8fr 1.25fr;
        gap: 58px;
        align-items: center;
    }

    .project-intro {
        padding-left: 74px;
    }

    .project-intro h2 {
        font-size: 25px;
        line-height: 1.28;
    }

    .project-intro h2 span {
        display: block;
        color: var(--product-brown);
        margin-top: 12px;
    }

    .project-intro h2 span strong {
        color: #000;
    }

    .project-form {
        padding: 32px;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
        background: #ffffff;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 19px 16px;
    }

    .field.full,
    .consent,
    .form-submit {
        grid-column: 1 / -1;
    }

    .field label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .field label span {
        color: #d72121;
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        min-height: 47px;
        border: 1px solid #e4e4e4;
        padding: 0 12px;
        color: #111111;
        background: #ffffff;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        outline: none;
    }

    .field textarea {
        min-height: 76px;
        padding-top: 13px;
        resize: vertical;
    }

    .consent {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 16px;
        align-items: start;
        color: #111111;
        font-size: 13px;
        line-height: 1.55;
    }

    .consent input {
        width: 24px;
        height: 24px;
        border: 1px solid #cfcfcf;
        accent-color: var(--product-brown);
    }

    .form-submit {
        text-align: center;
    }

    .form-submit .product-button {
        min-width: 196px;
        min-height: 56px;
        border: 0;
        font-size: 18px;
    }

    .other-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: repeat(2, 247px);
        gap: 12px;
    }

    .other-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
    }

    .other-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .other-card:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
    }

    .other-card:nth-child(3) {
        grid-column: 4;
        grid-row: 1;
    }

    .other-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .other-card:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .other-card:nth-child(6) {
        grid-column: 3 / 5;
        grid-row: 2;
    }

    .other-card span {
        font-size: 26px;
    }

    .brochure-card {
        position: relative;
        display: grid;
        grid-template-columns: 310px 1fr;
        align-items: center;
        min-height: 340px;
        padding: 0 42px;
        border-radius: 23px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
        overflow: visible;
    }

    .brochure-person {
        position: absolute;
        left: 38px;
        bottom: 0;
        width: 300px;
        height: 390px;
    }

    .brochure-person img {
        object-fit: contain;
        object-position: left bottom;
    }

    .brochure-copy {
        grid-column: 2;
        text-align: center;
    }

    .brochure-copy h3 {
        color: var(--product-brown);
        font-size: 19px;
        margin-bottom: 16px;
    }

    .brochure-copy p {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 28px;
    }

    .testimonial-section {
        max-width: 1320px;
        margin: auto;
        padding: 54px 0 42px;
        overflow: hidden;
    }

    .testimonial-section .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .testimonial-section .section-title h2 {
        font-size: clamp(2.3rem, 3vw, 3rem);
        margin-bottom: 12px;
    }

    .text-dark {
        color: #222;
    }

    .text-brown {
        color: var(--dark-brown);
    }

    .testimonials-slider {
        padding: 18px 0 48px;
        overflow: visible;
    }

    .testimonials-slider .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .testimonial-card {
        width: 100%;
        min-height: 192px;
        border-radius: 36px;
        padding: 32px 40px 26px;
        background: #f4f4f4;
        color: #222;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0.72;
        transform: scale(0.94);
        transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    }

    .testimonials-slider .swiper-slide-active .testimonial-card {
        background: var(--dark-brown);
        color: #fff;
        opacity: 1;
        transform: scale(1);
    }

    .testimonials-slider .swiper-slide-active .testimonial-card p {
        color: #fff !important;
    }

    .testimonials-slider .swiper-slide-active .testimonial-footer,
    .testimonials-slider .swiper-slide-active .brand,
    .testimonials-slider .swiper-slide-active .name {
        color: #fff !important;
    }

    .testimonials-slider .swiper-slide-prev .testimonial-card,
    .testimonials-slider .swiper-slide-next .testimonial-card {
        opacity: 0.78;
        transform: scale(0.95);
    }

    .testimonial-card p {
        color: #111;
        font-size: 1rem;
        line-height: 1.62;
        margin: 0;
    }

    .testimonial-footer {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 22px;
        margin-top: 26px;
    }

    .brand {
        color: currentColor;
        font-size: 2.3rem;
        font-weight: 700;
        line-height: 0.85;
        letter-spacing: 0;
        text-transform: lowercase;
    }

    .name {
        color: currentColor;
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .testimonials-slider .swiper-slide {
        transition: transform 0.4s ease;
    }

    .testimonials-slider .swiper-pagination-bullet {
        background: #ccc;
        opacity: 1;
    }

    .testimonials-slider .swiper-pagination-bullet-active {
        background: var(--dark-brown);
    }

    .insights-grid {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        gap: 14px;
        max-width: 1320px;
        margin: 0 auto;
    }

    .insights-side {
        display: grid;
        gap: 12px;
    }

    .insight-card {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
        min-height: 132px;
        isolation: isolate;
    }

    .insight-card.large {
        min-height: 430px;
    }

    .insight-card span {
        font-size: 30px;
        line-height: 1.35;
        max-width: 600px;
    }

    .insights-side .insight-card span {
        font-size: 20px;
        max-width: 380px;
    }

    .insight-card span.insight-arrow {
        left: auto;
        right: 20px;
        bottom: 18px;
        z-index: 2;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #ffffff;
        color: #111111;
        font-size: 30px;
        line-height: 1.5;
        align-items: baseline;
        font-weight: 500;
        opacity: 0;
        transform: translateX(32px);
        transition: opacity 1.4s ease, transform 1.4s ease;
        pointer-events: none;
    }

    .insight-card.large span.insight-arrow {
        right: 40px;
        bottom: 40px;
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .insight-card:hover .insight-arrow,
    .insight-card:focus-visible .insight-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .bottom-cta {
        position: relative;
        margin-top: 50px;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        overflow: hidden;
    }

    .bottom-cta img {
        position: absolute;
        inset: 0;
    }

    .bottom-cta-content {
        position: relative;
        z-index: 2;
    }

    .bottom-cta h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
        color: #f4f4f4 !important;
    }

    .whatsapp-float {
        position: fixed;
        right: 32px;
        bottom: 95px;
        z-index: 99;
        width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #16b828;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .whatsapp-float svg {
        width: 36px;
        height: 36px;
        fill: #fff;
    }

    @media (max-width: 1024px) {
        .product-hero,
        .video-text,
        .spec-section,
        .types-layout,
        .choose-layout,
        .project-layout {
            grid-template-columns: 1fr;
        }

        .project-intro {
            padding-left: 0;
            text-align: center;
        }

        .collection-grid,
        .suitable-grid,
        .other-grid,
        .insights-grid {
            grid-template-columns: 1fr 1fr;
        }

        .collection-grid,
        .other-grid {
            grid-auto-rows: 240px;
            grid-template-rows: none;
        }

        .collection-grid .tile,
        .collection-grid .tile:nth-child(1),
        .collection-grid .tile:nth-child(2),
        .collection-grid .tile:nth-child(3),
        .collection-grid .tile:nth-child(4),
        .collection-grid .tile:nth-child(5),
        .collection-grid .tile:nth-child(6),
        .collection-grid .tile:nth-child(7),
        .image-label.wide,
        .other-card:nth-child(1),
        .other-card:nth-child(2),
        .other-card:nth-child(3),
        .other-card:nth-child(4),
        .other-card:nth-child(5),
        .other-card:nth-child(6) {
            grid-column: auto;
            grid-row: auto;
        }

        .testimonials-row {
            width: min(100%, 1320px);
            margin: 0 auto;
            grid-template-columns: 1fr;
            padding: 0 20px;
        }
    }

    @media (max-width: 720px) {
        .product-wrap {
            width: min(100% - 28px, 1320px);
        }

        .product-section {
            margin-top: 42px;
        }

        .product-hero {
            padding-top: 30px;
            gap: 28px;
        }

        .product-hero h1,
        .feature-copy h2,
        .spec-panel h2,
        .product-title {
            font-size: 23px;
        }

        .product-actions,
        .hero-gallery-thumbs {
            grid-template-columns: 1fr;
        }

        .product-actions {
            display: grid;
        }

        .product-actions .product-button {
            width: 100%;
        }

        .hero-gallery-main,
        .video-card,
        .types-image,
        .choose-image,
        .spec-image,
        .insight-card.large {
            height: 280px;
            min-height: 280px;
        }

        .hero-gallery-thumbs,
        .collection-grid,
        .suitable-grid,
        .other-grid,
        .insights-grid,
        .form-grid,
        .brochure-card {
            display: grid;
            grid-template-columns: 1fr;
        }

        .image-label,
        .image-label.wide,
        .other-card {
            min-height: 220px;
        }

        .spec-panel,
        .project-form {
            padding: 22px 18px;
        }

        .spec-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .spec-label {
            padding: 14px 16px 6px;
        }

        .spec-value {
            height: auto;
            min-height: 36px;
            padding: 0 16px 14px 44px;
            border-left: 0;
        }

        .brochure-card {
            padding: 28px 18px;
            min-height: auto;
        }

        .brochure-person {
            position: static;
            width: 220px;
            height: 300px;
            margin: -50px auto 8px;
        }

        .brochure-copy {
            grid-column: auto;
        }

        .whatsapp-float {
            right: 35px;
            bottom: 90px;
            width: 52px;
            height: 52px;
        }

        .product-lightbox {
            padding: 16px;
        }

        .product-lightbox__dialog {
            min-height: 74vh;
            grid-template-columns: 44px minmax(0, 1fr) 44px;
            gap: 8px;
        }

        .product-lightbox__arrow {
            width: 44px;
            height: 44px;
            font-size: 34px;
        }

        .product-lightbox__close {
            top: -8px;
            width: 42px;
            height: 42px;
            font-size: 30px;
        }

        .product-lightbox__image,
        .product-page .product-lightbox__image {
            max-height: calc(82vh - 86px);
        }
    }

    /* Production responsive hardening */
    .product-wrap,
    .product-hero,
    .collection-grid,
    .video-text,
    .spec-section,
    .types-layout,
    .suitable-grid,
    .choose-layout,
    .project-layout,
    .other-grid,
    .brochure-card,
    .insights-grid,
    .bottom-cta {
        box-sizing: border-box;
    }

    @media (max-width: 1180px) {
        .product-hero {
            gap: 34px;
        }

        .spec-section {
            grid-template-columns: 360px 1fr;
        }

        .project-intro {
            padding-left: 32px;
        }

        .brochure-card {
            grid-template-columns: 260px 1fr;
        }

        .brochure-person {
            width: 250px;
        }
    }

    @media (max-width: 900px) {
        .product-wrap {
            width: min(100% - 32px, 1320px);
        }

        .hero-gallery-main {
            height: 320px;
        }

        .hero-gallery-thumbs {
            height: 120px;
        }

        .spec-section {
            grid-template-columns: 1fr;
        }

        .spec-image {
            min-height: 340px;
        }

        .types-layout,
        .choose-layout,
        .project-layout,
        .video-text,
        .brochure-card {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .project-intro {
            padding-left: 0;
        }

        .brochure-card {
            min-height: auto;
            padding: 34px 24px;
            overflow: hidden;
        }

        .brochure-person {
            position: static;
            width: min(260px, 75vw);
            height: auto;
            aspect-ratio: 3 / 4;
            margin: -28px auto 0;
        }

        .brochure-person img {
            object-position: center bottom;
        }

        .brochure-copy {
            grid-column: auto;
            max-width: 620px;
            margin: 0 auto;
        }

        .insight-card.large span.insight-arrow {
            width: 56px;
            height: 56px;
            right: 24px;
            bottom: 24px;
            font-size: 2.2rem;
        }
    }

    @media (max-width: 640px) {
        .product-wrap {
            width: min(100% - 28px, 1320px);
        }

        .product-title,
        .product-hero h1,
        .feature-copy h2,
        .spec-panel h2,
        .project-intro h2,
        .bottom-cta h2 {
            font-size: 1.45rem;
            line-height: 1.28;
        }

        .product-material {
            display: flex;
            font-size: 0.95rem;
            padding: 10px 14px;
        }

        .product-hero p,
        .feature-copy p,
        .choose-copy p {
            max-width: none;
            text-align: left;
            line-height: 1.72;
        }

        .hero-gallery-main,
        .video-card,
        .types-image,
        .choose-image,
        .spec-image,
        .insight-card.large {
            height: 260px;
            min-height: 260px;
        }

        .hero-gallery-thumbs {
            height: auto;
        }

        .hero-gallery-thumb,
        .hero-gallery-thumbs img {
            aspect-ratio: 1.5;
            height: auto;
        }

        .collection-grid {
            grid-auto-rows: auto;
        }

        .collection-grid .tile {
            min-height: 230px;
        }

        .spec-row {
            grid-template-columns: 1fr;
            padding-right: 0;
        }

        .spec-label,
        .spec-value {
            font-size: 0.95rem;
        }

        .check-list li {
            font-size: 1rem;
        }

        .image-label,
        .image-label.wide,
        .other-card,
        .insight-card {
            min-height: 210px;
            border-radius: 14px;
        }

        .image-label span,
        .other-card span,
        .insight-card span {
            font-size: 1.15rem;
            line-height: 1.28;
            padding-right: 52px;
        }

        .insights-side .insight-card span {
            font-size: 1.05rem;
        }

        .insight-card span.insight-arrow,
        .insight-card.large span.insight-arrow {
            width: 46px;
            height: 46px;
            right: 16px;
            bottom: 16px;
            font-size: 1.8rem;
        }

        .project-form {
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }

        .field input,
        .field select {
            min-height: 48px;
        }

        .consent {
            grid-template-columns: 22px 1fr;
            gap: 12px;
        }

        .brochure-person {
            width: 190px;
            height: 250px;
            margin-top: -36px;
        }

        .brochure-copy p {
            font-size: 1.25rem;
        }

        .testimonial-card {
            border-radius: 22px;
            padding: 26px 22px;
        }

        .testimonial-footer {
            align-items: flex-start;
            flex-direction: column;
        }

        .bottom-cta {
            min-height: 320px;
            padding: 0 20px;
        }
    }

    @media (max-width: 380px) {
        .product-wrap {
            width: min(100% - 24px, 1320px);
        }

        .product-actions {
            gap: 10px;
        }

        .product-button {
            min-height: 46px;
            padding: 0 18px;
        }

        .collection-grid .tile,
        .image-label,
        .image-label.wide,
        .other-card,
        .insight-card {
            min-height: 190px;
        }
    }

@media (min-width: 768px) and (max-width: 1024px) {
    .product-wrap,
    .testimonial-section {
        width: min(100% - 48px, 900px) !important;
    }

    .product-hero,
    .video-text,
    .spec-section,
    .types-layout,
    .choose-layout,
    .project-layout,
    .brochure-card,
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .brochure-card {
        min-height: auto;
        padding: 34px 28px;
        overflow: hidden;
    }

    .brochure-person {
        position: static;
        width: min(280px, 70vw);
        height: auto;
        aspect-ratio: 3 / 4;
        margin: -28px auto 0;
    }

    .brochure-person img {
        object-position: center bottom;
    }

    .brochure-copy {
        grid-column: auto;
        max-width: 620px;
        margin: 0 auto;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: none !important;
    }

    .collection-grid .tile {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 230px;
    }

    .suitable-grid,
    .other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .project-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .bottom-cta {
        min-height: 380px;
    }
}
/* Subcategory product listing */
.subcategory-banner { min-height: 460px; display: flex; align-items: center; color: #fff; background-color: #4a382d; background-position: center; background-size: cover; }
.subcategory-banner .product-breadcrumb { color: rgba(255,255,255,.78); }
.subcategory-banner .product-breadcrumb a { color: inherit; }
.subcategory-banner__content { max-width: 670px; padding: 34px 40px 38px; border-left: 3px solid #c5a47e; background: linear-gradient(90deg, rgba(23,17,13,.62), rgba(23,17,13,.14)); box-shadow: 0 16px 42px rgba(0,0,0,.16); }
.subcategory-eyebrow { margin: 0 0 10px; color: #c5a47e; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.subcategory-banner h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.08; }
.subcategory-banner p:not(.subcategory-eyebrow):not(.product-breadcrumb) { max-width: 620px; margin: 18px 0 26px; font-size: 17px; line-height: 1.7; }
.subcategory-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.subcategory-product-tile { min-height: 300px; position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 24px; overflow: hidden; isolation: isolate; color: #fff; background: #f8f2ec center / cover no-repeat; text-align: center; text-decoration: none; text-transform: uppercase; }
.subcategory-product-tile::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .8)); transition: background .35s ease; }
.subcategory-product-tile:hover::after, .subcategory-product-tile:focus-visible::after { background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.86)); }
.subcategory-product-tile__content { display: flex; align-items: center; flex-direction: column; gap: 16px; transform: translateY(58px); transition: transform .35s ease; }
.subcategory-product-tile__name { font-size: 17px; font-weight: 700; line-height: 1.35; }
.subcategory-product-tile__action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px; background: #b17641; color: #fff; font-size: 14px; font-weight: 600; text-transform: none; opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease, background-color .25s ease; }
.subcategory-product-tile:hover .subcategory-product-tile__content, .subcategory-product-tile:focus-visible .subcategory-product-tile__content { transform: translateY(0); }
.subcategory-product-tile:hover .subcategory-product-tile__action, .subcategory-product-tile:focus-visible .subcategory-product-tile__action { opacity: 1; transform: translateY(0); }
.subcategory-product-tile__action:hover { background: #946036; }

@media (max-width: 800px) { .subcategory-banner { min-height: 380px; } .subcategory-products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .subcategory-banner { min-height: 340px; } .subcategory-banner__content { padding: 24px; } .subcategory-products-grid { grid-template-columns: 1fr; } }

.subcategory-slider { position: relative; }
.subcategory-slider__track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 2px 0 10px; }
.subcategory-slider__track::-webkit-scrollbar { display: none; }
.subcategory-slider__card { flex: 0 0 clamp(260px, 28vw, 360px); aspect-ratio: 4 / 3; min-height: 0; position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 24px; overflow: hidden; isolation: isolate; background: #f8f2ec center / cover no-repeat; color: #fff; text-align: center; text-decoration: none; text-transform: uppercase; }
.subcategory-slider__card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78)); transition: background .35s ease; }
.subcategory-slider__content { display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 17px; font-weight: 700; line-height: 1.35; transform: translateY(58px); transition: transform .35s ease; }
.subcategory-slider__action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px; background: #b17641; color: #fff; font-size: 14px; font-weight: 600; text-transform: none; opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease; }
.subcategory-slider__card:hover::after, .subcategory-slider__card:focus-visible::after { background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.86)); }
.subcategory-slider__card:hover .subcategory-slider__content, .subcategory-slider__card:focus-visible .subcategory-slider__content { transform: translateY(0); }
.subcategory-slider__card:hover .subcategory-slider__action, .subcategory-slider__card:focus-visible .subcategory-slider__action { opacity: 1; transform: translateY(0); }
.subcategory-slider__arrow { position: absolute; top: 50%; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; background: #c5a47e; color: #fff; cursor: pointer; transform: translateY(-50%); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.subcategory-slider__arrow--previous { left: -22px; }
.subcategory-slider__arrow--next { right: -22px; }
@media (max-width: 800px) { .subcategory-slider__arrow { display: none; } }

.category-catalogue { display: grid; grid-template-columns: 265px minmax(0, 1fr); gap: 42px; align-items: start; margin-bottom: 80px; }
.category-filter { position: sticky; top: 112px; padding: 24px; background: #f8f2ec; }
.category-filter h2 { margin: 0 0 17px; font-size: 19px; }
.category-filter h2 span, .category-catalogue__eyebrow { color: #c5a47e; }
.category-filter__item { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid #e6d9cd; color: #111; font-size: 14px; font-weight: 600; cursor: pointer; }
.category-filter__item input { width: 16px; height: 16px; margin: 0; accent-color: #c5a47e; }
.category-filter__item:last-child { border-bottom: 0; }
.category-filter__item:hover { color: #c5a47e; }
.category-filter__apply { width: 100%; margin-top: 18px; min-height: 44px; border: 0; background: #c5a47e; color: #fff; font-weight: 700; cursor: pointer; }
.category-catalogue__toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.category-catalogue__toolbar h2 { margin: 4px 0 0; font-size: 26px; }
.category-catalogue__eyebrow { margin: 0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.category-view-toggle { display: flex; border: 1px solid #e4d7ca; }
.category-view-toggle a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; color: #5d5147; font-size: 13px; font-weight: 600; text-decoration: none; }
.category-view-toggle a.is-active { background: #c5a47e; color: #fff; }
.category-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.category-product-card { display: block; overflow: hidden; border: 1px solid #e9ded4; color: #111; background: #fff; text-decoration: none; transition: box-shadow .25s ease, transform .25s ease; }
.category-product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(52,34,20,.13); }
.category-product-card__image { height: 235px; overflow: hidden; background: #f8f2ec; }
.category-product-card__image img { transition: transform .35s ease; }
.category-product-card:hover .category-product-card__image img { transform: scale(1.05); }
.category-product-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: #c5a47e; font-weight: 700; }
.category-product-card__body { padding: 18px 19px 20px; }
.category-product-card__body p { margin: 0 0 7px; color: #c5a47e; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.category-product-card h3 { margin: 0 0 12px; font-size: 19px; line-height: 1.35; }
.category-product-card__body > span { color: #c5a47e; font-size: 13px; font-weight: 700; }
.category-product-card__description { margin: -2px 0 14px; color: #555; font-size: 14px; line-height: 1.6; }
.category-products--list { grid-template-columns: 1fr; gap: 16px; }
.category-products--list .category-product-card { display: grid; grid-template-columns: 260px minmax(0, 1fr); }
.category-products--list .category-product-card__image { height: 100%; min-height: 210px; }
.category-products--list .category-product-card__body { align-self: center; padding: 28px; }
.category-pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 34px; padding: 22px 0 10px; border-top: 1px solid #eadfd5; color: #555; font-size: 14px; }
.category-pagination a { color: #c5a47e; font-weight: 700; text-decoration: none; }
.category-pagination .is-disabled { color: #aaa; }
.category-empty { padding: 60px 20px; background: #f8f2ec; text-align: center; }
.category-empty h3 { margin: 0 0 8px; }
.category-empty p { margin: 0; color: #555; }
@media (max-width: 800px) { .category-catalogue { grid-template-columns: 220px minmax(0, 1fr); gap: 25px; } .category-products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .category-catalogue { grid-template-columns: 1fr; } .category-filter { position: static; display: flex; gap: 8px; overflow-x: auto; padding: 15px; } .category-filter h2 { display: none; } .category-filter__item { flex: 0 0 auto; padding: 9px 12px; border: 1px solid #e6d9cd; white-space: nowrap; } .category-filter__apply { flex: 0 0 auto; width: auto; margin: 0; padding: 0 16px; } .category-products, .category-products--list { grid-template-columns: 1fr; } .category-products--list .category-product-card { grid-template-columns: 130px minmax(0, 1fr); } .category-products--list .category-product-card__image { min-height: 150px; } .category-products--list .category-product-card__body { padding: 18px; } .category-products--list .category-product-card__description { display: none; } .category-view-toggle a span { display: none; } }

@media (max-width: 560px) {
  .product-wrap { width: min(100% - 28px, 1320px); }
  .subcategory-banner h1 { font-size: 40px; }
  .subcategory-banner p:not(.subcategory-eyebrow):not(.product-breadcrumb) { font-size: 15px; line-height: 1.6; }
  .subcategory-product-tile { min-height: 260px; }
  .subcategory-product-tile__content, .subcategory-slider__content { transform: translateY(0); }
  .subcategory-product-tile__action, .subcategory-slider__action { opacity: 1; transform: translateY(0); min-height: 40px; padding: 8px 18px; }
  .subcategory-slider__card { flex-basis: min(82vw, 320px); min-height: 0; padding: 20px; }
  .category-catalogue { margin-bottom: 52px; }
  .category-filter { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding: 14px; }
  .category-filter h2 { display: none; }
  .category-filter__item { min-width: 0; white-space: normal; font-size: 13px; line-height: 1.25; }
  .category-filter__apply { grid-column: 1 / -1; width: 100%; min-height: 42px; padding: 0 12px; }
  .category-catalogue__toolbar { align-items: center; margin-bottom: 18px; }
  .category-catalogue__toolbar h2 { font-size: 24px; }
  .category-product-card__image { height: 215px; }
  .category-products--list .category-product-card__image { height: 100%; min-height: 135px; }
  .category-pagination { flex-wrap: wrap; justify-content: center; gap: 10px 22px; text-align: center; }
  .category-pagination > span:nth-child(2) { order: -1; width: 100%; }
}
