.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: 54px 1fr 1fr;
        min-height: 64px;
        border-bottom: 1px solid #d5d5d5;
        align-items: center;
    }

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

    .spec-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .spec-icon img {
        width: 30px;
        height: 30px;
    }

    .spec-label {
        font-size: 17px;
        font-weight: 700;
    }

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

    .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: 44px 1fr;
            gap: 0;
        }

        .spec-value {
            grid-column: 2;
            height: auto;
            min-height: 36px;
            padding-left: 0;
            padding-bottom: 12px;
            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: 42px 1fr;
            padding-right: 12px;
        }

        .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;
    }
}
