

.wide-card.wide-card {
    color: #1a1a1a;
    padding: 0;
    font-feature-settings: 'ss01', 'cv11';
    line-height: normal;
}

.wide-card.wide-card * {
    line-height: inherit;
}

@media (max-width: 768px) {
    .wide-card.wide-card {
        padding: 0;
    }
}

.wide-card .wide-card__columns {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 1fr);
    gap: 0;
}

@media (max-width: 1023px) {
    .wide-card .wide-card__columns {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }
}

.wide-card .wide-card__gallery-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    align-self: start;
}

.wide-card picture {
    display: contents;
}

.wide-card .wide-card__gallery-row .wide-card__gallery-item img {
    height: auto;
}

.wide-card .wide-card__gallery-item {
    margin: 0;
    background: #f5f6f8;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.wide-card .wide-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 246, 248, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 2;
}

.wide-card .wide-card__image-overlay.is-loading {
    opacity: 1;
}

.wide-card .wide-card__image-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary, #b2935a);
    border-radius: 50%;
    animation: wide-card-spin 0.8s linear infinite;
}

@keyframes wide-card-spin {
    to { transform: rotate(360deg); }
}

.wide-card .wide-card__gallery-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.wide-card .wide-card__gallery-item--main {
    max-height: calc(100vh - var(--tg-header-height, 70px) - var(--tg-topbar-height, 35px));
    width: 100%;
}

.wide-card .wide-card__gallery-item--main img {
    max-height: calc(100vh - var(--tg-header-height, 70px) - var(--tg-topbar-height, 35px));
    object-fit: contain;
    mix-blend-mode: darken;
}

.wide-card .wide-card__gallery-row {
    display: grid;
    grid-template-columns: repeat(var(--cols, 1), minmax(0, 1fr));
    gap: 3px;
}

.wide-card .wide-card__gallery-row--cols-1 .wide-card__gallery-item {
    width: 100%;
}
.wide-card .wide-card__gallery-row--cols-1 .wide-card__gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.wide-card .wide-card__gallery-mobile {
    display: none;
}

.wide-card .wide-card__breadcrumb-links--mobile {
    display: none;
}

.wide-card .wide-card__crumbs-mobile {
    display: none;
}

@media (max-width: 768px) {

    .wide-card .wide-card__gallery-col {
        display: none;
    }
    .wide-card .wide-card__gallery-mobile {
        display: block;
        width: 100%;
        position: relative;
    }

    .wide-card .wide-card__sticky-panel
        > .wide-card__breadcrumb-links:not(.wide-card__breadcrumb-links--mobile) {
        display: none;
    }

    .wide-card .wide-card__crumbs-mobile {
        display: block;
        padding: 12px 0;
        background: #f5f6f8;
    }
    .wide-card .wide-card__crumbs-mobile .wide-card__breadcrumb-links--mobile {
        display: flex;
        position: static;
        margin: 0;
        padding: 0;
        gap: 8px;
    }
    .wide-card .wide-card__gallery-mobile-item {
        margin: 0;
        background: #f5f6f8;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .wide-card .wide-card__gallery-mobile-item img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        mix-blend-mode: darken;
    }

    .wide-card .wide-card__gallery-mobile .swiper-pagination {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 2;
    }
    .wide-card .wide-card__gallery-mobile .swiper-pagination-bullet {
        display: inline-block;
        width: 18px;
        height: 3px;
        border-radius: 2px;
        background: rgba(0, 0, 0, 0.25);
        opacity: 1;
        margin: 0 3px;
        vertical-align: middle;
        transition: background 0.2s ease;
    }
    .wide-card .wide-card__gallery-mobile .swiper-pagination-bullet-active {
        background: var(--primary, #b2935a);
    }
}

.wide-card .wide-card__config-col {
    min-width: 0;
}

.wide-card .wide-card__sticky-panel {
    position: sticky;

    top: 105px;
    padding: 40px 55px;
}

@media (min-width: 1340px) {
    .wide-card .wide-card__sticky-panel {
        padding: 40px 70px;
    }
}

@media (max-width: 1280px) {
    .wide-card .wide-card__sticky-panel {
        padding: 56px 40px;
    }
}

@media (max-width: 768px) {
    .wide-card .wide-card__sticky-panel {
        position: static;
        padding: 24px 16px;
    }
    .wide-card .wide-card__title {
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .wide-card .wide-card__gallery-col--sticky {
        position: sticky;
        top: 105px;
        align-self: start;
    }
    .wide-card .wide-card__gallery-col:has(.wide-card__gallery-item--main:only-child) {
        position: sticky;
        top: 105px;
        align-self: start;
        height: calc(100vh - var(--tg-header-height, 70px) - var(--tg-topbar-height, 35px));
        overflow: hidden;
    }
    .wide-card .wide-card__gallery-col:has(.wide-card__gallery-item--main:only-child) .wide-card__gallery-item--main {
        height: 100%;
    }
    .wide-card .wide-card__gallery-col:has(.wide-card__gallery-item--main:only-child) .wide-card__gallery-item--main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .wide-card .wide-card__gallery-mobile:has(.swiper-slide:only-child) {
        height: min(calc(100vh - var(--tg-header-height, 60px)), 100vw);
        max-width: 100%;
        overflow: hidden;
    }
    .wide-card .wide-card__gallery-mobile:has(.swiper-slide:only-child) .swiper-slide,
    .wide-card .wide-card__gallery-mobile:has(.swiper-slide:only-child) .wide-card__gallery-mobile-item {
        height: 100%;
        aspect-ratio: auto;
    }
    .wide-card .wide-card__gallery-mobile:has(.swiper-slide:only-child) .wide-card__gallery-mobile-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.wide-card .wide-card__product-code,
.wide-card .wide-card__article {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray, #767676);
    font-size: 14px;
    margin-bottom: 12px;
}

@media (min-width: 769px) {
    .wide-card .wide-card__product-code,
    .wide-card .wide-card__article {
        margin-bottom: 2.5rem;
    }
}

.wide-card .wide-card__article {
    margin-left: 16px;
}

.wide-card .wide-card__product-code .copy-btn,
.wide-card .wide-card__article .copy-btn {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: inherit;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s;
}

.wide-card .wide-card__product-code .copy-btn svg,
.wide-card .wide-card__article .copy-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}

.wide-card .wide-card__product-code .copy-btn:hover,
.wide-card .wide-card__article .copy-btn:hover {
    color: var(--primary, #b2935a);
}

.wide-card .wide-card__breadcrumb-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 40px;
}

.wide-card .wide-card__category-link,
.wide-card .wide-card__brand-link,
.wide-card .wide-card__series-link {
    display: inline-block;
    color: var(--black-text);
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.wide-card .wide-card__category-link,
.wide-card .wide-card__brand-link {
    border-bottom-color: #6464646e;
}

.wide-card .wide-card__breadcrumb-sep {
    color: rgba(0, 0, 0, 0.25);
    font-size: 13px;
    user-select: none;
}

.wide-card .wide-card__category-link:hover,
.wide-card .wide-card__brand-link:hover,
.wide-card .wide-card__series-link:hover {
    color: #0a0a0a;
    border-color: rgba(0, 0, 0, 0.4);
}

.wide-card .wide-card__series-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--black-text, #1b1a1a);
    margin: 0 0 10px;
}
.wide-card .wide-card__series-label {
    color: #6c757d;
}
.wide-card .wide-card__series-line-link {
    color: #6c757d;
    text-decoration: none;
    border-bottom: 1px solid #6464646e;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.wide-card .wide-card__series-line-link:hover {
    color: var(--primary, #b2935a);
}
.wide-card .wide-card__series-line-name {
    color: #6c757d;
}

.wide-card .wide-card__title {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    margin: 0 0 30px;
}

.wide-card .wide-card__title-name {
    font-size: clamp(26px, 2.3vw, 45px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    color: #0a0a0a;
}

.wide-card .wide-card__title-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5b6068;
}

.wide-card .wide-card__lead {
    font-size: 16px;
    color: #5b6068;
    margin: 0 0 1.5rem;
    font-weight: 400;
}

.wide-card .wide-card__lead p {
    margin: 0 0 12px;
}

.wide-card .wide-card__lead p:last-child {
    margin-bottom: 0;
}

.wide-card .wide-card__lead--compact {
    font-size: 14px;
}

.wide-card .wide-card__price-block {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 1rem 0;
    padding: 2rem 0 0;
}

.wide-card .wide-card__price-block.last-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.wide-card .current-price {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark, #0a0a0a);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.wide-card .old-price {
    font-size: 18px;
    color: var(--gray, #999);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
}

.wide-card .last-price-label {
    color: var(--gray, #767676);
    font-size: 14px;
}

.wide-card .last-price-span {
    color: var(--gray, #767676);
    font-size: 22px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.wide-card .wide-card__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    row-gap: 12px;
    padding-top: 0;
    border-top: none;
}

.wide-card .wide-card__actions .btn-primary {
    flex: 0 0 auto;
    min-width: 0;
    background: var(--primary, #b2935a);
    color: #fff;
    border: none;
    border-radius: var(--radius-semi, 8px);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.wide-card .wide-card__actions .btn-primary:hover {
    background: var(--primary-hover, #baa60d);
}

.wide-card .wide-card__actions .btn-primary:active {
    transform: scale(0.99);
}

.wide-card .wide-card__actions .btn-primary[disabled],
.wide-card .wide-card__actions .btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.wide-card .wide-card__actions .universal-form-trigger {
    flex: 0 0 auto;
}

.wide-card .wide-card__actions .universal-form-trigger.btn,
.wide-card .wide-card__actions .universal-form-trigger.btn-secondary {
    min-width: 0;
    background: var(--primary, #b2935a);
    color: #fff;
    border: none;
    border-radius: var(--radius-semi, 8px);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.wide-card .wide-card__actions .universal-form-trigger.btn:hover,
.wide-card .wide-card__actions .universal-form-trigger.btn-secondary:hover {
    background: var(--primary-hover, #baa60d);
    color: #fff;
}

.wide-card .wide-card__actions .universal-form-trigger.btn:active,
.wide-card .wide-card__actions .universal-form-trigger.btn-secondary:active {
    transform: scale(0.99);
}

.wide-card .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn,
.wide-card .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn-secondary {
    background: var(--bg-light, #f0f1f1);
    color: var(--text-dark, #333);
}

.wide-card .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn:hover,
.wide-card .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn-secondary:hover {
    background: var(--primary-hover, #baa60d);
    color: #fff;
}

.wide-card .wide-card__actions .finance-widget {
    flex-basis: 100%;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .wide-card .wide-card__actions .btn-primary,
    .wide-card .wide-card__actions .universal-form-trigger,
    .wide-card .wide-card__actions .universal-form-trigger.btn,
    .wide-card .wide-card__actions .universal-form-trigger.btn-secondary {
        flex: 1 1 100%;
        width: 100%;
    }
}

.wide-card .finance-widget {
    margin-top: 4px;
    cursor: pointer;
    width: fit-content;
}

.wide-card .finance-widget--split {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.wide-card .finance-widget--split:hover {
    opacity: 0.8;
}

.wide-card .finance-widget__content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wide-card .finance-widget__badge {
    font-size: 13px;
    color: #656565;
}

.wide-card .finance-widget__label {
    font-size: 13px;
    color: #656565;
}

.wide-card .finance-widget--credit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    transition: opacity 0.2s ease;
}

.wide-card .finance-widget--credit:hover {
    opacity: 0.8;
}

.wide-card .wide-card__quick-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.wide-card .quick-action-btn {
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark, #1a1a1a);
    padding: 0;
    transition: color 0.15s;
}

.wide-card .quick-action-btn:hover {
    color: var(--primary, #b2935a);
}

.wide-card .quick-action-btn svg {
    width: 20px;
    height: 20px;
}

.wide-card .quick-action-btn.compare_btn.in_compare,
.wide-card .quick-action-btn.add_to_favorites.in_favorites {
    color: var(--primary, #b2935a);
}

.wide-card .picker {
    margin: 0;
}

.wide-card .picker__block {
    margin-bottom: 28px;
}

.wide-card .picker__block-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
}

.wide-card .picker__block-title-text {
    margin-right: auto;
}

.wide-card .picker__block-hint {
    color: #6b6f76;
    font-size: 13px;
    margin-bottom: 14px;
}

.wide-card .picker__options--radio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.wide-card .picker-radio {
    margin: 0;
    display: block;
    flex: 0 1 auto;
}

.wide-card .picker-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wide-card .picker-radio__box {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 8px 14px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fff;
    text-align: center;
    min-height: 36px;
    white-space: nowrap;
}

.wide-card .picker-radio__box:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.wide-card .picker-radio input:checked + .picker-radio__box {
    border-color: #0a0a0a;
    background: #fafafa;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.wide-card .picker-radio.is-disabled .picker-radio__box,
.wide-card .picker-feature.is-disabled .picker-feature__box {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f7f8fa;
}

.wide-card .picker-radio.is-disabled,
.wide-card .picker-feature.is-disabled {
    pointer-events: none;
}

.wide-card .picker-radio__img {
    display: block;
    margin: 0;
    flex: 0 0 auto;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.wide-card .picker-radio__title {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.wide-card .picker-radio__desc {
    display: none;
}

.wide-card .picker__options--gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-top: 10px;
}

.wide-card .picker-radio--gallery {
    margin: 0;
    display: block;
    flex: none;
}

.wide-card .picker-radio__box--gallery {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 2px;
    border-color: transparent;
    background: transparent;
    border-radius: 12px;
    min-height: 0;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left;
    box-shadow: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.wide-card .picker-radio__box--gallery .picker-radio__title {
    font-size: 16px;
}

.wide-card .picker-radio__box--gallery:hover {
    border-color: transparent;
    background: rgba(178, 147, 90, 0.06);
}

.wide-card .picker-radio--gallery input:checked + .picker-radio__box--gallery {
    border: none;
    background: none;
    box-shadow: none;
}

.wide-card .picker-radio--gallery input:checked + .picker-radio__box--gallery .picker-radio__img--gallery {
    border-bottom: 3px solid #948200;
    border-radius: 0;
}

.wide-card .picker-radio--gallery input:checked + .picker-radio__box--gallery .picker-radio__title {
    color: #0a0a0a;
    font-weight: 600;
}

.wide-card .picker-radio__img--gallery {
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    height: 120px;
    object-fit: contain;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 2px;
    transition: background 0.25s ease;
}

@media (max-width: 640px) {
    .wide-card .picker-radio__img--gallery {
        height: 90px;
    }
}

.wide-card .picker__block-desc {
    margin-top: 2.5rem;
    font-size: 16px;
    color: #5b6068;
}

.wide-card .picker__block-desc:empty {
    display: none;
}

.wide-card .picker__options--features {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .wide-card .picker__options--features {
        gap: 0;
    }
}

.wide-card .picker-feature {
    margin: 0;
    display: block;
}

.wide-card .picker-feature input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wide-card .picker-feature__box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px;
    transition: background 0.15s;
}

.wide-card .picker-feature__box:hover {
    background: rgba(0, 0, 0, 0.02);
}

.wide-card .picker-feature__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: #fff;
    transition: background 0.15s, border-color 0.15s;
}

.wide-card .picker-feature__check::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
    opacity: 0;
    transition: opacity 0.15s;
}

.wide-card .picker-feature input:checked + .picker-feature__box .picker-feature__check {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.wide-card .picker-feature input:checked + .picker-feature__box .picker-feature__check::after {
    opacity: 1;
}

.wide-card .picker-feature__title {
    flex: 0 1 auto;
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.wide-card .picker-feature__hint-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: #fff;
    color: #6b6f76;
    font-size: 11px;
    font-weight: 700;
    cursor: help;
    position: relative;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    user-select: none;
}

.wide-card .picker-feature__hint-icon:hover,
.wide-card .picker-feature__hint-icon:focus {
    border-color: #0a0a0a;
    color: #0a0a0a;
    outline: none;
}

.wide-card .picker-feature__hint-icon::after {
    content: attr(data-hint);
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    z-index: 10;
    width: max-content;
    max-width: 260px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #0a0a0a;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.15s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.wide-card .picker-feature__hint-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    right: 4px;
    z-index: 11;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #0a0a0a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.wide-card .picker-feature__hint-icon:hover::after,
.wide-card .picker-feature__hint-icon:focus::after,
.wide-card .picker-feature__hint-icon:hover::before,
.wide-card .picker-feature__hint-icon:focus::before {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wide-card .wide-card__gallery-item,
.wide-card .wide-card__gallery-mobile-item {
    cursor: zoom-in;
}

.lg-outer .lg-image {
    background: #f5f6f8;
}

.wide-card.wide-card--theme-gray .wide-card__config-col {
    background: #e5e5e5;
}

.wide-card.wide-card--theme-gray .wide-card__lead,
.wide-card.wide-card--theme-gray .picker__block-desc,
.wide-card.wide-card--theme-gray .wide-card__article,
.wide-card.wide-card--theme-gray .last-price-label,
.wide-card.wide-card--theme-gray .last-price-span,
.wide-card.wide-card--theme-gray .old-price {
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-gray .wide-card__product-code,
.wide-card.wide-card--theme-gray .wide-card__article {
    color: #4a4844;
}

.wide-card.wide-card--theme-gray .picker__block-title {
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-gray .wide-card__product-code .copy-btn,
.wide-card.wide-card--theme-gray .wide-card__article .copy-btn {
    color: inherit;
}

.wide-card.wide-card--theme-gray .picker-feature.is-disabled .picker-feature__box {
    background: transparent;
}

.wide-card.wide-card--theme-gray .picker-feature__box:hover {
    background: rgba(0, 0, 0, 0.06);
}

.wide-card.wide-card--theme-gray .picker-feature__check {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.35);
}

.wide-card.wide-card--theme-gray .wide-card__actions .btn-primary {
    background: #0a0a0a;
    color: #fff;
}

.wide-card.wide-card--theme-gray .wide-card__actions .btn-primary:hover {
    background: #2a2a2a;
}

.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger.btn,
.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger.btn-secondary {
    background: #0a0a0a;
    color: #fff;
}

.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger.btn:hover,
.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger.btn-secondary:hover {
    background: #2a2a2a;
    color: #fff;
}

.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn,
.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn-secondary {
    background: #fff;
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn:hover,
.wide-card.wide-card--theme-gray .wide-card__actions .universal-form-trigger[data-form-preset="product-buy"].btn-secondary:hover {
    background: #f4f4f0;
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-gray .quick-action-btn {
    border-color: rgba(0, 0, 0, 0.25);
}

.wide-card.wide-card--theme-olive .wide-card__config-col {
    background: #dadad5;
}

.wide-card.wide-card--theme-olive .wide-card__lead,
.wide-card.wide-card--theme-olive .picker__block-desc,
.wide-card.wide-card--theme-olive .wide-card__article,
.wide-card.wide-card--theme-olive .last-price-label,
.wide-card.wide-card--theme-olive .last-price-span,
.wide-card.wide-card--theme-olive .old-price {
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-olive .wide-card__product-code,
.wide-card.wide-card--theme-olive .wide-card__article {
    color: #4a4844;
}

.wide-card.wide-card--theme-olive .picker__block-title {
    color: var(--black-text, #1b1a1a);
}

.wide-card.wide-card--theme-olive .wide-card__product-code .copy-btn,
.wide-card.wide-card--theme-olive .wide-card__article .copy-btn {
    color: inherit;
}

.wide-card.wide-card--theme-olive .picker-feature.is-disabled .picker-feature__box {
    background: transparent;
}

.wide-card.wide-card--theme-olive .picker-feature__box:hover {
    background: rgba(0, 0, 0, 0.06);
}

.wide-card.wide-card--theme-olive .picker-feature__check {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.35);
}

.wide-card.wide-card--theme-olive .quick-action-btn {
    border-color: rgba(0, 0, 0, 0.25);
}

.wide-card .picker__compare-trigger {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0;
}

.wide-card .picker__compare-trigger + .picker__compare-trigger {
    margin-left: 1rem;
}

.wide-card .picker__compare-trigger:hover,
.wide-card .picker__compare-trigger:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
    outline: none;
}

body.display-compare-open {
    overflow: hidden;
}

.display-compare {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.display-compare[hidden] {
    display: none;
}

.display-compare__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.55);
    backdrop-filter: blur(2px);
}

.display-compare__card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    max-width: 1320px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.display-compare__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.display-compare__close:hover,
.display-compare__close:focus-visible {
    color: #000;
    outline: none;
}

.display-compare__title {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    padding: 32px 60px 20px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    text-align: center;
}

.display-compare__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 48px 48px;
}

.display-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    font-weight: 400;
    table-layout: fixed;
}

.display-compare__table colgroup col.display-compare__col-label,
.display-compare__row-head,
.display-compare__table tfoot th {
    width: 30%;
}

.display-compare__table th,
.display-compare__table td {
    padding: 16px 24px;
    text-align: left;
    vertical-align: middle;
    background: transparent;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.display-compare__table tbody td,
.display-compare__table tfoot td {
    color: #555;
}

.display-compare__table thead th {
    font-size: 22px;
    color: #0a0a0a;
    font-weight: 400;
    padding-bottom: 16px;
    text-align: left;
    vertical-align: bottom;
    border-bottom: 2px solid #0a0a0a;
}

.display-compare__row-head,
.display-compare__table tfoot th {
    font-weight: 400;
    color: #0a0a0a;
}

.display-compare__col-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    background: #ececec;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-sizing: border-box;
}

.display-compare__col-img {
    display: block;
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.display-compare__col-name {
    display: block;
    line-height: 1.3;
}

.display-compare__yes,
.display-compare__no {
    color: inherit;
    font-weight: 400;
}

.display-compare__dash {
    color: #b6bac1;
}

.display-compare__price-row td {
    font-weight: 400;
    color: #0a0a0a;
    padding-top: 14px;
}

.display-compare__price-row th {
    padding-top: 14px;
}

.display-compare__buy-row td,
.display-compare__buy-row th {
    padding-top: 8px;
    padding-bottom: 16px;
    border-bottom: none;
}

.wide-card .display-compare__buy,
.display-compare__buy.btn.btn-primary {
    display: inline-block;
    width: auto;
    min-width: 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    border-radius: var(--radius-semi, 8px);
    border: none;
    background: var(--primary, #b2935a);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    letter-spacing: 0;
}

.wide-card .display-compare__buy:hover,
.display-compare__buy.btn.btn-primary:hover {
    background: var(--primary-hover, #baa60d);
}

.wide-card .display-compare__buy:active,
.display-compare__buy.btn.btn-primary:active {
    transform: scale(0.99);
}

@media (max-width: 900px) {
    .display-compare__col-img {
        width: 120px;
        max-height: 100px;
    }
    .display-compare__table th,
    .display-compare__table td {
        padding: 10px 10px;
    }
}

@media (max-width: 640px) {
    .display-compare {
        padding: 0;
    }
    .display-compare__card {
        border-radius: 0;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
    }
    .display-compare__title {
        padding: 18px 56px 12px;
        font-size: 20px;
    }
    .display-compare__scroll {
        padding: 0 12px 16px;
        flex: 1;
        overflow-x: auto;
    }
    .display-compare__table {
        font-size: 14px;
        table-layout: auto;
        min-width: 600px;
        width: auto;
    }
    .display-compare__row-head,
    .display-compare__table tfoot th {
        width: auto;
        white-space: nowrap;
        padding-right: 16px;
    }
    .display-compare__col-head {
        min-width: 160px;
    }
    .display-compare__table thead th {
        font-size: 18px;
        padding-bottom: 12px;
    }
    .display-compare__table th,
    .display-compare__table td {
        padding: 10px 10px;
    }
    .display-compare__scroll {
        padding: 0 14px 16px;
    }
    .display-compare__col-img-wrap {
        width: 100%;
        min-width: 150px;
        height: 130px;
        margin-bottom: 10px;
        border-radius: 6px;
    }
    .display-compare__col-img {
        width: auto;
        max-width: 85%;
        max-height: 85%;
    }
    .wide-card .display-compare__buy,
    .display-compare__buy.btn.btn-primary {
        padding: 7px 12px;
        font-size: 12px;
    }
    .wide-card .picker__compare-trigger {
        display: block;
        margin: 8px 0 0;
    }
}

.wide-card .picker__block--gallery .picker__block-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wide-card .picker__block--gallery .picker__compare-trigger {
    border-bottom: 1px solid #6464646e;
}

.wide-card .picker__block--gallery .picker__compare-trigger:hover,
.wide-card .picker__block--gallery .picker__compare-trigger:focus-visible {
    text-decoration: none;
}

.wide-card .picker__options--rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

@media (min-width: 769px) {
    .wide-card .picker__options--rows {
        gap: 0.5rem;
    }
}

.wide-card .picker-radio--row {
    margin: 0;
    display: block;
    flex: none;
}

.wide-card .picker-radio__box--row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    min-height: 0;
    padding: 8px;
    border: 2px solid #e7e7e7;
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
    white-space: normal;
    text-align: left;
    transition: border-color 0.15s ease;
}

.wide-card .picker-radio__box--row:hover {
    border-color: #c9c9c9;
}

.wide-card .picker-radio--row input:checked + .picker-radio__box--row {
    border-color: var(--black-text, #000);
    background: transparent;
    box-shadow: none;
}

.wide-card .picker-radio__img--row {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 90px;
    height: 90px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 4px;
    padding: 8px;
    background: #f2f2f3;
}

.wide-card .picker-radio__img--empty {
    background: #f2f2f2;
}

.wide-card .picker-radio__text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wide-card .picker-radio__box--row .picker-radio__title {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--black-text, #1b1a1a);
}

.wide-card .picker-radio__desc-inline {
    display: block;
    max-width: 220px;
    font-size: 13px;
    line-height: 1.35;
    color: #5b6068;
}

.wide-card .picker-radio__price {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: auto;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    color: var(--black-text, #1b1a1a);
}
