.home-contact-channels {
    --contact-block-height: 600px;

    width: 100%;
    margin: 72px 0 88px;
    color: #111;
    font-family: "Manrope", Arial, sans-serif;
}

.home-contact-channels *,
.home-contact-channels *::before,
.home-contact-channels *::after {
    box-sizing: border-box;
}

.home-contact-channels__inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.home-contact-channels__title {
    margin: 0 0 clamp(34px, 5vw, 64px);
    font-family: var(--font-display, "Bodoni Moda", serif);
    font-size: clamp(58px, 9vw, 136px);
    line-height: 0.78;
    font-weight: 500;
    letter-spacing: -0.085em;
    text-align: center;
    color: #111;
}

.home-contact-channels__tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0 0 48px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.home-contact-channels__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.home-contact-channels__tabs::before,
.home-contact-channels__tabs::after {
    content: none;
}

.home-contact-channels__tab {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1.5px solid #111;
    border-radius: 0;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.035em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-contact-channels__tab:hover,
.home-contact-channels__tab:focus-visible {
    background: #f3f3f3;
}

.home-contact-channels__tab.is-active,
.home-contact-channels__tab[aria-selected="true"] {
    background: #111;
    color: #fff;
    border-color: #111;
}

.home-contact-channels__tab.is-active:hover,
.home-contact-channels__tab.is-active:focus-visible,
.home-contact-channels__tab[aria-selected="true"]:hover,
.home-contact-channels__tab[aria-selected="true"]:focus-visible {
    background: #111;
    color: #fff;
}

.home-contact-channels__details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 50px;
    padding: 0 30px;
    border: 2px solid #111;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.home-contact-channels__details-link:hover,
.home-contact-channels__details-link:focus-visible {
    background: #111;
    color: #fff;
}

.home-contact-channels__mobile-details {
    display: none;
}

.home-contact-channels__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
}

.home-contact-channels__gallery-col,
.home-contact-channels__info-col {
    min-width: 0;
}

.home-contact-channels__gallery {
    --contact-dot-fill: #fff;
    --contact-dot-ring: rgba(17, 17, 17, 0.34);
    --contact-dot-shell: rgba(17, 17, 17, 0.18);
    --contact-dot-shell-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);

    position: relative;
    width: 100%;
    height: var(--contact-block-height);
    overflow: hidden;
    background: #f3f3f3;
    touch-action: pan-x pan-y;
}

.home-contact-channels__gallery.is-dot-tone-light {
    --contact-dot-fill: #111;
    --contact-dot-ring: rgba(255, 255, 255, 0.82);
    --contact-dot-shell: rgba(255, 255, 255, 0.76);
    --contact-dot-shell-shadow: 0 8px 22px rgba(17, 17, 17, 0.14);
}

.home-contact-channels__gallery.is-dot-tone-dark {
    --contact-dot-fill: #fff;
    --contact-dot-ring: rgba(17, 17, 17, 0.42);
    --contact-dot-shell: rgba(17, 17, 17, 0.22);
    --contact-dot-shell-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.home-contact-channels__gallery.is-dot-tone-balanced {
    --contact-dot-fill: #fff;
    --contact-dot-ring: rgba(17, 17, 17, 0.55);
    --contact-dot-shell: rgba(17, 17, 17, 0.2);
    --contact-dot-shell-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.home-contact-channels__gallery[hidden] {
    display: none;
}

/* Нативный свайп: реальная горизонтальная лента */
.home-contact-channels__slides {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
}

.home-contact-channels__slides::-webkit-scrollbar {
    display: none;
}

.home-contact-channels__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    margin: 0;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.home-contact-channels__slide.is-active {
    opacity: 1;
    transform: none;
}

.home-contact-channels__slides,
.home-contact-channels__slide,
.home-contact-channels__slide img {
    user-select: none;
    -webkit-user-select: none;
}

.home-contact-channels__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-user-drag: none;
}

.home-contact-channels__slide--material {
    padding: 18px;
    background: #f3f3f3;
}

.home-contact-channels__slide--material img {
    object-fit: contain;
    background: #fff;
}

.home-contact-channels__gallery.is-dragging {
    cursor: grabbing;
}

.home-contact-channels__counter {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 40px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.home-contact-channels__arrow {
    appearance: none;
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 42px;
    line-height: 0.8;
    font-weight: 300;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition:
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.home-contact-channels__gallery:hover .home-contact-channels__arrow,
.home-contact-channels__gallery:focus-within .home-contact-channels__arrow {
    opacity: 1;
}

.home-contact-channels__arrow:hover,
.home-contact-channels__arrow:focus-visible {
    background: #fff;
}

.home-contact-channels__arrow--prev {
    left: 16px;
}

.home-contact-channels__arrow--next {
    right: 16px;
}

/* Desktop: нижние точки скрыты */
.home-contact-channels__dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.home-contact-channels__dots::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: var(--contact-dot-shell);
    box-shadow: var(--contact-dot-shell-shadow);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    pointer-events: none;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-contact-channels__dot {
    appearance: none;
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid var(--contact-dot-ring);
    border-radius: 999px;
    background: var(--contact-dot-fill);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    opacity: 0.72;
    transition:
        width 0.3s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.home-contact-channels__dot.is-active {
    width: 32px;
    background: var(--contact-dot-fill);
    opacity: 1;
}

.home-contact-channels__info {
    position: relative;
    width: 100%;
    height: var(--contact-block-height);
    overflow: hidden;
    border: 2px solid #111;
    background: #fff;
}

.home-contact-channels__info[hidden] {
    display: none;
}

.home-contact-channels__scroll {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.3) transparent;
}

.home-contact-channels__scroll::-webkit-scrollbar {
    width: 6px;
}

.home-contact-channels__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.home-contact-channels__scroll::-webkit-scrollbar-thumb {
    background-color: rgba(17, 17, 17, 0.3);
    border-radius: 3px;
}

.home-contact-channels__scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(17, 17, 17, 0.5);
}

.home-contact-channels__info-header {
    position: relative;
    min-height: 188px;
    padding: 48px 32px 32px;
    border-bottom: 2px solid #111;
    background: #fff;
}

.home-contact-channels__bg-number {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 1;
    font-size: 120px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.08em;
    color: rgba(17, 17, 17, 0.035);
    pointer-events: none;
    user-select: none;
}

.home-contact-channels__info-title {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0;
    font-size: clamp(42px, 4.4vw, 58px);
    line-height: 1.12;
    font-weight: 300;
    letter-spacing: -0.055em;
    color: #111;
}

.home-contact-channels__description {
    padding: 38px 32px;
    background: #fafafa;
}

.home-contact-channels__description p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #111;
}

.home-contact-channels__key-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    border-bottom: 2px solid #111;
}

.home-contact-channels__key-item {
    min-width: 0;
    padding: 32px;
    border-top: 2px solid #111;
    background: #fff;
    color: #111;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.home-contact-channels__key-item:nth-child(1) {
    border-right: 2px solid #111;
}

.home-contact-channels__key-item--wide {
    grid-column: 1 / -1;
}

.home-contact-channels__key-item:hover {
    background: #111;
    color: #fff;
}

.home-contact-channels__key-label {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: currentColor;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.home-contact-channels__key-item:hover .home-contact-channels__key-label {
    opacity: 0.62;
}

.home-contact-channels__key-value {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 300;
    color: currentColor;
}

.home-contact-channels__key-value a {
    color: currentColor;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition:
        border-color 0.3s ease,
        opacity 0.3s ease;
}

.home-contact-channels__key-value a:hover,
.home-contact-channels__key-value a:focus-visible {
    opacity: 0.7;
    border-bottom-color: transparent;
}

.home-contact-channels__special {
    position: relative;
    padding: 32px;
}

.home-contact-channels__special-item {
    position: relative;
    margin: 0 0 32px;
}

.home-contact-channels__special-item:last-child {
    margin-bottom: 0;
}

.home-contact-channels__special-line {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1px;
    background: #111;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 0.7s ease;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-line {
    transform: translateY(-50%) scaleX(1);
}

.home-contact-channels__special-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.home-contact-channels__special-content > div {
    min-width: 0;
    background: #fff;
    padding-right: 14px;
    transition: transform 0.5s ease;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-content > div {
    transform: translateX(16px);
}

.home-contact-channels__special-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    font-size: 72px;
    line-height: 1;
    font-weight: 300;
    color: #111;
    opacity: 0.05;
    transform-origin: center;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-number {
    opacity: 0.2;
    transform: scale(1.5) rotate(12deg);
}

.home-contact-channels__special h4 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0;
    color: #111;
    transition: letter-spacing 0.5s ease;
}

.home-contact-channels__special-item:hover h4 {
    letter-spacing: 0.05em;
}

.home-contact-channels__special p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
    color: #111;
    opacity: 0.5;
    transition: opacity 0.7s ease 0.1s;
}

.home-contact-channels__special-item:hover p {
    opacity: 1;
}

.home-contact-channels__special-underline {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 16px;
    background: #111;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s ease 0.2s;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-underline {
    transform: scaleX(1);
}

.home-contact-channels__bottom {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 16px 32px 48px;
}

.home-contact-channels__bottom--single .home-contact-channels__platform {
    width: 100%;
}

.home-contact-channels__platform {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 28px;
    border: 2px solid #111;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.home-contact-channels__platform:hover,
.home-contact-channels__platform:focus-visible {
    background: #111;
    color: #fff;
}

.home-contact-channels__qr {
    appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 22px;
    border: 2px solid #111;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.home-contact-channels__qr:hover,
.home-contact-channels__qr:focus-visible {
    background: #111;
    color: #fff;
}

.home-contact-channels__qr-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.45;
}

.home-contact-channels__scroll-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
        to top,
        #fff 0%,
        rgba(255, 255, 255, 0.92) 46%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

/* QR modal styles */
body.contact-qr-open {
    overflow: hidden;
}

.home-contact-channels__qr-modal[hidden] {
    display: none;
}

.home-contact-channels__qr-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.home-contact-channels__qr-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

.home-contact-channels__qr-dialog {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 34px;
    border: 2px solid #111;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.home-contact-channels__qr-close {
    appearance: none;
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1.5px solid #111;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.home-contact-channels__qr-close:hover,
.home-contact-channels__qr-close:focus-visible {
    background: #111;
    color: #fff;
}

.home-contact-channels__qr-title {
    margin: 0 54px 24px 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.home-contact-channels__qr-image {
    display: block;
    width: min(320px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    object-fit: contain;
    background: #fff;
}

.home-contact-channels__qr-hint {
    margin: 22px 0 0;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    color: rgba(17, 17, 17, 0.62);
}

@media (max-width: 1180px) {
    .home-contact-channels {
        --contact-block-height: 560px;
    }

    .home-contact-channels__content {
        gap: 34px;
    }

    .home-contact-channels__tab {
        min-height: 46px;
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .home-contact-channels {
        --contact-block-height: 520px;
        margin: 64px 0 76px;
    }

    .home-contact-channels__title {
        margin-bottom: 38px;
        font-size: clamp(42px, 11vw, 68px);
        line-height: 0.86;
        letter-spacing: -0.075em;
    }

    .home-contact-channels__tabs-row {
        display: block;
        width: 100%;
        margin: 0 0 28px;
        padding: 0;
        border-bottom: 0;
        overflow: visible;
    }

    .home-contact-channels__tabs-row > .home-contact-channels__details-link {
        display: none;
    }

    .home-contact-channels__tabs {
        display: grid;
        grid-template-columns: minmax(188px, 1.42fr) repeat(4, minmax(0, 1fr));
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        overflow: visible;
        padding: 8px;
        border: 1px solid rgba(17, 17, 17, 0.14);
        background: #f7f7f7;
    }

    .home-contact-channels__tabs::before,
    .home-contact-channels__tabs::after {
        content: none;
    }

    .home-contact-channels__tab {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        padding: 0 12px;
        border-width: 1px;
        background: #fff;
        font-size: 10.5px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.055em;
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
    }

    .home-contact-channels__tab[data-contact-tab="store"] {
        min-width: 0;
    }

    .home-contact-channels__tab.is-active,
    .home-contact-channels__tab[aria-selected="true"] {
        background: #111;
        color: #fff;
        box-shadow:
            inset 0 -3px 0 rgba(255, 255, 255, 0.28),
            0 10px 24px rgba(0, 0, 0, 0.16);
        transform: translateY(-1px);
    }

    .home-contact-channels__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Tablet/mobile: стрелки убраны, счётчик и нижние точки остаются */
    .home-contact-channels__arrow {
        display: none;
    }

    .home-contact-channels__counter {
        top: 18px;
        right: 18px;
        min-width: 58px;
        min-height: 36px;
        font-size: 13px;
    }

    .home-contact-channels__dots {
        display: flex;
    }

    .home-contact-channels__mobile-details {
        display: block;
        margin: 26px 0 0;
    }

    .home-contact-channels__details-link--mobile {
        width: 100%;
        min-height: 52px;
    }
}

@media (max-width: 760px) {
    .home-contact-channels {
        --contact-block-height: 430px;
        margin: 56px 0 68px;
    }

    .home-contact-channels__title {
        margin-bottom: 30px;
        font-size: clamp(42px, 15vw, 66px);
    }

    .home-contact-channels__content {
        gap: 24px;
    }

    .home-contact-channels__counter {
        top: 16px;
        right: 16px;
        min-width: 56px;
        min-height: 36px;
        font-size: 13px;
    }

    .home-contact-channels__arrow {
        display: none;
    }

    .home-contact-channels__dots {
        display: flex;
        bottom: 18px;
    }

    .home-contact-channels__info {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .home-contact-channels__scroll {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .home-contact-channels__info-header {
        min-height: 150px;
        padding: 34px 22px 28px;
        border-bottom-width: 1.5px;
    }

    .home-contact-channels__bg-number {
        top: 18px;
        right: 14px;
        font-size: 92px;
    }

    .home-contact-channels__info-title {
        max-width: 300px;
        font-size: clamp(36px, 11vw, 48px);
    }

    .home-contact-channels__description {
        padding: 28px 22px;
    }

    .home-contact-channels__key-grid {
        grid-template-columns: 1fr;
        border-bottom-width: 1.5px;
    }

    .home-contact-channels__key-item {
        padding: 26px 22px;
        border-top-width: 1.5px;
    }

    .home-contact-channels__key-item:nth-child(1) {
        border-right: 0;
    }

    .home-contact-channels__special {
        padding: 28px 22px;
    }

    .home-contact-channels__special-content {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 18px;
    }

    .home-contact-channels__special-content > div {
        padding-right: 0;
    }

    .home-contact-channels__special-number {
        width: 64px;
        height: 64px;
        font-size: 48px;
    }

    .home-contact-channels__special-item:hover .home-contact-channels__special-number {
        transform: scale(1.25) rotate(8deg);
    }

    .home-contact-channels__special-item:hover .home-contact-channels__special-content > div {
        transform: translateX(6px);
    }

    .home-contact-channels__special h4 {
        font-size: 21px;
    }

    .home-contact-channels__bottom {
        flex-direction: column;
        padding: 12px 22px 36px;
    }

    .home-contact-channels__platform,
    .home-contact-channels__qr {
        width: 100%;
        box-sizing: border-box;
    }

    .home-contact-channels__qr {
        justify-content: center;
        text-align: center;
    }

    .home-contact-channels__scroll-fade {
        display: none;
    }
}

@media (max-width: 700px) {
    .home-contact-channels__tabs-row {
        overflow: visible;
    }

    .home-contact-channels__tabs {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 0;
        border: 1px solid rgba(17, 17, 17, 0.14);
        background: #f7f7f7;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 16px;
    }

    .home-contact-channels__tabs::-webkit-scrollbar {
        display: none;
    }

    .home-contact-channels__tabs::before,
    .home-contact-channels__tabs::after {
        content: "";
        display: block;
        flex: 0 0 8px;
        width: 8px;
        min-width: 8px;
        height: 1px;
    }

    .home-contact-channels__tab {
        flex: 0 0 auto;
        width: auto;
        min-width: 132px;
        min-height: 42px;
        padding: 0 16px;
        scroll-snap-align: start;
    }

    .home-contact-channels__tab[data-contact-tab="store"] {
        min-width: 184px;
    }
}

@media (max-width: 600px) {
    .home-contact-channels__qr-modal {
        padding: 16px;
    }

    .home-contact-channels__qr-dialog {
        max-height: calc(100vh - 32px);
        padding: 28px 20px 24px;
    }

    .home-contact-channels__qr-title {
        margin-right: 48px;
        font-size: 27px;
    }
}

@media (max-width: 430px) {
    .home-contact-channels {
        --contact-block-height: 390px;
        margin: 48px 0 62px;
    }

    .home-contact-channels__title {
        font-size: clamp(40px, 16vw, 58px);
    }

    .home-contact-channels__tab {
        min-width: 116px;
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: 0.055em;
    }

    .home-contact-channels__tab[data-contact-tab="store"] {
        min-width: 172px;
    }

    .home-contact-channels__info-header {
        padding: 30px 18px 24px;
    }

    .home-contact-channels__description,
    .home-contact-channels__key-item,
    .home-contact-channels__special {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-contact-channels__bottom {
        padding-left: 18px;
        padding-right: 18px;
    }
}

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

/* Keep the animated divider away from the large feature number. */
.home-contact-channels__special-line {
    left: 144px;
    width: calc(100% - 144px);
}

@media (max-width: 760px) {
    .home-contact-channels__special-line {
        left: 94px;
        width: calc(100% - 94px);
    }
}

/* Compact contacts features strip — replaces the old tall 01/02/03/04 list. */
.home-contact-channels__key-item--wide:nth-child(1) {
    border-right: 0;
}

.home-contact-channels__special {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    padding: 0;
    border-bottom: 2px solid #111;
}

.home-contact-channels__special-item {
    position: relative;
    min-width: 0;
    min-height: 154px;
    margin: 0;
    padding: 20px 22px;
    overflow: hidden;
    border-left: 2px solid #111;
    background: #fff;
    cursor: default;
}

.home-contact-channels__special-item:first-child {
    border-left: 0;
}

.home-contact-channels__special-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #111;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.48s ease;
}

.home-contact-channels__special-item:hover::before {
    transform: scaleY(1);
}

.home-contact-channels__special-line {
    display: none !important;
}

.home-contact-channels__special-content {
    position: relative;
    z-index: 1;
    display: block;
}

.home-contact-channels__special-content > div {
    min-width: 0;
    padding: 0;
    background: transparent;
    transition: none;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-content > div {
    transform: none;
}

.home-contact-channels__special-number {
    display: block;
    width: auto;
    height: auto;
    margin: 0 0 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #111;
    opacity: 0.36;
    transform: none;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-number {
    color: #fff;
    opacity: 0.6;
    transform: none;
}

.home-contact-channels__special h4 {
    margin: 0 0 9px;
    font-size: 14px;
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: 0;
    color: #111;
    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease;
}

.home-contact-channels__special-item:hover h4 {
    color: #fff;
    letter-spacing: 0.035em;
}

.home-contact-channels__special-underline {
    display: block;
    width: clamp(76px, 62%, 160px);
    max-width: 100%;
    height: 1px;
    margin: 0 0 11px;
    background: #111;
    transform: none;
    transform-origin: left center;
    transition:
        width 0.35s ease,
        background-color 0.3s ease;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-underline {
    background: #fff;
    transform: none;
}

.home-contact-channels__special p {
    margin: 0;
    font-size: 11px;
    line-height: 1.52;
    font-weight: 400;
    color: #111;
    opacity: 0.52;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.home-contact-channels__special-item:hover p {
    color: #fff;
    opacity: 0.74;
}

@media (max-width: 1180px) {
    .home-contact-channels__special {
        grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    }

    .home-contact-channels__special-item {
        min-height: 146px;
        padding: 18px 18px;
    }
}

@media (max-width: 760px) {
    .home-contact-channels__special {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom-width: 1.5px;
    }

    .home-contact-channels__special-item {
        min-height: 142px;
        padding: 18px;
        border-left-width: 1.5px;
        border-top: 1.5px solid #111;
    }

    .home-contact-channels__special-item:nth-child(1),
    .home-contact-channels__special-item:nth-child(2) {
        border-top: 0;
    }

    .home-contact-channels__special-item:nth-child(2n + 1) {
        border-left: 0;
    }

    .home-contact-channels__special h4 {
        font-size: 14px;
    }

    .home-contact-channels__special-underline {
        width: clamp(72px, 70%, 148px);
    }
}

@media (max-width: 430px) {
    .home-contact-channels__special-item,
    .home-contact-channels__special-item:nth-child(2) {
        min-height: 132px;
        padding: 16px;
    }
}


/* Address copy action in the physical store card. */
.home-contact-channels__key-value--with-copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.home-contact-channels__key-value--with-copy a {
    min-width: 0;
}

.home-contact-channels__copy {
    appearance: none;
    position: relative;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-top: 2px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.46);
    background: #fff;
    color: #111;
    cursor: pointer;
    opacity: 0.78;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(17, 17, 17, 0);
    transition:
        opacity 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.home-contact-channels__copy:hover,
.home-contact-channels__copy:focus-visible {
    opacity: 1;
    border-color: #111;
    background: #fff;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.home-contact-channels__key-item:hover .home-contact-channels__copy,
.home-contact-channels__key-item:hover .home-contact-channels__copy:hover,
.home-contact-channels__key-item:hover .home-contact-channels__copy:focus-visible,
.home-contact-channels__key-item:hover .home-contact-channels__copy.is-copied {
    opacity: 1;
    border-color: #fff;
    background: #fff;
    color: #111;
}

.home-contact-channels__copy img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    pointer-events: none;
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition:
        opacity 0.22s ease,
        transform 0.28s ease,
        filter 0.25s ease;
}

.home-contact-channels__key-item:hover .home-contact-channels__copy img {
    filter: none;
}

.home-contact-channels__copy::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    opacity: 0;
    transform: scale(0.45);
    pointer-events: none;
}

.home-contact-channels__copy::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 16px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0;
    transform: translateY(4px) rotate(45deg) scale(0.5);
    transform-origin: center;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.32s cubic-bezier(0.2, 0.9, 0.25, 1.35);
}

.home-contact-channels__copy.is-copied {
    opacity: 1;
    border-color: #111;
    background: #fff;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
    animation: home-contact-copy-pop 0.58s cubic-bezier(0.2, 0.9, 0.25, 1.25);
}

.home-contact-channels__copy.is-copied::before {
    animation: home-contact-copy-ripple 0.58s ease-out;
}

.home-contact-channels__copy.is-copied::after {
    opacity: 1;
    transform: translateY(-1px) rotate(45deg) scale(1);
}

.home-contact-channels__copy.is-copied img {
    opacity: 0;
    transform: scale(0.58) rotate(-12deg);
}

@keyframes home-contact-copy-pop {
    0% {
        transform: translateY(0) scale(1);
    }

    42% {
        transform: translateY(-2px) scale(1.08);
    }

    100% {
        transform: translateY(-1px) scale(1);
    }
}

@keyframes home-contact-copy-ripple {
    0% {
        opacity: 0.22;
        transform: scale(0.42);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

/* The feature underline belongs to the title, not to the description. */
.home-contact-channels__special-underline {
    width: clamp(54px, 42%, 96px);
    margin: 0 0 13px;
}

.home-contact-channels__special-item:hover .home-contact-channels__special-underline {
    width: clamp(64px, 50%, 118px);
}

.home-contact-channels__special p {
    margin-top: 0;
}

@media (max-width: 760px) {
    .home-contact-channels__key-value--with-copy {
        align-items: center;
        gap: 12px;
    }

    .home-contact-channels__copy {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .home-contact-channels__special-underline {
        width: clamp(50px, 46%, 88px);
        margin-bottom: 12px;
    }
}

/* 20260704: three feature cards stay in one clean row on tablet/desktop; hover animation is preserved. */
.home-contact-channels__special--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-contact-channels__special-item::after {
    position: absolute;
    top: -22px;
    right: 18px;
    z-index: 0;
    font-size: clamp(84px, 8vw, 132px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.08em;
    color: rgba(17, 17, 17, 0.035);
    pointer-events: none;
    user-select: none;
    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.48s ease;
}

.home-contact-channels__special-item:nth-child(1)::after { content: "01"; }
.home-contact-channels__special-item:nth-child(2)::after { content: "02"; }
.home-contact-channels__special-item:nth-child(3)::after { content: "03"; }
.home-contact-channels__special-item:nth-child(4)::after { content: "04"; }

.home-contact-channels__special-item:hover::after {
    color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.home-contact-channels__special--three .home-contact-channels__special-item {
    border-top: 0;
}

.home-contact-channels__special--three .home-contact-channels__special-item:nth-child(3) {
    border-left: 2px solid #111;
}

@media (max-width: 760px) and (min-width: 641px) {
    .home-contact-channels__special--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-contact-channels__special--three .home-contact-channels__special-item {
        border-top: 0;
        border-left-width: 1.5px;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item:first-child {
        border-left: 0;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(2n + 1) {
        border-left-width: 1.5px;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(3) {
        border-left: 1.5px solid #111;
    }
}

@media (max-width: 640px) {
    .home-contact-channels__special--three {
        grid-template-columns: 1fr;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item {
        border-left: 0;
        border-top: 1.5px solid #111;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item:first-child {
        border-top: 0;
    }
}


/* 20260704 final: fixed 01/02/03 contact feature row and platform arrow alignment. */
.home-contact-channels__special--three {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 2px solid #111 !important;
    background: #fff !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item {
    position: relative !important;
    min-width: 0 !important;
    min-height: clamp(150px, 18svh, 188px) !important;
    padding: clamp(20px, 2.4vw, 28px) clamp(18px, 2.6vw, 34px) clamp(22px, 2.7vw, 32px) !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item + .home-contact-channels__special-item {
    border-left: 2px solid #111 !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item::before {
    z-index: 0 !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item::after {
    top: 16px !important;
    right: clamp(12px, 1.8vw, 24px) !important;
    z-index: 0 !important;
    display: block !important;
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: clamp(86px, 8.4vw, 144px) !important;
    font-weight: 300 !important;
    line-height: .86 !important;
    letter-spacing: -0.09em !important;
    color: rgba(17, 17, 17, 0.035) !important;
    opacity: 1 !important;
    transform: none !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item:nth-child(1)::after { content: "01" !important; }
.home-contact-channels__special--three .home-contact-channels__special-item:nth-child(2)::after { content: "02" !important; }
.home-contact-channels__special--three .home-contact-channels__special-item:nth-child(3)::after { content: "03" !important; }

.home-contact-channels__special--three .home-contact-channels__special-content {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    height: 100% !important;
}

.home-contact-channels__special--three .home-contact-channels__special-number {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 18px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: .28em !important;
    color: rgba(17, 17, 17, .48) !important;
    opacity: 1 !important;
    transform: none !important;
}

.home-contact-channels__special--three h4 {
    position: relative !important;
    display: inline-block !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    padding: 0 0 14px !important;
    font-size: clamp(19px, 1.55vw, 30px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: -0.035em !important;
    color: #111 !important;
}

.home-contact-channels__special--three h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(100%, 168px);
    height: 1.5px;
    background: currentColor;
}

.home-contact-channels__special--three .home-contact-channels__special-underline {
    display: none !important;
}

.home-contact-channels__special--three p {
    max-width: 30ch !important;
    margin: 0 !important;
    font-size: clamp(14px, 1.15vw, 20px) !important;
    line-height: 1.42 !important;
    font-weight: 400 !important;
    color: rgba(17, 17, 17, .58) !important;
    opacity: 1 !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item:hover h4,
.home-contact-channels__special--three .home-contact-channels__special-item:hover p,
.home-contact-channels__special--three .home-contact-channels__special-item:hover .home-contact-channels__special-number {
    color: #fff !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item:hover p {
    opacity: .76 !important;
}

.home-contact-channels__special--three .home-contact-channels__special-item:hover::after {
    color: rgba(255, 255, 255, .08) !important;
    transform: none !important;
}

.home-contact-channels__platform-arrow {
    position: relative;
    flex: 0 0 auto;
    display: inline-block;
    width: 28px;
    height: 12px;
    margin-left: 2px;
    color: currentColor;
    transform: translateY(0);
}

.home-contact-channels__platform-arrow::before,
.home-contact-channels__platform-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    background: currentColor;
    transform-origin: right center;
}

.home-contact-channels__platform-arrow::before {
    left: 0;
    height: 1.5px;
    transform: translateY(-50%);
}

.home-contact-channels__platform-arrow::after {
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    background: transparent;
    transform: translateY(-50%) rotate(45deg);
}

.home-contact-channels__platform {
    gap: 14px !important;
}

.home-contact-channels__platform:hover .home-contact-channels__platform-arrow,
.home-contact-channels__platform:focus-visible .home-contact-channels__platform-arrow {
    transform: translateY(0) translateX(2px);
}

@media (max-width: 1180px) {
    .home-contact-channels__special--three .home-contact-channels__special-item {
        min-height: 156px !important;
        padding: 22px 20px 24px !important;
    }

    .home-contact-channels__special--three h4 {
        font-size: clamp(18px, 2.2vw, 24px) !important;
    }

    .home-contact-channels__special--three p {
        font-size: clamp(13px, 1.55vw, 16px) !important;
    }
}

@media (max-width: 760px) {
    .home-contact-channels__special--three {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        border-bottom-width: 1.5px !important;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item,
    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(2),
    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(3) {
        min-height: 136px !important;
        padding: 16px 12px 18px !important;
        border-top: 0 !important;
        border-left: 0 !important;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item + .home-contact-channels__special-item {
        border-left: 1.5px solid #111 !important;
    }

    .home-contact-channels__special--three .home-contact-channels__special-number {
        margin-bottom: 12px !important;
        font-size: 12px !important;
    }

    .home-contact-channels__special--three h4 {
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
        font-size: clamp(14px, 4vw, 18px) !important;
        letter-spacing: -0.03em !important;
    }

    .home-contact-channels__special--three h4::after {
        width: min(100%, 104px) !important;
        height: 1px !important;
    }

    .home-contact-channels__special--three p {
        font-size: clamp(10.5px, 3.1vw, 13px) !important;
        line-height: 1.34 !important;
    }

    .home-contact-channels__special--three .home-contact-channels__special-item::after {
        top: 12px !important;
        right: 4px !important;
        font-size: clamp(64px, 19vw, 92px) !important;
    }
}

@media (max-width: 430px) {
    .home-contact-channels__special--three .home-contact-channels__special-item,
    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(2),
    .home-contact-channels__special--three .home-contact-channels__special-item:nth-child(3) {
        min-height: 126px !important;
        padding: 14px 10px 16px !important;
    }

    .home-contact-channels__special--three p {
        font-size: 10px !important;
    }
}
