.shop-product-page {
    overflow: clip;
    background: var(--shop-paper);
    color: var(--shop-ink);
}

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

.shop-product-hero {
    padding: clamp(6.3rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6.5rem);
    border-bottom: 1px solid var(--shop-line);
    background:
        linear-gradient(135deg, rgba(240, 90, 40, .06), transparent 38%),
        var(--shop-paper);
}

.shop-product-breadcrumbs {
    display: flex;
    min-height: 44px;
    margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
    gap: .45rem;
    color: var(--shop-muted);
    font-size: .82rem;
    font-weight: 650;
}

.shop-product-breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.shop-product-breadcrumbs a:hover {
    color: var(--shop-accent-dark);
}

.shop-product-breadcrumbs svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.shop-product-breadcrumbs span {
    overflow: hidden;
    color: var(--shop-ink);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
}

.shop-product-gallery-main {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d2cbc1;
    border-radius: 14px;
    background: #e9e4dc;
    cursor: zoom-in;
}

.shop-product-gallery-main img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: filter 180ms ease-out, opacity 180ms ease-out, transform 380ms cubic-bezier(.16, 1, .3, 1);
}

body[data-product-sku="shop-089"] .shop-product-gallery-main img {
    object-fit: contain;
}

.shop-product-gallery-main:hover img {
    transform: scale(1.015);
}

.shop-product-gallery-main.is-changing img {
    filter: blur(5px);
    opacity: .72;
}

.shop-product-gallery-main > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 40px;
    padding: .55rem .7rem;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 7px;
    background: rgba(33, 30, 41, .88);
    color: #fff;
    font: inherit;
    font-size: .75rem;
    font-weight: 750;
}

.shop-product-gallery-main > span svg {
    width: 15px;
    height: 15px;
}

.shop-product-thumbnails {
    display: grid;
    margin-top: .75rem;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.shop-product-thumbnails button {
    display: grid;
    min-width: 0;
    min-height: 44px;
    padding: 5px;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: .6rem;
    border: 1px solid var(--shop-line);
    border-radius: 9px;
    background: var(--shop-card);
    color: var(--shop-muted);
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.shop-product-thumbnails button[aria-pressed="true"] {
    border-color: var(--shop-accent);
    color: var(--shop-ink);
    box-shadow: 0 7px 18px rgba(74, 52, 43, .08);
}

.shop-product-thumbnails img {
    display: block;
    width: 54px;
    aspect-ratio: 4 / 3;
    border-radius: 5px;
    object-fit: cover;
}

.shop-product-image-caption {
    max-width: 72ch;
    margin: .85rem 0 0;
    color: var(--shop-muted);
    font-size: .76rem;
    line-height: 1.55;
}

.shop-product-image-caption strong {
    color: var(--shop-ink);
}

.shop-product-summary {
    position: sticky;
    top: 104px;
}

.shop-product-accessory {
    display: grid;
    margin-top: 1rem;
    padding: 1rem;
    grid-template-columns: 7.5rem 1fr;
    gap: .9rem;
    border: 1px solid #cfc6ba;
    border-radius: 8px;
    background: #f4efe7;
}

.shop-product-accessory > span {
    color: var(--shop-accent-dark);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-product-accessory strong {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--shop-ink);
}

.shop-product-accessory em {
    flex: 0 0 auto;
    color: var(--shop-accent-dark);
    font-style: normal;
}

.shop-product-accessory p {
    margin: .3rem 0 0;
    color: var(--shop-muted);
    font-size: .8rem;
    line-height: 1.5;
}

.shop-product-summary-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem .85rem;
    color: var(--shop-muted);
    font-size: .75rem;
    font-weight: 750;
}

.shop-product-summary-meta > span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
}

.shop-product-summary-meta > span + span {
    padding: .3rem .55rem;
    border: 1px solid #c6b7aa;
    border-radius: 5px;
    background: #f5e1d8;
    color: #5e2818;
}

.shop-product-technique {
    gap: .4rem;
}

.shop-product-technique svg {
    width: 15px;
    height: 15px;
    color: var(--shop-accent-dark);
}

.shop-product-summary h1 {
    max-width: 14ch;
    margin: 1rem 0 1.1rem;
    color: var(--shop-ink);
    font-size: clamp(2.55rem, 5vw, 4.75rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: .98;
    text-wrap: balance;
}

body[data-product-category="reviews"] .shop-product-summary h1 {
    max-width: 17ch;
    font-size: clamp(2.35rem, 4.2vw, 3.75rem);
}

.shop-product-lede {
    max-width: 62ch;
    margin: 0;
    color: var(--shop-muted);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.62;
}

.shop-product-price {
    display: flex;
    margin: 1.55rem 0 1.25rem;
    align-items: baseline;
    gap: .55rem;
    color: var(--shop-ink);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 820;
    letter-spacing: -.025em;
}

.shop-product-price span {
    color: var(--shop-muted);
    font-size: .72rem;
    font-weight: 650;
    letter-spacing: 0;
}

.shop-product-confidence {
    display: grid;
    margin: 0 0 1.5rem;
    padding: 1.1rem 0;
    gap: .65rem;
    border-top: 1px solid var(--shop-line);
    border-bottom: 1px solid var(--shop-line);
    color: #46414d;
    list-style: none;
    font-size: .84rem;
}

.shop-product-confidence li {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.shop-product-confidence svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--shop-green);
}

.shop-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .7rem;
}

.shop-product-buy,
.shop-product-share {
    display: inline-flex;
    min-height: 50px;
    padding: .82rem 1rem;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 7px;
    font: inherit;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.shop-product-buy {
    border: 1px solid var(--shop-ink);
    background: var(--shop-ink);
    color: #fff;
}

.shop-product-buy:hover {
    border-color: var(--shop-accent);
    background: var(--shop-accent);
    color: var(--shop-ink);
}

.shop-product-share {
    border: 1px solid #bfb7ad;
    background: transparent;
    color: var(--shop-ink);
}

.shop-product-share:hover {
    border-color: var(--shop-ink);
    background: var(--shop-card);
}

.shop-product-buy svg,
.shop-product-share svg {
    width: 18px;
    height: 18px;
}

.shop-product-share-status {
    min-height: 1.4em;
    margin: .65rem 0 0;
    color: var(--shop-green);
    font-size: .76rem;
}

.shop-product-back {
    display: inline-flex;
    min-height: 44px;
    margin-top: .5rem;
    align-items: center;
    gap: .45rem;
    color: var(--shop-muted);
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
}

.shop-product-back:hover {
    color: var(--shop-accent-dark);
}

.shop-product-back svg {
    width: 16px;
    height: 16px;
}

.shop-product-story,
.shop-product-order-flow {
    background: #211e29;
    color: #fff;
}

.shop-product-story {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.shop-product-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
    align-items: start;
    gap: clamp(2.5rem, 8vw, 7rem);
}

.shop-product-section-label {
    display: block;
    margin-bottom: .7rem;
    color: var(--shop-accent-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-product-story .shop-product-section-label,
.shop-product-order-flow .shop-product-section-label {
    color: #f3a184;
}

.shop-product-story h2,
.shop-product-section-heading h2,
.shop-product-custom h2 {
    max-width: 17ch;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 780;
    letter-spacing: -.035em;
    line-height: 1.02;
    text-wrap: balance;
}

.shop-product-story-copy > p:not(.shop-product-technique-note) {
    max-width: 68ch;
    margin: 1.5rem 0 0;
    color: #d7d1dc;
    font-size: 1.02rem;
    line-height: 1.72;
}

.shop-product-technique-note {
    display: flex;
    max-width: 68ch;
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    align-items: flex-start;
    gap: .85rem;
    border-top: 1px solid #494451;
    color: #d7d1dc;
    line-height: 1.55;
}

.shop-product-technique-note svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: #f3a184;
}

.shop-product-technique-note strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
}

.shop-product-included {
    padding-top: .3rem;
    border-top: 1px solid #5a5363;
}

.shop-product-included h3 {
    margin: 1.1rem 0 1.35rem;
    color: #fff;
    font-size: 1.12rem;
}

.shop-product-included-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-product-included-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid #403b48;
    color: #d7d1dc;
    line-height: 1.55;
}

.shop-product-included-list li::before {
    position: absolute;
    top: 1.15rem;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #f3a184;
    border-radius: 50%;
    content: '';
}

.shop-product-examples,
.shop-product-specifications,
.shop-product-related {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.shop-product-examples {
    background: #fffdf9;
}

.shop-product-section-heading {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.shop-product-section-heading > p {
    max-width: 64ch;
    margin: 1.1rem 0 0;
    color: var(--shop-muted);
    line-height: 1.65;
}

.shop-product-example-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3.5rem);
    list-style: none;
}

.shop-product-example-list li {
    min-height: 130px;
    padding-top: 1.1rem;
    border-top: 2px solid var(--shop-ink);
    color: #38333e;
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.5;
}

.shop-product-example-list li::before {
    display: block;
    width: 34px;
    height: 4px;
    margin-bottom: 1.05rem;
    border-radius: 999px;
    background: var(--shop-accent);
    content: '';
}

.shop-product-specifications {
    border-top: 1px solid var(--shop-line);
}

.shop-product-spec-list {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--shop-ink);
}

.shop-product-spec-list > div {
    display: grid;
    min-height: 116px;
    padding: 1.2rem 1.25rem 1.2rem 0;
    grid-template-columns: minmax(115px, .38fr) minmax(0, .62fr);
    gap: 1rem;
    border-bottom: 1px solid var(--shop-line);
}

.shop-product-spec-list > div:nth-child(odd) {
    margin-right: 2rem;
}

.shop-product-spec-list dt {
    color: var(--shop-muted);
    font-size: .76rem;
    font-weight: 800;
}

.shop-product-spec-list dd {
    margin: 0;
    color: var(--shop-ink);
    font-size: .92rem;
    font-weight: 620;
    line-height: 1.6;
}

.shop-product-care {
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--shop-line);
}

.shop-product-care summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--shop-ink);
    font-weight: 800;
    cursor: pointer;
}

.shop-product-care summary::-webkit-details-marker {
    display: none;
}

.shop-product-care summary svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease-out;
}

.shop-product-care[open] summary svg {
    transform: rotate(180deg);
}

.shop-product-care p {
    max-width: 72ch;
    margin: 0 0 1.3rem;
    color: var(--shop-muted);
    line-height: 1.65;
}

.shop-product-order-flow {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.shop-product-order-flow .shop-product-section-heading h2 {
    color: #fff;
}

.shop-product-order-flow ol {
    display: grid;
    margin: 0 0 2.2rem;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #5a5363;
    list-style: none;
    counter-reset: order-step;
}

.shop-product-order-flow li {
    min-height: 190px;
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-bottom: 1px solid #494451;
    counter-increment: order-step;
}

.shop-product-order-flow li + li {
    padding-left: 1.25rem;
    border-left: 1px solid #494451;
}

.shop-product-order-flow li::before {
    display: block;
    margin-bottom: 2.5rem;
    color: #f3a184;
    content: counter(order-step, decimal-leading-zero);
    font-size: .75rem;
    font-weight: 800;
}

.shop-product-order-flow strong,
.shop-product-order-flow span {
    display: block;
}

.shop-product-order-flow strong {
    margin-bottom: .55rem;
    color: #fff;
    font-size: 1rem;
}

.shop-product-order-flow span {
    color: #cfc9d4;
    font-size: .86rem;
    line-height: 1.55;
}

.shop-product-buy--secondary {
    width: fit-content;
    border-color: var(--shop-accent);
    background: var(--shop-accent);
    color: var(--shop-ink);
}

.shop-product-buy--secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--shop-ink);
}

.shop-product-related {
    background: #fffdf9;
}

.shop-product-section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.shop-product-section-heading--row > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: .45rem;
    color: var(--shop-ink);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.shop-product-section-heading--row > a:hover {
    color: var(--shop-accent-dark);
}

.shop-product-section-heading--row svg {
    width: 16px;
    height: 16px;
}

.shop-product-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.shop-related-card {
    overflow: hidden;
    border: 1px solid var(--shop-line);
    border-radius: 10px;
    background: var(--shop-card);
    transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.shop-related-card:hover {
    border-color: #aaa2b2;
    box-shadow: 0 12px 30px rgba(33, 30, 41, .09);
    transform: translateY(-2px);
}

.shop-related-media {
    display: block;
    overflow: hidden;
}

.shop-related-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.shop-related-card:hover img {
    transform: scale(1.025);
}

.shop-related-card > div {
    padding: 1rem;
}

.shop-related-card span {
    color: var(--shop-accent-dark);
    font-size: .7rem;
    font-weight: 800;
}

.shop-related-card h3 {
    margin: .35rem 0 .8rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.shop-related-card h3 a {
    color: var(--shop-ink);
    text-decoration: none;
}

.shop-related-card h3 a:hover {
    color: var(--shop-accent-dark);
}

.shop-related-card strong {
    color: var(--shop-ink);
    font-size: .92rem;
}

.shop-product-custom {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    background: #edc4ad;
}

.shop-product-custom .shop-product-section-label {
    color: #6f240d;
}

.shop-product-custom-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(2rem, 7vw, 6rem);
}

.shop-product-custom h2 {
    max-width: 16ch;
}

.shop-product-custom p {
    max-width: 62ch;
    margin: 1rem 0 0;
    color: #4e3b36;
    line-height: 1.6;
}

.shop-product-custom a {
    display: inline-flex;
    min-height: 50px;
    flex: 0 0 auto;
    padding: .8rem 1rem;
    align-items: center;
    gap: .55rem;
    border: 1px solid var(--shop-ink);
    border-radius: 7px;
    background: var(--shop-ink);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.shop-product-custom a:hover {
    background: #fff;
    color: var(--shop-ink);
}

.shop-product-custom svg {
    width: 17px;
    height: 17px;
}

.shop-product-lightbox {
    width: min(1100px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: hidden;
    border: 1px solid #494451;
    border-radius: 12px;
    background: #17151f;
    color: #fff;
}

.shop-product-lightbox::backdrop {
    background: rgba(23, 21, 31, .88);
}

.shop-product-lightbox > button {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(23, 21, 31, .9);
    color: #fff;
    cursor: pointer;
}

.shop-product-lightbox > button svg {
    width: 20px;
    height: 20px;
}

.shop-product-lightbox img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 90px);
    object-fit: contain;
}

.shop-product-lightbox p {
    min-height: 46px;
    margin: 0;
    padding: .8rem 1rem;
    color: #d7d1dc;
    font-size: .82rem;
}

.shop-product-mobile-buybar {
    display: none;
}

.shop-product-page :is(a, button, summary):focus-visible {
    outline: 3px solid #0b65d8;
    outline-offset: 3px;
}

@media (max-width: 960px) {
    .shop-product-hero-grid,
    .shop-product-story-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-summary {
        position: static;
    }

    .shop-product-summary h1 {
        max-width: 18ch;
    }

    .shop-product-order-flow ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-product-order-flow li:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .shop-product-custom-inner {
        display: grid;
        align-items: start;
    }

    .shop-product-custom a {
        width: fit-content;
    }
}

@media (max-width: 700px) {
    .shop-product-accessory {
        grid-template-columns: 1fr;
        gap: .4rem;
    }

    .shop-product-container {
        width: min(100% - 28px, 1240px);
    }

    .shop-product-hero {
        padding-top: 5.6rem;
    }

    .shop-product-page {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .mobile-nav-actions .shop-mobile-cart {
        display: inline-flex;
        color: #fff;
        text-decoration: none;
    }

    .shop-product-mobile-buybar {
        position: fixed;
        z-index: 800;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 66px;
        padding: .55rem 14px calc(.55rem + env(safe-area-inset-bottom));
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        border-top: 1px solid #cfc6ba;
        background: rgba(247, 244, 238, .98);
        box-shadow: 0 -10px 28px rgba(33, 30, 41, .12);
    }

    .shop-product-mobile-buybar strong {
        color: var(--shop-ink);
        font-size: 1rem;
    }

    .shop-product-mobile-buybar a {
        display: inline-flex;
        min-height: 48px;
        padding: .7rem 1rem;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        border-radius: 7px;
        background: var(--shop-accent);
        color: var(--shop-ink);
        font-size: .86rem;
        font-weight: 800;
        text-decoration: none;
    }

    .shop-product-mobile-buybar svg {
        width: 18px;
        height: 18px;
    }

    .shop-product-breadcrumbs {
        margin-bottom: 1rem;
    }

    .shop-product-breadcrumbs a:nth-of-type(2),
    .shop-product-breadcrumbs svg:nth-of-type(2) {
        display: none;
    }

    .shop-product-thumbnails button {
        display: block;
        padding: 4px;
        text-align: center;
    }

    .shop-product-thumbnails img {
        width: 100%;
    }

    .shop-product-thumbnails span {
        display: block;
        padding: .35rem .15rem .25rem;
    }

    .shop-product-summary h1 {
        font-size: clamp(2.2rem, 11vw, 3.25rem);
    }

    .shop-product-actions,
    .shop-product-example-list,
    .shop-product-spec-list,
    .shop-product-order-flow ol,
    .shop-product-related-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-share {
        width: 100%;
    }

    .shop-product-example-list {
        gap: 1.5rem;
    }

    .shop-product-example-list li {
        min-height: 0;
    }

    .shop-product-spec-list > div {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: .45rem;
    }

    .shop-product-spec-list > div:nth-child(odd) {
        margin-right: 0;
    }

    .shop-product-order-flow li,
    .shop-product-order-flow li + li,
    .shop-product-order-flow li:nth-child(3) {
        min-height: 0;
        padding: 1.2rem 0;
        border-left: 0;
    }

    .shop-product-order-flow li::before {
        margin-bottom: 1.1rem;
    }

    .shop-product-buy--secondary,
    .shop-product-custom a {
        width: 100%;
    }

    .shop-product-section-heading--row {
        display: grid;
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-product-gallery-main img,
    .shop-product-care summary svg,
    .shop-related-card,
    .shop-related-media img {
        transition: none;
    }
}
