@charset "utf-8";

/* Generic content documents keep the existing database-rendered body. */
.pg-content-document {
    width: min(calc(100% - 40px), 960px);
    margin: 0 auto;
    padding: clamp(72px, 10vw, 140px) 0;
}

.pg-content-document__header {
    padding-bottom: 28px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--pg-color-line, #e8e8e8);
}

.pg-content-document__header h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pg-content-document__body {
    font-size: 1rem;
    line-height: 1.8;
}

.pg-content-document__body img {
    max-width: 100%;
    height: auto;
}

/* Showroom foundation */
.pg-showroom {
    --showroom-ink: #171713;
    --showroom-paper: #f3eee3;
    --showroom-warm: #d8c8ab;
    --showroom-line: rgba(23, 23, 19, 0.18);
    --showroom-gutter: clamp(22px, 5vw, 80px);
    position: relative;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    overflow: clip;
    color: var(--showroom-ink);
    background: var(--showroom-paper);
    font-family: var(--pg-font-sans, "Pretendard", "Noto Sans KR", sans-serif);
}

.pg-showroom *,
.pg-showroom *::before,
.pg-showroom *::after {
    box-sizing: border-box;
}

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

.pg-showroom h2,
.pg-showroom h3,
.pg-showroom p,
.pg-showroom figure {
    margin: 0;
}

.pg-showroom a {
    color: inherit;
}

.pg-showroom > .sound_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.pg-showroom-kicker {
    font-size: clamp(0.66rem, 0.75vw, 0.78rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pg-showroom-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    min-width: 236px;
    padding: 16px 20px;
    border: 1px solid currentColor;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 220ms ease, gap 220ms ease;
}

.pg-showroom-button:hover,
.pg-showroom-button:focus-visible {
    gap: 54px;
    opacity: 0.72;
}

.pg-showroom-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.pg-showroom-button--light {
    color: #fff;
}

.pg-showroom-button--dark {
    color: var(--showroom-ink);
}

/* Hero: header is in normal flow, so the first visual fills the remaining viewport. */
.pg-showroom-hero {
    position: relative;
    display: grid;
    place-items: center;
    height: calc(100svh - var(--pg-header-height, 81px));
    min-height: 620px;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: #161512;
}

.pg-showroom-hero__media,
.pg-showroom-hero__veil {
    position: absolute;
    inset: 0;
}

.pg-showroom-hero__media img {
    object-position: center center;
    transform: scale(1.025);
}

.pg-showroom.is-enhanced .pg-showroom-hero__media img {
    animation: pg-showroom-hero-breathe 12s cubic-bezier(0.2, 0.65, 0.3, 1) both;
}

.pg-showroom-hero__veil {
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 16, 10, 0.1), rgba(20, 16, 10, 0.04) 45%, rgba(20, 16, 10, 0.38));
}

.pg-showroom-hero__content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - (var(--showroom-gutter) * 2)), 1500px);
    text-align: center;
}

.pg-showroom-hero__wordmark {
    margin: 5vh 0 2.5vh !important;
    font-size: clamp(5rem, 15vw, 14rem);
    font-weight: 800;
    line-height: 0.73;
    letter-spacing: -0.085em;
}

.pg-showroom-hero h2 {
    font-size: clamp(2.5rem, 5.6vw, 6rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.pg-showroom-hero__intro {
    width: min(100%, 520px);
    margin: 28px auto 0 !important;
    font-size: clamp(0.92rem, 1.2vw, 1.12rem);
    line-height: 1.65;
}

.pg-showroom-scroll {
    position: absolute;
    z-index: 2;
    bottom: max(22px, env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 10px;
    transform: translateX(-50%);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
}

.pg-showroom-scroll i {
    position: relative;
    width: 1px;
    height: 46px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.36);
}

.pg-showroom-scroll i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: #fff;
    transform: translateY(-100%);
    animation: pg-showroom-scroll-line 2.2s ease-in-out infinite;
}

/* Base scene is a readable vertical document. Sticky replacement is JS-enhanced only. */
.pg-showroom-scene {
    --pg-showroom-overlay: linear-gradient(90deg, rgba(14, 12, 9, 0.58), rgba(14, 12, 9, 0.08) 70%);
    --pg-showroom-position-desktop: center center;
    --pg-showroom-position-mobile: center center;
    position: relative;
    color: #fff;
    background: #191713;
}

.pg-showroom-scene--origin {
    --pg-showroom-overlay: linear-gradient(90deg, rgba(22, 16, 9, 0.58), rgba(22, 16, 9, 0.04) 72%);
    --pg-showroom-position-desktop: center 48%;
    --pg-showroom-position-mobile: 57% center;
}

.pg-showroom-scene--craft {
    --pg-showroom-overlay: linear-gradient(90deg, rgba(11, 10, 8, 0.68), rgba(11, 10, 8, 0.08) 78%);
    --pg-showroom-position-desktop: center center;
    --pg-showroom-position-mobile: 56% center;
}

.pg-showroom-scene--ingredients {
    --pg-showroom-overlay: linear-gradient(0deg, rgba(25, 18, 11, 0.58), rgba(25, 18, 11, 0.02) 72%);
    --pg-showroom-position-desktop: center 52%;
    --pg-showroom-position-mobile: 60% center;
}

.pg-showroom-scene--quality {
    --pg-showroom-progress: 0;
    --pg-showroom-overlay: linear-gradient(180deg, rgba(10, 9, 7, 0.2), rgba(10, 9, 7, 0.76));
    --pg-showroom-position-desktop: center center;
    --pg-showroom-position-mobile: 58% center;
}

.pg-showroom-scene--serving {
    --pg-showroom-overlay: linear-gradient(90deg, rgba(15, 12, 8, 0.62), rgba(15, 12, 8, 0.02) 72%);
    --pg-showroom-position-desktop: center center;
    --pg-showroom-position-mobile: 58% center;
}

.pg-showroom-scene__media {
    background: #8f816d;
}

.pg-showroom-scene__layer {
    position: relative;
    min-height: 72svh;
    overflow: hidden;
}

.pg-showroom-scene__layer img {
    object-position: var(--pg-showroom-position-desktop);
}

.pg-showroom-scene__copy,
.pg-showroom-quality__content {
    display: grid;
    gap: 1px;
    padding: 0 var(--showroom-gutter);
    color: var(--showroom-ink);
    background: var(--showroom-paper);
}

.pg-showroom-scene__panel {
    padding: clamp(72px, 9vw, 150px) 0;
}

.pg-showroom-scene__panel + .pg-showroom-scene__panel {
    border-top: 1px solid var(--showroom-line);
}

.pg-showroom-scene__panel h2,
.pg-showroom-scene__panel h3 {
    max-width: 1100px;
    margin-top: 22px !important;
    font-size: clamp(3.8rem, 9vw, 10rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.07em;
}

.pg-showroom-scene__description {
    max-width: 520px;
    margin-top: 30px !important;
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    line-height: 1.7;
}

.pg-showroom-scene__number {
    display: block;
    margin-top: 28px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
}

.pg-showroom-scene__triggers {
    display: none;
}

/* Enhanced fullscreen scene */
.pg-showroom.is-enhanced .pg-showroom-scene--origin { min-height: 240svh; }
.pg-showroom.is-enhanced .pg-showroom-scene--craft { min-height: 340svh; }
.pg-showroom.is-enhanced .pg-showroom-scene--ingredients { min-height: 290svh; }
.pg-showroom.is-enhanced .pg-showroom-scene--quality { min-height: 310svh; }
.pg-showroom.is-enhanced .pg-showroom-scene--serving { min-height: 270svh; }

.pg-showroom.is-enhanced .pg-showroom-scene__stage {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
}

.pg-showroom.is-enhanced .pg-showroom-scene__stage::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
    background: var(--pg-showroom-overlay);
}

.pg-showroom.is-enhanced .pg-showroom-scene__media,
.pg-showroom.is-enhanced .pg-showroom-scene__layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100svh;
    min-height: 0;
}

.pg-showroom.is-enhanced .pg-showroom-scene__layer {
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 850ms ease, transform 1400ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.pg-showroom.is-enhanced .pg-showroom-scene__layer.is-active,
.pg-showroom.is-enhanced .pg-showroom-scene__layer:only-child {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.pg-showroom.is-enhanced .pg-showroom-scene__layer--craft-detail img { object-position: 62% center; }
.pg-showroom.is-enhanced .pg-showroom-scene__layer--craft-fresh img { object-position: 48% 58%; }
.pg-showroom.is-enhanced .pg-showroom-scene__layer--crop-02 img { transform: scale(1.018); object-position: 54% 50%; }
.pg-showroom.is-enhanced .pg-showroom-scene__layer--crop-03 img { transform: scale(1.028); object-position: 48% 54%; }
.pg-showroom.is-enhanced .pg-showroom-scene__layer--crop-04 img { transform: scale(1.012); object-position: 58% 48%; }

.pg-showroom.is-enhanced .pg-showroom-scene__copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    align-items: end;
    color: #fff;
    background: transparent;
    pointer-events: none;
}

.pg-showroom.is-enhanced .pg-showroom-scene__panel {
    grid-area: 1 / 1;
    width: min(100%, 1180px);
    padding: 0 0 clamp(70px, 10vh, 120px);
    border: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 800ms cubic-bezier(0.2, 0.65, 0.3, 1);
    pointer-events: none;
}

.pg-showroom.is-enhanced .pg-showroom-scene__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pg-showroom.is-initializing .pg-showroom-scene__layer,
.pg-showroom.is-initializing .pg-showroom-scene__panel,
.pg-showroom.is-initializing .pg-showroom-timeline__item,
.pg-showroom.is-initializing .pg-showroom-timeline__item p {
    transition: none !important;
}

.pg-showroom.is-enhanced .pg-showroom-scene__copy--oversized .pg-showroom-scene__panel h2,
.pg-showroom.is-enhanced .pg-showroom-scene__copy--oversized .pg-showroom-scene__panel h3 {
    max-width: 1300px;
    font-size: clamp(5rem, 13vw, 14rem);
    line-height: 0.78;
}

.pg-showroom.is-enhanced .pg-showroom-scene__triggers {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: grid;
    pointer-events: none;
}

.pg-showroom.is-enhanced .pg-showroom-scene__triggers span {
    min-height: 1px;
}

/* Quality: one continuous editorial timeline, with one active description. */
.pg-showroom-quality__content {
    padding-block: 90px;
}

.pg-showroom-quality__header h2 {
    max-width: 1000px;
    margin-top: 24px !important;
    font-size: clamp(3.8rem, 8vw, 9rem);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.07em;
}

.pg-showroom-quality__header > p:last-child {
    max-width: 520px;
    margin-top: 28px !important;
    line-height: 1.7;
}

.pg-showroom-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0;
    margin: 80px 0 0;
    list-style: none;
    border-top: 1px solid currentColor;
}

.pg-showroom-timeline::after {
    position: absolute;
    top: -1px;
    left: 0;
    width: calc(var(--pg-showroom-progress) * 100%);
    height: 2px;
    content: "";
    background: currentColor;
    transition: width 550ms ease;
}

.pg-showroom-timeline__item {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: 22px 24px 0 0;
    opacity: 0.35;
    transform: translateY(10px);
    transition: opacity 450ms ease, transform 600ms ease;
}

.pg-showroom-timeline__item::before {
    position: absolute;
    top: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: currentColor;
    transform: scale(0.65);
    transition: transform 450ms ease;
}

.pg-showroom-timeline__item span {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
}

.pg-showroom-timeline__item strong {
    font-size: clamp(1.05rem, 1.8vw, 1.7rem);
    font-weight: 500;
}

.pg-showroom-timeline__item p {
    max-width: 250px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    transform: translateY(8px);
    transition: max-height 500ms ease, opacity 400ms ease, transform 500ms ease;
}

.pg-showroom-timeline__item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.pg-showroom-timeline__item.is-active::before {
    transform: scale(1);
}

.pg-showroom-timeline__item.is-active p {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
}

.pg-showroom.is-enhanced .pg-showroom-quality__content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(56px, 8vh, 92px) var(--showroom-gutter) clamp(50px, 8vh, 84px);
    color: #fff;
    background: transparent;
}

.pg-showroom.is-enhanced .pg-showroom-quality__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    gap: 32px;
    align-items: end;
}

.pg-showroom.is-enhanced .pg-showroom-quality__header .pg-showroom-kicker {
    grid-column: 1 / -1;
}

.pg-showroom.is-enhanced .pg-showroom-quality__header h2 {
    font-size: clamp(3.2rem, 6.7vw, 7.5rem);
}

.pg-showroom.is-enhanced .pg-showroom-timeline {
    margin-top: 32px;
}

/* Collection remains content-height based and intentionally has one CTA. */
.pg-showroom-products {
    padding-top: clamp(100px, 14vw, 220px);
    background: var(--showroom-paper);
}

.pg-showroom-products__header,
.pg-showroom-products__action {
    width: min(calc(100% - (var(--showroom-gutter) * 2)), 1500px);
    margin-inline: auto;
}

.pg-showroom-products__header {
    margin-bottom: clamp(80px, 12vw, 180px);
}

.pg-showroom-products__header h2 {
    max-width: 1100px;
    margin-top: 26px !important;
    font-size: clamp(4rem, 10vw, 11rem);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.075em;
}

.pg-showroom-product {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 92svh;
    border-top: 1px solid var(--showroom-line);
}

.pg-showroom-product--image-right .pg-showroom-product__media {
    order: 2;
}

.pg-showroom-product__media {
    min-height: 92svh;
    overflow: hidden;
    background: #d3c5ac;
}

.pg-showroom-product__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(48px, 9vw, 160px);
}

.pg-showroom-product__copy > span {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
}

.pg-showroom-product__copy h3 {
    margin-top: 32px !important;
    font-size: clamp(3rem, 6.8vw, 8rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.pg-showroom-product__copy p {
    max-width: 520px;
    margin-top: 34px !important;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.7;
}

.pg-showroom-products__action {
    display: flex;
    justify-content: flex-end;
    padding: clamp(70px, 9vw, 130px) 0;
}

.pg-showroom-scene--serving .pg-showroom-scene__panel .pg-showroom-button {
    margin-top: 42px;
}

/* Closing statement */
.pg-showroom-ending {
    position: relative;
    display: grid;
    place-items: center;
    height: 100svh;
    min-height: 620px;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: #171713;
}

.pg-showroom-ending__media,
.pg-showroom-ending__veil {
    position: absolute;
    inset: 0;
}

.pg-showroom-ending__media {
    z-index: -2;
}

.pg-showroom-ending__veil {
    z-index: -1;
    background: linear-gradient(180deg, rgba(12, 11, 9, 0.18), rgba(12, 11, 9, 0.58));
}

.pg-showroom-ending__content {
    width: min(calc(100% - (var(--showroom-gutter) * 2)), 1420px);
    padding-bottom: max(0px, env(safe-area-inset-bottom));
    text-align: center;
}

.pg-showroom-ending h2 {
    margin-top: 34px !important;
    font-size: clamp(4rem, 11vw, 12rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.075em;
}

.pg-showroom-ending__content > p:not(.pg-showroom-kicker) {
    width: min(100%, 560px);
    margin: 42px auto 0 !important;
    font-size: 1rem;
    line-height: 1.7;
}

.pg-showroom-ending .pg-showroom-button {
    margin-top: 42px;
}

/* Progressive enhancement: reveal content is hidden only after JS succeeds. */
.pg-showroom.is-enhanced .pg-showroom-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 750ms ease, transform 900ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.pg-showroom.is-enhanced .pg-showroom-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pg-showroom-hero-breathe {
    from { transform: scale(1.07); }
    to { transform: scale(1.015); }
}

@keyframes pg-showroom-scroll-line {
    0% { transform: translateY(-100%); }
    50%, 100% { transform: translateY(100%); }
}

@media (max-width: 980px) {
    .pg-showroom.is-enhanced .pg-showroom-quality__header {
        grid-template-columns: 1fr;
    }

    .pg-showroom.is-enhanced .pg-showroom-quality__header .pg-showroom-kicker {
        grid-column: auto;
    }

    .pg-showroom.is-enhanced .pg-showroom-quality__header > p:last-child {
        display: none;
    }

    .pg-showroom-product__copy {
        padding: 64px 40px;
    }
}

@media (max-width: 767px) {
    .pg-showroom {
        --showroom-gutter: 20px;
    }

    .pg-showroom-hero {
        height: calc(100svh - var(--pg-header-height-mobile, 45px));
        min-height: 560px;
    }

    .pg-showroom-hero__content,
    .pg-showroom-ending__content {
        width: calc(100% - 36px);
    }

    .pg-showroom-hero__wordmark {
        margin-top: 3.5vh !important;
        font-size: clamp(4rem, 23vw, 7.4rem);
        line-height: 0.8;
    }

    .pg-showroom-hero h2 {
        font-size: clamp(2.55rem, 12.5vw, 4.5rem);
    }

    .pg-showroom-hero__intro {
        width: min(88%, 420px);
        margin-top: 22px !important;
    }

    .pg-showroom-scroll {
        bottom: max(14px, env(safe-area-inset-bottom));
    }

    .pg-showroom-scroll i {
        height: 30px;
    }

    .pg-showroom-scene__layer img {
        object-position: var(--pg-showroom-position-mobile);
    }

    .pg-showroom-scene__panel h2,
    .pg-showroom-scene__panel h3 {
        font-size: clamp(3.2rem, 16vw, 5.8rem);
    }

    .pg-showroom.is-enhanced .pg-showroom-scene--origin { min-height: 180svh; }
    .pg-showroom.is-enhanced .pg-showroom-scene--craft { min-height: 260svh; }
    .pg-showroom.is-enhanced .pg-showroom-scene--ingredients { min-height: 220svh; }
    .pg-showroom.is-enhanced .pg-showroom-scene--quality { min-height: 260svh; }
    .pg-showroom.is-enhanced .pg-showroom-scene--serving { min-height: 220svh; }

    .pg-showroom.is-enhanced .pg-showroom-scene__stage {
        height: 100svh;
        min-height: 560px;
    }

    .pg-showroom.is-enhanced .pg-showroom-scene__copy {
        padding-top: max(24px, env(safe-area-inset-top));
    }

    .pg-showroom.is-enhanced .pg-showroom-scene__panel {
        width: 100%;
        padding-bottom: max(56px, calc(env(safe-area-inset-bottom) + 36px));
    }

    .pg-showroom.is-enhanced .pg-showroom-scene__copy--oversized .pg-showroom-scene__panel h2,
    .pg-showroom.is-enhanced .pg-showroom-scene__copy--oversized .pg-showroom-scene__panel h3 {
        font-size: clamp(4.1rem, 21vw, 7rem);
        line-height: 0.82;
    }

    .pg-showroom-quality__content {
        padding: 72px 20px;
    }

    .pg-showroom.is-enhanced .pg-showroom-quality__content {
        padding: max(46px, env(safe-area-inset-top)) 20px max(34px, calc(env(safe-area-inset-bottom) + 22px));
    }

    .pg-showroom.is-enhanced .pg-showroom-quality__header h2 {
        font-size: clamp(3rem, 15vw, 5.2rem);
    }

    .pg-showroom-timeline {
        grid-template-columns: 1fr;
        margin-top: 42px;
        border-top: 0;
        border-left: 1px solid currentColor;
    }

    .pg-showroom-timeline::after {
        top: 0;
        left: -1px;
        width: 2px;
        height: calc(var(--pg-showroom-progress) * 100%);
        transition: height 550ms ease;
    }

    .pg-showroom-timeline__item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 8px;
        padding: 0 0 13px 18px;
        transform: translateX(8px);
    }

    .pg-showroom-timeline__item::before {
        top: 7px;
        left: -4px;
    }

    .pg-showroom-timeline__item p {
        grid-column: 2;
        font-size: 0.78rem;
    }

    .pg-showroom-products {
        padding-top: 96px;
    }

    .pg-showroom-products__header {
        margin-bottom: 74px;
    }

    .pg-showroom-products__header h2 {
        font-size: clamp(4rem, 20vw, 7rem);
    }

    .pg-showroom-product {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .pg-showroom-product--image-right .pg-showroom-product__media {
        order: 0;
    }

    .pg-showroom-product__media {
        min-height: 68svh;
    }

    .pg-showroom-product__copy {
        min-height: 58svh;
        padding: 64px 20px;
    }

    .pg-showroom-product__copy h3 {
        font-size: clamp(3.2rem, 16vw, 5.8rem);
    }

    .pg-showroom-products__action {
        justify-content: flex-start;
        padding: 64px 0 92px;
    }

    .pg-showroom-ending {
        height: 100svh;
        min-height: 560px;
    }

    .pg-showroom-ending h2 {
        font-size: clamp(4rem, 20vw, 7rem);
    }
}

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