:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --ink: #111;
    --muted: #666;
    --line: rgba(0, 0, 0, 0.12);
    --accent: #0d57a7;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    width: 100%;
}

.page-wrap {
    width: 100%;
    height: 100%;
}

.top-header {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: #f4f4f4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
    padding: 18px 25px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

#scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #111;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.top-header a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-back {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    animation: bounceLeft 2s infinite;
}

.header-back svg {
    width: 18px;
    height: 18px;
    display: block;
}

@keyframes bounceLeft {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-50%) translateX(0); }
    40%  { transform: translateY(-50%) translateX(-8px); }
    60%  { transform: translateY(-50%) translateX(-4px); }
}

.top-header img {
    height: 80px;
    width: auto;
    max-width: min(75vw, 100%);
    display: block;
    transition: height 0.5s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

.top-header.shrink {
    height: 54px;
    padding: 4px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.top-header.shrink img {
    height: 38px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    margin-top: 90px;
    height: calc(100vh - 90px);
    transition: margin-top 0.5s cubic-bezier(.4, 0, .2, 1), height 0.5s cubic-bezier(.4, 0, .2, 1);
}

.top-header.shrink + .content-grid {
    margin-top: 54px;
    height: calc(100vh - 54px);
}

.viewer-panel {
    position: sticky;
    top: 0;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-right: 1px solid var(--line);
}

.viewer-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.loading-screen {
    position: absolute;
    inset: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 1s ease, visibility 0s linear 1s;
}

.loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen .container {
    width: 64px;
    min-height: 160px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-screen .ball {
    width: 10px;
    height: 10px;
    margin: 6px 0;
    border-radius: 50px;
}

.loading-screen .ball:nth-child(1) {
    background: #ffffff;
    -webkit-animation: right 1s infinite ease-in-out;
    -moz-animation: right 1s infinite ease-in-out;
    animation: right 1s infinite ease-in-out;
}

.loading-screen .ball:nth-child(2) {
    background: #ffffff;
    -webkit-animation: left 1.1s infinite ease-in-out;
    -moz-animation: left 1.1s infinite ease-in-out;
    animation: left 1.1s infinite ease-in-out;
}

.loading-screen .ball:nth-child(3) {
    background: #ffffff;
    -webkit-animation: right 1.05s infinite ease-in-out;
    -moz-animation: right 1.05s infinite ease-in-out;
    animation: right 1.05s infinite ease-in-out;
}

.loading-screen .ball:nth-child(4) {
    background: #ffffff;
    -webkit-animation: left 1.15s infinite ease-in-out;
    -moz-animation: left 1.15s infinite ease-in-out;
    animation: left 1.15s infinite ease-in-out;
}

.loading-screen .ball:nth-child(5) {
    background: #ffffff;
    -webkit-animation: right 1.1s infinite ease-in-out;
    -moz-animation: right 1.1s infinite ease-in-out;
    animation: right 1.1s infinite ease-in-out;
}

.loading-screen .ball:nth-child(6) {
    background: #ffffff;
    -webkit-animation: left 1.05s infinite ease-in-out;
    -moz-animation: left 1.05s infinite ease-in-out;
    animation: left 1.05s infinite ease-in-out;
}

.loading-screen .ball:nth-child(7) {
    background: #ffffff;
    -webkit-animation: right 1s infinite ease-in-out;
    -moz-animation: right 1s infinite ease-in-out;
    animation: right 1s infinite ease-in-out;
}

@-webkit-keyframes right {
    0% {
        -webkit-transform: translate(-15px);
    }

    50% {
        -webkit-transform: translate(15px);
    }

    100% {
        -webkit-transform: translate(-15px);
    }
}

@-webkit-keyframes left {
    0% {
        -webkit-transform: translate(15px);
    }

    50% {
        -webkit-transform: translate(-15px);
    }

    100% {
        -webkit-transform: translate(15px);
    }
}

@-moz-keyframes right {
    0% {
        -moz-transform: translate(-15px);
    }

    50% {
        -moz-transform: translate(15px);
    }

    100% {
        -moz-transform: translate(-15px);
    }
}

@-moz-keyframes left {
    0% {
        -moz-transform: translate(15px);
    }

    50% {
        -moz-transform: translate(-15px);
    }

    100% {
        -moz-transform: translate(15px);
    }
}

@keyframes right {
    0% {
        transform: translate(-15px);
    }

    50% {
        transform: translate(15px);
    }

    100% {
        transform: translate(-15px);
    }
}

@keyframes left {
    0% {
        transform: translate(15px);
    }

    50% {
        transform: translate(-15px);
    }

    100% {
        transform: translate(15px);
    }
}

.viewer-canvas canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.article-panel {
    padding: 48px 120px 0 120px;
    background: #ececec;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-panel > * {
    width: 100%;
    max-width: 520px;
    text-align: center;
}

.article-panel h1 {
    margin: 0 0 32px 0;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: #111;
}

.article-panel p {
    margin: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.article-photo {
    margin: 0 0 24px 0;
}

.article-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
}

.specs-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    width: 100%;
    max-width: 520px;
}

.specs-section h2 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 28px 0;
    letter-spacing: -0.01em;
    text-align: center;
}

.spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaa;
}

.spec-value {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.viewer-overlay {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.viewer-overlay button {
    pointer-events: auto;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #111;
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    outline: none;
}

.viewer-overlay button svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}

.viewer-overlay button:hover {
    transform: translateY(-1px);
    background: rgba(200, 200, 200, 0.55);
}

.viewer-overlay #btnToggleRotation.paused {
    background: rgba(16, 108, 58, 0.20);
    color: #0a6a2e;
}

.viewer-overlay .grow {
    margin-left: auto;
}

.viewer-overlay #btnFullscreen {
    all: unset;
    position: absolute;
    right: 12px;
    bottom: 12px;
    pointer-events: auto;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 12;
    transition: transform 0.2s ease;
}

.viewer-overlay #btnFullscreen:hover {
    transform: scale(1.06);
}

.viewer-overlay #btnFullscreen:focus-visible {
    outline: none;
}

.viewer-overlay #btnFullscreen svg {
    width: 100%;
    height: 100%;
    padding: 0;
    fill: #111111;
}

.viewer-panel:fullscreen,
.viewer-panel:-webkit-full-screen {
    background: #fff;
    padding: 0;
    margin: 0;
    border: 0;
}

.viewer-panel:fullscreen .viewer-canvas,
.viewer-panel:-webkit-full-screen .viewer-canvas {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.viewer-panel:fullscreen .viewer-overlay #btnFullscreen,
.viewer-panel:-webkit-full-screen .viewer-overlay #btnFullscreen {
    width: 22px;
    height: 22px;
}

.viewer-overlay #btnFullscreen path {
    transition: transform .25s ease-in;
    transform-origin: 50% 50%;
}

.viewer-overlay #btnFullscreen[aria-label^="C"] path {
    transform: translate(62%, 62%);
}

.viewer-overlay #btnFullscreen[aria-label^="C"] path:nth-of-type(2) {
    transform: translate(-62%, 62%);
}

.viewer-overlay #btnFullscreen[aria-label^="C"] path:nth-of-type(3) {
    transform: translate(-62%, -62%);
}

.viewer-overlay #btnFullscreen[aria-label^="C"] path:nth-of-type(4) {
    transform: translate(62%, -62%);
}

@media (max-width: 1280px) {
    body {
        height: auto;
        overflow: auto;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .page-wrap {
        height: auto;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .top-header {
        min-height: 74px;
        height: 72px;
        padding: 14px 16px 10px;
        width: 100%;
        max-width: 100%;
    }

    .header-back {
        left: 16px;
        width: 22px;
        height: 22px;
    }

    .top-header img {
        top: 50%;
        width: auto;
        height: 38px;
        max-width: calc(100% - 112px);
        object-fit: contain;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .top-header.shrink img {
        width: auto;
        height: 38px;
        max-width: calc(100% - 112px);
    }

    .content-grid {
        display: block;
        margin-top: 72px;
        height: auto;
    }

    .top-header.shrink + .content-grid {
        margin-top: 72px;
        height: auto;
    }

    .viewer-panel {
        min-height: auto;
        height: auto;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        overflow: hidden;
        background: #fff;
    }

    .viewer-canvas {
        height: 44vh;
        min-height: 320px;
        border-radius: 0;
        overflow: hidden;
    }

    .viewer-overlay {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .viewer-overlay #btnFullscreen {
        right: 8px;
        bottom: 8px;
        width: 20px;
        height: 20px;
    }

    .viewer-overlay button {
        width: 26px;
        height: 26px;
        font-size: 11px;
        padding: 0;
    }

    .viewer-overlay button svg {
        width: 13px;
        height: 13px;
    }

    .article-panel {
        display: block;
        overflow: hidden;
        height: auto;
        padding: 24px 24px 0;
        background: #ececec;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .article-panel > * {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .article-photo img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        display: block;
    }

    .footer-zone {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 40px;
        margin-bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    .footer-zone > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .footer-banner,
    .footer-ticker,
    .footer-top-socials,
    .footer-brand {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-ticker ul {
        width: 100%;
        animation-duration: 240s;
    }

    .footer-zone footer {
        padding: 34px 16px 22px;
        margin-bottom: 0;
    }

    .footer-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        max-width: 92vw;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .article-panel h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .article-panel p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .specs-section {
        margin-top: 28px;
        padding-top: 20px;
        max-width: 100%;
    }

    .spec-row {
        grid-template-columns: 90px 1fr;
        gap: 12px;
        padding-bottom: 12px;
    }

    .specs-section h2 {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .spec-label {
        font-size: 9px;
    }

    .spec-value {
        font-size: 12px;
    }

    .scroll-downs {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        height: auto;
        overflow: auto;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .page-wrap {
        height: auto;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .top-header {
        min-height: 74px;
        height: 72px;
        padding: 14px 16px 10px;
        width: 100%;
        max-width: 100%;
    }

    .header-back {
        left: 16px;
        width: 22px;
        height: 22px;
    }

    .top-header img {
        top: 50%;
        width: auto;
        height: 38px;
        max-width: calc(100% - 112px);
        object-fit: contain;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .top-header.shrink img {
        width: auto;
        height: 38px;
        max-width: calc(100% - 112px);
    }

    .content-grid {
        display: block;
        margin-top: 72px;
        height: auto;
    }

    .top-header.shrink + .content-grid {
        margin-top: 72px;
        height: auto;
    }

    .viewer-panel {
        min-height: auto;
        height: auto;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        overflow: hidden;
        background: #fff;
    }

    .viewer-canvas {
        height: 44vh;
        min-height: 280px;
        border-radius: 0;
        overflow: hidden;
    }

    .viewer-overlay {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .viewer-overlay #btnFullscreen {
        right: 8px;
        bottom: 8px;
        width: 20px;
        height: 20px;
    }

    .viewer-overlay button {
        width: 26px;
        height: 26px;
        font-size: 11px;
        padding: 0;
    }

    .viewer-overlay button svg {
        width: 13px;
        height: 13px;
    }

    .viewer-panel:fullscreen,
    .viewer-panel:-webkit-full-screen {
        width: 100vh;
        height: 100vw;
        max-width: none;
        max-height: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center center;
        z-index: 9999;
    }

    .viewer-panel:fullscreen .viewer-canvas,
    .viewer-panel:-webkit-full-screen .viewer-canvas {
        height: 100%;
        min-height: 0;
    }

    .viewer-panel:fullscreen .viewer-overlay #btnFullscreen,
    .viewer-panel:-webkit-full-screen .viewer-overlay #btnFullscreen {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 430px) {
    .top-header {
        min-height: 70px;
        padding: 12px 14px 8px;
    }

    .header-back {
        left: 14px;
    }

    .top-header img {
        width: auto;
        height: 46px;
        max-width: calc(100% - 96px);
    }

    .article-panel {
        display: block;
        overflow: hidden;
        height: auto;
        padding: 24px 12px 0;
        background: #ececec;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .article-panel > * {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .article-photo img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        display: block;
    }

    .footer-zone {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 40px;
        margin-bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    .footer-zone > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .footer-banner {
        width: 100% !important;
        overflow: hidden;
    }

    .footer-ticker {
        width: 100%;
        overflow: hidden;
    }

    .footer-ticker ul {
        width: 100%;
        animation-duration: 20s;
    }

    .footer-top-socials {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-brand {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-zone footer {
        padding: 34px 16px 22px;
        margin-bottom: 0;
    }

    .footer-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        max-width: 92vw;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .article-panel h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .article-panel p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .specs-section {
        margin-top: 28px;
        padding-top: 20px;
        max-width: 100%;
    }

    .specs-section h2 {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .spec-row {
        grid-template-columns: 90px 1fr;
        gap: 12px;
        padding-bottom: 12px;
    }

    .spec-label {
        font-size: 9px;
    }

    .spec-value {
        font-size: 12px;
    }

    .scroll-downs {
        display: none;
    }
}

.footer-zone {
    width: calc(100% + 240px);
    margin-left: -120px;
    margin-right: -120px;
    max-width: none !important;
    margin-top: 60px;
}

.footer-zone > * {
    max-width: 100% !important;
    width: 100% !important;
}

.footer-top-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-top-socials a {
    display: inline-block;
    text-decoration: none;
    line-height: normal;
}

.footer-top-socials img {
    width: 15px;
    height: 15px;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    vertical-align: top;
}

.footer-brand {
    text-align: center;
    margin-bottom: 0;
    line-height: normal;
}

.footer-brand img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.footer-banner {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.footer-ticker {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.footer-ticker ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    animation: footerScroll 240s linear infinite reverse;
}

.footer-ticker ul li img {
    height: 24px;
    width: auto;
    display: block;
}

@keyframes footerScroll {
    to { transform: translateX(-100%); }
}

@media (max-width: 760px) {
    .footer-zone .footer-ticker ul {
        animation: footerScroll 20s linear infinite reverse !important;
    }
}

.footer-zone footer {
    background: #000;
    color: #fff;
    padding: 40px 24px 24px;
    font-size: 10px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 18px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
}

.footer-col {
    padding: 0 4px;
}

.footer-col strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-col a,
.footer-col button {
    color: #fff;
    text-decoration: none;
    display: table;
    margin: 5px auto;
    padding: 0;
    font-size: 10px;
    position: relative;
    line-height: 1.35;
    border: 0;
    background: transparent;
}

.footer-col a[data-i18n="footer_help_returns"],
.footer-col button[data-i18n="footer_help_returns"],
.footer-col a[data-i18n="footer_gift_card_terms"],
.footer-col button[data-i18n="footer_gift_card_terms"] {
    white-space: nowrap;
}

.footer-col a::after,
.footer-col button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.footer-col a:hover::after,
.footer-col a.footer-link-active::after,
.footer-col button:hover::after,
.footer-col button.footer-link-active::after {
    transform: scaleX(1);
}

.footer-bottom-row {
    border-top: 1px solid #555;
    margin-top: 30px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    font-size: 10px;
}

.footer-bottom-row > div:first-child {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    white-space: pre-line;
}

.footer-lang span {
    cursor: pointer;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.footer-lang {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-lang .lang-separator {
    opacity: 0.85;
    cursor: default;
    pointer-events: none;
}

.footer-lang .lang-separator::after {
    display: none;
}

.footer-lang span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.footer-lang span:hover::after,
.footer-lang span.lang-active::after {
    transform: scaleX(1);
}

.scroll-downs {
    position: fixed;
    left: calc(50% + 16px);
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 30px;
    z-index: 200;
    pointer-events: none;
}

.mousey {
    width: 1.5px;
    padding: 5px 7px;
    height: 16px;
    border: 1.5px solid #000;
    border-radius: 25px;
    opacity: 1;
    box-sizing: content-box;
}

.scroller {
    width: 1.5px;
    height: 5px;
    border-radius: 25%;
    background-color: #000;
    animation-name: scrollAnim;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

@keyframes scrollAnim {
    0%   { opacity: 0; }
    10%  { transform: translateY(0);   opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

@media (max-width: 1280px) {
    .scroll-downs {
        left: auto;
        right: 16px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
}

@media (max-width: 825px) {
    .footer-zone footer {
        padding: 34px 16px 22px;
    }

    .footer-cols {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px 20px !important;
        max-width: 520px !important;
        margin: 0 auto !important;
        padding: 0 12px !important;
    }

    .footer-col {
        padding: 0 2px !important;
        text-align: center !important;
    }

    .footer-col strong {
        font-size: 14px;
    }

    .footer-col a,
    .footer-col button {
        margin: 5px auto;
        padding: 0 8px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.5;
    }

    .footer-bottom-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 10px;
        margin-top: 30px !important;
        padding-top: 16px;
    }

    .footer-lang {
        justify-content: flex-end;
    }
}

@media (max-width: 430px) {
    .footer-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 92vw !important;
        gap: 32px 20px !important;
        padding: 0 12px !important;
        transform: scale(0.92);
        transform-origin: top center;
    }

    .footer-col a,
    .footer-col button {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }

    .footer-col a[data-i18n="footer_help_returns"],
    .footer-col button[data-i18n="footer_help_returns"],
    .footer-col a[data-i18n="footer_gift_card_terms"],
    .footer-col button[data-i18n="footer_gift_card_terms"] {
        white-space: nowrap;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .footer-lang {
        justify-content: center;
    }
}

@media (min-width: 431px) and (max-width: 1280px) {
    .top-header {
        min-height: 78px !important;
        height: 78px !important;
        padding: 14px 18px 10px !important;
    }

    .top-header img {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: auto !important;
        height: 52px !important;
        max-width: calc(100% - 112px) !important;
        object-fit: contain !important;
        transform: translate(-50%, -50%) !important;
    }

    .top-header.shrink img {
        height: 40px !important;
        max-width: calc(100% - 112px) !important;
    }

    .footer-zone {
        width: calc(100% + 48px) !important;
        max-width: none !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .footer-zone > * {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer-zone footer {
        width: 100% !important;
        max-width: 100% !important;
        padding: 34px 20px 22px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .footer-cols {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 20px !important;
        max-width: 520px !important;
        margin: 0 auto !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }

    .footer-col {
        padding: 0 2px !important;
        text-align: center !important;
    }

    .footer-col strong {
        font-size: 14px !important;
    }

    .footer-col a,
    .footer-col button {
        margin: 5px auto;
        padding: 0 8px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1.5;
    }

    .footer-bottom-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        gap: 8px !important;
        margin-top: 30px !important;
        padding-top: 16px !important;
        box-sizing: border-box !important;
    }

    .footer-lang {
        justify-content: flex-end !important;
    }

    .footer-zone .footer-ticker ul {
        animation: footerScroll 20s linear infinite reverse !important;
    }
}

body.closed-storefront-page .principal-music-player {
    --principal-music-notch-scrollbar-offset: 32px !important;
}

@media (max-width: 1024px) {
    body.closed-storefront-page .principal-music-player {
        --principal-music-notch-scrollbar-offset: 0px !important;
    }
}