* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--soft) 80%, white), transparent 34%),
        linear-gradient(180deg, var(--bg), #fff 64%);
}

a {
    color: inherit;
    text-decoration: none;
}

.error-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(180deg, var(--bg, #f6f8fc), #fff 70%);
}

.error-page {
    width: min(620px, 100%);
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 44px 28px;
    text-align: center;
}

.error-page .brand {
    margin-bottom: 10px;
}

.error-page p {
    margin: 0;
    color: var(--primary, #d81324);
    font-size: 72px;
    font-weight: 950;
    line-height: 1;
}

.error-page h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 46px);
}

.error-page > span {
    max-width: 480px;
    color: var(--muted, #64748b);
    font-size: 17px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

button,
input,
select,
textarea {
    font: inherit;
}

.shop-shell {
    width: min(1480px, calc(100% - 50px));
    margin: 56px auto;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(28, 48, 96, .14);
    overflow: hidden;
}

.topbar {
    position: relative;
    z-index: 3000;
    min-height: 94px;
    display: grid;
    grid-template-columns: 190px minmax(280px, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 20px 38px;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(130, 150, 190, .16);
}

.brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 48px;
    border-radius: 5px;
    color: #fff;
    background: #d81324;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: 0;
}

.search-bar {
    height: 56px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(160px, 1fr) 70px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(40, 68, 130, .08);
    overflow: visible;
}

.search-bar:focus-within,
.search-bar.live-search-ready {
    z-index: 3100;
}

.header-catalog-menu {
    position: relative;
    height: 100%;
}

.category-chip,
.city-chip,
.search-btn {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border: 0;
    border-right: 1px solid rgba(130, 150, 190, .16);
    color: var(--ink);
    background: transparent;
    font-weight: 800;
    white-space: nowrap;
}

.category-chip {
    border-radius: 11px 0 0 11px;
    text-decoration: none;
    transition: color .16s ease, background .16s ease;
}

.category-chip.is-active,
.header-catalog-menu.open .category-chip,
.category-chip:hover {
    color: #fff;
    background: var(--primary);
}

.category-chip.is-active svg,
.header-catalog-menu.open .category-chip svg,
.category-chip:hover svg {
    color: #fff;
}

.shop-header-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 60;
    width: min(1040px, calc(100vw - 76px));
    min-height: 430px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 0;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 26px 70px rgba(19, 32, 68, .18);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.header-catalog-menu.open .shop-header-mega,
.header-catalog-menu:hover .shop-header-mega,
.header-catalog-menu:focus-within .shop-header-mega {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.header-mega-rail {
    max-height: min(70vh, 620px);
    overflow: auto;
    padding: 12px;
    border-right: 1px solid rgba(130, 150, 190, .16);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--soft) 68%, white), #fff);
}

.header-mega-rail a {
    min-height: 48px;
    display: grid;
    grid-template-columns: 28px 1fr 18px;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 11px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    transition: background .14s ease, color .14s ease, transform .14s ease;
}

.header-mega-rail a:hover,
.header-mega-rail a.active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 10px 24px rgba(35, 50, 90, .08);
}

.header-mega-rail a:hover {
    transform: translateX(2px);
}

.header-mega-rail svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.header-mega-all {
    margin-bottom: 8px;
    color: #fff !important;
    background: var(--primary) !important;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--primary) 24%, transparent);
}

.header-mega-all svg {
    color: #fff;
}

.header-mega-panels {
    max-height: min(70vh, 620px);
    overflow: auto;
    padding: 24px;
}

.header-mega-panel {
    display: none;
}

.header-mega-panel.active {
    display: block;
}

.header-mega-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.header-mega-head span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.header-mega-head h3 {
    margin: 4px 0 0;
    font-size: 26px;
    line-height: 1.16;
}

.header-mega-head > a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.header-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.header-mega-card {
    min-height: 154px;
    padding: 16px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(35, 50, 90, .07);
}

.header-mega-card a,
.header-mega-card span {
    display: block;
    width: 100%;
    padding: 5px 0;
    color: color-mix(in srgb, var(--ink) 80%, var(--muted));
    font-size: 14px;
    line-height: 1.28;
}

.header-mega-card .header-mega-title {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
}

.header-mega-card a:hover {
    color: var(--primary);
}

.header-mega-depth-1 { padding-left: 12px !important; color: var(--muted) !important; }
.header-mega-depth-2 { padding-left: 22px !important; color: var(--muted) !important; font-size: 13px !important; }
.header-mega-depth-3,
.header-mega-depth-4 { padding-left: 30px !important; color: var(--muted) !important; font-size: 12px !important; }

.city-chip {
    color: #34446b;
    font-weight: 700;
}

.city-chip svg {
    color: #ef3b2d;
}

.search-bar input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--ink);
    background: transparent;
    font-size: 16px;
}

.live-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 12000;
    min-width: min(640px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}

.live-search-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.live-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 8px 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.live-search-head span {
    color: var(--accent);
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-search-list {
    display: grid;
    gap: 6px;
}

.live-search-item {
    min-height: 78px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.live-search-item:hover,
.live-search-item.is-active {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 25%, #dbe3ef);
    background: color-mix(in srgb, var(--soft) 42%, #fff);
    box-shadow: 0 14px 28px rgba(35, 50, 90, .08);
}

.live-search-image {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    color: var(--primary);
    background: linear-gradient(145deg, #f8fbff, #eef4ff);
}

.live-search-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.live-search-image svg {
    width: 26px;
    height: 26px;
}

.live-search-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.live-search-copy b {
    overflow: hidden;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.24;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-search-copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-search-side {
    display: grid;
    justify-items: end;
    gap: 6px;
    white-space: nowrap;
}

.live-search-side strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
}

.live-search-side em {
    padding: 5px 8px;
    border-radius: 999px;
    color: #64748b;
    background: #f1f5f9;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.live-search-side em.in {
    color: #047857;
    background: #dcfce7;
}

.live-search-side em.out {
    color: #b91c1c;
    background: #fee2e2;
}

.live-search-side em.order {
    color: #1d4ed8;
    background: #dbeafe;
}

.live-search-all {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 9px;
    padding: 0 12px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #0f172a));
    font-size: 13px;
    font-weight: 950;
}

.live-search-all svg {
    width: 17px;
    height: 17px;
}

.live-search-state,
.live-search-empty {
    min-height: 122px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    color: var(--muted);
}

.live-search-state svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    animation: live-search-spin .8s linear infinite;
}

.live-search-empty svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
}

.live-search-empty b {
    color: var(--ink);
    font-size: 16px;
}

.live-search-empty span,
.live-search-empty a {
    font-size: 13px;
    font-weight: 750;
}

.live-search-empty a {
    color: var(--primary);
}

@keyframes live-search-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .live-search-panel {
        left: 0;
        right: 0;
        min-width: 0;
        max-height: min(72vh, 560px);
        overflow: auto;
        border-radius: 16px;
    }

    .live-search-item {
        grid-template-columns: 54px minmax(0, 1fr);
        align-items: start;
    }

    .live-search-image {
        width: 54px;
        height: 54px;
    }

    .live-search-side {
        grid-column: 2;
        justify-items: start;
        grid-auto-flow: column;
        align-items: center;
        justify-content: start;
    }

    .live-search-copy b {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.search-btn {
    justify-content: center;
    border-right: 0;
    border-left: 1px solid rgba(130, 150, 190, .16);
    cursor: pointer;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border, #dbe4f0);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 24px rgba(15, 35, 80, .08);
}

.currency-switcher__item {
    display: inline-flex;
    min-width: 42px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--text, #07183f);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none;
    transition: .18s ease;
}

.currency-switcher__item:hover {
    background: #eef4ff;
    color: var(--primary, #2563eb);
}

.currency-switcher__item.is-active {
    background: var(--primary, #2563eb);
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .25);
}

[hidden] {
    display: none !important;
}

.top-actions select {
    width: 150px;
    height: 52px;
    padding: 0 10px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    font-weight: 700;
}

.theme-link,
.cart-button {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 30%, transparent);
    cursor: pointer;
}

.shop-phone-link {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.shop-phone-link svg {
    width: 19px;
    height: 19px;
    color: var(--primary);
}

.user-card {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}

.user-card small,
.cart-head span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
}

.cart-button {
    position: relative;
}

.cart-button span {
    position: absolute;
    top: -6px;
    left: -4px;
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.subnav {
    height: 66px;
    display: flex;
    align-items: center;
    gap: 44px;
    padding-left: 330px;
    background: rgba(255, 255, 255, .66);
    border-bottom: 1px solid rgba(130, 150, 190, .12);
}

.subnav a {
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.subnav a.active {
    color: var(--primary);
}

.layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    padding: 12px 28px 48px;
}

.category-sidebar {
    transform: translateY(-56px);
    position: relative;
    z-index: 30;
}

.category-main {
    width: 280px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-left: 10px;
    padding: 0 16px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 30%, transparent);
    font-size: 20px;
    font-weight: 800;
}

.category-list {
    margin-top: 14px;
    padding: 12px;
    background: #fff;
    border-radius: 14px 0 0 14px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-right: 0;
    box-shadow: 0 18px 48px rgba(45, 62, 106, .12);
}

.category-menu-wrap {
    position: relative;
}

.category-list button,
.category-list a {
    width: 100%;
    min-height: 54px;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--ink);
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.category-list button.active,
.category-list button:hover,
.category-list a:hover,
.category-list a.mega-active {
    background: color-mix(in srgb, var(--accent) 13%, white);
}

.category-list svg {
    color: var(--primary);
}

.mobile-subcategory-panel {
    display: none;
}

.sidebar-shop-tools {
    width: min(100%, 320px);
    display: grid;
    gap: 18px;
    margin: 18px 0 0 10px;
    padding: 0;
}

.sidebar-cartridge-card {
    padding: 12px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(35, 50, 90, .1);
}

.sidebar-cartridge-card h3,
.sidebar-buy-more h3 {
    margin: 0 0 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
}

.sidebar-cartridge-card h3 {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, #18b84f, #15a246);
    box-shadow: 0 14px 28px rgba(21, 162, 70, .22);
}

.sidebar-cartridge-card h3 svg {
    width: 20px;
    height: 20px;
}

.sidebar-cartridge-card form {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: #f8fafc;
}

.sidebar-cartridge-card select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 9px;
    color: #0f172a;
    background: #fff;
    font-weight: 750;
}

.sidebar-cartridge-card button {
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #2f6df2, #2456db);
    box-shadow: 0 12px 24px rgba(36, 86, 219, .22);
    font-weight: 950;
    cursor: pointer;
}

.sidebar-buy-more {
    display: grid;
    gap: 10px;
}

.sidebar-buy-more h3 {
    margin-bottom: 2px;
    padding: 14px 16px;
    color: #fff;
    background: linear-gradient(135deg, #1557b6, #0f459a);
    box-shadow: 0 14px 28px rgba(15, 69, 154, .2);
}

.sidebar-buy-more a {
    min-height: 66px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(35, 50, 90, .07);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.sidebar-buy-more a:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 28%, white);
    box-shadow: 0 18px 34px rgba(35, 50, 90, .12);
}

.promo-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-weight: 950;
}

.promo-icon.sale {
    color: #e11d48;
    background: #ffe4e6;
    font-size: 22px;
}

.promo-icon.new {
    color: #16a34a;
    background: #dcfce7;
    font-size: 16px;
}

.promo-icon.hit,
.promo-icon.compare {
    color: #7c3aed;
    background: #f3e8ff;
}

.promo-icon svg {
    width: 20px;
    height: 20px;
}

.sidebar-buy-more b {
    align-self: end;
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
}

.sidebar-buy-more small {
    align-self: start;
    color: var(--muted);
    font-size: 13px;
}

.sidebar-manager-help {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--primary) 16%, #dbe3ef);
    border-radius: 18px;
    background:
        radial-gradient(circle at 86% 10%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 28%),
        linear-gradient(145deg, #fff, color-mix(in srgb, var(--soft) 48%, #fff));
    box-shadow: 0 18px 36px rgba(35, 50, 90, .1);
}

.sidebar-manager-help::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -38px;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    pointer-events: none;
}

.manager-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 76%, #0f172a));
    box-shadow: 0 14px 28px color-mix(in srgb, var(--primary) 22%, transparent);
}

.manager-badge svg {
    width: 23px;
    height: 23px;
}

.sidebar-manager-help p,
.sidebar-manager-help h3,
.sidebar-manager-help small {
    position: relative;
    z-index: 1;
}

.sidebar-manager-help p {
    margin: 0 0 4px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sidebar-manager-help h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 950;
}

.sidebar-manager-help small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.manager-phone {
    position: relative;
    z-index: 1;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 26px color-mix(in srgb, var(--primary) 24%, transparent);
    font-weight: 950;
}

.manager-phone svg {
    width: 18px;
    height: 18px;
}

.manager-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.manager-actions a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 11px;
    color: color-mix(in srgb, var(--ink) 84%, var(--primary));
    background: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 900;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.manager-actions a:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 28%, #dbe3ef);
    background: #fff;
}

.manager-actions svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.sidebar-quick-collections {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #dbe3ef);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--primary) 15%, transparent), transparent 32%),
        linear-gradient(180deg, #fff, color-mix(in srgb, var(--soft) 34%, #fff));
    box-shadow: 0 18px 38px rgba(35, 50, 90, .1);
}

.sidebar-quick-collections::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.sidebar-quick-head {
    margin-bottom: 12px;
}

.sidebar-quick-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sidebar-quick-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
}

.sidebar-quick-list {
    display: grid;
    gap: 8px;
}

.sidebar-quick-list a {
    min-height: 70px;
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 22px rgba(35, 50, 90, .055);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.sidebar-quick-list a:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 30%, #dbe3ef);
    background: #fff;
    box-shadow: 0 16px 30px rgba(35, 50, 90, .11);
}

.sidebar-quick-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    background: color-mix(in srgb, var(--soft) 70%, #fff);
}

.sidebar-quick-icon svg {
    width: 21px;
    height: 21px;
}

.sidebar-quick-list b {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.18;
    font-weight: 950;
}

.sidebar-quick-list a.compact b {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
}

.sidebar-quick-list small {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.32;
    font-weight: 720;
}

.sidebar-quick-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
    width: 17px;
    height: 17px;
    color: color-mix(in srgb, var(--primary) 78%, var(--ink));
    opacity: .8;
    transition: transform .16s ease, opacity .16s ease;
}

.sidebar-quick-list a:hover .sidebar-quick-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

.sidebar-quick-all {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding: 0 12px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 78%, #0f172a));
    box-shadow: 0 14px 26px color-mix(in srgb, var(--primary) 22%, transparent);
    font-size: 13px;
    font-weight: 950;
}

.sidebar-quick-all svg {
    width: 17px;
    height: 17px;
}

.shop-chat-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 16000;
    font-family: inherit;
}

.shop-chat-toggle {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 72%, #071c63));
    color: #fff;
    box-shadow: 0 18px 44px color-mix(in srgb, var(--primary) 34%, transparent);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.shop-chat-toggle:hover {
    transform: translateY(-2px);
}

.shop-chat-toggle svg {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 2;
}

.shop-chat-toggle-copy {
    display: none;
}

.shop-chat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    z-index: 4;
}

.shop-chat-style-pulse .shop-chat-toggle::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 24px;
    border: 2px solid color-mix(in srgb, var(--primary) 42%, transparent);
    animation: shopChatPulse 1.9s ease-out infinite;
}

.shop-chat-style-pulse .shop-chat-toggle {
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #18b981);
}

.shop-chat-style-pill .shop-chat-toggle {
    width: 188px;
    grid-template-columns: 46px minmax(0, 1fr);
    justify-items: start;
    gap: 10px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
}

.shop-chat-style-pill .shop-chat-toggle-copy,
.shop-chat-style-manager .shop-chat-toggle-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1px;
    color: #fff;
    line-height: 1.05;
}

.shop-chat-style-pill .shop-chat-toggle-copy b,
.shop-chat-style-manager .shop-chat-toggle-copy b {
    font-size: 14px;
    font-weight: 950;
}

.shop-chat-style-pill .shop-chat-toggle-copy small,
.shop-chat-style-manager .shop-chat-toggle-copy small {
    opacity: .84;
    font-size: 11px;
    font-weight: 800;
}

.shop-chat-style-manager .shop-chat-toggle {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ff6b2c, #2563eb);
}

.shop-chat-style-manager .shop-chat-toggle::after {
    content: "24/7";
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    font-size: 10px;
    font-weight: 950;
}

.shop-chat-style-manager .shop-chat-toggle-copy {
    display: none;
}

.shop-chat-style-manager .shop-chat-panel {
    bottom: 92px;
}

.shop-chat-style-glass .shop-chat-toggle {
    border: 1px solid rgba(37, 99, 235, .22);
    background: rgba(255, 255, 255, .78);
    color: var(--primary);
    box-shadow: 0 18px 50px rgba(37, 99, 235, .18);
    backdrop-filter: blur(14px);
}

.shop-chat-style-minimal .shop-chat-toggle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .16);
}

.shop-chat-style-red .shop-chat-toggle {
    background: linear-gradient(135deg, #dc2626, #ac0203);
    box-shadow: 0 20px 48px rgba(220, 38, 38, .32);
}

.shop-chat-style-dark .shop-chat-toggle {
    background: linear-gradient(135deg, #0f172a, #334155);
    box-shadow: 0 22px 52px rgba(15, 23, 42, .32);
}

.shop-chat-style-outline .shop-chat-toggle {
    border: 2px solid color-mix(in srgb, var(--primary) 78%, #fff);
    background: #fff;
    color: var(--primary);
    box-shadow: 0 16px 40px rgba(37, 99, 235, .18);
}

.shop-chat-style-outline .shop-chat-badge,
.shop-chat-style-glass .shop-chat-badge,
.shop-chat-style-minimal .shop-chat-badge {
    border-color: #fff;
    background: #ff5a2f;
}

@keyframes shopChatPulse {
    0% {
        transform: scale(.82);
        opacity: .65;
    }
    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

.shop-chat-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(380px, calc(100vw - 28px));
    height: min(560px, calc(100vh - 110px));
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(134, 151, 186, .24);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(15, 23, 42, .24);
}

.shop-chat-panel header {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #21c45d));
    color: #fff;
}

.shop-chat-panel header small,
.shop-chat-panel header b {
    display: block;
}

.shop-chat-panel header small {
    margin-bottom: 3px;
    opacity: .82;
    font-size: 12px;
    font-weight: 800;
}

.shop-chat-panel header b {
    font-size: 17px;
    font-weight: 950;
}

.shop-chat-panel header button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    cursor: pointer;
}

.shop-chat-body {
    min-height: 0;
    display: grid;
    background: linear-gradient(180deg, #f8fbff, #fff);
}

.shop-chat-intro {
    padding: 24px 22px 10px;
}

.shop-chat-intro i,
.shop-chat-intro svg {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--soft) 70%, #fff);
    color: var(--primary);
}

.shop-chat-intro h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 950;
}

.shop-chat-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.shop-chat-start,
.shop-chat-send {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.shop-chat-start input,
.shop-chat-start textarea,
.shop-chat-send textarea {
    width: 100%;
    border: 1px solid rgba(134, 151, 186, .34);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: 0;
}

.shop-chat-start input {
    height: 46px;
    padding: 0 14px;
}

.shop-chat-start textarea,
.shop-chat-send textarea {
    min-height: 96px;
    max-height: 170px;
    padding: 13px 14px;
    resize: vertical;
}

.shop-chat-start input:focus,
.shop-chat-start textarea:focus,
.shop-chat-send textarea:focus {
    border-color: color-mix(in srgb, var(--primary) 58%, #dbe3ef);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

.shop-chat-start button {
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 950;
    cursor: pointer;
}

.shop-chat-messages {
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.shop-chat-message {
    max-width: 82%;
    display: grid;
    gap: 5px;
}

.shop-chat-message.own {
    align-self: flex-end;
}

.shop-chat-message.manager {
    align-self: flex-start;
}

.shop-chat-message p {
    margin: 0;
    padding: 11px 13px;
    border-radius: 16px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(134, 151, 186, .18);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .055);
    font-size: 14px;
    line-height: 1.38;
}

.shop-chat-message.own p {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.shop-chat-message time {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.shop-chat-message.own time {
    text-align: right;
}

.shop-chat-send {
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: end;
    border-top: 1px solid rgba(134, 151, 186, .18);
    background: #fff;
}

.shop-chat-send textarea {
    min-height: 48px;
    max-height: 120px;
}

.shop-chat-send button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

.shop-chat-note,
.shop-chat-error {
    margin: auto;
    padding: 18px;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

@media (max-width: 640px) {
    .shop-chat-widget {
        right: 14px;
        bottom: 14px;
    }

    .shop-chat-panel {
        right: -6px;
        bottom: 68px;
        width: calc(100vw - 28px);
        height: min(560px, calc(100vh - 96px));
        border-radius: 18px;
    }

    .shop-chat-style-pill .shop-chat-toggle {
        width: 58px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0;
    }

    .shop-chat-style-pill .shop-chat-toggle-copy {
        display: none;
    }

    .shop-chat-style-manager .shop-chat-panel {
        bottom: 84px;
    }
}

.mega-menu {
    position: absolute;
    top: var(--mega-top, 14px);
    left: 100%;
    z-index: 20;
    width: min(920px, calc(100vw - 430px));
    min-height: var(--mega-min-height, 560px);
    max-height: min(760px, calc(100vh - 76px));
    display: none;
    padding: 22px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 0 18px 18px 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 22px 24px 60px rgba(35, 50, 90, .16);
    overflow: auto;
    opacity: 0;
    transform: translateX(-6px);
    pointer-events: none;
    transition: top .14s ease, opacity .14s ease, transform .14s ease;
}

.mega-menu.open {
    display: block;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.mega-menu::before {
    display: none;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.mega-panel-head span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mega-panel-head h3 {
    margin: 4px 0 0;
    font-size: 24px;
    line-height: 1.2;
}

.mega-panel-head button,
.mega-panel-head .mega-cta,
.mega-card button,
.mega-card a {
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.mega-panel-head button,
.mega-panel-head .mega-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    font-weight: 850;
    white-space: nowrap;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mega-card {
    min-height: 190px;
    padding: 18px 20px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 12px;
    background: #fff;
}

.mega-card button,
.mega-card a,
.mega-card span {
    display: block;
    width: 100%;
    padding: 5px 0;
    text-align: left;
    line-height: 1.25;
}

.mega-card .mega-title {
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 950;
}

.mega-card button:not(.mega-title),
.mega-card a:not(.mega-title) {
    color: #203150;
    font-size: 15px;
}

.mega-card .mega-depth-1 { padding-left: 12px; color: var(--muted); }
.mega-card .mega-depth-2 { padding-left: 24px; color: var(--muted); font-size: 14px; }
.mega-card .mega-depth-3,
.mega-card .mega-depth-4 { padding-left: 36px; color: var(--muted); font-size: 13px; }

.mega-card button:hover,
.mega-card a:hover {
    color: var(--primary);
}

.mega-card span {
    color: var(--muted);
    font-size: 14px;
}

.main-content {
    min-width: 0;
}

.notice {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
}

.banner-slider {
    position: relative;
    margin-bottom: 18px;
}

.banner-track {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 16px;
}

.hero-card {
    min-height: 250px;
    display: grid;
    grid-template-columns: minmax(380px, 1fr) 340px;
    align-items: center;
    gap: 18px;
    padding: 34px 88px 34px 42px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(115deg, var(--banner-from, var(--primary)), var(--banner-to, #22c55e));
    color: var(--banner-text, #fff);
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: grid;
    opacity: 0;
    transform: translateX(22px) scale(.985);
    pointer-events: none;
    transition: opacity .55s ease, transform .55s ease;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 38%, rgba(255,255,255,.55), transparent 24%),
        linear-gradient(90deg, transparent 42%, rgba(255,255,255,.38));
}

.hero-copy,
.hero-art {
    position: relative;
    z-index: 1;
}

.hero-copy {
    min-width: 0;
}

.hero-copy h1 {
    margin: 0;
    max-width: 560px;
    color: var(--banner-text, #fff);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 500px;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    line-height: 1.4;
    margin: 14px 0;
}

.banner-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-actions,
.hero-tags,
.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-actions {
    margin-top: 18px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    font-weight: 850;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
}

.btn-light {
    color: var(--primary);
    background: rgba(255,255,255,.88);
}

.hero-tags {
    margin-top: 16px;
}

.hero-tags span,
.quick-tags button,
.quick-tags a {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: color-mix(in srgb, var(--primary) 76%, #0b2450);
    background: rgba(255,255,255,.7);
    font-weight: 750;
}

.hero-art {
    min-height: 188px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    right: 24px;
    bottom: 0;
    max-width: 330px;
    max-height: 232px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(19, 32, 68, .18));
}

.banner-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
    opacity: 0;
    transform: translateY(-50%) scale(.92);
    cursor: pointer;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.banner-slider:hover .banner-nav,
.banner-slider:focus-within .banner-nav {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

.banner-nav.prev { left: 16px; }
.banner-nav.next { right: 16px; }

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.banner-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.banner-dots button.active {
    width: 24px;
    background: #fff;
}

.box-stack span {
    position: absolute;
    display: block;
    width: 88px;
    height: 74px;
    border-radius: 5px;
    background: linear-gradient(135deg, #d99149, #f4c17e);
    box-shadow: 0 18px 40px rgba(103, 61, 20, .18);
}

.box-stack span:nth-child(1) { right: 52px; bottom: 106px; }
.box-stack span:nth-child(2) { right: 130px; bottom: 58px; width: 106px; height: 88px; }
.box-stack span:nth-child(3) { right: 12px; bottom: 36px; width: 116px; height: 98px; }

.supply-pack {
    position: absolute;
    left: 10px;
    bottom: 34px;
    width: 130px;
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 18px 48px rgba(19, 32, 68, .12);
}

.supply-pack img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.supply-pack svg {
    width: 58px;
    height: 58px;
    color: var(--primary);
}

.quick-tags {
    margin: 22px 30px 42px;
    padding: 20px 28px;
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 38px rgba(39, 58, 106, .08);
}

.quick-tags button,
.quick-tags a {
    cursor: pointer;
}

.cartridge-finder {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.4fr);
    gap: 20px;
    margin: 0 30px 38px;
    padding: 24px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.74)),
        linear-gradient(115deg, color-mix(in srgb, var(--primary) 14%, white), color-mix(in srgb, var(--accent) 12%, white));
    box-shadow: 0 18px 44px rgba(35, 50, 90, .1);
}

.cartridge-copy p {
    margin: 0 0 8px;
    color: var(--accent);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cartridge-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 38px);
}

.cartridge-copy span {
    display: block;
    max-width: 520px;
    color: var(--muted);
    line-height: 1.55;
}

.cartridge-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: end;
}

.cartridge-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.cartridge-form input,
.cartridge-form select {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}

.cartridge-form .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cartridge-examples {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -6px;
}

.cartridge-examples button {
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.catalog,
.info-grid {
    padding: 0 30px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
}

.section-head p {
    margin: 0 0 6px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-head h2 {
    margin: 0;
    font-size: 34px;
}

.section-head select {
    width: 210px;
    height: 46px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    background: #fff;
    padding: 0 12px;
    color: var(--ink);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.info-grid article {
    background: #fff;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
    overflow: hidden;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

/* Product page refinement: denser first screen, safer mobile layout, clearer commerce hierarchy. */
.shop-inner-page {
    overflow-x: hidden;
}

.theme-kanc.shop-inner-page .shop-page {
    overflow: hidden;
}

.theme-kanc.shop-inner-page .breadcrumbs {
    min-width: 0;
    align-items: center;
}

.theme-kanc.shop-inner-page .breadcrumbs a:last-child {
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.theme-kanc.shop-inner-page .product-page-pro {
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding: 2px 4px 2px 2px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell {
    grid-column: 2;
    grid-row: 1;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .08);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: clamp(18px, 4vw, 42px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery::before,
.theme-kanc.shop-inner-page .product-gallery::after {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 88%;
    height: 88%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    position: static;
    z-index: auto;
    filter: none;
}

.theme-kanc.shop-inner-page .product-summary {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
    max-width: 100%;
    flex-wrap: wrap;
}

.theme-kanc.shop-inner-page .product-page-pro .product-code,
.theme-kanc.shop-inner-page .product-page-pro .product-rating,
.theme-kanc.shop-inner-page .product-page-pro .product-brand {
    max-width: 100%;
}

.theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
    max-width: 720px;
    margin: 14px 0 10px;
    font-size: clamp(30px, 2.5vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-lead {
    max-width: 740px;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav {
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav a {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview {
    max-width: 760px;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview span {
    min-width: 0;
    min-height: 62px;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    max-width: 100%;
    padding: 16px;
    border-radius: 16px;
}

.theme-kanc.shop-inner-page .product-side-code {
    min-width: 0;
}

.theme-kanc.shop-inner-page .product-side-code span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-kanc.shop-inner-page .product-side-code > svg {
    flex: 0 0 auto;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row strong {
    font-size: clamp(32px, 3.2vw, 42px);
}

.theme-kanc.shop-inner-page .product-buy-panel .stock {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 42px;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-commerce-facts span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    grid-template-columns: 118px minmax(180px, 1fr) minmax(138px, auto);
}

.theme-kanc.shop-inner-page .purchase-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.theme-kanc.shop-inner-page .purchase-actions form,
.theme-kanc.shop-inner-page .purchase-actions .link-button {
    min-width: 0;
    width: 100%;
}

.theme-kanc.shop-inner-page .product-buy-panel .link-button {
    padding-inline: 10px;
}

.theme-kanc.shop-inner-page .product-description-panel p {
    max-width: 860px;
    min-height: 0;
    font-size: 16px;
    line-height: 1.7;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    grid-template-columns: 1fr;
}

.theme-kanc.shop-inner-page .related-mini-card {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: stretch;
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 132px;
}

.theme-kanc.shop-inner-page .related-mini-image img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #dce5f4;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: 12px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: 12px;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 16px;
    bottom: 16px;
    height: 46px;
    min-width: 150px;
    max-width: calc(100% - 32px);
    justify-content: center;
    border: 1px solid #dce5f4;
    background: #fff;
    opacity: 1;
    transform: none;
    z-index: 3;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 24px;
    height: 24px;
    color: #2367dc;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs img {
    object-fit: contain;
}

@media (max-width: 1180px) {
    .theme-kanc.shop-inner-page .product-page-pro {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .theme-kanc.template-default .shop-shell {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
    }

    .theme-kanc.template-default .topbar {
        gap: 14px;
        max-width: 100%;
        overflow: hidden;
    }

    .theme-kanc.template-default .top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        overflow: hidden;
    }

    .theme-kanc.template-default .shop-phone-link {
        min-width: 0;
        padding: 0 12px;
        justify-content: flex-start;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .theme-kanc.template-default .currency-switcher {
        min-width: 98px;
    }

    .theme-kanc.template-default .theme-link,
    .theme-kanc.template-default .cart-button {
        width: 48px;
        height: 48px;
    }

    .theme-kanc.template-default .user-card {
        display: none;
    }

    .theme-kanc.shop-inner-page .breadcrumbs {
        gap: 8px;
        overflow: hidden;
    }

    .theme-kanc.shop-inner-page .shop-page,
    .theme-kanc.shop-inner-page .product-page-pro,
    .theme-kanc.shop-inner-page .product-summary,
    .theme-kanc.shop-inner-page .product-info,
    .theme-kanc.shop-inner-page .product-buy-panel,
    .theme-kanc.shop-inner-page .product-lower-grid,
    .theme-kanc.shop-inner-page .product-main-column,
    .theme-kanc.shop-inner-page .related-sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .theme-kanc.shop-inner-page .product-page-pro,
    .theme-kanc.shop-inner-page .product-summary {
        display: block;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-info,
    .theme-kanc.shop-inner-page .product-buy-panel {
        max-width: calc(100vw - 50px);
        overflow: hidden;
    }

    .theme-kanc.shop-inner-page .product-info {
        margin-top: 18px;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-code,
    .theme-kanc.shop-inner-page .product-page-pro .product-rating,
    .theme-kanc.shop-inner-page .product-page-pro .product-brand {
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 0;
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .product-gallery img {
        width: 88%;
        height: 88%;
        max-height: 310px;
    }

    .theme-kanc.shop-inner-page .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        grid-column: 1;
        grid-row: auto;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 2px 0 4px;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        min-width: 0;
        height: 42px;
        padding: 0 12px;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
        max-width: 100%;
        font-size: clamp(25px, 7vw, 30px);
        line-height: 1.12;
        overflow-wrap: normal;
        word-break: normal;
    }

    .theme-kanc.shop-inner-page .product-lead {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .stock {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr);
        align-items: center;
        font-size: 13px;
    }

    .theme-kanc.shop-inner-page .product-buy-panel {
        padding: 14px;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .buy-row,
    .theme-kanc.shop-inner-page .purchase-actions {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-mini-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .theme-kanc.shop-inner-page .related-mini-image {
        min-height: 112px;
    }
}

/* Final product media-viewer overrides: compact white image canvas with optional vertical thumbs. */
.theme-kanc.shop-inner-page .product-gallery-wrap {
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding: 2px 4px 2px 2px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell {
    grid-column: 2;
    grid-row: 1;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .08);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: clamp(18px, 4vw, 42px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery::before,
.theme-kanc.shop-inner-page .product-gallery::after {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 88%;
    height: 88%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    position: static;
    z-index: auto;
    filter: none;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #dce5f4;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: 12px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: 12px;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 16px;
    bottom: 16px;
    height: 46px;
    min-width: 150px;
    justify-content: center;
    border: 1px solid #dce5f4;
    background: #fff;
    opacity: 1;
    transform: none;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 24px;
    height: 24px;
    color: #2367dc;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs img {
    object-fit: contain;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        grid-column: 1;
        grid-row: auto;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 2px 0 4px;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        right: 10px;
        bottom: 10px;
        min-width: 0;
        height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }
}

/* TurboShop-inspired product media viewer. */
.theme-kanc.shop-inner-page .product-gallery-wrap {
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding: 2px 4px 2px 2px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell {
    grid-column: 2;
    grid-row: 1;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .08);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: clamp(18px, 4vw, 42px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery::before,
.theme-kanc.shop-inner-page .product-gallery::after {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 100%;
    height: 100%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    filter: none;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #dce5f4;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: 12px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: 12px;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 16px;
    bottom: 16px;
    height: 46px;
    min-width: 150px;
    justify-content: center;
    border: 1px solid #dce5f4;
    background: #fff;
    opacity: 1;
    transform: none;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 24px;
    height: 24px;
    color: #2367dc;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs img {
    object-fit: contain;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        grid-column: 1;
        grid-row: auto;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 2px 0 4px;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        min-width: 0;
        height: 42px;
        padding: 0 12px;
    }
}

/* Final media-viewer overrides, kept last so theme blocks cannot stretch product photos back into banners. */
.theme-kanc.shop-inner-page .product-gallery-wrap {
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding: 2px 4px 2px 2px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell {
    grid-column: 2;
    grid-row: 1;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .08);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: clamp(18px, 4vw, 42px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery::before,
.theme-kanc.shop-inner-page .product-gallery::after {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 100%;
    height: 100%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    filter: none;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #dce5f4;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: 12px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: 12px;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 16px;
    bottom: 16px;
    height: 46px;
    min-width: 150px;
    justify-content: center;
    border: 1px solid #dce5f4;
    background: #fff;
    opacity: 1;
    transform: none;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 24px;
    height: 24px;
    color: #2367dc;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs img {
    object-fit: contain;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        grid-column: 1;
        grid-row: auto;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 2px 0 4px;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        min-width: 0;
        height: 42px;
        padding: 0 12px;
    }
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 19, 36, .26);
    box-shadow: 0 18px 44px rgba(35, 50, 90, .12);
}

.product-image {
    position: relative;
    height: 190px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--soft), #fff);
}

.product-image img {
    width: 100%;
    height: 100%;
    padding: 14px;
    object-fit: contain;
}

.product-image svg {
    width: 70px;
    height: 70px;
    color: var(--primary);
}

.card-image-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    pointer-events: none;
}

.card-image-badges b {
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 11px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(19, 32, 68, .12);
}

.product-body {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto;
    min-width: 0;
    padding: 16px;
}

.product-body small {
    color: var(--muted);
    font-weight: 800;
}

.product-body h3 {
    min-height: 48px;
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.3;
}

.product-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-body p {
    min-height: 44px;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.4;
}

.product-meta {
    min-height: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.product-card-meta {
    min-height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card-meta > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.stock-pill.in {
    color: #15803d;
    background: #dcfce7;
}

.stock-pill.out {
    color: #b91c1c;
    background: #fee2e2;
}

.price-stack {
    display: grid;
    gap: 2px;
}

.old-price {
    color: var(--muted);
    font-size: 13px;
    text-decoration: line-through;
}

.product-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.card-buy-form .btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
}

.card-buy-form svg {
    width: 17px;
    height: 17px;
}

.notice.success {
    color: #166534;
    background: #dcfce7;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.product-badges {
    min-height: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 12px;
}

.product-badges span {
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--soft);
    font-size: 12px;
    font-weight: 850;
}

.card-old-price {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--primary);
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.counter-link {
    position: relative;
}

.counter-link span,
.counter-link b {
    position: absolute;
    top: -6px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 12px;
    font-weight: 950;
}

.link-button svg {
    width: 15px;
    height: 15px;
}

.link-button:hover {
    color: var(--accent);
}

.link-button.is-active {
    color: var(--accent);
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(216, 19, 36, .18);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(216, 19, 36, .24);
}

.icon-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.icon-btn span {
    display: none;
}

.price {
    font-size: 20px;
    font-weight: 950;
}

.stock {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.product-more {
    display: inline-flex;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 850;
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
}

.compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(130, 150, 190, .16);
    text-align: left;
    vertical-align: top;
}

.compare-table th {
    background: var(--soft);
}

.compare-table td:first-child,
.compare-table th:first-child {
    width: 180px;
    font-weight: 850;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.info-grid article {
    padding: 22px;
}

.info-grid svg {
    color: var(--primary);
}

.info-grid b,
.info-grid span {
    display: block;
}

.info-grid b {
    margin-top: 12px;
    font-size: 18px;
}

.info-grid span {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.45;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    background: rgba(19, 32, 68, .46);
}

.cart-backdrop.show {
    display: block;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    width: min(440px, 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -18px 0 60px rgba(20, 34, 68, .18);
    transform: translateX(105%);
    transition: transform .22s ease;
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-head {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(130, 150, 190, .16);
}

.cart-head b {
    font-size: 22px;
}

.cart-head button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: var(--soft);
    color: var(--ink);
}

.cart-items {
    flex: 1;
    overflow: auto;
    padding: 16px 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(130, 150, 190, .14);
}

.cart-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty button {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 8px;
    background: #fff;
}

.order-form {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgba(130, 150, 190, .16);
}

.order-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.order-form input,
.order-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    padding: 10px 12px;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}

.cart-total b {
    font-size: 26px;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 80;
    min-width: 280px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    background: var(--ink);
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
    transition: .2s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.shop-page-shell {
    overflow: visible;
}

.shop-page {
    padding: 28px;
}

.shop-subnav {
    padding-left: 38px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a:last-child {
    color: var(--ink);
    font-weight: 800;
}

.page-hero {
    margin-bottom: 24px;
    padding: 34px;
    border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #4f8dff), color-mix(in srgb, var(--soft) 70%, white));
    color: #fff;
}

.page-hero.compact {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.page-hero p {
    margin: 0 0 8px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
}

.page-hero span {
    display: block;
    max-width: 720px;
    margin-top: 10px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.45;
}

.static-page-hero {
    display: grid;
    min-height: 260px;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 22%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 34%),
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 94%, #0f172a), color-mix(in srgb, var(--soft) 74%, #fff));
}

.static-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.static-page-content,
.static-page-aside {
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 40px rgba(35, 50, 90, .08);
}

.static-page-content {
    padding: 30px;
    color: color-mix(in srgb, var(--ink) 82%, var(--muted));
    font-size: 16px;
    line-height: 1.75;
}

.static-page-content h2,
.static-page-content h3,
.static-page-content h4 {
    margin: 0 0 14px;
    color: var(--ink);
    line-height: 1.18;
}

.static-page-content h2 {
    font-size: clamp(26px, 2.6vw, 36px);
}

.static-page-content h3 {
    margin-top: 24px;
    font-size: 24px;
}

.static-page-content p,
.static-page-content ul,
.static-page-content ol {
    margin: 0 0 18px;
}

.static-page-content li {
    margin-bottom: 8px;
}

.static-page-content a {
    color: var(--primary);
    font-weight: 850;
}

.static-page-aside {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 12px;
    padding: 18px;
}

.static-contact-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: #fff;
}

.static-contact-card svg {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 12px;
    color: var(--primary);
    background: color-mix(in srgb, var(--soft) 72%, #fff);
}

.static-contact-card b,
.static-contact-card span {
    display: block;
}

.static-contact-card b {
    color: var(--ink);
    line-height: 1.25;
}

.static-contact-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.catalog-sort select,
.buy-row input,
.cart-line input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.active-filters > span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.active-filters a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.active-filters a b {
    color: var(--primary);
}

.active-filters .clear {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.filter-toggle {
    display: none;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    font-weight: 900;
}

.market-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.filter-panel,
.checkout-summary,
.product-details,
.cart-lines,
.checkout-form,
.account-grid a,
.order-list article {
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
}

.filter-panel {
    align-self: start;
    display: grid;
    gap: 18px;
    padding: 18px;
}

.filter-panel h3 {
    margin: 0 0 8px;
}

.catalog-filters,
.filter-links {
    display: grid;
    gap: 10px;
}

.filter-price-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.catalog-filters label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.catalog-filters input,
.catalog-filters select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    padding: 9px 11px;
    background: #fff;
    color: var(--ink);
}

.catalog-filters .check-row {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
}

.catalog-filters .check-row input {
    width: 18px;
    min-height: 18px;
}

.catalog-results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 12px;
    background: rgba(255,255,255,.74);
}

.catalog-results-head b {
    color: var(--ink);
}

.catalog-results-head span {
    color: var(--muted);
    font-weight: 800;
}

.property-filter {
    display: grid;
    gap: 7px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(130, 150, 190, .16);
}

.property-filter b {
    color: var(--ink);
    font-size: 14px;
}

.property-filter small {
    color: var(--muted);
}

.brand-hero img {
    max-width: 180px;
    max-height: 110px;
    object-fit: contain;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.9);
}

.filter-panel a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 750;
}

.filter-panel a:hover {
    background: var(--soft);
}

.category-side-subcats {
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(130, 150, 190, .26);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(35, 50, 90, .08);
}

.category-side-head {
    display: grid;
    gap: 3px;
    padding: 12px 14px 11px;
    border-bottom: 1px solid rgba(130, 150, 190, .26);
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--primary) 10%, transparent), transparent 46%),
        linear-gradient(180deg, #f8fafc, #e9eef5);
}

.category-side-head span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.category-side-head b {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
}

.category-side-subcats a {
    position: relative;
    min-height: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px 9px 14px;
    border-bottom: 1px solid rgba(130, 150, 190, .14);
    border-radius: 0;
    color: color-mix(in srgb, var(--ink) 88%, var(--muted));
    font-weight: 850;
    line-height: 1.28;
    transition: background .16s ease, color .16s ease, padding-left .16s ease;
}

.category-side-subcats a:last-child {
    border-bottom: 0;
}

.category-side-subcats a:hover,
.category-side-subcats a.active {
    color: var(--ink);
    background: color-mix(in srgb, var(--soft) 70%, #fff);
    padding-left: 18px;
}

.category-side-subcats a.active::before {
    content: "";
    position: absolute;
    inset: 8px auto 8px 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--primary);
}

.category-side-subcats svg {
    display: none;
}

.category-side-subcats a > svg:last-child {
    display: block;
    width: 16px;
    height: 16px;
    color: color-mix(in srgb, var(--primary) 68%, var(--muted));
    opacity: .72;
}

.category-side-all {
    background: color-mix(in srgb, var(--soft) 38%, #fff);
    font-weight: 900;
}

.category-subcategory-strip {
    display: grid;
    gap: 14px;
    margin: 16px 0 20px;
    padding: 16px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 36px rgba(35, 50, 90, .08);
}

.category-subcategory-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.category-subcategory-head span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.category-subcategory-head b {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.category-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.category-subcategory-card {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    font-weight: 850;
    line-height: 1.24;
    box-shadow: 0 10px 22px rgba(35, 50, 90, .06);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.category-subcategory-card:hover,
.category-subcategory-card.active {
    border-color: color-mix(in srgb, var(--primary) 38%, #dce5f4);
    background: color-mix(in srgb, var(--soft) 58%, #fff);
    box-shadow: 0 14px 28px rgba(35, 50, 90, .1);
    transform: translateY(-1px);
}

.category-subcategory-card svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-weight: 850;
}

.pagination span {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.category-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.category-tiles a,
.account-grid a {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.category-tiles a {
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 12px;
    background: #fff;
    font-weight: 850;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.product-gallery-shell {
    position: relative;
}

.product-gallery {
    position: relative;
    min-height: 440px;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
    cursor: zoom-in;
}

button.product-gallery {
    font: inherit;
}

.product-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
    pointer-events: none;
}

.product-gallery:hover .gallery-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.gallery-zoom-hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 10px 24px rgba(19, 32, 68, .14);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease;
}

.product-gallery img {
    max-width: 92%;
    max-height: 400px;
    object-fit: contain;
}

.product-gallery svg {
    width: 110px;
    height: 110px;
    color: var(--primary);
}

.product-gallery-wrap {
    min-width: 0;
}

.gallery-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-badges b,
.gallery-badges span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 26px rgba(19, 32, 68, .14);
    transform: translateY(-50%);
    cursor: pointer;
}

.gallery-arrow.prev {
    left: 12px;
}

.gallery-arrow.next {
    right: 12px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs button {
    aspect-ratio: 1;
    border: 1px solid rgba(130, 150, 190, .2);
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    cursor: pointer;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 18%, transparent);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 10px 0;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.product-code {
    color: var(--muted);
    font-weight: 700;
}

.product-rating {
    color: var(--accent);
    font-weight: 850;
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}

.product-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.product-info h1 {
    margin: 10px 0;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.08;
}

.product-info p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.product-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.product-quick-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.spec-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.spec-preview span {
    min-height: 64px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}

.spec-preview b {
    color: var(--muted);
    font-size: 12px;
}

.purchase-card {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(35, 50, 90, .12);
}

.purchase-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    place-items: center;
    padding: 64px;
    background: rgba(7, 13, 28, .86);
}

.product-lightbox.open {
    display: grid;
}

.product-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.lightbox-close,
.lightbox-arrow {
    position: fixed;
    z-index: 201;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
}

.lightbox-arrow {
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
}

.lightbox-arrow.prev {
    left: 24px;
}

.lightbox-arrow.next {
    right: 24px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 24px 0 8px;
}

.product-price-row strong {
    font-size: 30px;
    font-weight: 800;
}

.product-price-row del {
    color: var(--muted);
    font-size: 18px;
}

.buy-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    margin-top: 22px;
}

.buy-row .btn-light {
    grid-column: 1 / -1;
}

.purchase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.purchase-benefits {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(130, 150, 190, .16);
}

.purchase-benefits span {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
}

.purchase-benefits svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 10px;
    color: var(--primary);
    background: var(--soft);
}

.purchase-benefits b,
.purchase-benefits small {
    display: block;
}

.purchase-benefits small {
    color: var(--muted);
    line-height: 1.35;
}

.product-commerce-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
}

.product-commerce-facts span {
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--primary) 12%, #dbe3ef);
    border-radius: 12px;
    background: color-mix(in srgb, var(--soft) 42%, #fff);
    color: var(--ink);
    font-weight: 850;
}

.product-commerce-facts b {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.product-file-list,
.product-stock-list {
    display: grid;
    gap: 10px;
}

.product-file-list a,
.product-stock-list span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 12px;
    background: #fff;
}

.product-file-list svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 12px;
    color: var(--primary);
    background: color-mix(in srgb, var(--soft) 70%, #fff);
}

.product-file-list b,
.product-file-list small,
.product-stock-list b,
.product-stock-list small,
.product-stock-list strong {
    display: block;
}

.product-file-list small,
.product-stock-list small {
    color: var(--muted);
    font-size: 13px;
}

.product-stock-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.product-stock-list span {
    grid-template-columns: 1fr;
}

.product-stock-list strong {
    color: var(--primary);
    font-size: 18px;
}

.product-linked-sections {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.product-linked-block {
    padding: 18px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
}

.related-mini-grid.wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stock-in {
    color: #15803d;
    font-weight: 850;
}

.stock-out {
    color: #dc2626;
    font-weight: 850;
}

.product-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 24px;
}

.product-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.product-service-grid article {
    padding: 22px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
    background: #fff;
}

.product-service-grid svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 10px;
    color: var(--primary);
    background: var(--soft);
}

.product-service-grid h2 {
    margin: 12px 0 8px;
    font-size: 20px;
}

.product-service-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.product-details {
    margin-top: 34px;
    padding: 24px;
}

.related-products {
    margin-top: 36px;
}

.spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 16px 0 0;
}

.spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(130, 150, 190, .16);
}

.spec-list dt {
    color: var(--muted);
}

.spec-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
    text-align: right;
}

.product-page-pro {
    grid-template-columns: minmax(340px, 620px) minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 3% 18%, color-mix(in srgb, var(--soft) 88%, transparent), transparent 28%),
        linear-gradient(120deg, rgba(255,255,255,.96), color-mix(in srgb, var(--bg) 74%, white));
    box-shadow: 0 20px 60px rgba(35, 50, 90, .08);
}

.product-page-pro .product-gallery {
    min-height: 560px;
    border-color: color-mix(in srgb, var(--primary) 13%, #e3e8f5);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--soft) 42%, #fff));
    box-shadow: 0 18px 42px rgba(35, 50, 90, .1);
}

.product-page-pro .product-gallery img {
    max-height: 500px;
}

.product-summary {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 6px 0;
}

.product-page-pro .product-info {
    padding: 0;
}

.product-page-pro .product-meta-row {
    justify-content: space-between;
}

.product-page-pro .product-code {
    font-size: 13px;
}

.product-page-pro .product-rating {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.rating-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.product-page-pro .product-rating b {
    color: var(--ink);
}

.product-page-pro .product-rating small {
    color: var(--muted);
    font-weight: 700;
}

.product-page-pro .product-brand {
    margin-top: 16px;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(35, 50, 90, .07);
}

.product-page-pro .product-info h1 {
    max-width: 780px;
    margin: 16px 0 12px;
    font-size: clamp(30px, 3.2vw, 46px);
    letter-spacing: 0;
}

.product-lead {
    max-width: 760px;
}

.product-page-pro .product-quick-nav a {
    border-radius: 8px;
    color: color-mix(in srgb, var(--primary) 82%, var(--ink));
    background: rgba(255,255,255,.72);
}

.product-page-pro .spec-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-page-pro .spec-preview span {
    border-color: color-mix(in srgb, var(--primary) 12%, #dbe3ef);
    border-radius: 12px;
    background: rgba(255,255,255,.78);
}

.product-buy-panel {
    position: static;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-side-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 4px 0 2px;
}

.product-side-code span,
.product-side-code > svg {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 13%, #dbe3ef);
    border-radius: 12px;
    color: var(--muted);
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 26px rgba(35, 50, 90, .07);
}

.product-side-code > svg {
    width: 50px;
    padding: 13px;
    color: var(--primary);
}

.product-buy-panel .product-price-row {
    margin: 10px 0 4px;
}

.product-buy-panel .product-price-row strong {
    color: var(--accent);
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1;
}

.product-buy-panel .stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
}

.product-buy-panel .stock::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #fff;
    background: #22c55e;
    font-size: 13px;
}

.stock-out::before {
    content: "!";
    background: #ef4444;
}

.stock-order::before {
    content: "?";
    background: #2563eb;
}

.product-buy-panel .buy-row {
    grid-template-columns: 132px minmax(180px, 1fr) minmax(170px, auto);
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.product-buy-panel .buy-row .btn-light {
    grid-column: auto;
}

.product-buy-panel .btn-primary {
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 82%, #ff7a1a));
    box-shadow: 0 15px 28px color-mix(in srgb, var(--accent) 28%, transparent);
}

.product-buy-panel .btn-light,
.product-buy-panel .link-button {
    border: 1px solid color-mix(in srgb, var(--primary) 14%, #dbe3ef);
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 24px rgba(35, 50, 90, .07);
}

.qty-stepper {
    height: 52px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--primary) 16%, #dbe3ef);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(35, 50, 90, .07);
}

.qty-stepper button,
.qty-stepper input {
    min-width: 0;
    border: 0;
    color: color-mix(in srgb, var(--primary) 84%, var(--ink));
    background: transparent;
    text-align: center;
    font-weight: 900;
}

.qty-stepper button {
    cursor: pointer;
    font-size: 20px;
}

.qty-stepper input {
    border-left: 1px solid rgba(130, 150, 190, .16);
    border-right: 1px solid rgba(130, 150, 190, .16);
    outline: 0;
    appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-buy-panel .purchase-actions {
    margin-top: 6px;
}

.product-buy-panel .purchase-actions form,
.product-buy-panel .purchase-actions button {
    flex: 1 1 170px;
}

.product-buy-panel .link-button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 9px;
    color: var(--ink);
    font-weight: 850;
}

.product-buy-panel .purchase-benefits {
    display: none;
}

.product-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 28px;
    padding: 18px 8px;
    border-top: 1px solid rgba(130, 150, 190, .13);
    border-bottom: 1px solid rgba(130, 150, 190, .13);
}

.product-trust-strip article {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 12px;
}

.product-trust-strip svg {
    width: 52px;
    height: 52px;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #dbe3ef);
    border-radius: 14px;
    color: var(--primary);
    background: color-mix(in srgb, var(--soft) 76%, #fff);
}

.product-trust-strip b,
.product-trust-strip span {
    display: block;
}

.product-trust-strip b {
    font-size: 18px;
}

.product-trust-strip span {
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.35;
}

.product-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 22px;
    align-items: start;
}

.product-lower-grid.no-related {
    grid-template-columns: 1fr;
}

.product-main-column {
    min-width: 0;
}

.product-tabs {
    display: flex;
    align-items: end;
    gap: 4px;
}

.product-tabs a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    padding: 0 28px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    color: var(--ink);
    background: color-mix(in srgb, var(--soft) 48%, #fff);
    font-size: 18px;
    font-weight: 850;
}

.product-tabs a.active {
    background: #fff;
    font-size: 22px;
}

.product-lower-grid .product-details {
    margin-top: 0;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 0 18px 18px 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 40px rgba(35, 50, 90, .07);
}

.product-lower-grid .product-details + .product-details {
    margin-top: 16px;
    border-radius: 18px;
}

.product-description-panel h2,
.product-lower-grid .product-details h2 {
    margin-top: 0;
    font-size: clamp(24px, 2.2vw, 32px);
}

.product-description-panel p,
.product-lower-grid .product-details p {
    color: color-mix(in srgb, var(--ink) 78%, var(--muted));
    font-size: 16px;
    line-height: 1.8;
}

.product-path-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(130, 150, 190, .13);
    border-radius: 16px;
    color: var(--muted);
    background: rgba(255,255,255,.72);
}

.product-path-note svg {
    color: #22c55e;
}

.product-path-note a,
.product-path-note b {
    color: color-mix(in srgb, var(--primary) 78%, var(--ink));
}

.product-comments-panel {
    display: grid;
    gap: 18px;
}

.product-comments-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.product-comments-head span:first-child {
    display: block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-comments-head p {
    max-width: 680px;
    margin: 6px 0 0;
}

.product-comments-score {
    min-width: 150px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 16%, #dbe3ef);
    border-radius: 18px;
    text-align: center;
    background: color-mix(in srgb, var(--soft) 70%, #fff);
}

.product-comments-score strong {
    display: block;
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
}

.comment-stars {
    --comment-rating: 0%;
    position: relative;
    display: inline-block;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}

.comment-stars::before {
    content: "★★★★★";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--comment-rating);
    overflow: hidden;
    color: #f59e0b;
}

.product-comments-score small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.comment-form {
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--primary) 14%, #dbe3ef);
    border-radius: 18px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--soft) 55%, #fff), #fff);
}

.comment-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.comment-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.comment-form .wide {
    grid-column: 1 / -1;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--primary) 16%, #dbe3ef);
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.comment-form input,
.comment-form select {
    min-height: 44px;
    padding: 0 12px;
}

.comment-form textarea {
    min-height: 118px;
    padding: 12px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

.comment-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.comment-form-actions span {
    color: #15803d;
    font-weight: 850;
}

.comment-form-actions span.error {
    color: #dc2626;
}

.product-comments-list {
    display: grid;
    gap: 12px;
}

.product-comment {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 13%, #dbe3ef);
    border-radius: 18px;
    background: #fff;
}

.product-comment-avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 20px;
    font-weight: 950;
    text-transform: uppercase;
}

.product-comment header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.product-comment header b {
    color: var(--ink);
    font-size: 17px;
}

.product-comment header span,
.product-comment header small {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    color: #15803d;
    background: #dcfce7;
    font-size: 12px;
    font-weight: 900;
}

.product-comment header small {
    color: #a16207;
    background: #fef3c7;
}

.product-comment p {
    margin: 8px 0 0;
}

.product-comment time {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.product-comment-reply {
    margin-top: 12px;
    padding: 12px 14px;
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    background: color-mix(in srgb, var(--soft) 70%, #fff);
}

.product-comment-reply b {
    display: block;
    color: var(--primary);
}

.product-comment-reply p {
    margin-top: 4px;
}

.comments-empty {
    padding: 22px;
    border: 1px dashed color-mix(in srgb, var(--primary) 18%, #dbe3ef);
    border-radius: 16px;
    color: var(--muted);
    text-align: center;
    font-weight: 850;
    background: color-mix(in srgb, var(--soft) 54%, #fff);
}

@media (max-width: 900px) {
    .product-comments-head,
    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .product-comments-score {
        min-width: 0;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .product-comment {
        grid-template-columns: 1fr;
    }

    .product-comment-avatar {
        width: 42px;
        height: 42px;
    }
}

.related-sidebar {
    position: sticky;
    top: 18px;
    padding: 18px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 40px rgba(35, 50, 90, .08);
}

.related-sidebar-head h2 {
    margin: 0;
    font-size: 26px;
}

.related-sidebar-head span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.related-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.related-mini-card {
    min-width: 0;
    display: grid;
    grid-template-rows: 132px 1fr;
    overflow: hidden;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: #fff;
}

.related-mini-image {
    display: grid;
    place-items: center;
    padding: 10px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--soft) 55%, #fff), #fff);
}

.related-mini-image img {
    max-width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.related-mini-image svg {
    width: 52px;
    height: 52px;
    color: var(--primary);
}

.related-mini-body {
    display: grid;
    gap: 7px;
    padding: 12px;
}

.related-mini-body h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
}

.related-mini-body span {
    min-height: 34px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.related-mini-body strong {
    color: var(--accent);
    font-size: 20px;
}

.related-mini-body .btn {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 9px;
}

.cart-page,
.checkout-page {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.checkout-page.narrow {
    grid-template-columns: minmax(300px, 540px);
    justify-content: center;
}

.checkout-page-pro {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.cart-lines {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
}

.cart-line {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 120px 138px 130px 42px;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid rgba(130, 150, 190, .14);
}

.cart-line:last-child {
    border-bottom: 0;
}

.cart-product {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.cart-product-image {
    width: 76px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(130, 150, 190, .18);
    border-radius: 10px;
    background: #f8fafc;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-image svg {
    color: var(--primary);
}

.cart-product b {
    display: block;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-product small,
.cart-price {
    color: var(--muted);
}

.cart-stock-pill {
    width: max-content;
    max-width: 100%;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    margin: 2px 0 6px;
    padding: 0 9px;
    border-radius: 999px;
    color: #147d3d;
    background: #ecfdf3;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.cart-stock-pill.order {
    color: #1557b6;
    background: #eff6ff;
}

.cart-stock-pill.out {
    color: #c52727;
    background: #fff1f2;
}

.cart-qty {
    display: grid;
    grid-template-columns: 34px 62px 34px;
    align-items: center;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 10px;
    overflow: hidden;
}

.cart-qty input {
    width: 100%;
    height: 38px;
    border: 0;
    border-inline: 1px solid rgba(130, 150, 190, .16);
    text-align: center;
    outline: 0;
}

.cart-qty button {
    width: 34px;
    height: 38px;
    border: 0;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

.cart-remove button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #ef4444;
    cursor: pointer;
}

.cart-line-total {
    font-size: 18px;
    text-align: right;
}

.checkout-summary {
    display: grid;
    gap: 12px;
    padding: 22px;
    position: sticky;
    top: 18px;
    background: #fff;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
}

.checkout-summary h2 {
    margin: 0;
    font-size: 22px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(130, 150, 190, .12);
}

.summary-row b {
    font-size: 16px;
}

.checkout-summary form,
.checkout-summary .btn {
    width: 100%;
}

.checkout-summary form button {
    width: 100%;
}

.checkout-summary span {
    color: var(--muted);
}

.checkout-summary strong {
    font-size: 22px;
}

.checkout-summary strong:last-of-type {
    font-size: 34px;
}

.cart-summary-note,
.checkout-confirmation-note {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    color: var(--ink);
    background: color-mix(in srgb, var(--primary) 7%, #fff);
}

.cart-summary-note svg,
.checkout-confirmation-note svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 10px;
    color: var(--primary);
    background: #fff;
}

.cart-summary-note span,
.checkout-confirmation-note span {
    display: block;
    color: var(--muted);
    line-height: 1.4;
}

.coupon-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.checkout-form {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.checkout-form-pro {
    padding: 0;
}

.checkout-section {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
    background: #fff;
}

.checkout-section legend {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.checkout-section legend span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
}

.checkout-section label,
.coupon-box label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.checkout-section input,
.checkout-section textarea,
.coupon-box input {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    outline: 0;
    background: #fff;
}

.checkout-section textarea {
    resize: vertical;
}

.form-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.choice-card {
    min-height: 58px;
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    padding: 12px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.choice-card input {
    width: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--primary);
}

.choice-card:has(input:checked) {
    border-color: color-mix(in srgb, var(--primary) 62%, white);
    background: color-mix(in srgb, var(--primary) 7%, white);
}

.checkout-submit {
    min-height: 56px;
    font-size: 17px;
}

.checkout-summary-pro {
    gap: 16px;
}

.checkout-items {
    display: grid;
    gap: 10px;
    max-height: 300px;
    overflow: auto;
    padding-right: 4px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(130, 150, 190, .12);
}

.checkout-item-image {
    width: 54px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 10px;
    background: #f8fafc;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item > span:not(.checkout-item-image) {
    color: var(--ink);
    line-height: 1.35;
}

.checkout-item > span:not(.checkout-item-image) b,
.checkout-item > span:not(.checkout-item-image) small {
    display: block;
}

.checkout-item > span:not(.checkout-item-image) small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
}

.checkout-item strong {
    grid-column: 2;
    color: var(--muted);
    font-size: 14px;
}

.checkout-form h1 {
    margin: 0 0 6px;
}

.checkout-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 850;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.account-grid svg {
    color: var(--primary);
}

.account-grid b,
.account-grid span {
    display: block;
}

.account-grid span {
    color: var(--muted);
}

.order-list {
    display: grid;
    gap: 12px;
}

.order-list article {
    display: grid;
    grid-template-columns: 1fr 160px 160px;
    gap: 14px;
    padding: 16px;
}

.empty-state {
    padding: 24px;
    border: 1px dashed rgba(130, 150, 190, .36);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255,255,255,.7);
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
    color: var(--ink);
}

.empty-state p {
    margin: 0 auto 18px;
    max-width: 520px;
    line-height: 1.55;
}

.search-page-form {
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin: 0 auto 12px;
}

.search-page-form input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(130, 150, 190, .24);
    border-radius: 10px;
    outline: 0;
}

.order-success-page {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 58px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 18px;
}

.success-mark {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #16a34a;
}

.success-mark svg {
    width: 38px;
    height: 38px;
}

.order-success-page p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.55;
}

.order-success-page > p:first-of-type {
    color: #16a34a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.order-success-page h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.shop-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 38px;
    border-top: 1px solid rgba(130, 150, 190, .14);
    background: rgba(255,255,255,.78);
}

.shop-footer span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.store-footer {
    margin-top: 34px;
    border-top: 1px solid #dbe3ef;
    background: #f4f7fb;
}

.footer-benefits {
    width: min(1180px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto;
    padding: 34px 0 28px;
}

.footer-benefits article {
    min-height: 112px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px 16px;
    padding: 18px;
    border: 1px solid #dce3ee;
    border-radius: 14px;
    background: #fff;
}

.footer-benefits svg {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    padding: 12px;
    border-radius: 13px;
    color: #1546b7;
    background: #eef4ff;
    stroke-width: 2;
}

.footer-benefits b {
    align-self: end;
    color: #020617;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 950;
}

.footer-benefits span {
    align-self: start;
    grid-column: 2;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.footer-main {
    width: min(1200px, calc(100% - 48px));
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 54px;
    margin: 0 auto;
    padding: 34px 16px 36px;
    border-top: 1px solid #dbe3ef;
}

.footer-brand h2 {
    margin: 0 0 14px;
    color: #1546b7;
    font-size: 26px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .02em;
}

.footer-brand p {
    max-width: 230px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.footer-main nav {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-main nav b {
    margin-bottom: 5px;
    color: #020617;
    font-size: 14px;
    font-weight: 950;
}

.footer-main nav a {
    color: #0f172a;
    font-size: 13px;
}

.footer-main nav a:hover {
    color: var(--primary);
}

.footer-contact-list {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.footer-contact-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    padding: 0 10px;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    color: #0f172a;
    background: #fff;
    font-weight: 850;
}

.footer-contact-link svg {
    width: 16px;
    height: 16px;
    color: #1546b7;
}

.footer-contact-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-bottom {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-top: 1px solid #dbe3ef;
    color: #94a3b8;
    font-size: 12px;
}

.market-catalog-btn,
.login-link,
.theme-link span,
.cart-button em {
    display: none;
}

body.theme-kanc.template-default {
    background:
        radial-gradient(circle at 12% -6%, rgba(35, 103, 220, .18), transparent 34%),
        radial-gradient(circle at 88% 6%, rgba(255, 107, 44, .12), transparent 30%),
        linear-gradient(180deg, #f4f7ff 0%, #ffffff 72%);
}

.theme-kanc.template-default .shop-shell {
    width: min(1520px, calc(100% - 44px));
    margin: 28px auto;
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 22px 70px rgba(19, 32, 68, .12);
}

.theme-kanc.template-default .topbar {
    z-index: 3000;
    min-height: 88px;
    grid-template-columns: 186px minmax(360px, 1fr) auto;
    padding: 18px 34px;
    background: rgba(255,255,255,.94);
}

.theme-kanc.template-default .brand span {
    min-width: 156px;
    height: 48px;
    border-radius: 7px;
    background: linear-gradient(135deg, #df1425, #b90f1e);
    box-shadow: 0 14px 28px rgba(216, 19, 36, .2);
}

.theme-kanc.template-default .search-bar {
    height: 56px;
    grid-template-columns: auto auto minmax(180px, 1fr) 64px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(35, 50, 90, .08);
}

.theme-kanc.template-default .category-chip {
    font-size: 15px;
}

.theme-kanc.template-default .shop-header-mega {
    width: min(980px, calc(100vw - 78px));
}

.theme-kanc.template-default .top-actions {
    gap: 9px;
}

.theme-kanc.template-default .theme-link,
.theme-kanc.template-default .cart-button {
    box-shadow: 0 14px 28px rgba(35, 103, 220, .2);
}

.theme-kanc.template-default .subnav {
    height: 56px;
    gap: 8px;
    padding: 0 28px 0 374px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #fff;
    scrollbar-width: none;
}

.theme-kanc.template-default .subnav::-webkit-scrollbar {
    display: none;
}

.theme-kanc.template-default .subnav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 14px;
    border-radius: 999px;
    color: #071531;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    white-space: nowrap;
    letter-spacing: 0;
}

.theme-kanc.template-default .subnav a:hover,
.theme-kanc.template-default .subnav a.active {
    color: #1557b6;
    background: #eff6ff;
}

.theme-kanc.template-default .layout {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    padding: 12px 28px 44px;
}

.theme-kanc.template-default .category-sidebar {
    transform: translateY(-50px);
}

.theme-kanc.template-default .category-main {
    width: 286px;
    height: 50px;
    border-radius: 10px;
    font-size: 17px;
}

.theme-kanc.template-default .category-list {
    border-radius: 14px;
    border-right: 1px solid rgba(130, 150, 190, .16);
}

.theme-kanc.template-default .category-list button,
.theme-kanc.template-default .category-list a {
    min-height: 48px;
    font-size: 14px;
}

.theme-kanc.template-default .sidebar-shop-tools {
    width: 100%;
    margin-left: 0;
}

.theme-kanc.template-default .banner-slider {
    margin-bottom: 16px;
}

.theme-kanc.template-default .banner-track {
    min-height: 330px;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(35, 50, 90, .12);
}

.theme-kanc.template-default .hero-card {
    min-height: 330px;
    grid-template-columns: minmax(420px, 1fr) minmax(300px, 420px);
    padding: 42px 92px 42px 44px;
}

.theme-kanc.template-default .hero-card::after {
    background:
        radial-gradient(circle at 76% 42%, rgba(255,255,255,.52), transparent 25%),
        linear-gradient(90deg, transparent 46%, rgba(255,255,255,.34));
}

.theme-kanc.template-default .hero-copy h1 {
    max-width: 650px;
    font-size: clamp(34px, 3.7vw, 54px);
}

.theme-kanc.template-default .hero-copy p {
    max-width: 560px;
    font-size: 18px;
}

.theme-kanc.template-default .banner-kicker {
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.16);
    letter-spacing: 0;
}

.theme-kanc.template-default .banner-image {
    right: 34px;
    max-width: 390px;
    max-height: 300px;
    object-fit: contain;
}

.theme-kanc.template-default .banner-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}

.theme-kanc.template-default .banner-dots {
    bottom: 18px;
}

.kanc-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.kanc-stat-strip article {
    min-height: 88px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 4px 12px;
    padding: 16px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(35, 50, 90, .07);
}

.kanc-stat-strip svg {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.kanc-stat-strip b {
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}

.kanc-stat-strip span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 750;
}

.kanc-cartridge-panel {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(450px, 1.2fr);
    gap: 18px;
    align-items: center;
    margin: 0 0 24px;
    padding: 24px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 88% 16%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, #1557b6, #2367dc 56%, #18a45e);
    box-shadow: 0 18px 42px rgba(35, 103, 220, .18);
}

.kanc-cartridge-copy span {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.kanc-cartridge-copy h2 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.12;
}

.kanc-cartridge-copy p {
    max-width: 540px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.84);
    line-height: 1.45;
}

.kanc-cartridge-panel form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 150px;
    gap: 10px;
}

.kanc-cartridge-panel select,
.kanc-cartridge-panel button {
    min-height: 50px;
    border-radius: 10px;
}

.kanc-cartridge-panel select {
    width: 100%;
    padding: 0 13px;
    border: 0;
    color: var(--ink);
    background: #fff;
}

.kanc-cartridge-panel .btn-primary {
    background: #ff6b2c;
}

.kanc-buying-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 18px;
    margin: 0 0 28px;
}

.kanc-category-showcase,
.kanc-collection-showcase {
    padding: 22px;
    border: 1px solid rgba(130, 150, 190, .16);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(35, 50, 90, .08);
}

.theme-kanc.template-default .section-head.compact {
    align-items: center;
    margin-bottom: 16px;
}

.theme-kanc.template-default .section-head.compact h2 {
    font-size: 24px;
}

.kanc-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--soft);
    font-size: 13px;
    font-weight: 900;
}

.kanc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.kanc-category-grid a {
    min-height: 118px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 7px;
    padding: 14px 10px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    text-align: center;
}

.kanc-category-grid svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.kanc-category-grid b {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 950;
}

.kanc-category-grid span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
}

.kanc-collection-list {
    display: grid;
    gap: 10px;
}

.kanc-collection-list a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    padding: 11px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.kanc-collection-list svg {
    width: 24px;
    height: 24px;
    padding: 8px;
    box-sizing: content-box;
    border-radius: 12px;
    color: var(--primary);
    background: var(--soft);
}

.kanc-collection-list b,
.kanc-collection-list small {
    display: block;
}

.kanc-collection-list b {
    color: var(--ink);
    font-weight: 950;
}

.kanc-collection-list small {
    margin-top: 3px;
    color: var(--muted);
    line-height: 1.25;
}

.theme-kanc.template-default .catalog {
    padding: 0;
}

.theme-kanc.template-default .section-head {
    align-items: center;
}

.theme-kanc.template-default .home-product-tabs {
    margin-bottom: 18px;
}

.theme-kanc.template-default .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.theme-kanc.template-default .product-card {
    position: relative;
    min-height: 100%;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(35, 50, 90, .08);
}

.theme-kanc.template-default .product-card:hover {
    border-color: rgba(35, 103, 220, .28);
    box-shadow: 0 22px 52px rgba(35, 50, 90, .13);
}

.theme-kanc.template-default .product-image {
    height: 206px;
    margin: 10px 10px 0;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 20%, #fff, transparent 45%),
        linear-gradient(180deg, #f5f8ff, #eef4ff);
    overflow: hidden;
}

.theme-kanc.template-default .product-image img {
    object-fit: contain;
    padding: 18px;
    transition: transform .18s ease;
}

.theme-kanc.template-default .product-card:hover .product-image img {
    transform: scale(1.035);
}

.theme-kanc.template-default .card-image-badges {
    top: 12px;
    left: 12px;
}

.theme-kanc.template-default .card-image-badges b {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(19, 32, 68, .14);
}

.theme-kanc.template-default .card-image-badges .badge-new {
    background: #16a34a;
}

.theme-kanc.template-default .card-image-badges .badge-hit {
    background: #2367dc;
}

.theme-kanc.template-default .card-image-badges .badge-sale {
    background: #ff6b2c;
}

.theme-kanc.template-default .product-body {
    padding: 15px 16px 16px;
}

.theme-kanc.template-default .product-body small,
.theme-kanc.template-default .product-meta small {
    color: #65759b;
    font-size: 12px;
    line-height: 1.25;
}

.theme-kanc.template-default .product-body h3 {
    min-height: 46px;
    margin: 8px 0 9px;
    font-size: 16px;
    line-height: 1.28;
}

.theme-kanc.template-default .product-body p {
    min-height: 40px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.35;
}

.theme-kanc.template-default .product-meta,
.theme-kanc.template-default .product-card-meta {
    min-height: 28px;
    margin-bottom: 12px;
}

.theme-kanc.template-default .stock-pill {
    min-height: 26px;
    border-radius: 8px;
}

.stock-pill.order {
    color: #1d4ed8;
    background: #dbeafe;
}

.theme-kanc.template-default .stock-note,
.theme-kanc.template-default .product-card-meta > span:not(.stock-pill) {
    min-height: 24px;
    color: #64748b;
    background: #f8fafc;
    border-radius: 8px;
}

.theme-kanc.template-default .rating-pill {
    color: #b45309 !important;
    background: #fef3c7 !important;
}

.theme-kanc.template-default .product-foot {
    align-items: end;
    gap: 12px;
}

.theme-kanc.template-default .price {
    color: #0b1f4d;
    font-size: 22px;
}

.theme-kanc.template-default .card-old-price,
.theme-kanc.template-default .old-price {
    color: #94a3b8;
}

.theme-kanc.template-default .card-buy-form .btn,
.theme-kanc.template-default .icon-btn.add-to-cart {
    min-width: 112px;
    height: 42px;
    padding: 0 13px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2367dc, #1557b6);
}

.theme-kanc.template-default .icon-btn.add-to-cart {
    width: auto;
    display: inline-flex;
    gap: 7px;
}

.theme-kanc.template-default .icon-btn.add-to-cart span {
    display: inline;
    font-size: 13px;
    font-weight: 950;
}

.theme-kanc.template-default .product-actions {
    gap: 8px;
}

.theme-kanc.template-default .product-actions form {
    flex: 1;
    min-width: 0;
}

.theme-kanc.template-default .link-button {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    color: #34527f;
    background: #fff;
    font-size: 12px;
}

.theme-kanc.template-default .product-more {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border-radius: 9px;
    color: #2367dc;
    background: #eaf1ff;
    font-weight: 950;
}

.theme-kanc.template-default .kanc-business-strip {
    min-height: 178px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin: 28px 0;
    padding: 28px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 82% 18%, rgba(35, 103, 220, .12), transparent 28%),
        linear-gradient(135deg, #fff, #f2f6ff);
    border: 1px solid rgba(130, 150, 190, .16);
    box-shadow: 0 14px 34px rgba(35, 50, 90, .08);
}

.kanc-business-strip span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.kanc-business-strip h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.kanc-business-strip p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.kanc-business-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.theme-kanc.template-default .info-grid {
    padding: 0;
}

.theme-kanc.shop-inner-page .search-bar {
    grid-template-columns: auto minmax(180px, 1fr) 64px;
}

.theme-kanc.shop-inner-page .shop-subnav {
    padding-left: 34px;
    padding-right: 34px;
}

.theme-kanc.shop-inner-page .shop-page {
    padding: 28px 34px 46px;
}

.theme-kanc.shop-inner-page .breadcrumbs {
    margin-bottom: 16px;
    color: #64748b;
}

.theme-kanc.shop-inner-page .breadcrumbs a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
}

.theme-kanc.shop-inner-page .breadcrumbs a:last-child {
    color: #132044;
    background: #eaf1ff;
}

.theme-kanc.shop-inner-page .page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 86% 18%, rgba(255,255,255,.34), transparent 28%),
        linear-gradient(135deg, #2367dc, #1557b6 58%, #7ab3ff);
    box-shadow: 0 18px 46px rgba(35, 103, 220, .2);
}

.theme-kanc.shop-inner-page .page-hero::after {
    content: "";
    position: absolute;
    right: 34px;
    bottom: -28px;
    width: 170px;
    height: 170px;
    border-radius: 34px;
    background: rgba(255,255,255,.14);
    transform: rotate(16deg);
}

.theme-kanc.shop-inner-page .page-hero > * {
    position: relative;
    z-index: 1;
}

.theme-kanc.shop-inner-page .page-hero.compact {
    min-height: 190px;
    padding: 34px 38px;
}

.theme-kanc.shop-inner-page .page-hero p {
    width: max-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.15);
    letter-spacing: .04em;
}

.theme-kanc.shop-inner-page .page-hero h1 {
    max-width: 900px;
    font-size: clamp(34px, 4vw, 56px);
}

.theme-kanc.shop-inner-page .page-hero span {
    max-width: 780px;
    font-size: 16px;
}

.theme-kanc.shop-inner-page .catalog-sort {
    min-width: 230px;
}

.theme-kanc.shop-inner-page .catalog-sort select {
    border: 0;
    box-shadow: 0 14px 30px rgba(19, 32, 68, .14);
    font-weight: 850;
}

.theme-kanc.shop-inner-page .active-filters {
    padding: 12px;
    border: 1px solid rgba(130, 150, 190, .14);
    border-radius: 14px;
    background: rgba(255,255,255,.78);
}

.theme-kanc.shop-inner-page .market-layout {
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
}

.theme-kanc.shop-inner-page .filter-panel {
    position: sticky;
    top: 16px;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
}

.theme-kanc.shop-inner-page .category-side-subcats {
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .category-side-head {
    background:
        linear-gradient(90deg, rgba(35, 103, 220, .12), transparent 54%),
        linear-gradient(180deg, #fff, #f1f5ff);
}

.theme-kanc.shop-inner-page .category-side-subcats a {
    min-height: 42px;
    font-size: 14px;
}

.theme-kanc.shop-inner-page .catalog-filters {
    padding-top: 4px;
}

.theme-kanc.shop-inner-page .catalog-filters h3,
.theme-kanc.shop-inner-page .filter-links h3 {
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
    color: #132044;
}

.theme-kanc.shop-inner-page .catalog-filters input,
.theme-kanc.shop-inner-page .catalog-filters select {
    border-radius: 9px;
}

.theme-kanc.shop-inner-page .catalog-results-head {
    min-height: 54px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(35, 50, 90, .07);
}

.theme-kanc.shop-inner-page .catalog-results-head b {
    font-size: 18px;
}

.theme-kanc.shop-inner-page .pagination a,
.theme-kanc.shop-inner-page .pagination span {
    border-radius: 999px;
}

.theme-kanc.shop-inner-page .product-page-pro {
    grid-template-columns: minmax(360px, 590px) minmax(0, 1fr);
    gap: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    position: relative;
}

.theme-kanc.shop-inner-page .product-gallery {
    min-height: 610px;
    overflow: hidden;
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,249,255,.94)),
        radial-gradient(circle at 18% 18%, rgba(35,103,220,.1), transparent 34%);
    box-shadow: 0 24px 58px rgba(19, 32, 68, .1);
}

.theme-kanc.shop-inner-page .product-gallery::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(35,103,220,.07), transparent 58%);
    pointer-events: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    position: relative;
    z-index: 1;
    max-height: 520px;
    filter: drop-shadow(0 24px 34px rgba(19, 32, 68, .16));
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 18px;
    bottom: 18px;
    height: 42px;
    border: 1px solid #dce5f4;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 28px rgba(19, 32, 68, .12);
    font-weight: 850;
}

.theme-kanc.shop-inner-page .gallery-badges {
    top: 18px;
    left: 18px;
}

.theme-kanc.shop-inner-page .gallery-badges b {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    background: #2367dc;
    box-shadow: 0 10px 22px rgba(35, 103, 220, .22);
}

.theme-kanc.shop-inner-page .gallery-badges .badge-new {
    background: #12b981;
}

.theme-kanc.shop-inner-page .gallery-badges .badge-sale {
    background: #ef4444;
}

.theme-kanc.shop-inner-page .gallery-thumbs {
    gap: 10px;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 78px;
    height: 78px;
    border-radius: 13px;
    border-color: #dce5f4;
    background: #fff;
    box-shadow: 0 10px 24px rgba(19, 32, 68, .08);
}

.theme-kanc.shop-inner-page .gallery-thumbs button.active {
    border-color: #2367dc;
    box-shadow: 0 0 0 3px rgba(35, 103, 220, .12), 0 14px 30px rgba(19, 32, 68, .1);
}

.theme-kanc.shop-inner-page .product-summary {
    gap: 18px;
    padding: 4px 0;
}

.theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
    max-width: 820px;
    margin: 16px 0 12px;
    color: #071531;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
}

.theme-kanc.shop-inner-page .product-lead {
    max-width: 820px;
    color: #53637f;
    font-size: 16px;
    line-height: 1.65;
}

.theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
    justify-content: flex-start;
    gap: 10px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-code,
.theme-kanc.shop-inner-page .product-page-pro .product-rating,
.theme-kanc.shop-inner-page .product-page-pro .product-brand {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    border: 1px solid #dce5f4;
    border-radius: 999px;
    color: #53637f;
    background: rgba(255,255,255,.88);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .06);
}

.theme-kanc.shop-inner-page .product-page-pro .product-brand {
    width: max-content;
    max-width: 100%;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-brand img {
    width: 24px;
    height: 24px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav {
    gap: 8px;
    margin-top: 18px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav a {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #dce5f4;
    border-radius: 999px;
    color: #174fba;
    background: #fff;
    box-shadow: 0 10px 24px rgba(19, 32, 68, .06);
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview span {
    min-height: 72px;
    padding: 14px;
    border: 1px solid #dce5f4;
    border-radius: 14px;
    background: #fff;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    padding: 18px;
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(19, 32, 68, .1);
}

.theme-kanc.shop-inner-page .product-side-code span,
.theme-kanc.shop-inner-page .product-side-code > svg {
    min-height: 42px;
    border-radius: 999px;
    background: #f7faff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-side-code > svg {
    width: 42px;
    padding: 10px;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row {
    align-items: end;
    margin: 16px 0 8px;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row strong {
    color: #e35122;
    font-size: clamp(34px, 4vw, 48px);
}

.theme-kanc.shop-inner-page .product-buy-panel .stock {
    width: max-content;
    max-width: 100%;
    min-height: 40px;
    padding: 0 13px 0 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #147d3d;
    font-weight: 900;
}

.theme-kanc.shop-inner-page .product-buy-panel .stock-out {
    background: #fff1f2;
    color: #c52727;
}

.theme-kanc.shop-inner-page .product-buy-panel .stock-order {
    background: #eff6ff;
    color: #1557b6;
}

.theme-kanc.shop-inner-page .product-commerce-facts {
    gap: 10px;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .product-commerce-facts span {
    border-radius: 13px;
    background: #f7faff;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    grid-template-columns: 132px minmax(190px, 1fr) minmax(150px, auto);
    margin-top: 16px;
}

.theme-kanc.shop-inner-page .qty-stepper {
    height: 52px;
    border-radius: 12px;
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-primary {
    min-height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2367dc, #1250bd);
    box-shadow: 0 16px 30px rgba(35, 103, 220, .26);
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-light,
.theme-kanc.shop-inner-page .product-buy-panel .link-button {
    min-height: 52px;
    border-radius: 12px;
    color: #132044;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits span {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 13px;
    border: 1px solid #dce5f4;
    border-radius: 14px;
    background: #f7faff;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits svg {
    color: #2367dc;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits b,
.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits small {
    display: block;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits small {
    color: #64748b;
    line-height: 1.35;
}

.theme-kanc.shop-inner-page .product-trust-strip {
    gap: 0;
    overflow: hidden;
    margin: 24px 0;
    padding: 0;
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .07);
}

.theme-kanc.shop-inner-page .product-trust-strip article {
    min-height: 108px;
    padding: 18px;
    border-right: 1px solid #e6edf8;
}

.theme-kanc.shop-inner-page .product-trust-strip article:last-child {
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-trust-strip svg {
    border: 0;
    color: #2367dc;
    background: #edf4ff;
}

.theme-kanc.shop-inner-page .product-lower-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
}

.theme-kanc.shop-inner-page .product-tabs a {
    border-color: #dce5f4;
    color: #132044;
    background: #eef4ff;
}

.theme-kanc.shop-inner-page .product-tabs a.active {
    background: #fff;
}

.theme-kanc.shop-inner-page .product-lower-grid .product-details,
.theme-kanc.shop-inner-page .related-sidebar,
.theme-kanc.shop-inner-page .product-path-note,
.theme-kanc.shop-inner-page .product-linked-block {
    border-color: #dce5f4;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .07);
}

.theme-kanc.shop-inner-page .product-description-panel p,
.theme-kanc.shop-inner-page .product-lower-grid .product-details p {
    color: #3f4b63;
}

.theme-kanc.shop-inner-page .spec-list div {
    border-color: #e6edf8;
}

.theme-kanc.shop-inner-page .spec-list dt {
    color: #64748b;
}

.theme-kanc.shop-inner-page .spec-list dd {
    color: #132044;
}

.theme-kanc.shop-inner-page .related-sidebar {
    top: 16px;
    padding: 16px;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    gap: 10px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    border-color: #dce5f4;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(19, 32, 68, .06);
}

.theme-kanc.shop-inner-page .related-mini-image {
    background: #f7faff;
}

.theme-kanc.shop-inner-page .related-mini-body h3 {
    color: #132044;
}

.theme-kanc.shop-inner-page .related-mini-body strong {
    color: #e35122;
}

.theme-kanc.shop-inner-page .related-mini-body .btn {
    border-radius: 10px;
    background: #2367dc;
}

.theme-kanc.shop-inner-page .related-mini-card.is-unavailable .btn {
    background: #cbd5e1;
}

.theme-kanc.shop-inner-page .cart-page,
.theme-kanc.shop-inner-page .checkout-page-pro {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
}

.theme-kanc.shop-inner-page .cart-lines,
.theme-kanc.shop-inner-page .checkout-form,
.theme-kanc.shop-inner-page .checkout-summary {
    overflow: hidden;
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(19, 32, 68, .08);
}

.theme-kanc.shop-inner-page .cart-lines {
    display: grid;
}

.theme-kanc.shop-inner-page .cart-line {
    grid-template-columns: minmax(280px, 1fr) 120px 142px 132px 46px;
    gap: 16px;
    padding: 18px 20px;
    border-color: #e6edf8;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.theme-kanc.shop-inner-page .cart-line-order {
    background:
        linear-gradient(90deg, rgba(35,103,220,.07), transparent 36%),
        linear-gradient(180deg, #fff, #fbfdff);
}

.theme-kanc.shop-inner-page .cart-product {
    grid-template-columns: 88px minmax(0, 1fr);
}

.theme-kanc.shop-inner-page .cart-product-image {
    width: 88px;
    border-color: #dce5f4;
    border-radius: 14px;
    background: #f7faff;
}

.theme-kanc.shop-inner-page .cart-product-image img {
    object-fit: contain;
}

.theme-kanc.shop-inner-page .cart-product b {
    color: #132044;
    font-size: 16px;
}

.theme-kanc.shop-inner-page .cart-product small {
    display: block;
    color: #64748b;
    line-height: 1.35;
}

.theme-kanc.shop-inner-page .cart-stock-pill {
    min-height: 28px;
    margin-top: 7px;
}

.theme-kanc.shop-inner-page .cart-price,
.theme-kanc.shop-inner-page .cart-line-total {
    color: #132044;
    font-weight: 950;
}

.theme-kanc.shop-inner-page .cart-line-total {
    color: #e35122;
}

.theme-kanc.shop-inner-page .cart-qty {
    height: 44px;
    border-color: #dce5f4;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(19, 32, 68, .06);
}

.theme-kanc.shop-inner-page .cart-qty button {
    color: #2367dc;
    font-size: 18px;
    font-weight: 950;
}

.theme-kanc.shop-inner-page .cart-qty input {
    height: 44px;
    color: #132044;
    font-weight: 950;
}

.theme-kanc.shop-inner-page .cart-remove button {
    border-radius: 12px;
    background: #fff1f2;
    color: #ef4444;
}

.theme-kanc.shop-inner-page .cart-remove button:hover {
    background: #ef4444;
    color: #fff;
}

.theme-kanc.shop-inner-page .checkout-summary {
    position: sticky;
    top: 16px;
    gap: 14px;
    padding: 20px;
}

.theme-kanc.shop-inner-page .checkout-summary h2 {
    color: #132044;
    font-size: 24px;
}

.theme-kanc.shop-inner-page .summary-row {
    border-color: #e6edf8;
}

.theme-kanc.shop-inner-page .summary-row span {
    color: #64748b;
}

.theme-kanc.shop-inner-page .summary-row b {
    color: #132044;
}

.theme-kanc.shop-inner-page .checkout-summary > strong {
    color: #e35122;
    line-height: 1;
}

.theme-kanc.shop-inner-page .cart-summary-note,
.theme-kanc.shop-inner-page .checkout-confirmation-note {
    border: 1px solid #cfe0ff;
    background: #eff6ff;
}

.theme-kanc.shop-inner-page .cart-summary-note svg,
.theme-kanc.shop-inner-page .checkout-confirmation-note svg {
    color: #2367dc;
}

.theme-kanc.shop-inner-page .checkout-summary .btn,
.theme-kanc.shop-inner-page .checkout-submit {
    min-height: 52px;
    border-radius: 12px;
}

.theme-kanc.shop-inner-page .checkout-summary .btn-primary,
.theme-kanc.shop-inner-page .checkout-submit {
    background: linear-gradient(135deg, #2367dc, #1250bd);
    box-shadow: 0 16px 30px rgba(35, 103, 220, .24);
}

.theme-kanc.shop-inner-page .checkout-summary .btn-light {
    border-color: #dce5f4;
    background: #f7faff;
    color: #132044;
}

.theme-kanc.shop-inner-page .checkout-form-pro {
    overflow: visible;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .checkout-section {
    padding: 24px;
    border-color: #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .07);
}

.theme-kanc.shop-inner-page .checkout-section legend {
    color: #132044;
    font-size: 21px;
}

.theme-kanc.shop-inner-page .checkout-section legend span {
    background: #2367dc;
}

.theme-kanc.shop-inner-page .checkout-section label,
.theme-kanc.shop-inner-page .coupon-box label {
    color: #132044;
}

.theme-kanc.shop-inner-page .checkout-section input,
.theme-kanc.shop-inner-page .checkout-section textarea,
.theme-kanc.shop-inner-page .coupon-box input {
    border-color: #dce5f4;
    border-radius: 12px;
    background: #fbfdff;
}

.theme-kanc.shop-inner-page .checkout-section input:focus,
.theme-kanc.shop-inner-page .checkout-section textarea:focus,
.theme-kanc.shop-inner-page .coupon-box input:focus {
    border-color: #2367dc;
    box-shadow: 0 0 0 4px rgba(35,103,220,.1);
}

.theme-kanc.shop-inner-page .choice-card {
    min-height: 78px;
    align-items: flex-start;
    border-color: #dce5f4;
    border-radius: 14px;
    background: #fbfdff;
}

.theme-kanc.shop-inner-page .choice-card span {
    display: grid;
    gap: 3px;
}

.theme-kanc.shop-inner-page .choice-card b {
    color: #132044;
}

.theme-kanc.shop-inner-page .choice-card small {
    color: #64748b;
    line-height: 1.35;
}

.theme-kanc.shop-inner-page .choice-card:has(input:checked) {
    border-color: #2367dc;
    background: #eff6ff;
    box-shadow: 0 10px 24px rgba(35, 103, 220, .1);
}

.theme-kanc.shop-inner-page .checkout-items {
    max-height: 360px;
    padding-right: 2px;
}

.theme-kanc.shop-inner-page .checkout-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border: 1px solid #e6edf8;
    border-radius: 14px;
    background: #fbfdff;
}

.theme-kanc.shop-inner-page .checkout-item + .checkout-item {
    margin-top: 0;
}

.theme-kanc.shop-inner-page .checkout-item-image {
    width: 60px;
    border-color: #dce5f4;
    border-radius: 12px;
    background: #fff;
}

.theme-kanc.shop-inner-page .checkout-item > span:not(.checkout-item-image) b {
    color: #132044;
}

.theme-kanc.shop-inner-page .checkout-item > span:not(.checkout-item-image) small {
    color: #64748b;
}

.theme-kanc.shop-inner-page .checkout-item-order {
    border-color: #cfe0ff;
    background: #eff6ff;
}

.theme-kanc.shop-inner-page .checkout-item strong {
    color: #e35122;
}

.theme-kanc.shop-inner-page .coupon-box {
    padding: 12px;
    border: 1px solid #e6edf8;
    border-radius: 14px;
    background: #fbfdff;
}

@media (max-width: 1260px) {
    .theme-kanc.template-default .topbar {
        grid-template-columns: 168px minmax(300px, 1fr);
    }

    .theme-kanc.template-default .top-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .theme-kanc.template-default .layout,
    .kanc-buying-grid,
    .kanc-cartridge-panel,
    .theme-kanc.template-default .kanc-business-strip {
        grid-template-columns: 1fr;
    }

    .theme-kanc.template-default .category-sidebar {
        transform: none;
    }

    .theme-kanc.template-default .category-main,
    .theme-kanc.template-default .sidebar-shop-tools {
        width: 100%;
        margin-left: 0;
    }

    .theme-kanc.template-default .subnav {
        padding: 0 24px;
    }

    .kanc-business-actions {
        justify-content: flex-start;
    }

    .theme-kanc.template-default .product-grid,
    .kanc-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .theme-kanc.shop-inner-page .product-page-pro,
    .theme-kanc.shop-inner-page .product-lower-grid,
    .theme-kanc.shop-inner-page .cart-page,
    .theme-kanc.shop-inner-page .checkout-page-pro {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-sidebar,
    .theme-kanc.shop-inner-page .checkout-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .theme-kanc.template-default .shop-shell {
        width: calc(100% - 20px);
        margin: 12px auto;
        border-radius: 16px;
    }

    .theme-kanc.template-default .topbar {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .theme-kanc.template-default .brand span {
        min-width: 140px;
        font-size: 23px;
    }

    .theme-kanc.template-default .search-bar {
        grid-template-columns: 1fr 52px;
    }

    .theme-kanc.template-default .header-catalog-menu,
    .theme-kanc.template-default .home-catalog-link,
    .theme-kanc.template-default .city-chip {
        display: none;
    }

    .theme-kanc.template-default .subnav {
        padding-left: 16px;
    }

    .theme-kanc.template-default .layout {
        gap: 14px;
        padding: 12px 14px 32px;
    }

    .theme-kanc.template-default .category-sidebar {
        z-index: 42;
        margin: 0;
    }

    .theme-kanc.template-default .category-main {
        min-height: 54px;
        padding: 0 16px;
        border-radius: 14px;
        box-shadow: 0 14px 28px rgba(35, 103, 220, .18);
        font-size: 16px;
    }

    .theme-kanc.template-default .category-main svg:last-child {
        transition: transform .16s ease;
    }

    .theme-kanc.template-default .category-sidebar.mobile-open .category-main svg:last-child {
        transform: rotate(180deg);
    }

    .theme-kanc.template-default .category-menu-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height .22s ease, margin-top .22s ease;
    }

    .theme-kanc.template-default .category-sidebar.mobile-open .category-menu-wrap {
        max-height: 520px;
        margin-top: 10px;
        overflow: visible;
    }

    .theme-kanc.template-default .category-list {
        max-height: 430px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow-y: auto;
        margin: 0;
        padding: 10px;
        border: 1px solid #dce5f4;
        border-radius: 16px;
        box-shadow: 0 18px 42px rgba(19, 32, 68, .14);
    }

    .theme-kanc.template-default .category-list button,
    .theme-kanc.template-default .category-list a {
        min-height: 64px;
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 9px;
        padding: 9px;
        border: 1px solid #e6edf8;
        border-radius: 12px;
        background: #fff;
        font-size: 12px;
        line-height: 1.18;
    }

    .theme-kanc.template-default .category-list button.active,
    .theme-kanc.template-default .category-list button:hover,
    .theme-kanc.template-default .category-list a:hover,
    .theme-kanc.template-default .category-list a.mega-active {
        border-color: #cfe0ff;
        background: #eff6ff;
    }

    .theme-kanc.template-default .category-list button > svg:first-child,
    .theme-kanc.template-default .category-list a > svg:first-child {
        width: 20px;
        height: 20px;
    }

    .theme-kanc.template-default .category-list button > svg:last-child,
    .theme-kanc.template-default .category-list a > svg:last-child,
    .theme-kanc.template-default .mega-menu {
        display: none !important;
    }

    .theme-kanc.template-default .category-list a[data-mobile-category-toggle] > svg:last-child {
        display: block !important;
        justify-self: end;
        width: 18px;
        height: 18px;
        transition: transform .16s ease;
    }

    .theme-kanc.template-default .category-list a[data-mobile-category-toggle] {
        grid-template-columns: 26px minmax(0, 1fr) 18px;
    }

    .theme-kanc.template-default .category-list a.mobile-subcats-open > svg:last-child {
        transform: rotate(90deg);
    }

    .theme-kanc.template-default .mobile-subcategory-panel {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 2px 0 8px 35px;
    }

    .theme-kanc.template-default .mobile-subcategory-panel.open {
        display: grid;
    }

    .theme-kanc.template-default .category-list .mobile-subcategory-panel a {
        min-height: 36px;
        display: flex;
        align-items: center;
        padding: 8px 10px;
        border-radius: 10px;
        border-color: #e2e8f0;
        color: #24365f;
        background: #fff;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.2;
    }

    .theme-kanc.template-default .category-list .mobile-subcategory-panel a::before {
        content: "";
        flex: 0 0 5px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #2367dc;
    }

    .theme-kanc.template-default .category-list .mobile-subcategory-panel a.mobile-subcategory-all {
        grid-column: 1 / -1;
        color: #0b3f9c;
        background: #eff6ff;
    }

    .theme-kanc.template-default .category-list .mobile-subcategory-panel a.mobile-subcategory-depth {
        color: #536381;
        background: #f8fafc;
        font-weight: 750;
    }

    .theme-kanc.template-default .sidebar-shop-tools {
        display: none;
    }

    .theme-kanc.template-default .hero-card {
        min-height: 360px;
        grid-template-columns: 1fr;
        padding: 30px 24px 68px;
    }

    .theme-kanc.template-default .hero-art {
        display: none;
    }

    .kanc-cartridge-panel form,
    .kanc-category-grid,
    .theme-kanc.template-default .product-grid,
    .theme-kanc.template-default .info-grid,
    .kanc-stat-strip {
        grid-template-columns: 1fr;
    }

    .kanc-buying-grid,
    .kanc-cartridge-panel,
    .kanc-business-strip {
        gap: 14px;
    }

    .kanc-cartridge-panel,
    .kanc-category-showcase,
    .kanc-collection-showcase,
    .theme-kanc.template-default .kanc-business-strip {
        padding: 18px;
    }

    .theme-kanc.shop-inner-page .shop-page {
        padding: 18px 14px 34px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 340px;
    }

    .theme-kanc.shop-inner-page .product-gallery img {
        max-height: 300px;
    }

    .theme-kanc.shop-inner-page .product-page-pro .spec-preview,
    .theme-kanc.shop-inner-page .product-buy-panel .buy-row,
    .theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits,
    .theme-kanc.shop-inner-page .product-trust-strip,
    .theme-kanc.shop-inner-page .related-mini-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-trust-strip article {
        border-right: 0;
        border-bottom: 1px solid #e6edf8;
    }

    .theme-kanc.shop-inner-page .product-trust-strip article:last-child {
        border-bottom: 0;
    }

    .theme-kanc.shop-inner-page .cart-line {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .cart-product {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .theme-kanc.shop-inner-page .cart-product-image {
        width: 72px;
    }

    .theme-kanc.shop-inner-page .cart-qty {
        width: 142px;
    }

    .theme-kanc.shop-inner-page .cart-price,
    .theme-kanc.shop-inner-page .cart-line-total {
        text-align: left;
    }

    .theme-kanc.shop-inner-page .checkout-section,
    .theme-kanc.shop-inner-page .checkout-summary {
        padding: 18px;
    }

    .theme-kanc.shop-inner-page .choice-grid,
    .theme-kanc.shop-inner-page .form-two,
    .theme-kanc.shop-inner-page .coupon-box {
        grid-template-columns: 1fr;
    }
}

body.template-alippe-purple {
    color: #17114f;
    background: #fff;
}

.template-alippe-purple .shop-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.template-alippe-purple .topbar {
    z-index: 3000;
    max-width: 1320px;
    min-height: 84px;
    grid-template-columns: 180px 144px minmax(320px, 1fr) auto;
    margin: 0 auto;
    padding: 18px 34px 12px;
    border: 0;
    background: #fff;
}

.template-alippe-purple .brand span {
    min-width: 0;
    height: auto;
    justify-content: flex-start;
    border-radius: 0;
    color: var(--primary);
    background: transparent;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
}

.template-alippe-purple .market-catalog-btn {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(135deg, #4c2fd3, #7d5cf2);
    box-shadow: 0 16px 34px rgba(91, 54, 223, .24);
    font-weight: 900;
}

.template-alippe-purple .market-catalog-btn svg {
    width: 22px;
    height: 22px;
}

.template-alippe-purple .search-bar {
    height: 52px;
    grid-template-columns: minmax(180px, 1fr) 58px;
    border-color: #ded8fb;
    border-radius: 7px;
    box-shadow: 0 8px 26px rgba(91, 54, 223, .08);
}

.template-alippe-purple .category-chip,
.template-alippe-purple .city-chip {
    display: none;
}

.template-alippe-purple .search-bar input {
    padding-left: 22px;
    color: #352f78;
}

.template-alippe-purple .search-bar input::placeholder {
    color: #928cc7;
}

.template-alippe-purple .search-btn {
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--primary);
}

.template-alippe-purple .top-actions {
    gap: 10px;
}

.template-alippe-purple .theme-builder-link,
.template-alippe-purple .user-card {
    display: none;
}

.template-alippe-purple #themeSelect {
    width: 138px;
    height: 42px;
    border: 1px solid #ded8fb;
    border-radius: 7px;
    color: #4937c7;
    background: #fff;
    font-size: 13px;
    font-weight: 850;
}

.template-alippe-purple .theme-link,
.template-alippe-purple .cart-button,
.template-alippe-purple .login-link {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #245ee8, #0f70dc);
    box-shadow: 0 14px 28px rgba(37, 94, 232, .22);
    font-size: 13px;
    font-weight: 800;
}

.template-alippe-purple .shop-phone-link {
    min-width: 168px;
    height: 52px;
    border-color: #ded8fb;
    border-radius: 12px;
    color: #17114f;
    box-shadow: 0 8px 26px rgba(91, 54, 223, .07);
}

.template-alippe-purple .theme-link svg,
.template-alippe-purple .cart-button svg,
.template-alippe-purple .login-link svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.template-alippe-purple .theme-link span,
.template-alippe-purple .cart-button em,
.template-alippe-purple .login-link span {
    display: none;
    font-style: normal;
}

.template-alippe-purple .theme-link b,
.template-alippe-purple .cart-button > span {
    position: absolute;
    top: 0;
    right: -8px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 11px;
    font-weight: 950;
}

.template-alippe-purple .subnav {
    max-width: 1320px;
    height: 54px;
    margin: 0 auto;
    padding: 0 34px;
    justify-content: flex-start;
    gap: 58px;
    border: 0;
    color: #262064;
    background: #fff;
    box-shadow: none;
}

.template-alippe-purple .subnav a {
    font-weight: 850;
}

.template-alippe-purple .layout {
    max-width: 1320px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    margin: 0 auto;
    padding: 0 34px 34px;
}

.template-alippe-purple .category-sidebar {
    display: block;
    transform: none;
    position: relative;
    z-index: 30;
}

.template-alippe-purple .main-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.template-alippe-purple .category-main,
.template-alippe-purple .sidebar-shop-tools {
    width: 100%;
    margin-left: 0;
}

.template-alippe-purple .category-main {
    height: 50px;
    border-radius: 10px;
    font-size: 17px;
}

.template-alippe-purple .category-list {
    border-right: 1px solid rgba(130, 150, 190, .16);
    border-radius: 14px;
}

.template-alippe-purple .category-list button,
.template-alippe-purple .category-list a {
    min-height: 48px;
    font-size: 14px;
}

.template-alippe-purple .market-hero {
    margin: 0 0 22px;
    padding: 46px;
}

.template-alippe-purple .popular-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-hero {
    min-height: 458px;
    display: grid;
    grid-template-columns: minmax(360px, .85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: 24px;
    margin: 0 -34px 22px;
    padding: 58px 64px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 42%, rgba(139, 92, 246, .2), transparent 34%),
        linear-gradient(105deg, #fbf9ff 0%, #f3edff 52%, #efe8ff 100%);
    border-top: 1px solid #f1edff;
}

.market-hero-copy {
    position: relative;
    z-index: 2;
}

.market-hero h1 {
    max-width: 520px;
    margin: 0;
    color: #211766;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.09;
    font-weight: 950;
}

.market-hero p {
    margin: 18px 0 24px;
    color: #3c2ccc;
    font-size: 28px;
    font-weight: 900;
}

.market-hero ul,
.business-banner ul {
    display: grid;
    gap: 14px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
    color: #2a2464;
    font-size: 18px;
    font-weight: 750;
}

.market-hero li,
.business-banner li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-hero li svg,
.business-banner li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    fill: color-mix(in srgb, var(--primary) 14%, transparent);
}

.template-alippe-purple .btn {
    min-height: 52px;
    border-radius: 7px;
    padding: 0 28px;
    font-weight: 950;
}

.template-alippe-purple .btn-primary {
    background: linear-gradient(135deg, #4c2fd3, #7d5cf2);
    box-shadow: 0 14px 30px rgba(91, 54, 223, .22);
}

.template-alippe-purple .btn-light {
    color: #4937c7;
    border: 1px solid #ded8fb;
    background: rgba(255,255,255,.7);
    box-shadow: 0 12px 24px rgba(91, 54, 223, .08);
}

.hero-search-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    color: #5b5399;
    font-size: 14px;
    font-weight: 850;
}

.hero-search-tags a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: #3c2ccc;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 22px rgba(91, 54, 223, .08);
}

.home-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 22px;
}

.home-trust-stats article {
    min-height: 92px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 18px;
    border: 1px solid #e6e1fb;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #fbfaff);
    box-shadow: 0 12px 28px rgba(91, 54, 223, .07);
}

.home-trust-stats svg {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    color: var(--primary);
}

.home-trust-stats b {
    color: #211766;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}

.home-trust-stats span {
    color: #625b93;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 750;
}

.home-cartridge-strip {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(420px, 1.22fr);
    gap: 22px;
    align-items: center;
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid #d8e3ff;
    border-radius: 12px;
    background: linear-gradient(120deg, #0f4fb8, #2563eb 48%, #20c46b);
    box-shadow: 0 18px 36px rgba(37, 99, 235, .18);
}

.home-cartridge-strip span {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.home-cartridge-strip h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.home-cartridge-strip p {
    max-width: 520px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.86);
    font-weight: 700;
}

.home-cartridge-strip form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 160px;
    gap: 12px;
}

.home-cartridge-strip select,
.home-cartridge-strip button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    font: inherit;
}

.home-cartridge-strip select {
    padding: 0 14px;
    color: #102052;
    background: #fff;
}

.home-cartridge-strip button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0f3f96;
    background: #fff;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(15, 23, 42, .14);
}

.home-collections {
    margin: 0 0 28px;
}

.home-collections-kanc {
    margin-top: 18px;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-collection-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-content: start;
    gap: 8px 14px;
    padding: 20px;
    border: 1px solid #e6e1fb;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #fbfaff);
    box-shadow: 0 12px 30px rgba(91, 54, 223, .08);
}

.home-collection-card span {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: #f0ebff;
}

.home-collection-card svg {
    width: 28px;
    height: 28px;
}

.home-collection-card b {
    color: #211766;
    font-size: 17px;
    font-weight: 950;
}

.home-collection-card small {
    color: #625b93;
    line-height: 1.35;
    font-size: 13px;
    font-weight: 720;
}

.collection-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
    margin: 20px 0 18px;
    padding: 34px;
    border: 1px solid #dbe7ff;
    border-radius: 18px;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 107, 43, .18), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #eaf2ff 100%);
    box-shadow: 0 22px 50px rgba(24, 71, 154, .12);
}

.collection-hero-copy h1 {
    max-width: 820px;
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: 0;
}

.collection-hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #50618a;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.collection-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--primary);
    background: #eaf1ff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.collection-kicker svg {
    width: 18px;
    height: 18px;
}

.collection-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.collection-actions form {
    margin: 0;
}

.collection-hero-art {
    min-height: 250px;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #dfeaff, #ffffff);
}

.collection-hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-hero-art > svg {
    width: 118px;
    height: 118px;
    color: var(--primary);
    filter: drop-shadow(0 18px 30px rgba(37, 99, 235, .22));
}

.collection-hero-art span {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 20px 35px rgba(15, 23, 42, .08);
}

.collection-hero-art span:nth-of-type(1) {
    left: 26px;
    bottom: 30px;
}

.collection-hero-art span:nth-of-type(2) {
    right: 24px;
    top: 26px;
    width: 70px;
    height: 70px;
}

.collection-description,
.collection-products {
    margin: 18px 0;
    padding: 24px;
    border: 1px solid #dfe8f5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.collection-description p {
    margin: 0;
    color: #405173;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 650;
}

.collection-products-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 18px;
}

.collection-products-head p {
    margin: 0 0 4px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.collection-products-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.1;
}

.collection-products-head > span {
    max-width: 360px;
    color: #64748b;
    font-size: 14px;
    text-align: right;
    font-weight: 700;
}

.collection-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-empty {
    min-height: 360px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    text-align: center;
    border: 1px dashed #bfd0ea;
    border-radius: 18px;
    background: #f8fbff;
}

.collection-empty.inline {
    min-height: 260px;
}

.collection-empty svg {
    width: 58px;
    height: 58px;
    color: var(--primary);
}

.collection-empty h1,
.collection-empty h2 {
    margin: 0;
    color: var(--ink);
}

.collection-empty p {
    max-width: 460px;
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

.stationery-scene {
    min-height: 360px;
    position: relative;
    z-index: 1;
}

.stationery-scene::before {
    content: "";
    position: absolute;
    inset: 20px 0 18px 10px;
    border-radius: 45% 55% 48% 52%;
    background: linear-gradient(145deg, #d9ccff, #f2dff7);
    opacity: .9;
}

.paper-stack,
.folder-shape,
.notebook,
.pen-cup,
.pen,
.calculator,
.tape-roll,
.business-visual span {
    position: absolute;
    display: block;
    filter: drop-shadow(0 20px 28px rgba(68, 42, 170, .18));
}

.paper-stack {
    left: 78px;
    bottom: 54px;
    width: 180px;
    height: 72px;
    border-radius: 4px;
    background:
        repeating-linear-gradient(0deg, #fff 0 8px, #ece7ff 8px 10px),
        #fff;
    transform: skewY(-6deg);
}

.folder-shape {
    width: 116px;
    height: 90px;
    border-radius: 7px 7px 5px 5px;
    background: linear-gradient(140deg, #8b5cf6, #5b36df);
}

.folder-shape.one {
    left: 292px;
    bottom: 70px;
    transform: rotate(-6deg);
}

.folder-shape.two {
    right: 88px;
    bottom: 92px;
    background: linear-gradient(140deg, #70d6ff, #7d5cf2);
    transform: rotate(8deg);
}

.notebook {
    width: 142px;
    height: 188px;
    border-radius: 8px;
    background: linear-gradient(90deg, #5b36df 0 14px, #fff 14px 18px, #8b5cf6 18px 100%);
    transform-origin: bottom center;
}

.notebook.one {
    right: 168px;
    bottom: 96px;
    transform: rotate(10deg);
}

.notebook.two {
    right: 236px;
    bottom: 92px;
    background: linear-gradient(90deg, #e94ba4 0 14px, #fff 14px 18px, #ff8fc1 18px 100%);
    transform: rotate(-4deg);
}

.pen-cup {
    left: 300px;
    bottom: 54px;
    width: 92px;
    height: 94px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(145deg, #5b36df, #281880);
}

.pen {
    width: 11px;
    height: 135px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8fc1 0 25%, #fff 25% 32%, #2833c7 32%);
}

.pen.p1 {
    left: 318px;
    bottom: 122px;
    transform: rotate(-12deg);
}

.pen.p2 {
    left: 354px;
    bottom: 128px;
    transform: rotate(7deg);
    background: linear-gradient(180deg, #70d6ff 0 25%, #fff 25% 32%, #3143db 32%);
}

.pen.p3 {
    left: 386px;
    bottom: 118px;
    transform: rotate(18deg);
    background: linear-gradient(180deg, #fbbf24 0 25%, #fff 25% 32%, #6d28d9 32%);
}

.calculator {
    right: 204px;
    bottom: 40px;
    width: 118px;
    height: 176px;
    border-radius: 16px;
    background:
        linear-gradient(#e6e7fb 0 26%, transparent 26%),
        repeating-linear-gradient(90deg, transparent 0 19px, rgba(255,255,255,.4) 19px 22px),
        linear-gradient(145deg, #1f255d, #0d123f);
    transform: rotate(10deg);
}

.tape-roll {
    right: 76px;
    bottom: 48px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd5ef 0 28%, #e94ba4 29% 52%, #8b5cf6 53%);
}

.tape-roll.r2 {
    right: 50px;
    bottom: 122px;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, #ede9fe 0 28%, #f59ad0 29% 52%, #6d28d9 53%);
}

.popular-categories,
.template-alippe-purple .catalog,
.business-banner,
.template-alippe-purple .info-grid {
    margin: 0 0 28px;
}

.purple-section-head,
.template-alippe-purple .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.purple-section-head h2,
.template-alippe-purple .section-head h2 {
    margin: 0;
    color: #211766;
    font-size: 24px;
    font-weight: 950;
}

.purple-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-weight: 900;
}

.popular-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.popular-category-card {
    min-height: 160px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    padding: 18px 12px;
    border: 1px solid #e6e1fb;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #fbfaff);
    box-shadow: 0 12px 30px rgba(91, 54, 223, .09);
    text-align: center;
}

.popular-category-card span {
    width: 82px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--primary);
    background: radial-gradient(circle at 35% 22%, #fff, #efe8ff);
}

.popular-category-card svg {
    width: 46px;
    height: 46px;
}

.popular-category-card b {
    color: #211766;
    font-weight: 950;
}

.popular-category-card small {
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.template-alippe-purple .cartridge-finder {
    display: none;
}

.template-alippe-purple .catalog {
    padding: 0;
}

.template-alippe-purple .section-head p {
    display: none;
}

.template-alippe-purple .section-head select {
    min-height: 42px;
    border-color: #ded8fb;
    border-radius: 7px;
    color: #4937c7;
    background: #fff;
}

.home-product-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: -2px 0 20px;
}

.home-product-tabs button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #e1dcfb;
    border-radius: 999px;
    color: #2a2464;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(91, 54, 223, .06);
}

.home-product-tabs button svg {
    width: 18px;
    height: 18px;
    color: #5b36df;
}

.home-product-tabs button b {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0 7px;
    border-radius: 999px;
    color: #4c2fd3;
    background: #eff4ff;
    font-size: 12px;
    font-weight: 950;
}

.home-product-tabs button.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #4c2fd3, #2563eb);
}

.home-product-tabs button.active svg,
.home-product-tabs button.active b {
    color: #fff;
}

.home-product-tabs button.active b {
    background: rgba(255,255,255,.18);
}

.template-alippe-purple .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.template-alippe-purple .product-card {
    border: 1px solid #e6e1fb;
    border-radius: 10px;
    box-shadow: 0 13px 30px rgba(91, 54, 223, .08);
}

.template-alippe-purple .product-image {
    height: 190px;
    background: linear-gradient(180deg, #fff, #f8f5ff);
}

.template-alippe-purple .product-image img {
    object-fit: contain;
    padding: 18px;
}

.template-alippe-purple .product-body {
    padding: 16px 16px 14px;
}

.template-alippe-purple .product-body h3 {
    min-height: 44px;
    margin: 7px 0;
    font-size: 16px;
}

.template-alippe-purple .product-body p,
.template-alippe-purple .product-meta {
    display: none;
}

.template-alippe-purple .price {
    color: #211766;
    font-size: 23px;
}

.template-alippe-purple .icon-btn {
    width: 100%;
    height: 36px;
    grid-column: 1 / -1;
    border-radius: 6px;
}

.template-alippe-purple .icon-btn::after {
    content: "В корзину";
    margin-left: 8px;
    font-size: 13px;
    font-weight: 950;
}

.template-alippe-purple .product-foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.template-alippe-purple .product-actions,
.template-alippe-purple .product-more {
    display: none;
}

.business-banner {
    min-height: 270px;
    display: grid;
    grid-template-columns: minmax(330px, .85fr) minmax(360px, 1.15fr);
    align-items: center;
    gap: 24px;
    padding: 32px 42px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(105deg, #fbf9ff, #efe8ff);
    box-shadow: 0 12px 30px rgba(91, 54, 223, .09);
}

.business-banner h2 {
    margin: 0;
    color: #211766;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 950;
}

.business-banner h2 span {
    color: var(--primary);
}

.business-banner p {
    margin: 10px 0 14px;
    color: #211766;
    font-size: 20px;
    font-weight: 900;
}

.business-banner ul {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 15px;
}

.business-visual {
    min-height: 220px;
    position: relative;
}

.business-visual .boxes {
    left: 40px;
    bottom: 38px;
    width: 170px;
    height: 112px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.45) 0 50%, transparent 50%),
        linear-gradient(145deg, #c4b5fd, #8b5cf6);
    box-shadow: 62px -24px 0 -18px #d8b4fe, 104px 20px 0 -22px #7c3aed;
}

.business-visual .clipboard {
    right: 160px;
    bottom: 22px;
    width: 160px;
    height: 190px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f4efff);
    transform: rotate(7deg);
}

.business-visual .clipboard::before {
    content: "Коммерческое предложение";
    position: absolute;
    top: 44px;
    left: 22px;
    width: 110px;
    color: #6d28d9;
    font-size: 17px;
    font-weight: 850;
    transform: rotate(8deg);
}

.business-visual .business-card-shape {
    left: 205px;
    bottom: 24px;
    width: 180px;
    height: 94px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4c2fd3, #17114f);
}

.business-visual .business-card-shape::before {
    content: "ALIPE";
    position: absolute;
    left: 22px;
    top: 24px;
    color: #fff;
    font-weight: 950;
}

.business-visual .chart-bar {
    right: 44px;
    bottom: 24px;
    width: 42px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, #c4b5fd, #7c3aed);
}

.business-visual .chart-bar.b1 {
    height: 80px;
    right: 118px;
}

.business-visual .chart-bar.b2 {
    height: 112px;
    right: 66px;
}

.business-visual .chart-bar.b3 {
    height: 146px;
}

.template-alippe-purple .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #e6e1fb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(91, 54, 223, .08);
}

.template-alippe-purple .info-grid article {
    grid-template-columns: 52px 1fr;
    border: 0;
    border-right: 1px solid #eee9ff;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.template-alippe-purple .info-grid article:last-child {
    border-right: 0;
}

.template-alippe-purple .info-grid svg {
    width: 34px;
    height: 34px;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.socials svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
}

.footer-call {
    width: 190px;
    min-height: 42px;
    display: inline-grid;
    place-items: center;
    margin-top: 8px;
    border-radius: 7px;
    color: #4c2fd3 !important;
    background: #fff;
    font-weight: 950;
}

@media (max-width: 1180px) {
    .template-alippe-purple .topbar {
        grid-template-columns: 1fr;
    }

    .template-alippe-purple .market-catalog-btn {
        width: max-content;
    }

    .template-alippe-purple .subnav {
        overflow-x: auto;
        gap: 26px;
    }

    .template-alippe-purple .layout {
        grid-template-columns: 1fr;
    }

    .market-hero,
    .business-banner,
    .home-cartridge-strip {
        grid-template-columns: 1fr;
    }

    .popular-category-grid,
    .home-trust-stats,
    .home-collection-grid,
    .template-alippe-purple .product-grid,
    .template-alippe-purple .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cartridge-strip form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cartridge-strip button {
        grid-column: 1 / -1;
    }

    .footer-benefits,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .template-alippe-purple .topbar,
    .template-alippe-purple .subnav,
    .template-alippe-purple .main-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .template-alippe-purple .top-actions {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .template-alippe-purple .shop-phone-link {
        grid-column: 1 / -1;
        width: 100%;
    }

    .template-alippe-purple .theme-link,
    .template-alippe-purple .cart-button,
    .template-alippe-purple .login-link {
        font-size: 11px;
    }

    .market-hero {
        min-height: auto;
        margin-left: -16px;
        margin-right: -16px;
        padding: 38px 20px;
    }

    .stationery-scene {
        min-height: 260px;
        transform: scale(.78);
        transform-origin: top center;
    }

    .market-hero h1 {
        font-size: 38px;
    }

    .market-hero p {
        font-size: 22px;
    }

    .home-cartridge-strip {
        padding: 20px;
    }

    .home-cartridge-strip form {
        grid-template-columns: 1fr;
    }

    .home-cartridge-strip button {
        grid-column: auto;
    }

    .popular-category-grid,
    .home-trust-stats,
    .home-collection-grid,
    .template-alippe-purple .product-grid,
    .template-alippe-purple .info-grid,
    .business-banner,
    .footer-benefits,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-benefits article {
        grid-template-columns: 64px 1fr;
    }

    .footer-benefits span {
        grid-column: 2;
        grid-row: auto;
    }

    .template-alippe-purple .info-grid article {
        border-right: 0;
        border-bottom: 1px solid #eee9ff;
    }

    .template-alippe-purple .info-grid article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 1180px) {
    .shop-shell {
        width: calc(100% - 24px);
        margin: 16px auto;
        border-radius: 20px;
    }

    .topbar {
        grid-template-columns: 1fr;
    }

    .search-bar {
        grid-template-columns: 1fr 54px;
    }

    .header-catalog-menu,
    .category-chip,
    .city-chip {
        display: none;
    }

    .subnav {
        padding-left: 28px;
        overflow-x: auto;
    }

    .layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        transform: none;
        z-index: 1;
    }

    .category-main {
        width: 100%;
        margin-left: 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        min-height: 0;
        max-height: none;
        margin-top: 12px;
        border-radius: 14px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card {
        grid-template-columns: 1fr;
        min-height: 240px;
        padding-right: 56px;
    }

    .hero-art {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cartridge-finder {
        grid-template-columns: 1fr;
        margin-left: 28px;
        margin-right: 28px;
    }

    .cartridge-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cartridge-examples {
        grid-column: 1 / -1;
    }

    .market-layout,
    .product-page,
    .product-lower-grid,
    .static-page-layout,
    .product-content-grid,
    .product-service-grid,
    .cart-page,
    .checkout-page {
        grid-template-columns: 1fr;
    }

    .filter-toggle {
        display: inline-flex;
    }

    .filter-panel {
        display: none;
    }

    .filter-panel.open {
        display: grid;
    }

    .category-subcategory-strip {
        margin-top: 12px;
        padding: 14px;
    }

    .category-subcategory-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .purchase-card {
        position: static;
    }

    .related-sidebar {
        position: static;
    }

    .static-page-aside {
        position: static;
    }

    .product-trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-tiles,
    .account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-commerce-facts,
    .related-mini-grid.wide {
        grid-template-columns: 1fr;
    }

    .shop-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .topbar,
    .layout {
        padding-left: 14px;
        padding-right: 14px;
    }

    .top-actions {
        flex-wrap: wrap;
    }

    .user-card {
        display: none;
    }

    .hero-card {
        min-height: 260px;
        padding: 34px 52px;
    }

    .hero-copy h1 {
        font-size: 30px;
    }

    .product-grid,
    .cartridge-form,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .category-subcategory-head {
        display: grid;
        gap: 4px;
    }

    .category-subcategory-grid {
        grid-template-columns: 1fr;
    }

    .category-subcategory-card {
        min-height: 48px;
    }

    .category-tiles,
    .account-grid,
    .spec-list,
    .order-list article,
    .cart-line,
    .buy-row,
    .form-two {
        grid-template-columns: 1fr;
    }

    .product-page-pro {
        padding: 16px;
        border-radius: 16px;
    }

    .static-page-hero,
    .static-page-content,
    .static-page-aside {
        border-radius: 14px;
    }

    .static-page-content {
        padding: 20px;
    }

    .product-page-pro .product-gallery {
        min-height: 320px;
    }

    .product-page-pro .product-gallery img {
        max-height: 280px;
    }

    .product-page-pro .spec-preview,
    .product-trust-strip,
    .related-mini-grid,
    .product-buy-panel .buy-row {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        overflow-x: auto;
    }

    .product-tabs a {
        min-height: 50px;
        padding: 0 18px;
        white-space: nowrap;
        font-size: 16px;
    }

    .product-tabs a.active {
        font-size: 18px;
    }

    .product-side-code {
        align-items: stretch;
    }

    .product-side-code span {
        flex: 1;
    }

    .cart-product {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .cart-product-image {
        width: 64px;
    }

    .cart-price,
    .cart-line-total {
        text-align: left;
    }

    .checkout-section {
        padding: 18px;
    }

    .filter-price-row,
    .catalog-results-head {
        grid-template-columns: 1fr;
    }

    .catalog-results-head {
        display: grid;
        align-items: start;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }

    .success-actions,
    .success-actions .btn {
        width: 100%;
    }

    .shop-page {
        padding: 16px 14px;
    }

    .page-hero.compact,
    .shop-footer {
        display: grid;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .catalog,
    .cartridge-finder,
    .info-grid,
    .quick-tags {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .cartridge-finder {
        padding: 18px;
    }

    .product-lightbox {
        padding: 18px;
    }

    .lightbox-arrow,
    .lightbox-close {
        width: 44px;
        height: 44px;
    }
}

body.theme-kanc-red.template-default,
body.theme-kanc-red.shop-inner-page {
    background:
        radial-gradient(circle at 12% -6%, rgba(220, 38, 38, .18), transparent 34%),
        radial-gradient(circle at 88% 6%, rgba(249, 115, 22, .12), transparent 30%),
        linear-gradient(180deg, #fff5f5 0%, #ffffff 72%);
}

.theme-kanc-red.template-default .brand span,
.theme-kanc-red.shop-inner-page .brand span {
    background: linear-gradient(135deg, #ef1d2f, #b91c1c);
    box-shadow: 0 14px 28px rgba(220, 38, 38, .24);
}

.theme-kanc-red.template-default .theme-link,
.theme-kanc-red.template-default .cart-button,
.theme-kanc-red.shop-inner-page .theme-link,
.theme-kanc-red.shop-inner-page .cart-button,
.theme-kanc-red.shop-inner-page .category-chip.is-active {
    box-shadow: 0 14px 28px rgba(220, 38, 38, .2);
}

.theme-kanc-red.template-default .subnav a:hover,
.theme-kanc-red.template-default .subnav a.active,
.theme-kanc-red.shop-inner-page .shop-subnav a:hover,
.theme-kanc-red.shop-inner-page .shop-subnav a.active {
    color: #b91c1c;
    background: #fff1f2;
}

.theme-kanc-red.template-default .hero-card {
    --banner-from: #b91c1c !important;
    --banner-to: #fb923c !important;
}

.theme-kanc-red.template-default .hero-card::after {
    background:
        radial-gradient(circle at 76% 42%, rgba(255,255,255,.56), transparent 25%),
        linear-gradient(90deg, transparent 46%, rgba(255,255,255,.38));
}

.theme-kanc-red.template-default .kanc-cartridge-panel {
    background:
        radial-gradient(circle at 88% 16%, rgba(255,255,255,.3), transparent 28%),
        linear-gradient(135deg, #991b1b, #dc2626 56%, #fb923c);
    box-shadow: 0 18px 42px rgba(220, 38, 38, .2);
}

.theme-kanc-red.template-default .kanc-business-strip,
.theme-kanc-red.shop-inner-page .page-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(220, 38, 38, .12), transparent 28%),
        linear-gradient(135deg, #fff, #fff5f5);
}

.theme-kanc-red.template-default .card-image-badges .badge-hit,
.theme-kanc-red.template-default .card-image-badges .badge-sale,
.theme-kanc-red.shop-inner-page .gallery-badges .badge-sale {
    background: #dc2626;
    color: #fff;
}

.theme-kanc-red.template-default .product-card:hover,
.theme-kanc-red.shop-inner-page .product-gallery,
.theme-kanc-red.shop-inner-page .product-buy-panel {
    border-color: rgba(220, 38, 38, .24);
}

body.theme-kanc-crimson.template-default,
body.theme-kanc-crimson.shop-inner-page {
    background:
        radial-gradient(circle at 12% -6%, rgba(172, 2, 3, .18), transparent 34%),
        radial-gradient(circle at 88% 6%, rgba(255, 183, 3, .13), transparent 30%),
        linear-gradient(180deg, #fff7f2 0%, #ffffff 72%);
}

.theme-kanc-crimson.template-default .shop-shell,
.theme-kanc-crimson.shop-inner-page .shop-shell {
    box-shadow: 0 22px 70px rgba(70, 8, 8, .13);
}

.theme-kanc-crimson.template-default .brand span,
.theme-kanc-crimson.shop-inner-page .brand span {
    background: linear-gradient(135deg, #c40204, #7f0102);
    box-shadow: 0 14px 28px rgba(172, 2, 3, .26);
}

.theme-kanc-crimson.template-default .theme-link,
.theme-kanc-crimson.template-default .cart-button,
.theme-kanc-crimson.shop-inner-page .theme-link,
.theme-kanc-crimson.shop-inner-page .cart-button,
.theme-kanc-crimson.shop-inner-page .category-chip.is-active {
    box-shadow: 0 14px 28px rgba(172, 2, 3, .2);
}

.theme-kanc-crimson.template-default .subnav a:hover,
.theme-kanc-crimson.template-default .subnav a.active,
.theme-kanc-crimson.shop-inner-page .shop-subnav a:hover,
.theme-kanc-crimson.shop-inner-page .shop-subnav a.active {
    color: #8f0102;
    background: #fff0ed;
}

.theme-kanc-crimson.template-default .hero-card {
    --banner-from: #7f0102 !important;
    --banner-to: #d97706 !important;
}

.theme-kanc-crimson.template-default .hero-card::after {
    background:
        radial-gradient(circle at 76% 42%, rgba(255,255,255,.5), transparent 25%),
        linear-gradient(90deg, transparent 46%, rgba(255,255,255,.3));
}

.theme-kanc-crimson.template-default .kanc-cartridge-panel {
    background:
        radial-gradient(circle at 88% 16%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, #6f0102, #ac0203 58%, #d97706);
    box-shadow: 0 18px 42px rgba(172, 2, 3, .2);
}

.theme-kanc-crimson.template-default .kanc-business-strip,
.theme-kanc-crimson.shop-inner-page .page-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(172, 2, 3, .12), transparent 28%),
        linear-gradient(135deg, #fff, #fff7f2);
}

.theme-kanc-crimson.template-default .card-image-badges .badge-hit,
.theme-kanc-crimson.template-default .card-image-badges .badge-sale,
.theme-kanc-crimson.shop-inner-page .gallery-badges .badge-sale {
    background: #ac0203;
    color: #fff;
}

.theme-kanc-crimson.template-default .product-card:hover,
.theme-kanc-crimson.shop-inner-page .product-gallery,
.theme-kanc-crimson.shop-inner-page .product-buy-panel {
    border-color: rgba(172, 2, 3, .25);
}

.home-brand-strip {
    margin: 24px 0 28px;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--primary) 12%, #dbe3ef);
    border-radius: 20px;
    background:
        radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--soft) 62%, transparent), transparent 32%),
        linear-gradient(180deg, #fff, color-mix(in srgb, var(--soft) 32%, #fff));
    box-shadow: 0 18px 40px rgba(15, 23, 42, .07);
}

.home-brand-strip .section-head {
    margin-bottom: 16px;
}

.home-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 12px;
}

.home-brand-card {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 18px;
    border: 1px solid rgba(130, 150, 190, .22);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
    outline: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-brand-card img {
    max-width: 124px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) saturate(.18) opacity(.56);
    transition: filter .18s ease, transform .18s ease;
}

.home-brand-card b {
    color: color-mix(in srgb, var(--ink) 72%, var(--muted));
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.home-brand-card:hover,
.home-brand-card:focus-visible {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary) 34%, #dbe3ef);
    background: color-mix(in srgb, var(--soft) 36%, #fff);
    box-shadow: 0 18px 34px color-mix(in srgb, var(--primary) 15%, transparent);
}

.home-brand-card:hover img,
.home-brand-card:focus-visible img {
    filter: grayscale(0) saturate(1.08) opacity(1);
    transform: scale(1.045);
}

.home-brand-card:hover b,
.home-brand-card:focus-visible b {
    color: var(--primary);
}

.home-brand-card.text-only {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--soft) 42%, #fff), #fff);
}

@media (max-width: 760px) {
    .home-brand-strip {
        padding: 18px;
        border-radius: 18px;
    }

    .home-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-brand-card {
        min-height: 76px;
        padding: 14px;
    }

    .home-brand-card img {
        max-width: 108px;
        max-height: 42px;
    }

    .collection-hero,
    .collection-product-grid {
        grid-template-columns: 1fr;
    }

    .collection-hero {
        padding: 22px;
    }

    .collection-hero-art {
        min-height: 180px;
    }

    .collection-products-head {
        display: grid;
        align-items: start;
    }

    .collection-products-head > span {
        text-align: left;
    }

    .collection-actions,
    .collection-actions .btn {
        width: 100%;
    }
}

/* Product page final overrides: denser first screen, safer mobile layout, clearer commerce hierarchy. */
.shop-inner-page {
    overflow-x: hidden;
}

.theme-kanc.shop-inner-page .shop-page {
    overflow: hidden;
}

.theme-kanc.shop-inner-page .breadcrumbs {
    min-width: 0;
    align-items: center;
}

.theme-kanc.shop-inner-page .breadcrumbs a:last-child {
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.theme-kanc.shop-inner-page .product-page-pro {
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
    padding: 2px 4px 2px 2px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell {
    grid-column: 2;
    grid-row: 1;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 1px solid #dce5f4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 68, .08);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: clamp(18px, 4vw, 42px);
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery::before,
.theme-kanc.shop-inner-page .product-gallery::after {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 100%;
    height: 100%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    filter: none;
}

.theme-kanc.shop-inner-page .product-summary {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
    max-width: 100%;
    flex-wrap: wrap;
}

.theme-kanc.shop-inner-page .product-page-pro .product-code,
.theme-kanc.shop-inner-page .product-page-pro .product-rating,
.theme-kanc.shop-inner-page .product-page-pro .product-brand {
    max-width: 100%;
}

.theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
    max-width: 720px;
    margin: 14px 0 10px;
    font-size: clamp(30px, 2.5vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-lead {
    max-width: 740px;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav {
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav a {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview {
    max-width: 760px;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview span {
    min-width: 0;
    min-height: 62px;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    max-width: 100%;
    padding: 16px;
    border-radius: 16px;
}

.theme-kanc.shop-inner-page .product-side-code {
    min-width: 0;
}

.theme-kanc.shop-inner-page .product-side-code span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.theme-kanc.shop-inner-page .product-side-code > svg {
    flex: 0 0 auto;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row strong {
    font-size: clamp(32px, 3.2vw, 42px);
}

.theme-kanc.shop-inner-page .product-buy-panel .stock {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 42px;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-commerce-facts span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    grid-template-columns: 118px minmax(180px, 1fr) minmax(138px, auto);
}

.theme-kanc.shop-inner-page .purchase-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.theme-kanc.shop-inner-page .purchase-actions form,
.theme-kanc.shop-inner-page .purchase-actions .link-button {
    min-width: 0;
    width: 100%;
}

.theme-kanc.shop-inner-page .product-buy-panel .link-button {
    padding-inline: 10px;
}

.theme-kanc.shop-inner-page .product-description-panel p {
    max-width: 860px;
    min-height: 0;
    font-size: 16px;
    line-height: 1.7;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    grid-template-columns: 1fr;
}

.theme-kanc.shop-inner-page .related-mini-card {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: stretch;
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 132px;
}

.theme-kanc.shop-inner-page .related-mini-image img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #dce5f4;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(19, 32, 68, .12);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: 12px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: 12px;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    right: 16px;
    bottom: 16px;
    height: 46px;
    min-width: 150px;
    max-width: calc(100% - 32px);
    justify-content: center;
    border: 1px solid #dce5f4;
    background: #fff;
    opacity: 1;
    transform: none;
    z-index: 3;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 24px;
    height: 24px;
    color: #2367dc;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 12px;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs img {
    object-fit: contain;
}

@media (max-width: 1180px) {
    .theme-kanc.shop-inner-page .product-page-pro {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .theme-kanc.template-default .topbar {
        gap: 14px;
    }

    .theme-kanc.template-default .top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        overflow: hidden;
    }

    .theme-kanc.template-default .shop-phone-link {
        min-width: 0;
        padding: 0 12px;
        justify-content: flex-start;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .theme-kanc.template-default .currency-switcher {
        min-width: 98px;
    }

    .theme-kanc.template-default .theme-link,
    .theme-kanc.template-default .cart-button {
        width: 48px;
        height: 48px;
    }

    .theme-kanc.template-default .user-card {
        display: none;
    }

    .theme-kanc.shop-inner-page .breadcrumbs {
        gap: 8px;
        overflow: hidden;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-code,
    .theme-kanc.shop-inner-page .product-page-pro .product-rating,
    .theme-kanc.shop-inner-page .product-page-pro .product-brand {
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 0;
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .product-gallery img {
        width: 100%;
        height: 100%;
        max-height: 310px;
    }

    .theme-kanc.shop-inner-page .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        grid-column: 1;
        grid-row: auto;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding: 2px 0 4px;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        right: 10px;
        bottom: 10px;
        min-width: 0;
        height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
        font-size: clamp(26px, 8vw, 32px);
        line-height: 1.12;
    }

    .theme-kanc.shop-inner-page .product-buy-panel {
        padding: 14px;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .buy-row,
    .theme-kanc.shop-inner-page .purchase-actions {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-mini-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .theme-kanc.shop-inner-page .related-mini-image {
        min-height: 112px;
    }
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 88%;
    height: 88%;
    position: static;
    z-index: auto;
}

.product-gallery-wrap.is-ajax-loading .product-gallery {
    cursor: progress;
}

.product-gallery img.is-loading {
    opacity: .38;
}

.gallery-counter {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(130, 150, 190, .28);
    background: rgba(255, 255, 255, .92);
    color: #334155;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(19, 32, 68, .1);
}

.gallery-thumbs[hidden] {
    display: none !important;
}

.product-lightbox.open {
    backdrop-filter: blur(10px);
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    max-width: calc(100% - 32px);
    z-index: 3;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .gallery-zoom-hint {
        right: 10px;
        bottom: 10px;
        width: 42px;
        min-width: 42px;
        max-width: calc(100% - 20px);
        justify-content: center;
        overflow: hidden;
        padding: 0;
        font-size: 0;
    }

    .theme-kanc.shop-inner-page .gallery-zoom-hint svg {
        width: 22px;
        height: 22px;
    }
}

/* Product detail layout inspired by the provided reference. */
.theme-kanc.shop-inner-page {
    --product-blue: #0f63e9;
    --product-ink: #0a1638;
    --product-line: #dfe8f6;
    --product-card-shadow: 0 18px 42px rgba(28, 53, 103, .09);
}

.theme-kanc.shop-inner-page .product-page-pro {
    grid-template-columns: minmax(420px, 1.04fr) minmax(420px, .96fr);
    gap: 34px;
    align-items: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap,
.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--product-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--product-card-shadow);
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .product-gallery-shell,
.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    grid-column: 1;
    grid-row: auto;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery {
    aspect-ratio: 1 / .88;
    padding: 18px;
    background: #fff;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: 94%;
    height: 94%;
    max-width: 680px;
    max-height: 560px;
}

.theme-kanc.shop-inner-page .gallery-thumbs,
.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    max-height: none;
    margin: 8px 0 0;
    overflow-x: auto;
    padding: 2px;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    border-color: var(--product-line);
    background: #fff;
}

.theme-kanc.shop-inner-page .gallery-thumbs button.active {
    border-color: var(--product-blue);
    box-shadow: 0 0 0 2px rgba(15, 99, 233, .16);
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    font-size: 0;
    color: var(--product-ink);
}

.theme-kanc.shop-inner-page .gallery-arrow {
    top: 50%;
    width: 44px;
    height: 44px;
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: -8px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: -8px;
}

.theme-kanc.shop-inner-page .product-summary {
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-meta-row {
    gap: 18px;
    color: #6d7894;
}

.theme-kanc.shop-inner-page .product-page-pro .product-code,
.theme-kanc.shop-inner-page .product-page-pro .product-rating,
.theme-kanc.shop-inner-page .product-page-pro .product-brand {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-info h1 {
    max-width: 620px;
    margin: 18px 0 10px;
    color: var(--product-ink);
    font-size: clamp(28px, 2.55vw, 36px);
    line-height: 1.16;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .product-lead {
    max-width: 640px;
    color: #4c5877;
    font-size: 15px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav {
    gap: 24px;
    margin: 14px 0 20px;
}

.theme-kanc.shop-inner-page .product-page-pro .product-quick-nav a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--product-blue);
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .product-page-pro .spec-preview {
    margin-bottom: 14px;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    padding: 24px;
    border-color: var(--product-line);
    border-radius: 18px;
    box-shadow: var(--product-card-shadow);
}

.theme-kanc.shop-inner-page .product-side-code {
    display: none;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row {
    margin: 0 0 18px;
}

.theme-kanc.shop-inner-page .product-buy-panel .product-price-row strong {
    color: var(--product-ink);
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 900;
}

.theme-kanc.shop-inner-page .product-buy-panel .stock {
    width: auto;
    min-height: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    color: var(--product-ink);
}

.theme-kanc.shop-inner-page .product-commerce-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--product-line);
    border-bottom: 1px solid var(--product-line);
}

.theme-kanc.shop-inner-page .product-commerce-facts span {
    min-height: 54px;
    padding: 0 16px;
    border: 0;
    border-right: 1px solid var(--product-line);
    border-radius: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .product-commerce-facts span:last-child {
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-light {
    grid-column: 1 / -1;
    border-color: #ff6b2c;
    color: #ff5a1f;
    background: #fff;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--product-line);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits span {
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .product-trust-strip {
    margin: 28px 0;
}

.theme-kanc.shop-inner-page .product-lower-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
}

.theme-kanc.shop-inner-page .product-tabs {
    gap: 28px;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid var(--product-line);
    background: #fff;
    border-radius: 16px 16px 0 0;
}

.theme-kanc.shop-inner-page .product-tabs a {
    min-height: 54px;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--product-ink);
    font-size: 15px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .product-tabs a.active {
    border-bottom-color: var(--product-blue);
    color: var(--product-blue);
    background: transparent;
    font-size: 15px;
}

.theme-kanc.shop-inner-page .product-lower-grid .product-details {
    border-radius: 0 0 16px 16px;
}

.theme-kanc.shop-inner-page .related-sidebar {
    padding: 18px;
    border-radius: 16px;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 86px;
    border-radius: 10px;
}

.theme-kanc.shop-inner-page .related-mini-body {
    position: relative;
    padding: 0;
    padding-right: 52px;
}

.theme-kanc.shop-inner-page .related-mini-body h3 {
    font-size: 13px;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    -webkit-line-clamp: 3;
}

.theme-kanc.shop-inner-page .related-mini-body span {
    display: none;
}

.theme-kanc.shop-inner-page .related-mini-body strong {
    font-size: 18px;
}

.theme-kanc.shop-inner-page .related-mini-body form {
    position: absolute;
    right: 0;
    bottom: 0;
}

.theme-kanc.shop-inner-page .related-mini-body .btn {
    width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
    border-radius: 10px;
}

.theme-kanc.shop-inner-page .related-mini-body .btn::before {
    content: "+";
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .theme-kanc.shop-inner-page .product-page-pro,
    .theme-kanc.shop-inner-page .product-lower-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-gallery-wrap,
    .theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs {
        padding: 14px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        aspect-ratio: 1 / .95;
    }

    .theme-kanc.shop-inner-page .gallery-thumbs button {
        flex-basis: 76px;
        width: 76px;
        height: 76px;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts,
    .theme-kanc.shop-inner-page .product-buy-panel .buy-row,
    .theme-kanc.shop-inner-page .related-mini-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts span {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
        padding: 10px 0;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts span:last-child {
        border-bottom: 0;
    }

    .theme-kanc.shop-inner-page .product-tabs {
        gap: 18px;
        overflow-x: auto;
    }
}

/* Compact lower product area: lighter tabs, smaller comments form, roomier related products. */
.theme-kanc.shop-inner-page .product-lower-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 20px;
    align-items: start;
}

.theme-kanc.shop-inner-page .product-tabs {
    gap: 2px;
}

.theme-kanc.shop-inner-page .product-tabs a {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px 10px 0 0;
    font-size: 15px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .product-tabs a.active {
    font-size: 15px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .product-lower-grid .product-details {
    padding: 18px;
    border-radius: 0 14px 14px 14px;
}

.theme-kanc.shop-inner-page .product-lower-grid .product-details + .product-details {
    margin-top: 12px;
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .product-description-panel h2,
.theme-kanc.shop-inner-page .product-lower-grid .product-details h2 {
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.18;
}

.theme-kanc.shop-inner-page .product-stock-list span,
.theme-kanc.shop-inner-page .product-path-note {
    padding: 12px 14px;
}

.theme-kanc.shop-inner-page .product-comments-panel {
    gap: 12px;
}

.theme-kanc.shop-inner-page .product-comments-head {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 12px;
}

.theme-kanc.shop-inner-page .product-comments-head span:first-child {
    font-size: 11px;
    letter-spacing: .09em;
}

.theme-kanc.shop-inner-page .product-comments-head h2 {
    margin-bottom: 4px;
}

.theme-kanc.shop-inner-page .product-comments-head p {
    max-width: 560px;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
}

.theme-kanc.shop-inner-page .product-comments-score {
    min-width: 0;
    padding: 10px;
    border-radius: 12px;
}

.theme-kanc.shop-inner-page .product-comments-score strong {
    font-size: 24px;
}

.theme-kanc.shop-inner-page .comment-stars {
    font-size: 13px;
}

.theme-kanc.shop-inner-page .product-comments-score small {
    margin-top: 3px;
    font-size: 11px;
}

.theme-kanc.shop-inner-page .comment-form {
    padding: 12px;
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .comment-form-grid {
    gap: 8px;
}

.theme-kanc.shop-inner-page .comment-form label {
    gap: 5px;
    font-size: 11px;
}

.theme-kanc.shop-inner-page .comment-form input,
.theme-kanc.shop-inner-page .comment-form select {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form textarea {
    min-height: 78px;
    padding: 10px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form-actions {
    margin-top: 10px;
}

.theme-kanc.shop-inner-page .comment-form-actions .btn {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 9px;
    font-size: 13px;
}

.theme-kanc.shop-inner-page .comments-empty {
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .related-sidebar {
    padding: 14px;
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .related-sidebar-head h2 {
    font-size: 22px;
}

.theme-kanc.shop-inner-page .related-sidebar-head span {
    font-size: 13px;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 108px minmax(0, 1fr);
    min-width: 0;
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 108px;
    padding: 8px;
}

.theme-kanc.shop-inner-page .related-mini-body {
    gap: 5px;
    padding: 9px;
}

.theme-kanc.shop-inner-page .related-mini-body h3 {
    font-size: 12px;
    line-height: 1.25;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    -webkit-line-clamp: 4;
}

.theme-kanc.shop-inner-page .related-mini-body span {
    min-height: 0;
    font-size: 10px;
    line-height: 1.25;
}

.theme-kanc.shop-inner-page .related-mini-body strong {
    font-size: 16px;
}

.theme-kanc.shop-inner-page .related-mini-body .btn {
    min-height: 34px;
    border-radius: 8px;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .theme-kanc.shop-inner-page .product-lower-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-tabs {
        overflow-x: auto;
    }

    .theme-kanc.shop-inner-page .product-tabs a {
        min-height: 40px;
        padding: 0 14px;
        white-space: nowrap;
        font-size: 14px;
    }

    .theme-kanc.shop-inner-page .product-comments-head,
    .theme-kanc.shop-inner-page .comment-form-grid,
    .theme-kanc.shop-inner-page .related-mini-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-comments-score {
        width: 100%;
        text-align: left;
    }
}

/* Final lower-section polish: reference-style tabs, compact comments, non-squeezed related list. */
.theme-kanc.shop-inner-page .product-lower-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
}

.theme-kanc.shop-inner-page .product-tabs {
    gap: 28px;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid var(--product-line, #dfe8f6);
    border-radius: 16px 16px 0 0;
    background: #fff;
}

.theme-kanc.shop-inner-page .product-tabs a,
.theme-kanc.shop-inner-page .product-tabs a.active {
    min-height: 52px;
    padding: 0;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .product-tabs a.active {
    border-bottom-color: var(--product-blue, #0f63e9);
    color: var(--product-blue, #0f63e9);
}

.theme-kanc.shop-inner-page .product-comments-panel {
    gap: 10px;
}

.theme-kanc.shop-inner-page .product-comments-head {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 10px;
}

.theme-kanc.shop-inner-page .product-comments-head h2 {
    font-size: 22px;
}

.theme-kanc.shop-inner-page .product-comments-head p {
    max-width: 520px;
    font-size: 13px;
    line-height: 1.45;
}

.theme-kanc.shop-inner-page .product-comments-score {
    padding: 9px;
    border-radius: 12px;
}

.theme-kanc.shop-inner-page .product-comments-score strong {
    font-size: 24px;
}

.theme-kanc.shop-inner-page .comment-form {
    padding: 12px;
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .comment-form-grid {
    gap: 8px;
}

.theme-kanc.shop-inner-page .comment-form input,
.theme-kanc.shop-inner-page .comment-form select {
    min-height: 34px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form textarea {
    min-height: 76px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form-actions .btn {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 9px;
    font-size: 13px;
}

.theme-kanc.shop-inner-page .comments-empty {
    padding: 11px;
    border-radius: 12px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .related-mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 88px;
    border-radius: 10px;
}

.theme-kanc.shop-inner-page .related-mini-body {
    position: relative;
    min-height: 88px;
    padding: 0 52px 0 0;
    align-content: center;
}

.theme-kanc.shop-inner-page .related-mini-body h3 {
    font-size: 13px;
    line-height: 1.25;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    -webkit-line-clamp: 3;
}

.theme-kanc.shop-inner-page .related-mini-body span {
    display: none;
}

.theme-kanc.shop-inner-page .related-mini-body strong {
    font-size: 18px;
}

.theme-kanc.shop-inner-page .related-mini-body form {
    position: absolute;
    right: 0;
    bottom: 0;
}

.theme-kanc.shop-inner-page .related-mini-body .btn {
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 10px;
    font-size: 0;
}

.theme-kanc.shop-inner-page .related-mini-body .btn::before {
    content: "+";
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .theme-kanc.shop-inner-page .product-lower-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-tabs {
        gap: 18px;
        overflow-x: auto;
    }

    .theme-kanc.shop-inner-page .product-tabs a,
    .theme-kanc.shop-inner-page .product-tabs a.active {
        min-height: 44px;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .product-comments-head,
    .theme-kanc.shop-inner-page .comment-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Xprinter reference adaptation for KANC product page. Footer styles are intentionally untouched. */
.theme-kanc.shop-inner-page {
    --product-blue: #185bd8;
    --product-blue-dark: #084bd3;
    --product-soft-blue: #eef5ff;
    --product-ink: #101936;
    --product-muted: #64708c;
    --product-line: #dfe7f4;
    --product-bg: #f5f7fc;
    --product-orange: #ff6b2c;
    --product-radius-xl: 24px;
    --product-radius-lg: 18px;
    --product-shadow: 0 18px 46px rgba(18, 38, 80, .09);
    --product-shadow-soft: 0 12px 30px rgba(18, 38, 80, .07);
    background: var(--product-bg);
}

.theme-kanc.shop-inner-page .shop-page {
    background:
        radial-gradient(circle at 18% 12%, rgba(24, 91, 216, .08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0, var(--product-bg) 320px, #fff 100%);
}

.theme-kanc.shop-inner-page .breadcrumbs-bar {
    margin-bottom: 18px;
}

.theme-kanc.shop-inner-page .product-page-pro {
    display: grid;
    grid-template-columns: minmax(500px, 660px) minmax(460px, 1fr);
    gap: 36px;
    align-items: start;
    margin-top: 18px;
}

.theme-kanc.shop-inner-page .product-gallery-wrap {
    position: relative;
    display: grid;
    gap: 22px;
    min-height: 650px;
    padding: 26px;
    border: 1px solid rgba(220, 227, 241, .95);
    border-radius: var(--product-radius-xl);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--product-shadow);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    position: relative;
    min-height: 510px;
    border-radius: 20px;
    background:
        radial-gradient(circle at center, rgba(24, 91, 216, .075), transparent 58%),
        linear-gradient(180deg, #ffffff, #fbfcff);
}

.theme-kanc.shop-inner-page .product-gallery {
    width: 100%;
    min-height: 510px;
    padding: 44px;
    border: 0;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: min(92%, 540px);
    height: min(92%, 460px);
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(12, 19, 39, .16));
    transform: none;
}

.theme-kanc.shop-inner-page .product-gallery .lucide-package {
    width: 116px;
    height: 116px;
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .gallery-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.theme-kanc.shop-inner-page .gallery-badges b {
    min-height: 34px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    background: #fff0e8;
    color: #f05a1c;
    font-size: 13px;
    font-weight: 800;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-counter {
    right: 18px;
    bottom: 18px;
    border-color: var(--product-line);
    background: #fff;
    color: var(--product-muted);
    box-shadow: 0 10px 22px rgba(16, 35, 78, .08);
}

.theme-kanc.shop-inner-page .gallery-zoom-hint {
    top: 18px;
    right: 18px;
    bottom: auto;
    left: auto;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid #dae4f5;
    border-radius: 13px;
    background: #fff;
    color: var(--product-ink);
    box-shadow: 0 8px 20px rgba(16, 35, 78, .08);
    font-size: 0;
}

.theme-kanc.shop-inner-page .gallery-zoom-hint svg {
    width: 20px;
    height: 20px;
}

.theme-kanc.shop-inner-page .gallery-arrow {
    top: 50%;
    width: 48px;
    height: 48px;
    border-color: #dfe6f3;
    background: #fff;
    color: var(--product-ink);
    box-shadow: 0 12px 24px rgba(16, 35, 78, .1);
    transform: translateY(-50%);
}

.theme-kanc.shop-inner-page .gallery-arrow.prev {
    left: -2px;
}

.theme-kanc.shop-inner-page .gallery-arrow.next {
    right: -2px;
}

.theme-kanc.shop-inner-page .gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    width: 112px;
    height: 96px;
    border: 1px solid #dce5f5;
    border-radius: 15px;
    background: #fff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .gallery-thumbs button.active,
.theme-kanc.shop-inner-page .gallery-thumbs button:hover {
    border-color: var(--product-blue);
    box-shadow: 0 10px 24px rgba(24, 91, 216, .14);
    transform: translateY(-2px);
}

.theme-kanc.shop-inner-page .product-summary {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.theme-kanc.shop-inner-page .product-info {
    padding: 4px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-meta-row {
    justify-content: flex-end;
    gap: 13px;
    margin-bottom: 18px;
    color: #3d4965;
}

.theme-kanc.shop-inner-page .product-code {
    padding: 0;
    border: 0;
    background: transparent;
    color: #3d4965;
    font-size: 13px;
    font-weight: 700;
}

.theme-kanc.shop-inner-page .product-info h1 {
    max-width: 760px;
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(30px, 3.1vw, 38px);
    line-height: 1.14;
    letter-spacing: 0;
}

.theme-kanc.shop-inner-page .product-brand {
    display: none;
}

.theme-kanc.shop-inner-page .product-lead {
    display: none;
}

.theme-kanc.shop-inner-page .product-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 22px;
}

.theme-kanc.shop-inner-page .product-quick-nav a {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #225fc8;
    font-size: 15px;
    font-weight: 750;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-quick-nav a:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: var(--product-blue);
}

.theme-kanc.shop-inner-page .spec-preview {
    display: none;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    margin-top: 16px;
    padding: 0;
    border: 1px solid rgba(220, 227, 241, .95);
    border-radius: var(--product-radius-xl);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--product-shadow);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-side-code {
    display: none;
}

.theme-kanc.shop-inner-page .product-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 0 30px;
    padding: 28px 0 18px;
    border-bottom: 0;
}

.theme-kanc.shop-inner-page .product-price-row strong {
    color: var(--product-ink);
    font-size: clamp(34px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: 0;
}

.theme-kanc.shop-inner-page .product-price-row del {
    color: #99a5bd;
    font-size: 18px;
}

.theme-kanc.shop-inner-page .product-buy-panel .stock {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin: -54px 30px 18px auto;
    width: max-content;
    max-width: 230px;
    padding: 4px 0 0 22px;
    border: 0;
    background: transparent;
    color: #142046;
    font-size: 15px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .product-buy-panel .stock::before {
    top: 8px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #16a34a;
    box-shadow: 0 0 0 5px rgba(22, 163, 74, .1);
}

.theme-kanc.shop-inner-page .product-commerce-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 30px;
    padding: 22px 0;
    border-top: 1px solid var(--product-line);
    border-bottom: 1px solid var(--product-line);
}

.theme-kanc.shop-inner-page .product-commerce-facts span {
    min-height: 58px;
    padding: 0 16px;
    border: 0;
    border-right: 1px solid var(--product-line);
    border-radius: 0;
    background: transparent;
    color: var(--product-muted);
    font-size: 13px;
    line-height: 1.35;
}

.theme-kanc.shop-inner-page .product-commerce-facts span:first-child {
    padding-left: 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts span:last-child {
    padding-right: 0;
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts b {
    margin: 0 0 6px;
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    gap: 18px;
    margin: 0;
    padding: 24px 30px 16px;
    border: 0;
}

.theme-kanc.shop-inner-page .qty-stepper {
    height: 56px;
    border-color: #d8e1f2;
    border-radius: 13px;
}

.theme-kanc.shop-inner-page .qty-stepper button,
.theme-kanc.shop-inner-page .qty-stepper input {
    color: var(--product-ink);
    font-size: 18px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-primary {
    min-height: 56px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--product-blue), var(--product-blue-dark));
    box-shadow: 0 14px 28px rgba(24, 91, 216, .24);
    font-size: 17px;
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-light {
    grid-column: 1 / -1;
    min-height: 52px;
    border: 1px solid rgba(255, 107, 44, .68);
    border-radius: 13px;
    background: #fffaf7;
    color: #f05a1c;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .product-buy-panel .btn-light::before {
    content: "↯";
    margin-right: 8px;
    font-size: 20px;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--product-line);
    border-bottom: 1px solid var(--product-line);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-actions form,
.theme-kanc.shop-inner-page .product-buy-panel .purchase-actions button {
    min-width: 0;
}

.theme-kanc.shop-inner-page .product-buy-panel .link-button {
    width: 100%;
    min-height: 58px;
    padding: 0 10px;
    border: 0;
    border-right: 1px solid var(--product-line);
    border-radius: 0;
    background: #fff;
    color: #3b4c75;
    font-size: 14px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-actions > :last-child .link-button,
.theme-kanc.shop-inner-page .product-buy-panel .purchase-actions > button:last-child {
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-buy-panel .link-button svg {
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits {
    display: grid;
    gap: 16px;
    padding: 18px 30px 24px;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits svg {
    width: 36px;
    height: 36px;
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits b {
    color: var(--product-ink);
    font-size: 15px;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits small {
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 600;
}

.theme-kanc.shop-inner-page .product-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 28px 0 24px;
    border: 1px solid rgba(220, 227, 241, .95);
    border-radius: var(--product-radius-lg);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--product-shadow-soft);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-trust-strip article {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 112px;
    padding: 24px 34px;
    border: 0;
    border-right: 1px solid var(--product-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-trust-strip article:last-child {
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-trust-strip svg {
    width: 58px;
    height: 58px;
    padding: 12px;
    border-radius: 18px;
    background: var(--product-soft-blue);
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .product-trust-strip b {
    color: var(--product-blue);
    font-size: 17px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .product-trust-strip span {
    color: var(--product-muted);
    font-size: 14px;
    line-height: 1.45;
}

.theme-kanc.shop-inner-page .product-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 26px;
    align-items: start;
    margin-top: 0;
}

.theme-kanc.shop-inner-page .product-main-column {
    display: grid;
    gap: 0;
    min-width: 0;
    border: 1px solid rgba(220, 227, 241, .95);
    border-radius: var(--product-radius-lg);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--product-shadow-soft);
    overflow: hidden;
}

.theme-kanc.shop-inner-page .product-tabs {
    display: flex;
    gap: 34px;
    min-height: 66px;
    padding: 0 28px;
    border: 0;
    border-bottom: 1px solid var(--product-line);
    border-radius: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .product-tabs a,
.theme-kanc.shop-inner-page .product-tabs a.active {
    min-height: 66px;
    border-bottom-width: 3px;
    color: #162347;
    font-size: 15px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .product-tabs a.active {
    color: var(--product-blue);
    border-bottom-color: var(--product-blue);
}

.theme-kanc.shop-inner-page .product-details {
    margin: 0;
    padding: 24px 28px;
    border: 0;
    border-bottom: 1px solid var(--product-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-details:last-child {
    border-bottom: 0;
}

.theme-kanc.shop-inner-page .product-description-panel h2 {
    display: none;
}

.theme-kanc.shop-inner-page .product-description-panel p {
    max-width: 820px;
    margin: 0;
    color: #213154;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 600;
}

.theme-kanc.shop-inner-page .product-details h2 {
    margin-bottom: 18px;
    color: var(--product-ink);
    font-size: 18px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .spec-list,
.theme-kanc.shop-inner-page .product-stock-list {
    display: grid;
    gap: 0;
    max-width: 620px;
    border: 1px solid var(--product-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.theme-kanc.shop-inner-page .spec-list div,
.theme-kanc.shop-inner-page .product-stock-list span {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 12px 16px;
    border-bottom: 1px solid #edf2fb;
}

.theme-kanc.shop-inner-page .spec-list div:last-child,
.theme-kanc.shop-inner-page .product-stock-list span:last-child {
    border-bottom: 0;
}

.theme-kanc.shop-inner-page .spec-list dt,
.theme-kanc.shop-inner-page .product-stock-list small {
    color: var(--product-muted);
    font-size: 14px;
    font-weight: 650;
}

.theme-kanc.shop-inner-page .spec-list dd,
.theme-kanc.shop-inner-page .product-stock-list strong {
    color: #172340;
    font-size: 14px;
    font-weight: 850;
    text-align: left;
}

.theme-kanc.shop-inner-page .product-path-note {
    margin: 0;
    padding: 14px 28px;
    border: 0;
    border-bottom: 1px solid var(--product-line);
    border-radius: 0;
    background: #fbfdff;
    box-shadow: none;
}

.theme-kanc.shop-inner-page .product-comments-panel {
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
}

.theme-kanc.shop-inner-page .product-comments-head {
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: start;
    gap: 14px;
}

.theme-kanc.shop-inner-page .product-comments-head span:first-child {
    color: var(--product-orange);
    font-size: 10px;
    letter-spacing: .12em;
}

.theme-kanc.shop-inner-page .product-comments-head h2 {
    color: var(--product-ink);
    font-size: 22px;
    line-height: 1.15;
}

.theme-kanc.shop-inner-page .product-comments-head p {
    max-width: 540px;
    color: #243452;
    font-size: 13px;
}

.theme-kanc.shop-inner-page .product-comments-score {
    padding: 9px;
    border-radius: 12px;
    background: #f3f7ff;
}

.theme-kanc.shop-inner-page .product-comments-score strong {
    color: var(--product-ink);
    font-size: 24px;
}

.theme-kanc.shop-inner-page .comment-form {
    padding: 12px;
    border-radius: 14px;
    background: #f8fbff;
}

.theme-kanc.shop-inner-page .comment-form-grid {
    gap: 8px;
}

.theme-kanc.shop-inner-page .comment-form label {
    color: var(--product-ink);
    font-size: 11px;
}

.theme-kanc.shop-inner-page .comment-form input,
.theme-kanc.shop-inner-page .comment-form select {
    min-height: 34px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form textarea {
    min-height: 74px;
    border-radius: 9px;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .comment-form-actions .btn {
    min-height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #ff6b2c, #ff512f);
    box-shadow: none;
    font-size: 13px;
}

.theme-kanc.shop-inner-page .comments-empty {
    padding: 12px;
    border-radius: 12px;
    background: #f6f9ff;
    font-size: 12px;
}

.theme-kanc.shop-inner-page .related-sidebar {
    padding: 20px;
    border: 1px solid rgba(220, 227, 241, .95);
    border-radius: var(--product-radius-lg);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--product-shadow-soft);
}

.theme-kanc.shop-inner-page .related-sidebar-head {
    align-items: center;
    margin-bottom: 16px;
}

.theme-kanc.shop-inner-page .related-sidebar-head h2 {
    color: var(--product-ink);
    font-size: 18px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .related-sidebar-head span {
    color: var(--product-blue);
    font-size: 13px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .related-mini-grid,
.theme-kanc.shop-inner-page .related-mini-grid.wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 126px;
    padding: 12px;
    border: 1px solid var(--product-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.theme-kanc.shop-inner-page .related-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 35, 78, .08);
}

.theme-kanc.shop-inner-page .related-mini-image {
    min-height: 100px;
    padding: 10px;
    border: 1px solid #edf2fb;
    border-radius: 13px;
    background: #f8faff;
}

.theme-kanc.shop-inner-page .related-mini-image img {
    max-width: 90%;
    max-height: 90%;
}

.theme-kanc.shop-inner-page .related-mini-body {
    position: static;
    display: grid;
    gap: 9px;
    min-height: 100px;
    padding: 0 54px 0 0;
    align-content: center;
}

.theme-kanc.shop-inner-page .related-mini-body h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .related-mini-body h3 a {
    color: #162347;
    -webkit-line-clamp: 3;
}

.theme-kanc.shop-inner-page .related-mini-body span {
    display: none;
}

.theme-kanc.shop-inner-page .related-mini-body strong {
    color: var(--product-ink);
    font-size: 20px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .related-mini-body form {
    position: absolute;
    right: 12px;
    bottom: 12px;
}

.theme-kanc.shop-inner-page .related-mini-body .btn {
    width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 12px;
    background: var(--product-blue);
    box-shadow: 0 10px 22px rgba(24, 91, 216, .22);
    font-size: 0;
}

.theme-kanc.shop-inner-page .related-mini-body .btn::before {
    content: "+";
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .theme-kanc.shop-inner-page .product-page-pro,
    .theme-kanc.shop-inner-page .product-lower-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-meta-row {
        justify-content: flex-start;
    }

    .theme-kanc.shop-inner-page .related-mini-grid,
    .theme-kanc.shop-inner-page .related-mini-grid.wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-page-pro {
        gap: 20px;
        margin-top: 12px;
    }

    .theme-kanc.shop-inner-page .product-gallery-wrap {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
    }

    .theme-kanc.shop-inner-page .product-gallery-shell,
    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 360px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 28px;
    }

    .theme-kanc.shop-inner-page .gallery-thumbs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .theme-kanc.shop-inner-page .gallery-thumbs button {
        flex: 0 0 78px;
        width: 78px;
        height: 72px;
    }

    .theme-kanc.shop-inner-page .product-info h1 {
        font-size: 26px;
    }

    .theme-kanc.shop-inner-page .product-quick-nav,
    .theme-kanc.shop-inner-page .product-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .stock {
        margin: 0 20px 14px;
    }

    .theme-kanc.shop-inner-page .product-price-row,
    .theme-kanc.shop-inner-page .product-commerce-facts {
        margin-inline: 20px;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts,
    .theme-kanc.shop-inner-page .product-buy-panel .buy-row,
    .theme-kanc.shop-inner-page .product-buy-panel .purchase-actions,
    .theme-kanc.shop-inner-page .product-trust-strip,
    .theme-kanc.shop-inner-page .related-mini-grid,
    .theme-kanc.shop-inner-page .related-mini-grid.wide {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts span,
    .theme-kanc.shop-inner-page .product-trust-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
        padding: 14px 0;
    }

    .theme-kanc.shop-inner-page .product-trust-strip article {
        padding: 18px;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .buy-row {
        padding-inline: 20px;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .link-button {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
    }

    .theme-kanc.shop-inner-page .product-tabs {
        gap: 22px;
        padding-inline: 18px;
    }

    .theme-kanc.shop-inner-page .product-tabs a,
    .theme-kanc.shop-inner-page .product-tabs a.active {
        min-height: 54px;
    }

    .theme-kanc.shop-inner-page .product-details {
        padding: 20px 18px;
    }

    .theme-kanc.shop-inner-page .spec-list div,
    .theme-kanc.shop-inner-page .product-stock-list span,
    .theme-kanc.shop-inner-page .product-comments-head,
    .theme-kanc.shop-inner-page .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .related-mini-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }
}

/* Final visual corrections after snapshot review. */
.theme-kanc.shop-inner-page .product-gallery img {
    transform: scale(1.04);
    transform-origin: center;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits span {
    grid-template-columns: 42px minmax(0, 1fr);
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits svg {
    grid-row: 1 / 3;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits b,
.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits small {
    grid-column: 2;
    min-width: 0;
}

/* Exact product.tpl mockup structure mapping. */
.theme-kanc.shop-inner-page .product-hero {
    grid-template-columns: minmax(520px, 680px) minmax(520px, 1fr);
    gap: 38px;
}

.theme-kanc.shop-inner-page .gallery-card {
    min-height: 760px;
    padding: 28px;
}

.theme-kanc.shop-inner-page .gallery-top-actions {
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.theme-kanc.shop-inner-page .hot-badge {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff3ed;
    color: #f05a1c;
    font-size: 13px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .zoom-btn {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #dae4f5;
    border-radius: 14px;
    background: #fff;
    color: #132044;
    box-shadow: 0 8px 20px rgba(16, 35, 78, .08);
}

.theme-kanc.shop-inner-page .gallery-badges {
    display: none;
}

.theme-kanc.shop-inner-page .main-image-wrap {
    min-height: 590px;
}

.theme-kanc.shop-inner-page .price-stock {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: start;
    gap: 24px;
    margin: 0 30px;
    padding: 28px 0 24px;
    border-bottom: 1px solid var(--product-line);
}

.theme-kanc.shop-inner-page .price-stock .product-price-row {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

.theme-kanc.shop-inner-page .price-stock .product-price-row strong {
    font-size: 40px;
    line-height: 1;
    white-space: nowrap;
}

.theme-kanc.shop-inner-page .price-stock .stock {
    width: auto;
    max-width: 250px;
    margin: 0;
    padding-top: 5px;
}

.theme-kanc.shop-inner-page .gallery-counter {
    display: none;
}

.theme-kanc.shop-inner-page .product-commerce-facts {
    margin-top: 0;
    border-top: 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid var(--product-line);
    background: transparent;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact:first-child {
    padding-left: 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact:last-child {
    padding-right: 0;
    border-right: 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact > svg {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    color: #59709c;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact > span {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--product-muted);
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact b {
    display: block;
    margin: 0 0 4px;
    color: var(--product-muted);
    font-size: 13px;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits > .benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.theme-kanc.shop-inner-page .product-buy-panel .purchase-benefits > .benefit > span {
    display: block;
    min-width: 0;
}

.theme-kanc.shop-inner-page .info-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 0 28px 24px;
}

.theme-kanc.shop-inner-page .info-panels .mini-panel {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--product-line);
    border-radius: 16px;
    background: #fff;
}

.theme-kanc.shop-inner-page .info-panels .mini-panel:only-child {
    max-width: 640px;
}

.theme-kanc.shop-inner-page .info-panels .mini-panel h2 {
    margin: 0 0 18px;
    font-size: 18px;
}

.theme-kanc.shop-inner-page .info-panels .spec-list,
.theme-kanc.shop-inner-page .info-panels .product-stock-list {
    max-width: none;
    border: 0;
    border-radius: 0;
}

.theme-kanc.shop-inner-page .info-panels .spec-row,
.theme-kanc.shop-inner-page .info-panels .stock-line {
    padding: 0 0 12px;
    border: 0;
}

.theme-kanc.shop-inner-page .related-item .mini-cart-btn {
    position: static;
}

.theme-kanc.shop-inner-page .related-item .mini-cart-btn svg {
    width: 22px;
    height: 22px;
}

.theme-kanc.shop-inner-page .related-item .mini-cart-btn::before {
    content: none;
}

@media (max-width: 1200px) {
    .theme-kanc.shop-inner-page .product-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .gallery-card {
        min-height: auto;
    }

    .theme-kanc.shop-inner-page .main-image-wrap {
        min-height: 380px;
    }

    .theme-kanc.shop-inner-page .price-stock,
    .theme-kanc.shop-inner-page .info-panels {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .price-stock {
        margin-inline: 20px;
    }

    .theme-kanc.shop-inner-page .product-commerce-facts > .fact {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
    }

    .theme-kanc.shop-inner-page .info-panels {
        padding-inline: 18px;
    }
}

/* Live QA pass: mobile containment and product page polish. */
.theme-kanc.shop-inner-page .product-info h1,
.theme-kanc.shop-inner-page .related-title a,
.theme-kanc.shop-inner-page .product-path-note b {
    overflow-wrap: anywhere;
}

.theme-kanc.shop-inner-page .gallery-card {
    align-content: start;
}

.theme-kanc.shop-inner-page .product-gallery-wrap:not(.has-gallery-thumbs) .gallery-arrow {
    display: none;
}

.theme-kanc.shop-inner-page .product-gallery-shell {
    overflow: hidden;
}

.theme-kanc.shop-inner-page .related-sidebar {
    position: sticky;
    top: 18px;
}

.theme-kanc.shop-inner-page .comment-form textarea {
    resize: vertical;
}

@media (max-width: 760px) {
    html,
    body.theme-kanc.shop-inner-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .theme-kanc.shop-inner-page .shop-shell,
    .theme-kanc.shop-inner-page .shop-page,
    .theme-kanc.shop-inner-page .topbar,
    .theme-kanc.shop-inner-page .subnav,
    .theme-kanc.shop-inner-page .breadcrumbs,
    .theme-kanc.shop-inner-page .product-hero,
    .theme-kanc.shop-inner-page .product-summary,
    .theme-kanc.shop-inner-page .product-lower-grid,
    .theme-kanc.shop-inner-page .details-card,
    .theme-kanc.shop-inner-page .related-card {
        max-width: 100%;
        min-width: 0;
    }

    .theme-kanc.shop-inner-page .shop-shell {
        width: 100%;
        margin: 0;
        border-inline: 0;
        border-radius: 0;
    }

    .theme-kanc.shop-inner-page .shop-page {
        padding: 16px 12px 32px;
        overflow: hidden;
    }

    .theme-kanc.shop-inner-page .topbar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .theme-kanc.shop-inner-page .search-bar {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .theme-kanc.shop-inner-page .search-bar input {
        min-width: 0;
    }

    .theme-kanc.shop-inner-page .top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: auto 48px;
        justify-content: start;
        gap: 8px;
        align-items: center;
    }

    .theme-kanc.shop-inner-page .shop-phone-link {
        grid-column: 1 / -1;
        justify-content: center;
        min-width: 0;
    }

    .theme-kanc.shop-inner-page .header-currency {
        justify-self: start;
    }

    .theme-kanc.shop-inner-page .cart-button {
        justify-self: start;
    }

    .theme-kanc.shop-inner-page .user-card,
    .theme-kanc.shop-inner-page .theme-link[title="Избранное"],
    .theme-kanc.shop-inner-page .theme-link[title="Сравнение"] {
        display: none;
    }

    .theme-kanc.shop-inner-page .subnav {
        height: auto;
        min-height: 54px;
        padding: 8px 12px;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .subnav a {
        flex: 0 0 auto;
    }

    .theme-kanc.shop-inner-page .breadcrumbs {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-bottom: 14px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .theme-kanc.shop-inner-page .breadcrumbs a:last-child {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .theme-kanc.shop-inner-page .product-hero {
        gap: 18px;
    }

    .theme-kanc.shop-inner-page .gallery-card {
        padding: 12px;
        border-radius: 18px;
    }

    .theme-kanc.shop-inner-page .gallery-top-actions {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .theme-kanc.shop-inner-page .hot-badge {
        min-height: 30px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .theme-kanc.shop-inner-page .zoom-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .theme-kanc.shop-inner-page .product-gallery-shell,
    .theme-kanc.shop-inner-page .main-image-wrap,
    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 360px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 36px 22px 20px;
    }

    .theme-kanc.shop-inner-page .product-gallery img {
        width: auto;
        max-width: 88%;
        height: auto;
        max-height: 300px;
        transform: none;
    }

    .theme-kanc.shop-inner-page .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .theme-kanc.shop-inner-page .gallery-arrow.prev {
        left: 6px;
    }

    .theme-kanc.shop-inner-page .gallery-arrow.next {
        right: 6px;
    }

    .theme-kanc.shop-inner-page .product-info h1 {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.12;
    }

    .theme-kanc.shop-inner-page .product-meta-row {
        gap: 8px;
    }

    .theme-kanc.shop-inner-page .product-quick-nav {
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .purchase-card {
        border-radius: 18px;
    }

    .theme-kanc.shop-inner-page .price-stock .product-price-row strong {
        font-size: 34px;
        white-space: normal;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .purchase-actions {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-buy-panel .link-button {
        justify-content: center;
    }

    .theme-kanc.shop-inner-page .product-trust-strip {
        border-radius: 18px;
    }

    .theme-kanc.shop-inner-page .product-lower-grid {
        gap: 18px;
    }

    .theme-kanc.shop-inner-page .product-tabs {
        gap: 20px;
        padding-inline: 16px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .product-comments-head {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .product-comments-score {
        width: 100%;
    }

    .theme-kanc.shop-inner-page .related-sidebar {
        position: static;
    }

    .theme-kanc.shop-inner-page .related-mini-card {
        grid-template-columns: 86px minmax(0, 1fr);
        min-height: 112px;
    }

    .theme-kanc.shop-inner-page .related-mini-body {
        padding-right: 48px;
    }

    .theme-kanc.shop-inner-page .related-mini-body strong {
        font-size: 18px;
    }
}

/* Product reviews redesign from the provided mockup. */
.theme-kanc.shop-inner-page .comments-section {
    margin-top: 0;
    padding: 24px 28px 28px;
    border-top: 1px solid var(--product-line);
    background: #fff;
}

.theme-kanc.shop-inner-page .comments-head {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}

.theme-kanc.shop-inner-page .rating-card,
.theme-kanc.shop-inner-page .review-form-card,
.theme-kanc.shop-inner-page .review-card {
    border: 1px solid var(--product-line);
    border-radius: 16px;
    background: #fff;
}

.theme-kanc.shop-inner-page .rating-card {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 22px;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.theme-kanc.shop-inner-page .rating-score {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.theme-kanc.shop-inner-page .rating-score strong {
    color: var(--product-ink);
    font-size: 46px;
    line-height: .9;
    font-weight: 900;
}

.theme-kanc.shop-inner-page .rating-score span,
.theme-kanc.shop-inner-page .rating-card p,
.theme-kanc.shop-inner-page .rating-card small {
    color: var(--product-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.theme-kanc.shop-inner-page .stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffb020;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .comment-stars {
    --comment-rating: 0%;
    position: relative;
    display: inline-block;
    width: max-content;
    color: #d9e1ef;
    letter-spacing: 2px;
}

.theme-kanc.shop-inner-page .comment-stars::before {
    content: "★★★★★";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--comment-rating);
    overflow: hidden;
    color: #ffb020;
}

.theme-kanc.shop-inner-page .review-form-card {
    padding: 20px;
}

.theme-kanc.shop-inner-page .review-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.theme-kanc.shop-inner-page .review-form-title h3 {
    margin: 0;
    color: var(--product-ink);
    font-size: 19px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .review-form-title span {
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 700;
}

.theme-kanc.shop-inner-page .review-form {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.theme-kanc.shop-inner-page .review-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.theme-kanc.shop-inner-page .review-field,
.theme-kanc.shop-inner-page .review-textarea {
    width: 100%;
    border: 1px solid #dbe4f3;
    border-radius: 13px;
    outline: none;
    background: #fff;
    color: var(--product-ink);
    font-weight: 650;
}

.theme-kanc.shop-inner-page .review-field {
    height: 50px;
    padding: 0 16px;
}

.theme-kanc.shop-inner-page .review-textarea {
    min-height: 104px;
    padding: 15px 16px;
    resize: vertical;
}

.theme-kanc.shop-inner-page .review-field:focus,
.theme-kanc.shop-inner-page .review-textarea:focus {
    border-color: rgba(24, 91, 216, .55);
    box-shadow: 0 0 0 4px rgba(24, 91, 216, .08);
}

.theme-kanc.shop-inner-page .review-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.theme-kanc.shop-inner-page .attach-btn {
    min-height: 44px;
    padding: 0 14px;
    border: 1px dashed #b9c8e7;
    border-radius: 12px;
    background: #f8fbff;
    color: #34517f;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .review-submit {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--product-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 850;
    box-shadow: 0 12px 24px rgba(24, 91, 216, .18);
}

.theme-kanc.shop-inner-page .comment-form-message {
    display: block;
    margin-top: 8px;
    color: var(--product-blue);
    font-size: 12px;
    font-weight: 750;
}

.theme-kanc.shop-inner-page .comment-form-message.error {
    color: #ef4444;
}

.theme-kanc.shop-inner-page .comments-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.theme-kanc.shop-inner-page .comments-title {
    margin: 0;
    color: var(--product-ink);
    font-size: 20px;
    font-weight: 850;
}

.theme-kanc.shop-inner-page .comment-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.theme-kanc.shop-inner-page .comment-filter {
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid #dce5f5;
    border-radius: 999px;
    background: #fff;
    color: #3b4c75;
    font-size: 13px;
    font-weight: 800;
}

.theme-kanc.shop-inner-page .comment-filter.active {
    border-color: rgba(24, 91, 216, .35);
    background: var(--product-soft-blue);
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .reviews-list {
    display: grid;
    gap: 14px;
}

.theme-kanc.shop-inner-page .review-card {
    padding: 18px;
}

.theme-kanc.shop-inner-page .review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 13px;
}

.theme-kanc.shop-inner-page .review-user {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.theme-kanc.shop-inner-page .avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--product-soft-blue);
    color: var(--product-blue);
    font-weight: 900;
}

.theme-kanc.shop-inner-page .review-user b {
    display: block;
    margin-bottom: 4px;
    color: var(--product-ink);
    font-size: 15px;
}

.theme-kanc.shop-inner-page .review-user span,
.theme-kanc.shop-inner-page .review-date {
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 700;
}

.theme-kanc.shop-inner-page .review-body {
    margin: 0;
    color: #243554;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.theme-kanc.shop-inner-page .manager-reply {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #e2ebfa;
    border-radius: 14px;
    background: #f8fbff;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    color: #2b3d60;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.theme-kanc.shop-inner-page .manager-reply svg {
    width: 32px;
    height: 32px;
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .empty-comments {
    padding: 22px;
    border: 1px dashed #c8d5ed;
    border-radius: 16px;
    background: #fbfdff;
}

.theme-kanc.shop-inner-page .empty-comments div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.theme-kanc.shop-inner-page .empty-comments svg {
    width: 40px;
    height: 40px;
    color: var(--product-blue);
}

.theme-kanc.shop-inner-page .empty-comments b {
    display: block;
    margin-bottom: 4px;
}

.theme-kanc.shop-inner-page .empty-comments small {
    color: var(--product-muted);
    font-size: 13px;
    font-weight: 650;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .top-actions {
        grid-template-columns: auto repeat(3, 48px);
        justify-content: start;
    }

    .theme-kanc.shop-inner-page .theme-link[title="Избранное"],
    .theme-kanc.shop-inner-page .theme-link[title="Сравнение"] {
        display: grid;
    }

    .theme-kanc.shop-inner-page .comments-section {
        padding: 20px 16px;
    }

    .theme-kanc.shop-inner-page .comments-head,
    .theme-kanc.shop-inner-page .review-row {
        grid-template-columns: 1fr;
    }

    .theme-kanc.shop-inner-page .review-form-title,
    .theme-kanc.shop-inner-page .comments-toolbar,
    .theme-kanc.shop-inner-page .review-form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .theme-kanc.shop-inner-page .review-submit,
    .theme-kanc.shop-inner-page .attach-btn {
        width: 100%;
    }

    .theme-kanc.shop-inner-page .review-top {
        flex-direction: column;
    }
}

/* Restore calmer product breadcrumbs: no pills, no repeated product title. */
.theme-kanc.shop-inner-page .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
    color: #7a87a3;
    font-size: 14px;
    font-weight: 650;
}

.theme-kanc.shop-inner-page .breadcrumbs a,
.theme-kanc.shop-inner-page .breadcrumbs a:last-child {
    min-height: 0;
    display: inline;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2c5aae;
    font-weight: 650;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.theme-kanc.shop-inner-page .breadcrumbs a:hover {
    color: var(--product-blue, #185bd8);
}

.theme-kanc.shop-inner-page .breadcrumbs span {
    color: #a8b2c7;
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

    .theme-kanc.shop-inner-page .breadcrumbs a,
    .theme-kanc.shop-inner-page .breadcrumbs a:last-child {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Approved product polish: adaptive gallery and tighter product content. Header/logo/footer untouched. */
.theme-kanc.shop-inner-page .product-hero {
    grid-template-columns: minmax(480px, 650px) minmax(430px, 1fr);
    gap: 32px;
}

.theme-kanc.shop-inner-page .gallery-card {
    min-height: auto;
    gap: 16px;
    padding: 24px;
}

.theme-kanc.shop-inner-page .product-gallery-shell,
.theme-kanc.shop-inner-page .main-image-wrap {
    min-height: clamp(430px, 42vw, 560px);
}

.theme-kanc.shop-inner-page .product-gallery {
    min-height: inherit;
    padding: 42px 34px 28px;
    background:
        radial-gradient(circle at center, rgba(24, 91, 216, .065), transparent 58%),
        linear-gradient(180deg, #fff, #fbfcff);
}

.theme-kanc.shop-inner-page .product-gallery img {
    width: min(88%, 560px);
    height: min(88%, 500px);
    max-width: min(90%, 560px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(12, 19, 39, .11));
    transform: none !important;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.is-single-image .gallery-arrow,
.theme-kanc.shop-inner-page .product-gallery-wrap.is-single-image .gallery-thumbs,
.theme-kanc.shop-inner-page .product-gallery-wrap:not(.has-gallery-thumbs) .gallery-arrow,
.theme-kanc.shop-inner-page .product-gallery-wrap:not(.has-gallery-thumbs) .gallery-thumbs {
    display: none !important;
}

.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-arrow {
    display: grid;
}

.theme-kanc.shop-inner-page .gallery-thumbs,
.theme-kanc.shop-inner-page .product-gallery-wrap.has-gallery-thumbs .gallery-thumbs {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 4px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
}

.theme-kanc.shop-inner-page .gallery-thumbs button {
    position: relative;
    flex: 0 0 94px;
    width: 94px;
    height: 84px;
    overflow: hidden;
    scroll-snap-align: start;
}

.theme-kanc.shop-inner-page .gallery-thumbs button img {
    max-width: 88%;
    max-height: 88%;
}

.theme-kanc.shop-inner-page .gallery-thumbs button.has-more::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 22, 56, .5);
}

.theme-kanc.shop-inner-page .gallery-thumb-more {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.theme-kanc.shop-inner-page .zoom-btn {
    transition: transform .18s ease, box-shadow .18s ease;
}

.theme-kanc.shop-inner-page .zoom-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(16, 35, 78, .12);
}

.theme-kanc.shop-inner-page .product-info h1 {
    max-width: 740px;
    font-size: clamp(29px, 2.65vw, 36px);
    line-height: 1.16;
}

.theme-kanc.shop-inner-page .product-quick-nav {
    gap: 20px;
    margin-top: 18px;
}

.theme-kanc.shop-inner-page .product-buy-panel {
    margin-top: 18px;
}

.theme-kanc.shop-inner-page .price-stock {
    grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
    gap: 18px;
    padding-top: 24px;
}

.theme-kanc.shop-inner-page .price-stock .product-price-row strong {
    font-size: clamp(34px, 3.2vw, 42px);
}

.theme-kanc.shop-inner-page .price-stock .stock {
    max-width: 220px;
    font-size: 14px;
    line-height: 1.22;
    overflow-wrap: anywhere;
    white-space: normal;
}

.theme-kanc.shop-inner-page .product-commerce-facts {
    padding: 18px 0;
}

.theme-kanc.shop-inner-page .product-commerce-facts > .fact {
    min-height: 52px;
}

.theme-kanc.shop-inner-page .product-buy-panel .buy-row {
    padding-top: 20px;
}

.theme-kanc.shop-inner-page .product-trust-strip {
    margin: 22px 0 24px;
}

.theme-kanc.shop-inner-page .product-trust-strip article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    min-height: 96px;
    padding: 20px 28px;
}

.theme-kanc.shop-inner-page .product-trust-strip svg {
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 16px;
}

.theme-kanc.shop-inner-page .product-path-note {
    display: none;
}

.theme-kanc.shop-inner-page .product-lower-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
}

.theme-kanc.shop-inner-page .product-tabs {
    min-height: 58px;
    gap: 28px;
}

.theme-kanc.shop-inner-page .product-tabs a,
.theme-kanc.shop-inner-page .product-tabs a.active {
    min-height: 58px;
    font-size: 14px;
    font-weight: 720;
}

.theme-kanc.shop-inner-page .comments-section {
    padding: 22px 24px 24px;
}

.theme-kanc.shop-inner-page .comments-head {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.theme-kanc.shop-inner-page .rating-card,
.theme-kanc.shop-inner-page .review-form-card {
    border-radius: 14px;
}

.theme-kanc.shop-inner-page .rating-card {
    padding: 18px;
}

.theme-kanc.shop-inner-page .rating-score strong {
    font-size: 38px;
}

.theme-kanc.shop-inner-page .review-form-card {
    padding: 18px;
}

.theme-kanc.shop-inner-page .review-form-title h3 {
    font-size: 18px;
}

.theme-kanc.shop-inner-page .review-field {
    height: 46px;
}

.theme-kanc.shop-inner-page .review-textarea {
    min-height: 88px;
}

.theme-kanc.shop-inner-page .comments-title {
    font-size: 18px;
}

.theme-kanc.shop-inner-page .related-sidebar {
    top: 16px;
}

.theme-kanc.shop-inner-page .related-mini-card {
    min-height: 118px;
}

@media (max-width: 1200px) {
    .theme-kanc.shop-inner-page .product-hero,
    .theme-kanc.shop-inner-page .product-lower-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .theme-kanc.shop-inner-page .product-hero {
        gap: 18px;
    }

    .theme-kanc.shop-inner-page .gallery-card {
        padding: 12px;
    }

    .theme-kanc.shop-inner-page .product-gallery-shell,
    .theme-kanc.shop-inner-page .main-image-wrap,
    .theme-kanc.shop-inner-page .product-gallery {
        min-height: 340px;
    }

    .theme-kanc.shop-inner-page .product-gallery {
        padding: 38px 18px 18px;
    }

    .theme-kanc.shop-inner-page .product-gallery img {
        width: 88%;
        height: 270px;
        max-width: 88%;
        max-height: 270px;
    }

    .theme-kanc.shop-inner-page .gallery-thumbs button {
        flex-basis: 74px;
        width: 74px;
        height: 68px;
        border-radius: 11px;
    }

    .theme-kanc.shop-inner-page .gallery-thumb-more {
        font-size: 11px;
    }

    .theme-kanc.shop-inner-page .price-stock {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 22px;
    }

    .theme-kanc.shop-inner-page .product-summary,
    .theme-kanc.shop-inner-page .product-buy-panel,
    .theme-kanc.shop-inner-page .purchase-main,
    .theme-kanc.shop-inner-page .price-stock {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .theme-kanc.shop-inner-page .price-stock .stock {
        display: block !important;
        width: min(260px, calc(100vw - 64px));
        min-width: 0;
        max-width: min(260px, calc(100vw - 64px));
        margin: 0;
        justify-self: start;
        white-space: normal !important;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .theme-kanc.shop-inner-page .product-trust-strip article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .theme-kanc.shop-inner-page .product-trust-strip svg {
        width: 44px;
        height: 44px;
    }

    .theme-kanc.shop-inner-page .comments-head,
    .theme-kanc.shop-inner-page .review-row {
        grid-template-columns: 1fr;
    }
}
