.pdp-template--v1 {
    --pdp-v1-viewport-width: 100vw;
    --pdp-v1-half-viewport-width: 50vw;
}

.pdp-template--v1 .pdp-v1-hero {
    width: 100%;
    background: #ffffff;
    color: #1e1e1e;
    transition: background-color 0.6s ease, color 0.6s ease;
    --pdp-v1-header-offset: 92px;
    --pdp-v1-muted-color: #7d7972;
    --pdp-v1-muted-font-size: 0.75rem;
    --pdp-v1-muted-line-height: 1.35;
    --pdp-v1-night-accent: #C1FF00;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night {
    background: #101010;
    color: #f3f3f3;
    --pdp-v1-muted-color: #8f8b84;
    --pdp-v1-night-base-bg: #101010;
}

.pdp-template--v1 .pdp-v1-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .pdp-template--v1 .pdp-v1-hero__inner {
        padding: 40px 50px 0;
    }
}

.pdp-template--v1 .pdp-v1-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    flex: 1 1 auto;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 54px;
        align-items: stretch;
    }

    .pdp-template--v1 .pdp-v1-hero__tabs.pdp-v1-hero__tabs--below-fold .pdp-v1-hero__tab {
        text-transform: uppercase;
    }
}

.pdp-template--v1 .pdp-v1-hero__gallery,
.pdp-template--v1 .pdp-v1-hero__summary {
    min-width: 0;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-hero__gallery {
        position: relative;
        min-height: clamp(620px, 72vh, 760px);
        display: flex;
        align-items: center;
    }
}

.pdp-template--v1 .pdp-v1-gallery {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
        "thumbs main";
    gap: 16px 22px;
    align-items: center;
    width: 100%;
    position: relative;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-gallery {
        grid-template-areas:
            "thumbs main"
            ". toggle";
        row-gap: 20px;
        column-gap: 22px;
        min-height: 100%;
        padding-bottom: 0;
        align-content: start;
    }

    .pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
        grid-area: toggle;
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        justify-self: center;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumbs-wrap {
        align-self: center;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumb {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
}

.pdp-template--v1 .pdp-v1-gallery__thumbs-wrap {
    grid-area: thumbs;
    align-self: center;
}

.pdp-template--v1 .pdp-v1-gallery__thumbs {
    --pdp-v1-thumb-size: 64px;
    --pdp-v1-thumb-gap: 12px;
    --pdp-v1-thumb-step: calc(var(--pdp-v1-thumb-size) + var(--pdp-v1-thumb-gap));
    --pdp-v1-thumb-shift: 0px;
    --pdp-v1-thumb-animation-duration: 460ms;
    display: grid;
    grid-auto-rows: var(--pdp-v1-thumb-size);
    row-gap: var(--pdp-v1-thumb-gap);
    height: calc((var(--pdp-v1-thumb-size) * 5) + (var(--pdp-v1-thumb-gap) * 4));
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.pdp-template--v1 .pdp-v1-gallery__thumbs.is-dragging {
    cursor: grabbing;
}

.pdp-template--v1 .pdp-v1-gallery__thumb {
    width: 100%;
    height: var(--pdp-v1-thumb-size);
    border: 1px solid #d0d0d0;
    background: transparent;
    padding: 0;
    opacity: 0.78;
    --thumb-shift: 0px;
    transform: translateY(var(--thumb-shift));
    transition: opacity 0.32s ease, border-color 0.32s ease, transform var(--pdp-v1-thumb-animation-duration, 0.46s) cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, border-color;
}

.pdp-template--v1 .pdp-v1-gallery__thumb[data-offset="-2"],
.pdp-template--v1 .pdp-v1-gallery__thumb[data-offset="2"] {
    opacity: 0.66;
}

.pdp-template--v1 .pdp-v1-gallery__thumb[data-offset="-1"],
.pdp-template--v1 .pdp-v1-gallery__thumb[data-offset="1"] {
    opacity: 0.74;
}

.pdp-template--v1 .pdp-v1-gallery__thumb:hover,
.pdp-template--v1 .pdp-v1-gallery__thumb.is-active {
    opacity: 1;
    border-color: #3d3e3c;
}

.pdp-template--v1 .pdp-v1-gallery__thumb:focus-visible {
    opacity: 1;
    border-color: #3d3e3c;
    outline: 2px solid #3d3e3c;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transform-origin: center;
}

.pdp-template--v1 .pdp-v1-gallery__thumbs.is-animating .pdp-v1-gallery__thumb {
    --thumb-shift: var(--pdp-v1-thumb-shift);
}

.pdp-template--v1 .pdp-v1-gallery__thumbs.is-animating-prep .pdp-v1-gallery__thumb {
    --thumb-shift: var(--pdp-v1-thumb-shift);
    transition: none !important;
}

.pdp-template--v1 .pdp-v1-gallery__main {
    grid-area: main;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}

body.pdp-template--v1:not(.pdp-template--v2):not(.pdp-template--v3) .pdp-v1-hero:not(.pdp-v1-hero--night) .pdp-v1-gallery__main {
    background: #F5F5F5;
}

.pdp-template--v1 .pdp-v1-gallery__main:focus-visible {
    outline: 2px solid #3d3e3c;
    outline-offset: 3px;
}

.pdp-template--v1 .pdp-v1-gallery__main-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.28s ease;
    will-change: opacity;
}

.pdp-template--v1 .pdp-v1-gallery__main-image.is-swapping {
    opacity: 0.7;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-gallery__main {
        overflow: hidden;
    }

    .pdp-template--v1 .pdp-v1-gallery__main-image {
        transform: scale(1.2);
        transform-origin: center center;
    }
}

.pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 3;
}

.pdp-template--v1 .pdp-v1-gallery__bullets {
    display: none;
}

.pdp-template--v1 .pdp-v1-gallery__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: inherit;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-icon {
    font-size: 0.95rem;
    line-height: 1;
    opacity: 0.9;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-track {
    width: 34px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #3d3e3c;
    background: #ffffff;
    position: relative;
    transition: background-color 0.8s ease, border-color 0.8s ease;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-knob {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3d3e3c;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.8s ease, background-color 0.8s ease;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-input:checked + .pdp-v1-gallery__toggle-track {
    background: #2a2a2a;
    border-color: #ffffff;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-input:focus-visible + .pdp-v1-gallery__toggle-track {
    outline: 2px solid #3d3e3c;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-gallery__toggle-input:checked + .pdp-v1-gallery__toggle-track .pdp-v1-gallery__toggle-knob {
    transform: translateX(16px);
    background: #ffffff;
}

@keyframes pdp-v1-moon-glow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(182, 241, 58, 0);
    }
    50% {
        text-shadow: 0 0 16px rgba(182, 241, 58, 0.42);
    }
}

.pdp-template--v1 .pdp-v1-gallery__preload {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.pdp-template--v1 .pdp-v1-gallery__preload img {
    width: 1px;
    height: 1px;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__thumb {
    background: var(--pdp-v1-night-base-bg);
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__thumb:hover {
    border-color: transparent;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__thumb.is-active,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__thumb.is-active:hover {
    border-color: #ffffff;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__thumb:focus-visible {
    border-color: #ffffff;
    outline-color: #f3f3f3;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-icon {
    color: var(--pdp-v1-night-accent);
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-icon--moon {
    animation: pdp-v1-moon-glow 3.8s ease-in-out infinite;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-track {
    border-color: var(--pdp-v1-night-accent);
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-knob {
    background: var(--pdp-v1-night-accent);
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-input:checked + .pdp-v1-gallery__toggle-track {
    border-color: var(--pdp-v1-night-accent);
    background: #111111;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-input:checked + .pdp-v1-gallery__toggle-track .pdp-v1-gallery__toggle-knob {
    background: var(--pdp-v1-night-accent);
}

.pdp-template--v1 .pdp-v1-lightbox[hidden] {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-lightbox.is-open {
    opacity: 1;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='11' fill='rgba(255,255,255,0.86)' stroke='%23111' stroke-width='2'/%3E%3Cpath d='M12 12L20 20M20 12L12 20' stroke='%23111' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") 16 16, pointer;
}

.pdp-template--v1 .pdp-v1-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
}

.pdp-template--v1 .pdp-v1-lightbox.is-night .pdp-v1-lightbox__backdrop {
    background: rgba(10, 10, 10, 0.96);
}

.pdp-template--v1 .pdp-v1-lightbox__dialog {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
}

.pdp-template--v1 .pdp-v1-lightbox__image {
    max-width: min(1200px, 90vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pdp-template--v1 .pdp-v1-lightbox.is-open .pdp-v1-lightbox__backdrop,
.pdp-template--v1 .pdp-v1-lightbox.is-open .pdp-v1-lightbox__dialog,
.pdp-template--v1 .pdp-v1-lightbox.is-open .pdp-v1-lightbox__image {
    cursor: inherit;
}

.pdp-template--v1 .pdp-v1-lightbox__close {
    position: absolute;
    border: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 26px;
    cursor: pointer;
}

.pdp-template--v1 .pdp-v1-lightbox__nav {
    position: absolute;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 0;
    background: #C1FF00;
    color: #111;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-lightbox__nav:hover:not(:disabled),
.pdp-template--v1 .pdp-v1-lightbox__nav:focus-visible:not(:disabled) {
    background: #C1FF00;
}

.pdp-template--v1 .pdp-v1-lightbox__nav:focus-visible {
    outline: 2px solid #1f1f1f;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-lightbox__nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.pdp-template--v1 .pdp-v1-lightbox.is-night .pdp-v1-lightbox__close {
    background: rgba(255, 255, 255, 0.2);
}

.pdp-template--v1 .pdp-v1-lightbox__close {
    top: 20px;
    right: 20px;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-lightbox__close {
        display: none;
    }
}

.pdp-template--v1 .pdp-v1-lightbox__nav--prev {
    left: 20px;
}

.pdp-template--v1 .pdp-v1-lightbox__nav--next {
    right: 20px;
}

.pdp-template--v1 .pdp-v1-hero__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 420px;
    margin: 30px auto 0;
    border: 1px solid #3d3e3c;
}

.pdp-template--v1 .pdp-v1-hero__tab {
    border: 0;
    border-right: 1px solid #3d3e3c;
    background: #ffffff;
    color: #3d3e3c;
    font-size: 14px;
    line-height: 1.2;
    padding: 12px 10px;
    text-transform: none;
}

.pdp-template--v1 .pdp-v1-hero__tab:focus-visible {
    outline: 2px solid #3d3e3c;
    outline-offset: -2px;
}

.pdp-template--v1 .pdp-v1-hero__tab:last-child {
    border-right: 0;
}

.pdp-template--v1 .pdp-v1-hero__tab.is-active {
    background: #3d3e3c;
    color: #ffffff;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-hero__tab {
    border-color: #8f8f8f;
    background: #252525;
    color: #f3f3f3;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-hero__tab.is-active {
    background: #f3f3f3;
    color: #1a1a1a;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-input:focus-visible + .pdp-v1-gallery__toggle-track,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-hero__tab:focus-visible,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__main:focus-visible {
    outline-color: #f3f3f3;
}

.pdp-template--v1 .pdp-v1-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    color: #f8f9fa;
    background: #3d3e3c;
    border-top: 1px solid rgba(248, 249, 250, 0.2);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.pdp-template--v1 .pdp-v1-sticky-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.pdp-template--v1 .pdp-v1-sticky-bar__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pdp-template--v1 .pdp-v1-sticky-bar__tabs {
    display: flex;
    align-items: center;
    gap: 34px;
}

.pdp-template--v1 .pdp-v1-sticky-bar__tab {
    border: 0;
    background: transparent;
    color: inherit;
    font-family: "Sul Mono", monospace;
    font-size: 0.8125rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0;
}

.pdp-template--v1 .pdp-v1-sticky-bar__tab.is-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.pdp-template--v1 .pdp-v1-sticky-bar__tab:focus-visible,
.pdp-template--v1 .pdp-v1-sticky-bar__cta:focus-visible {
    outline: 2px solid #f8f9fa;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-sticky-bar__summary {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 46px;
    min-width: 0;
}

.pdp-template--v1 .pdp-v1-sticky-bar__thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-template--v1 .pdp-v1-sticky-bar__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-template--v1 .pdp-v1-sticky-bar__title {
    max-width: clamp(220px, 30vw, 420px);
    font-family: "Sul Mono", monospace;
    font-size: 0.8125rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdp-template--v1 .pdp-v1-sticky-bar__price {
    flex: 0 0 auto;
    font-family: "Sul Mono", monospace;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
}

.pdp-template--v1 .pdp-v1-sticky-bar__cta {
    border: 0;
    min-height: 40px;
    padding: 10px 26px;
    margin-right: 5px;
    background: #C1FF00;
    color: #1f1f1f;
    font-family: "Sul Mono", monospace;
    font-size: 0.9rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.pdp-template--v1 .pdp-v1-sticky-bar__cta:hover,
.pdp-template--v1 .pdp-v1-sticky-bar__cta:focus-visible {
    background: #C1FF00;
}

.pdp-template--v1 .pdp-v1-sticky-bar__cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 1280px) {
    .pdp-template--v1 .pdp-v1-sticky-bar__inner {
        padding-inline: 24px;
    }

    .pdp-template--v1 .pdp-v1-sticky-bar__tabs {
        gap: 24px;
    }

    .pdp-template--v1 .pdp-v1-sticky-bar__summary {
        gap: 34px;
    }
}

@media (max-width: 1024px) {
    .pdp-template--v1 .pdp-v1-sticky-bar {
        display: none !important;
    }
}

.pdp-template--v1 .pdp-v1-below-fold {
    width: 100%;
    background: #e5e5e5;
}

.pdp-template--v1 .pdp-v1-below-fold__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 24px;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

@media (min-width: 768px) {
    .pdp-template--v1 .pdp-v1-below-fold__inner {
        padding: 0 50px 32px;
        padding-top: 60px;
    }
}

.pdp-template--v1 .pdp-v1-below-fold__panel[hidden] {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-below-fold.is-panel-switching .pdp-v1-below-fold__inner {
    opacity: 0.82;
    transform: translateY(4px);
}

.pdp-template--v1 .pdp-v1-below-fold__panel > .product-gutenberg-content {
    margin: 0;
}

.pdp-template--v1 .pdp-v1-anchor {
    display: block;
    position: relative;
    top: -110px;
    height: 0;
    visibility: hidden;
    pointer-events: none;
}

.pdp-template--v1 .pdp-v1-character-focus {
    padding: 48px 0 56px;
}

.pdp-template--v1 .pdp-v1-character-focus__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
}

.pdp-template--v1 .pdp-v1-character-focus__media {
    position: relative;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.pdp-template--v1 .pdp-v1-character-focus__arrow {
    display: none;
}

.pdp-template--v1 .pdp-v1-character-focus__image-panel {
    margin: 0;
    background: #0f0f0f;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pdp-template--v1 .pdp-v1-character-focus__image-panel[hidden] {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-character-focus__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-template--v1 .pdp-v1-character-focus__video,
.pdp-template--v1 .pdp-v1-character-focus__video-embed,
.pdp-template--v1 .pdp-v1-character-focus__video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.pdp-template--v1 .pdp-v1-character-focus__video {
    object-fit: cover;
    background: #000;
}

.pdp-template--v1 .pdp-v1-character-focus__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.pdp-template--v1 .pdp-v1-character-focus__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
}

.pdp-template--v1 .pdp-v1-character-focus__tabs {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding: 0 0 8px;
    border-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.pdp-template--v1 .pdp-v1-character-focus__tabs::-webkit-scrollbar {
    display: none;
}

.pdp-template--v1 .pdp-v1-character-focus__dots {
    display: none;
}

.pdp-template--v1 .pdp-v1-character-focus__dot {
    width: 5px;
    height: 5px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    background: #b0b0b0;
    opacity: 0.58;
}

.pdp-template--v1 .pdp-v1-character-focus__dot.is-active {
    background: #5b5b5b;
    opacity: 1;
}

.pdp-template--v1 .pdp-v1-character-focus__tab {
    flex: 0 0 auto;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    margin: 0;
    padding: 0 0 8px;
    font-family: "Sul Mono", monospace;
    font-size: 0.72rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #222;
    opacity: 0.65;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.pdp-template--v1 .pdp-v1-character-focus__tab:hover,
.pdp-template--v1 .pdp-v1-character-focus__tab.is-active {
    opacity: 1;
    border-bottom-color: #1f1f1f;
}

.pdp-template--v1 .pdp-v1-character-focus__tab:focus-visible {
    outline: 2px solid #1f1f1f;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-character-focus__panels {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.pdp-template--v1 .pdp-v1-character-focus__panel {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pdp-template--v1 .pdp-v1-character-focus__panel[hidden] {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-character-focus__heading {
    margin: 0;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 2.8vw, 2.95rem);
    line-height: 1.05;
    color: #171717;
}

.pdp-template--v1 .pdp-v1-character-focus__subtitle {
    margin: 10px 0 0;
    font-family: "Sul Mono", monospace;
    font-size: 0.73rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f6f6f;
}

.pdp-template--v1 .pdp-v1-character-focus__body {
    margin-top: auto;
    padding-top: 24px;
    color: #1b1b1b;
}

.pdp-template--v1 .pdp-v1-character-focus.is-switching .pdp-v1-character-focus__media,
.pdp-template--v1 .pdp-v1-character-focus.is-switching .pdp-v1-character-focus__panels {
    opacity: 0.26;
    transform: translateY(6px);
}

.pdp-template--v1 .pdp-v1-character-focus__body > :first-child {
    margin-top: 0;
}

.pdp-template--v1 .pdp-v1-character-focus__body > :last-child {
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-character-focus {
        padding: 86px 0 74px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 60px;
        align-items: start;
    }

    .pdp-template--v1 .pdp-v1-character-focus__content {
        padding-top: 6px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__media {
        overflow: visible;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 0;
        background: #C1FF00;
        color: #111111;
        font-size: 1.05rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s ease, opacity 0.2s ease;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow:hover:not(:disabled),
    .pdp-template--v1 .pdp-v1-character-focus__arrow:focus-visible:not(:disabled) {
        background: #C1FF00;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow:focus-visible {
        outline: 2px solid #1f1f1f;
        outline-offset: 2px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow:disabled {
        opacity: 0.35;
        cursor: default;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow--prev {
        left: 10px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__arrow--next {
        right: 10px;
    }
}

.pdp-template--v1 .pdp-v1-character-video {
    padding: 0 0 56px;
}

.pdp-template--v1 .pdp-v1-character-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
    overflow: hidden;
}

.pdp-template--v1 .pdp-v1-character-video__frame iframe,
.pdp-template--v1 .pdp-v1-character-video__frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.pdp-template--v1 .pdp-v1-character-carousel {
    --pdp-v1-carousel-content-width: min(1340px, calc(var(--pdp-v1-viewport-width) - 100px));
    --pdp-v1-carousel-side-pad: calc((var(--pdp-v1-viewport-width) - var(--pdp-v1-carousel-content-width)) / 2);
    position: relative;
    width: var(--pdp-v1-viewport-width);
    margin-left: calc(50% - var(--pdp-v1-half-viewport-width));
    margin-right: calc(50% - var(--pdp-v1-half-viewport-width));
    padding: 0;
}

.pdp-template--v1 .pdp-v1-character-carousel__viewport {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--pdp-v1-carousel-side-pad);
}

.pdp-template--v1 .pdp-v1-character-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.pdp-template--v1 .pdp-v1-character-carousel__slide {
    flex: 0 0 var(--pdp-v1-carousel-content-width);
    margin: 0;
    scroll-snap-align: center;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-character-carousel__slide.is-active {
    opacity: 1;
}

.pdp-template--v1 .pdp-v1-character-carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-template--v1 .pdp-v1-character-carousel__video-wrap,
.pdp-template--v1 .pdp-v1-character-carousel__video-embed {
    width: 100%;
    height: 100%;
    position: relative;
}

.pdp-template--v1 .pdp-v1-character-carousel__video,
.pdp-template--v1 .pdp-v1-character-carousel__iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.pdp-template--v1 .pdp-v1-character-carousel__video {
    object-fit: cover;
    background: #000;
    cursor: pointer;
}

.pdp-template--v1 .pdp-v1-character-carousel__video-controls {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-character-carousel__video-control {
    border: 0;
    margin: 0;
    padding: 8px 12px;
    background: rgba(17, 17, 17, 0.78);
    color: #fff;
    font-family: "Sul Mono", monospace;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.pdp-template--v1 .pdp-v1-character-carousel__video-control:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: #C1FF00;
    color: #111;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow:hover:not(:disabled),
.pdp-template--v1 .pdp-v1-character-carousel__arrow:focus-visible:not(:disabled) {
    background: #C1FF00;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow:focus-visible {
    outline: 2px solid #1f1f1f;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow--prev {
    left: 10px;
}

.pdp-template--v1 .pdp-v1-character-carousel__arrow--next {
    right: 10px;
}

.pdp-template--v1 .pdp-v1-character-carousel__nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0 20px;
    pointer-events: none;
}

.pdp-template--v1 .pdp-v1-character-carousel__nav-line {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    flex: 0 0 7px;
    margin: 0;
    padding: 0;
    background: #9a9a9a;
    opacity: 0.45;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.pdp-template--v1 .pdp-v1-character-carousel__nav-line:hover,
.pdp-template--v1 .pdp-v1-character-carousel__nav-line:focus-visible,
.pdp-template--v1 .pdp-v1-character-carousel__nav-line.is-active {
    opacity: 1;
    background: #232323;
}

.pdp-template--v1 .pdp-v1-character-carousel__nav-line:focus-visible {
    outline: 2px solid #1f1f1f;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .pdp-template--v1 .pdp-v1-character-carousel--has-video .pdp-v1-character-carousel__nav,
    .pdp-template--v1 .pdp-v1-character-carousel:has([data-pdp-v1-slide-type="video"]) .pdp-v1-character-carousel__nav {
        bottom: 80px;
    }
}

.pdp-template--v1 .pdp-v1-character-carousel--single {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.pdp-template--v1 .pdp-v1-character-carousel--single .pdp-v1-character-carousel__viewport {
    overflow: visible;
    padding: 0;
}

.pdp-template--v1 .pdp-v1-character-carousel--single .pdp-v1-character-carousel__slide {
    flex-basis: 100%;
}

@media (max-width: 767px) {
    .pdp-template--v1 .pdp-v1-character-focus + .pdp-v1-character-video,
    .pdp-template--v1 .pdp-v1-character-focus + .pdp-v1-character-carousel {
        margin-top: 24px;
    }

    .pdp-template--v1 .pdp-v1-below-fold__panel--character-media-first .product-gutenberg-content--character-media-first {
        padding-top: 40px;
    }
}

@media (max-width: 1024px) {
    .pdp-template--v1 .pdp-v1-character-video {
        padding-bottom: 44px;
    }

    .pdp-template--v1 .pdp-v1-character-carousel {
        --pdp-v1-carousel-content-width: min(1340px, calc(var(--pdp-v1-viewport-width) - 100px));
        padding-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__viewport {
        gap: 16px;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__arrow {
        width: 30px;
        height: 30px;
        font-size: 0.96rem;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__arrow--prev {
        left: 6px;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__arrow--next {
        right: 6px;
    }
}

@media (max-width: 767px) {
    .pdp-template--v1 .pdp-v1-character-carousel {
        --pdp-v1-carousel-content-width: min(1440px, calc(var(--pdp-v1-viewport-width) - 40px));
        padding-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__viewport {
        gap: 12px;
        padding-left: 0;
        padding-right: 24px;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__slide {
        scroll-snap-align: start;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__slide[data-pdp-v1-slide-type="video"] .pdp-v1-character-carousel__video-wrap,
    .pdp-template--v1 .pdp-v1-character-carousel__slide[data-pdp-v1-slide-type="video"] .pdp-v1-character-carousel__video-embed {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__slide[data-pdp-v1-slide-type="video"] .pdp-v1-character-carousel__video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__slide[data-pdp-v1-slide-type="video"] .pdp-v1-character-carousel__iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.78%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
    }

    .pdp-template--v1 .pdp-v1-character-carousel__nav {
        bottom: 24px;
    }
}

@media (min-width: 1441px) {
    .pdp-template--v1 .pdp-v1-character-carousel__arrow--prev {
        left: calc((var(--pdp-v1-carousel-side-pad) - 34px) / 2);
    }

    .pdp-template--v1 .pdp-v1-character-carousel__arrow--next {
        right: calc((var(--pdp-v1-carousel-side-pad) - 34px) / 2);
    }
}

@media (hover: none) {
    .pdp-template--v1 .pdp-v1-character-carousel__video-controls {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

.pdp-template--v1 .pdp-v1-specs {
    padding: 78px 0 34px;
}

.pdp-template--v1 .pdp-v1-specs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
}

.pdp-template--v1 .pdp-v1-specs-accordion__item {
    border-bottom: 1px solid #c7c7c7;
}

.pdp-template--v1 .pdp-v1-specs-accordion__item:first-child {
    border-top: 1px solid #c7c7c7;
}

.pdp-template--v1 .pdp-v1-specs-accordion__heading {
    margin: 0;
}

.pdp-template--v1 .pdp-v1-specs-accordion__toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 12px;
    border: 0;
    margin: 0;
    padding: 20px 0;
    background: transparent;
    text-align: left;
    color: #141414;
    cursor: pointer;
}

.pdp-template--v1 .pdp-v1-specs-accordion__number {
    font-family: "Sul Mono", monospace;
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f6f6f;
}

.pdp-template--v1 .pdp-v1-specs-accordion__title {
    font-family: "AktivGrotesk", sans-serif;
    font-size: clamp(1.38rem, 1.35vw, 2.02rem);
    line-height: 1.08;
    font-weight: 700;
}

.pdp-template--v1 .pdp-v1-specs-accordion__icon {
    width: 22px;
    height: 22px;
    position: relative;
}

.pdp-template--v1 .pdp-v1-specs-accordion__icon::before,
.pdp-template--v1 .pdp-v1-specs-accordion__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: #262626;
    transform: translate(-50%, -50%);
}

.pdp-template--v1 .pdp-v1-specs-accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-specs-accordion__toggle[aria-expanded="true"] .pdp-v1-specs-accordion__icon::after {
    opacity: 0;
}

.pdp-template--v1 .pdp-v1-specs-accordion__toggle:focus-visible,
.pdp-template--v1 .pdp-v1-faq__toggle:focus-visible {
    outline: 2px solid #1b1b1b;
    outline-offset: 2px;
}

.pdp-template--v1 .pdp-v1-specs-accordion__panel[hidden],
.pdp-template--v1 .pdp-v1-faq__answer[hidden] {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-specs-accordion__panel,
.pdp-template--v1 .pdp-v1-faq__answer {
    overflow: hidden;
    transition: max-height 0.24s ease, opacity 0.22s ease;
}

.pdp-template--v1 .pdp-v1-specs-accordion__panel-inner {
    padding: 0 0 24px 64px;
    color: #212121;
}

.pdp-template--v1 .pdp-v1-specs-accordion__panel-inner > :first-child,
.pdp-template--v1 .pdp-v1-faq__answer-inner > :first-child {
    margin-top: 0;
}

.pdp-template--v1 .pdp-v1-specs-accordion__panel-inner > :last-child,
.pdp-template--v1 .pdp-v1-faq__answer-inner > :last-child {
    margin-bottom: 0;
}

.pdp-template--v1 .pdp-v1-specs__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.pdp-template--v1 .pdp-v1-specs__diagram {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.pdp-template--v1 .pdp-v1-specs__diagram-image {
    width: 100%;
    height: auto;
    display: block;
}

.pdp-template--v1 .pdp-v1-specs__download-wrap {
    margin: 0;
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pdp-template--v1 .pdp-v1-specs__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 6px 16px;
    border: 1px solid #1c1c1c;
    font-family: "Sul Mono", monospace;
    font-size: calc(0.66rem + 3px);
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1c1c1c;
    background: #f1f1f1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pdp-template--v1 .pdp-v1-specs__download:hover,
.pdp-template--v1 .pdp-v1-specs__download:focus-visible {
    background: #1c1c1c;
    color: #f1f1f1;
}

.pdp-template--v1 .pdp-v1-specs__download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.32em;
    line-height: 1;
}

.pdp-template--v1 .pdp-v1-specs--no-media .pdp-v1-specs__grid {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-character-focus__heading {
        font-size: clamp(1.5rem, 2.3vw, 2.45rem);
        font-weight: 600;
    }

    .pdp-template--v1 .pdp-v1-specs {
        padding: 84px 0 54px;
    }

    .pdp-template--v1 .pdp-v1-specs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px;
        align-items: start;
    }

    .pdp-template--v1 .pdp-v1-specs__media {
        align-self: start;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 0;
    }

    .pdp-template--v1 .pdp-v1-specs__diagram {
        width: 100%;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pdp-template--v1 .pdp-v1-below-fold__inner,
    .pdp-template--v1 .pdp-v1-character-focus__media,
    .pdp-template--v1 .pdp-v1-character-focus__panels,
    .pdp-template--v1 .pdp-v1-specs-accordion__panel,
    .pdp-template--v1 .pdp-v1-faq__answer {
        transition: none !important;
    }
}

.pdp-template--v1 .pdp-v1-faq {
    padding: 22px 0 58px;
}

.pdp-template--v1 .pdp-v1-faq__header {
    text-align: center;
    margin: 0 0 30px;
}

.pdp-template--v1 .pdp-v1-faq__eyebrow {
    margin: 0;
    font-family: "Sul Mono", monospace;
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f6f6f;
}

.pdp-template--v1 .pdp-v1-faq__title {
    margin: 10px 0 0;
    font-family: "AktivGrotesk", sans-serif;
    font-size: clamp(1.45rem, 2.05vw, 2.45rem);
    line-height: 1.08;
    font-weight: 700;
    color: #151515;
}

.pdp-template--v1 .pdp-v1-faq__item {
    border-bottom: 1px solid #c7c7c7;
}

.pdp-template--v1 .pdp-v1-faq__item:first-child {
    border-top: 1px solid #c7c7c7;
}

.pdp-template--v1 .pdp-v1-faq__question-wrap {
    margin: 0;
}

.pdp-template--v1 .pdp-v1-faq__toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 12px;
    border: 0;
    margin: 0;
    padding: 19px 0;
    background: transparent;
    text-align: left;
    color: #141414;
    cursor: pointer;
}

.pdp-template--v1 .pdp-v1-faq__number {
    font-family: "Sul Mono", monospace;
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f6f6f;
}

.pdp-template--v1 .pdp-v1-faq__question {
    font-family: "AktivGrotesk", sans-serif;
    font-size: clamp(1.15rem, 1.15vw, 1.42rem);
    line-height: 1.2;
    font-weight: 700;
}

.pdp-template--v1 .pdp-v1-faq__icon {
    width: 22px;
    height: 22px;
    position: relative;
}

.pdp-template--v1 .pdp-v1-faq__icon::before,
.pdp-template--v1 .pdp-v1-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: #262626;
    transform: translate(-50%, -50%);
}

.pdp-template--v1 .pdp-v1-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-faq__toggle[aria-expanded="true"] .pdp-v1-faq__icon::after {
    opacity: 0;
}

.pdp-template--v1 .pdp-v1-faq__answer-inner {
    padding: 0 0 24px 64px;
    color: #1f1f1f;
}

@media (max-width: 1024px) {
    .pdp-template--v1 .pdp-v1-specs {
        padding-bottom: 26px;
    }

    .pdp-template--v1 .pdp-v1-specs__accordion {
        order: 1;
    }

    .pdp-template--v1 .pdp-v1-specs__media {
        order: 2;
        align-items: flex-start;
    }

    .pdp-template--v1 .pdp-v1-specs__diagram {
        max-width: 100%;
    }

    .pdp-template--v1 .pdp-v1-specs-accordion__panel-inner,
    .pdp-template--v1 .pdp-v1-faq__answer-inner {
        padding-left: 0;
    }

    .pdp-template--v1 .pdp-v1-faq {
        padding-bottom: 42px;
    }
}

@media (max-width: 1024px) {
    .pdp-template--v1 .pdp-v1-hero__gallery {
        min-height: 0;
        display: block;
    }

    .pdp-template--v1 .pdp-v1-gallery {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "main"
            "toggle"
            "bullets";
        gap: 12px;
        padding-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-gallery__main-image {
        transform: none;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumbs-wrap {
        display: none;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumbs {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 64px;
        grid-auto-rows: 64px;
        column-gap: 10px;
        row-gap: 0;
        height: auto;
        justify-content: center;
        overflow: visible;
        touch-action: pan-x;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumb {
        height: 64px;
        transform: none !important;
        opacity: 0.75;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumb.is-active {
        opacity: 1;
    }

    .pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
        grid-area: toggle;
        position: static;
        transform: none;
        margin-top: 2px;
    }

    .pdp-template--v1 .pdp-v1-gallery__bullets {
        grid-area: bullets;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 2px;
    }

    .pdp-template--v1 .pdp-v1-gallery__bullet {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: 0;
        padding: 0;
        margin: 0;
        background: #9a9a9a;
        opacity: 0.45;
        transition: opacity 0.2s ease, background-color 0.2s ease;
    }

    .pdp-template--v1 .pdp-v1-gallery__bullet.is-active {
        opacity: 1;
        background: #232323;
    }
}

@media (max-width: 360px) {
    .pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
        display: none;
    }
}

.pdp-template--v1 .pdp-v1-hero__summary .summary.entry-summary {
    float: none;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdp-template--v1 .pdp-v1-summary__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
}

.pdp-template--v1 .pdp-v1-summary__title {
    margin: 0;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: clamp(1.25rem, 1.65vw, 2.1rem);
    line-height: 1.05;
    font-weight: 600;
}

.pdp-template--v1 .pdp-v1-summary__wishlist {
    flex: 0 0 auto;
    min-width: 36px;
}

.pdp-template--v1 .pdp-v1-summary__wishlist a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.pdp-template--v1 .pdp-v1-summary__wishlist .jvm_add_to_wishlist_heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pdp-template--v1 .pdp-v1-summary__wishlist .jvm_add_to_wishlist_text_add,
.pdp-template--v1 .pdp-v1-summary__wishlist .jvm_add_to_wishlist_text_remove {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-summary__wishlist .jvm_add_to_wishlist_heart:before {
    display: inline-block;
    transform: scale(1.2);
    transform-origin: center;
}

.pdp-template--v1 .pdp-v1-summary__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
    column-gap: 0;
    margin: 8px 0 30px;
    font-family: "Sul Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-summary__meta-item {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.pdp-template--v1 .pdp-v1-summary__meta-item + .pdp-v1-summary__meta-item {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #b9b9b9;
}

.pdp-template--v1 .pdp-v1-summary__pricing {
    display: grid;
    gap: 8px;
    margin: 0 0 30px;
}

.pdp-template--v1 .pdp-v1-summary__price {
    margin: 0;
    font-family: "Sul Mono", monospace;
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.pdp-template--v1 .pdp-v1-summary__price .price {
    margin: 0;
}

.pdp-template--v1 .pdp-v1-summary__tax-note {
    margin: 0;
    font-family: "Sul Mono", monospace;
    font-size: calc(var(--pdp-v1-muted-font-size) * 0.88);
    line-height: var(--pdp-v1-muted-line-height);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-summary__tax-note-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.pdp-template--v1 .pdp-v1-summary__tax-note-trigger:focus-visible {
    outline: 1px solid #3d3e3c;
    outline-offset: 3px;
}

.pdp-template--v1 .pdp-v1-summary__tax-note-tooltip {
    position: absolute;
    left: 0;
    bottom: calc(100% + 9px);
    z-index: 8;
    width: max-content;
    max-width: min(320px, 84vw);
    padding: 8px 10px;
    background: #272727;
    border: 1px solid var(--pdp-v1-night-accent);
    color: #f5f5f5;
    font-family: "AktivGrotesk", sans-serif;
    font-size: 0.75rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.pdp-template--v1 .pdp-v1-summary__tax-note-trigger:hover .pdp-v1-summary__tax-note-tooltip,
.pdp-template--v1 .pdp-v1-summary__tax-note-trigger:focus-visible .pdp-v1-summary__tax-note-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pdp-template--v1 .pdp-v1-summary__bullets {
    margin: 0 0 22px;
    padding-left: 18px;
    min-height: 5.5rem;
    display: grid;
    gap: 0;
    font-family: "AktivGrotesk", sans-serif;
    font-size: 1rem;
    line-height: 0.96;
}

.pdp-template--v1 .pdp-v1-summary__bullets li {
    margin: 0;
}

.pdp-template--v1 .pdp-v1-related-references {
    margin-top: 0;
    margin-bottom: 20px;
}

.pdp-template--v1 .pdp-v1-related-references__title {
    margin: 0 0 10px;
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-related-references__grid {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    gap: 12px;
    max-width: 276px;
}

.pdp-template--v1 .pdp-v1-related-references__item {
    display: block;
    width: 60px;
    height: 80px;
    overflow: hidden;
    border: 0;
    background: transparent;
    transition: opacity 0.2s ease;
}

.pdp-template--v1 .pdp-v1-related-references__item:hover,
.pdp-template--v1 .pdp-v1-related-references__item:focus-visible {
    opacity: 0.9;
}

.pdp-template--v1 .pdp-v1-related-references__item img {
    display: block;
    width: 80px;
    max-width: none;
    height: 80px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center center;
}

.pdp-template--v1 .pdp-v1-addons {
    width: 100%;
    margin-top: 2px;
}

.pdp-template--v1 .pdp-v1-addons__title {
    margin: 0 0 10px;
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-addons__tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 320px;
    margin-bottom: 30px;
}

.pdp-template--v1 .pdp-v1-addons__tile {
    border: 1px solid #d0d0d0;
    background: #ffffff;
    padding: 0;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    min-height: 64px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pdp-template--v1 .pdp-v1-addons__tile:hover,
.pdp-template--v1 .pdp-v1-addons__tile:focus-visible,
.pdp-template--v1 .pdp-v1-addons__tile.is-selected {
    opacity: 0.92;
}

.pdp-template--v1 .pdp-v1-addons__tile.is-selected {
    border: 3px solid #C1FF00;
}

.pdp-template--v1 .pdp-v1-addons__tile-content,
.pdp-template--v1 .pdp-v1-addons__tile-action,
.pdp-template--v1 .pdp-v1-addons__carousel-dots {
    display: none;
}

.pdp-template--v1 .pdp-v1-addons__tile::before {
    content: "+";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C1FF00;
    font-family: "Sul Mono", monospace;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 4;
}

.pdp-template--v1 .pdp-v1-addons__tile::after {
    content: attr(data-pdp-v1-hover-preview-alt) " | " attr(data-price-label);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    max-width: 280px;
    font-family: "Sul Mono", monospace;
    font-size: 0.61rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pdp-v1-muted-color);
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 5;
}

.pdp-template--v1 .pdp-v1-addons__tile-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 64px;
    background: #ffffff;
}

.pdp-template--v1 .pdp-v1-addons__tile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-template--v1 .pdp-v1-addons__tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.58);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.pdp-template--v1 .pdp-v1-addons__tile:hover .pdp-v1-addons__tile-overlay,
.pdp-template--v1 .pdp-v1-addons__tile:focus-visible .pdp-v1-addons__tile-overlay,
.pdp-template--v1 .pdp-v1-addons__tile.is-selected .pdp-v1-addons__tile-overlay {
    opacity: 1;
}

.pdp-template--v1 .pdp-v1-addons__tile:hover::before,
.pdp-template--v1 .pdp-v1-addons__tile:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.pdp-template--v1 .pdp-v1-addons__tile:hover::after,
.pdp-template--v1 .pdp-v1-addons__tile:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.pdp-template--v1 .pdp-v1-addons__tile.is-selected::after {
    content: attr(data-price-label);
    opacity: 1;
    transform: translateY(0);
}

.pdp-template--v1 .pdp-v1-addons.pdp-v1-addons--hovering-other .pdp-v1-addons__tile.is-selected:not(:hover):not(:focus-visible)::after {
    opacity: 0;
    transform: translateY(-2px);
}

.pdp-template--v1 .pdp-v1-addons__tile-price,
.pdp-template--v1 .pdp-v1-addons__tile-select {
    font-family: "Sul Mono", monospace;
    font-size: 0.69rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pdp-template--v1 .pdp-v1-addons__tile-price,
.pdp-template--v1 .pdp-v1-addons__tile-select {
    display: none;
}

@media (hover: none), (pointer: coarse) {
    .pdp-template--v1 .pdp-v1-addons__tile::before,
    .pdp-template--v1 .pdp-v1-addons__tile::after {
        content: none;
    }
}

.pdp-template--v1 .pdp-v1-addons__price {
    display: none;
}

.pdp-template--v1 .pdp-v1-hero__summary form.cart {
    margin: 0;
    width: 100%;
}

.pdp-template--v1 .pdp-v1-mobile-cta {
    display: contents;
}

.pdp-template--v1 .pdp-v1-mobile-cta__links {
    display: none;
}

.pdp-template--v1 .pdp-v1-hero__summary form.cart .single_add_to_cart_button {
    width: 100%;
    min-height: 40px;
    margin-top: 6px;
    border: 0;
    background: #C1FF00 !important;
    color: #1f1f1f !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Sul Mono", monospace;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.pdp-template--v1 .pdp-v1-hero__summary form.cart .single_add_to_cart_button:hover,
.pdp-template--v1 .pdp-v1-hero__summary form.cart .single_add_to_cart_button:focus-visible {
    background: #C1FF00 !important;
}

.pdp-template--v1 .pdp-v1-hero__summary .stock.in-stock,
.pdp-template--v1 .pdp-v1-hero__summary form.cart .quantity,
.pdp-template--v1 .pdp-v1-hero__summary .product-addons__select,
.pdp-template--v1 .pdp-v1-hero__summary .pdp-v1-addons__select {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .variations th.label,
.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .variations td.value {
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    letter-spacing: 0.08em;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .variations th.label label,
.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .variations .woo-selected-variation-item-name {
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .single_variation .woocommerce-variation-description.pdp-v1-variation-description--hidden {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdp-template--v1 .pdp-v1-hero__summary form.variations_form .single_variation_wrap .single_add_to_cart_button {
    margin-top: 0;
}

.pdp-template--v1 .pdp-v1-express-pay {
    width: 100%;
    margin-top: 12px;
    display: grid;
    visibility: visible;
    opacity: 0;
    pointer-events: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    transition: opacity 0.18s ease;
}

.pdp-template--v1 .pdp-v1-express-pay.is-ready {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.pdp-template--v1 .pdp-v1-express-pay__slot {
    min-height: 46px;
    width: 100%;
    min-width: 0;
    background: transparent;
    display: block;
}

.pdp-template--v1 .pdp-v1-express-pay__slot > * {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.pdp-template--v1 .pdp-v1-express-pay__slot iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    align-items: start;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element > .StripeElement {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent;
    opacity: 0;
    transition: opacity 0.18s ease !important;
}

.pdp-template--v1 .pdp-v1-express-pay.is-ready #wc-stripe-express-checkout-element > .StripeElement {
    opacity: 1;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element .StripeElement .__PrivateStripeElement {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: none !important;
    animation: none !important;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element .StripeElement iframe {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay {
    position: relative;
    overflow: visible;
    background: transparent;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay::after {
    content: none !important;
}

.pdp-template--v1 [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay iframe {
    position: relative;
    z-index: 0;
    display: block;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay,
.pdp-template--v1 .pdp-v1-mobile-cta.is-night #wc-stripe-express-checkout-element-googlePay {
    overflow: hidden !important;
    background: #000000 !important;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay::before,
.pdp-template--v1 .pdp-v1-mobile-cta.is-night #wc-stripe-express-checkout-element-googlePay::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #000000;
    pointer-events: none;
    z-index: 2;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night [data-pdp-v1-express-pay] #wc-stripe-express-checkout-element-googlePay iframe,
.pdp-template--v1 .pdp-v1-mobile-cta.is-night #wc-stripe-express-checkout-element-googlePay iframe {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: #000000 !important;
}

.pdp-template--v1 .pdp-v1-express-pay:not(.is-ready) #wc-stripe-express-checkout-element-googlePay {
    opacity: 0 !important;
}

.pdp-template--v1 .pdp-v1-express-pay.is-ready #wc-stripe-express-checkout-element-googlePay {
    opacity: 1 !important;
}

.pdp-template--v1 .pdp-v1-express-pay__slot .wc-stripe-product-checkout-container,
.pdp-template--v1 .pdp-v1-express-pay__slot .wc-stripe-payment-request-button-container,
.pdp-template--v1 .pdp-v1-express-pay__slot .wc-stripe-express-checkout-buttons-container,
.pdp-template--v1 .pdp-v1-express-pay__slot .wc-stripe-express-checkout-element {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.pdp-template--v1 .pdp-v1-express-pay__slot--secondary > .wc-ppcp-express-checkout,
.pdp-template--v1 .pdp-v1-express-pay__slot--secondary > .wcpay-payment-request-button-container,
.pdp-template--v1 .pdp-v1-express-pay__slot--secondary > #wc-stripe-payment-request-wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pdp-template--v1 .pdp-v1-express-pay.is-primary-only .pdp-v1-express-pay__slot--primary {
    grid-column: 1 / -1;
}

.pdp-template--v1 .pdp-v1-express-pay.is-primary-only .pdp-v1-express-pay__slot--secondary {
    display: none;
}

.pdp-template--v1 .pdp-v1-express-pay__hidden {
    display: none !important;
}

.pdp-template--v1 .pdp-v1-hero__summary #wc-stripe-express-checkout__order-attribution-inputs,
.pdp-template--v1 .pdp-v1-hero__summary #wc-stripe-express-checkout-button-separator,
.pdp-template--v1 .pdp-v1-hero__summary #wc-stripe-payment-request-button-separator {
    display: none;
    margin: 0;
    padding: 0;
}

.pdp-template--v1 .pdp-v1-info-row {
    margin-top: 25px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
}

.pdp-template--v1 .pdp-v1-info-row__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: "Sul Mono", monospace;
}

.pdp-template--v1 .pdp-v1-info-row__item i {
    font-size: var(--pdp-v1-muted-font-size);
    line-height: 1;
    color: var(--pdp-v1-muted-color);
    position: relative;
    top: -1px;
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-info-row {
        margin-top: 10px;
    }

    .pdp-template--v1 .pdp-v1-info-row__item i {
        top: 0;
    }

    .pdp-template--v1 .pdp-v1-info-row {
        gap: 3px;
    }

    .pdp-template--v1 .pdp-v1-info-row__line,
    .pdp-template--v1 .pdp-v1-info-row__small {
        font-size: calc(var(--pdp-v1-muted-font-size) - 2px);
    }

    .pdp-template--v1 .pdp-v1-info-row__line {
        font-size: 0.7rem;
    }
}

.pdp-template--v1 .pdp-v1-info-row__line {
    margin: 0;
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-info-row__small {
    margin: 0;
    font-family: "Sul Mono", monospace;
    font-size: var(--pdp-v1-muted-font-size);
    line-height: var(--pdp-v1-muted-line-height);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pdp-v1-muted-color);
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-summary__meta-item + .pdp-v1-summary__meta-item {
    border-color: rgba(255, 255, 255, 0.4);
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-character-focus__dot {
    background: #6f6f6f;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-character-focus__dot.is-active {
    background: #C1FF00;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile {
    background: var(--pdp-v1-night-base-bg);
    border-color: transparent;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile:hover,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile:focus-visible,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile.is-selected {
    border-color: transparent;
    opacity: 1;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile.is-selected {
    border-color: #C1FF00;
    border-width: 3px;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-related-references__item,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile-image {
    background: var(--pdp-v1-night-base-bg);
    border-color: transparent;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-related-references__item:hover,
.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-related-references__item:focus-visible {
    border-color: transparent;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-summary__wishlist .jvm_add_to_wishlist_heart:before {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    text-stroke: 1px #ffffff;
}

.pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-summary__wishlist a.jvm_add_to_wishlist_added .jvm_add_to_wishlist_heart:before {
    color: #ffffff;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

@media (max-width: 1024px) {
    .pdp-template--v1 .pdp-v1-summary__header {
        align-items: center;
    }

    .pdp-template--v1 .pdp-v1-summary__title {
        font-size: 1.3rem;
    }

    .pdp-template--v1 .pdp-v1-summary__bullets {
        min-height: 0;
    }

    .pdp-template--v1 .pdp-v1-related-references__grid {
        max-width: 100%;
    }

    .pdp-template--v1 .pdp-v1-info-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-character-focus__tabs {
        gap: 30px;
    }

    .pdp-template--v1 .pdp-v1-hero__tabs--below-fold {
        margin: 60px auto 20px;
    }

    .pdp-template--v1 .pdp-v1-summary__meta {
        margin: 8px 0 27px;
    }

    .pdp-template--v1 .pdp-v1-summary__pricing {
        gap: 7px;
        margin-bottom: 27px;
    }

    .pdp-template--v1 .pdp-v1-summary__bullets {
        margin: 0 0 30px;
        min-height: auto;
        align-content: start;
        gap: 3px;
        font-size: calc(0.96rem);
        line-height: 1.05;
    }

    .pdp-template--v1 .pdp-v1-related-references {
        margin-bottom: 17px;
    }

    .pdp-template--v1 .pdp-v1-addons__tiles {
        margin-bottom: 27px;
    }

    .pdp-template--v1 .pdp-v1-gallery {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "main"
            "toggle";
        row-gap: 20px;
        align-content: center;
    }

    .pdp-template--v1 .pdp-v1-gallery__thumbs-wrap {
        position: absolute;
        top: 50%;
        left: min(50px, calc(770px - var(--pdp-v1-half-viewport-width)));
        right: auto;
        transform: translateY(-50%);
        width: 70px;
        z-index: 3;
    }

    .pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
        grid-area: toggle;
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        justify-self: center;
        margin-top: 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta {
        display: block;
        width: min(100%, 66%);
        margin-right: auto;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .pdp-template--v1 .pdp-v1-gallery__thumbs-wrap {
        left: min(30px, calc(770px - var(--pdp-v1-half-viewport-width)));
    }
}

@media (min-width: 1280px) {
    .pdp-template--v1 .pdp-v1-hero {
        min-height: 860px;
        display: flex;
        align-items: center;
    }

    .pdp-template--v1 .pdp-v1-hero__inner {
        min-height: 860px;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-hero__summary {
        display: flex;
        align-items: center;
    }

    .pdp-template--v1 .pdp-v1-hero__summary .summary.entry-summary {
        margin-block: auto;
    }

    .pdp-template--v1 .pdp-v1-hero__tabs {
        margin-top: auto;
    }
}

@media (max-width: 767px) {
    body.pdp-template--v1 {
        overflow-x: hidden;
    }

    body.pdp-template--v1 .main,
    body.pdp-template--v1 .main__content {
        overflow-x: clip;
    }

    .pdp-template--v1 .pdp-v1-hero__inner {
        padding: 0;
    }

    .pdp-template--v1 .pdp-v1-hero__grid {
        gap: 0;
    }

    .pdp-template--v1 .pdp-v1-hero__summary {
        padding: 20px 20px 0;
    }

    .pdp-template--v1 .pdp-v1-gallery {
        gap: 0;
    }

    .pdp-template--v1 .pdp-v1-gallery__main {
        width: var(--pdp-v1-viewport-width);
        margin-left: calc(50% - var(--pdp-v1-half-viewport-width));
        margin-right: calc(50% - var(--pdp-v1-half-viewport-width));
    }

    .pdp-template--v1 .pdp-v1-summary__meta {
        justify-content: flex-start;
        text-align: left;
    }

    .pdp-template--v1 .pdp-v1-summary__pricing {
        justify-items: flex-start;
        text-align: left;
    }

    .pdp-template--v1 .pdp-v1-summary__price {
        font-size: 1.28rem;
    }

    .pdp-template--v1 .pdp-v1-summary__wishlist {
        margin-top: -10px;
    }

    .pdp-template--v1 .pdp-v1-summary__bullets {
        font-size: 0.96rem;
        gap: 7px;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__slide {
        aspect-ratio: 4 / 5;
    }

    .pdp-template--v1 .pdp-v1-character-carousel__arrow {
        display: none;
    }

    .pdp-template--v1 .pdp-v1-addons {
        margin-top: 0;
    }

    .pdp-template--v1 .pdp-v1-addons__tiles {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
    }

    .pdp-template--v1 .pdp-v1-addons__tiles::-webkit-scrollbar {
        display: none;
    }

    .pdp-template--v1 .pdp-v1-addons__tile {
        flex: 0 0 100%;
        width: 100%;
        min-height: 76px;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr) 42px;
        align-items: center;
        gap: 10px;
        padding: 6px;
        border: 1px solid #c3c3c3;
        background: #efefef;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        opacity: 1;
    }

    .pdp-template--v1 .pdp-v1-addons__tile:hover,
    .pdp-template--v1 .pdp-v1-addons__tile:focus-visible,
    .pdp-template--v1 .pdp-v1-addons__tile.is-selected {
        opacity: 1;
    }

    .pdp-template--v1 .pdp-v1-addons__tile.is-selected {
        border: 3px solid #C1FF00;
        padding: 4px;
    }

    .pdp-template--v1 .pdp-v1-addons__tile-image {
        width: 64px;
        height: 64px;
        min-height: 64px;
        border: 1px solid #cbcbcb;
        background: #ffffff;
    }

    .pdp-template--v1 .pdp-v1-addons__tile-content {
        min-width: 0;
        display: grid;
        gap: 3px;
        text-align: left;
    }

    .pdp-template--v1 .pdp-v1-addons__tile-name {
        display: block;
        font-family: "Sul Mono", monospace;
        font-size: 0.63rem;
        line-height: 1.35;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #2d2d2d;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: calc(1.35em * 2);
    }

    .pdp-template--v1 .pdp-v1-addons__tile-price-inline {
        display: block;
        font-family: "Sul Mono", monospace;
        font-size: 0.78rem;
        line-height: 1.2;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #1f1f1f;
    }

    .pdp-template--v1 .pdp-v1-addons__tile-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 0;
        background: #C1FF00;
        font-family: "Sul Mono", monospace;
        font-size: 1.35rem;
        line-height: 1;
        color: #111111;
        pointer-events: none;
    }

    .pdp-template--v1 .pdp-v1-addons__tile-overlay {
        display: none !important;
    }

    .pdp-template--v1 .pdp-v1-addons__tile::before,
    .pdp-template--v1 .pdp-v1-addons__tile::after {
        content: none !important;
    }

    .pdp-template--v1 .pdp-v1-addons__carousel-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin: 0 0 10px;
    }

    .pdp-template--v1 .pdp-v1-addons__carousel-dot {
        width: 5px;
        height: 5px;
        border: 0;
        border-radius: 50%;
        padding: 0;
        margin: 0;
        background: #b0b0b0;
        opacity: 0.6;
    }

    .pdp-template--v1 .pdp-v1-addons__carousel-dot.is-active {
        background: #5b5b5b;
        opacity: 1;
    }

    .pdp-template--v1 #cookiescript_injected #cookiescript_checkboxs {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 0 !important;
        row-gap: 0 !important;
    }

    .pdp-template--v1 #cookiescript_injected .cookiescript_checkbox {
        float: none !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .pdp-template--v1 .pdp-v1-gallery__main {
        aspect-ratio: 5 / 6;
        overflow: hidden;
    }

    .pdp-template--v1 .pdp-v1-gallery__main-image {
        object-fit: cover;
        transform: scale(1.2);
        transform-origin: center center;
    }

    .pdp-template--v1 .pdp-v1-gallery__toggle-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        z-index: 4;
        justify-self: center;
        margin-top: -50px;
        margin-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-gallery__toggle {
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .pdp-template--v1 .pdp-v1-gallery__bullets {
        margin-top: 10px;
    }

    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle {
        background: rgba(0, 0, 0, 0.5);
    }

    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile-name,
    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-addons__tile-price-inline {
        color: var(--pdp-v1-muted-color);
    }

    .pdp-template--v1 .pdp-v1-mobile-cta {
        display: contents;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-content: start;
        gap: 10px;
        padding: 10px 14px max(8px, env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.5);
        border-top: 1px solid rgba(30, 30, 30, 0.14);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        max-width: 100vw;
        box-sizing: border-box;
        opacity: 0;
        pointer-events: none;
        transform: translateY(14px);
        transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated.is-night,
    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-mobile-cta.is-activated {
        background: rgba(0, 0, 0, 0.56);
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .single_add_to_cart_button {
        margin-top: 0 !important;
        min-height: 42px;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-mobile-cta__links {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        width: 100%;
        margin: 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-mobile-cta__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 0;
        border: 0;
        background: transparent;
        color: #646464;
        font-family: "Sul Mono", monospace;
        font-size: 0.75rem;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 4px 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-mobile-cta__link.is-active {
        border: 0;
        background: transparent;
        color: #3d3e3c;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-mobile-cta__link:focus-visible {
        outline: 2px solid #3d3e3c;
        outline-offset: 2px;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay {
        margin-top: 0;
        margin-bottom: 0;
        min-height: 0;
        max-height: none;
        overflow: visible;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px;
        width: 100%;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay__slot {
        min-height: 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta [data-pdp-v1-addons],
    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-addons__select {
        display: none !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.is-ready) {
        display: grid !important;
        opacity: 0 !important;
        pointer-events: none !important;
        max-height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.is-ready) .pdp-v1-express-pay__slot {
        min-height: 0 !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay.is-ready {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay.is-ready .pdp-v1-express-pay__slot {
        min-height: 40px;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.has-buttons) {
        display: grid !important;
        opacity: 0 !important;
        pointer-events: none !important;
        max-height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.has-primary-buttons) .pdp-v1-express-pay__slot--primary,
    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.has-secondary-buttons) .pdp-v1-express-pay__slot--secondary {
        display: none !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay:not(.has-secondary-buttons),
    .pdp-template--v1 .pdp-v1-mobile-cta .pdp-v1-express-pay.is-primary-only {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated .pdp-v1-express-pay {
        display: none !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated .pdp-v1-mobile-cta__links {
        display: grid;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated.is-night .pdp-v1-mobile-cta__link,
    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-mobile-cta.is-activated .pdp-v1-mobile-cta__link {
        border: 0;
        background: transparent;
        color: rgba(243, 243, 243, 0.84);
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated.is-night .pdp-v1-mobile-cta__link.is-active,
    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-mobile-cta.is-activated .pdp-v1-mobile-cta__link.is-active {
        border: 0;
        background: transparent;
        color: #f3f3f3;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta.is-activated.is-night .pdp-v1-mobile-cta__link:focus-visible,
    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-mobile-cta.is-activated .pdp-v1-mobile-cta__link:focus-visible {
        outline-color: #f3f3f3;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-element {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-height: none;
        min-height: 0 !important;
        height: auto !important;
        align-content: start;
        gap: 8px !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-element > .StripeElement {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-element-googlePay {
        overflow: hidden !important;
        background: #000000 !important;
        border: 0 !important;
        box-shadow: none !important;
        position: relative;
        line-height: 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-element-googlePay::after {
        content: "" !important;
        position: absolute;
        top: 0;
        right: -1px;
        width: 12px;
        height: 100%;
        background: #000000;
        pointer-events: none;
        z-index: 4;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-element-googlePay iframe {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        display: block !important;
        background: #000000 !important;
        line-height: 0;
    }

    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout__order-attribution-inputs,
    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-express-checkout-button-separator,
    .pdp-template--v1 .pdp-v1-mobile-cta #wc-stripe-payment-request-button-separator {
        display: none !important;
    }

    .pdp-template--v1 .pdp-v1-hero {
        padding-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-hero__tabs {
        margin-top: 0;
        margin-bottom: 0;
    }

    .pdp-template--v1 .pdp-v1-below-fold {
        margin-top: -1px;
    }

    .pdp-template--v1 .pdp-v1-below-fold__inner {
        padding-top: 20px;
    }

    .pdp-template--v1 .pdp-v1-character-focus {
        padding: 20px 0 30px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__grid {
        gap: 18px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__content {
        gap: 14px;
        min-height: 0;
    }

    .pdp-template--v1 .pdp-v1-character-focus__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin: -2px 0 4px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__panels {
        min-height: 0 !important;
        height: auto;
    }

    .pdp-template--v1 .pdp-v1-character-focus__panel {
        gap: 8px;
        min-height: 0;
    }

    .pdp-template--v1 .pdp-v1-character-focus__heading {
        margin: 20px 0;
    }

    .pdp-template--v1 .pdp-v1-character-focus__subtitle {
        margin-top: 6px;
    }

    .pdp-template--v1 .pdp-v1-character-focus__body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .pdp-template--v1 .pdp-v1-character-video {
        margin-top: 30px;
    }

    .pdp-template--v1 .pdp-v1-info-row__item i,
    .pdp-template--v1 .pdp-v1-info-row__line,
    .pdp-template--v1 .pdp-v1-info-row__small {
        font-size: 0.62rem;
    }

    .pdp-template--v1 .pdp-v1-info-row {
        margin-top: 5px;
        justify-items: start;
    }

    .pdp-template--v1 .pdp-v1-info-row__item {
        width: 100%;
        justify-content: flex-start;
    }

    .pdp-template--v1 .pdp-v1-info-row__line,
    .pdp-template--v1 .pdp-v1-info-row__small {
        text-align: left;
    }

    .pdp-template--v1 .wp-block-group--advantages .wp-block-group {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .pdp-template--v1 .wp-block-group--advantages.is-layout-flex,
    .pdp-template--v1 .wp-block-group--advantages.wp-block-group-is-layout-flex {
        justify-content: center !important;
        align-items: center !important;
    }

    .pdp-template--v1 .wp-block-group--advantages h3.wp-block-heading {
        text-align: center !important;
        width: 100%;
    }

    .pdp-template--v1 .wp-block-group--advantages {
        text-align: center !important;
    }

    .pdp-template--v1 .pdp-v1-info-row {
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .pdp-template--v1 .pdp-v1-express-pay {
        min-height: 0;
        max-height: none;
        overflow: visible;
        grid-template-columns: minmax(0, 1fr);
    }

    .pdp-template--v1 .pdp-v1-express-pay__slot,
    .pdp-template--v1 #wc-stripe-express-checkout-element {
        max-height: none;
        overflow: visible;
    }

    .pdp-template--v1 #wc-stripe-express-checkout-element {
        grid-template-columns: minmax(0, 1fr);
    }

}

@media (min-width: 641px) {
    .pdp-template--v1 .pdp-v1-express-pay {
        min-height: 46px;
        max-height: none;
        overflow: visible;
    }

    .pdp-template--v1 .pdp-v1-express-pay__slot,
    .pdp-template--v1 #wc-stripe-express-checkout-element {
        max-height: none;
        overflow: hidden;
    }

    .pdp-template--v1 .pdp-v1-express-pay #wc-stripe-express-checkout-element {
        width: calc(100% + 8px) !important;
        max-width: none !important;
        margin-right: -8px !important;
    }
}

@media (min-width: 1025px) {
    .pdp-template--v1 .pdp-v1-express-pay.has-buttons {
        margin-bottom: -68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pdp-template--v1 .pdp-v1-hero,
    .pdp-template--v1 .pdp-v1-hero *,
    .pdp-template--v1 .pdp-v1-mobile-cta,
    .pdp-template--v1 .pdp-v1-lightbox {
        transition: none !important;
    }

    .pdp-template--v1 .pdp-v1-hero.pdp-v1-hero--night .pdp-v1-gallery__toggle-icon--moon {
        animation: none !important;
    }
}
