

/* Start:/local/templates/ranto/assets/ranto.css?178684977138953*/
:root {
    --ranto-accent: #315ef5;
    --ranto-accent-hover: #2448d8;
    --ranto-accent-soft: #e9eeff;
    --ranto-accent-2: #b7f34a;
    --ranto-surface: #fff;
    --ranto-surface-soft: #f5f7fa;
    --ranto-surface-raised: #fafbfc;
    --ranto-ink: #121826;
    --ranto-muted: #5f6b7a;
    --ranto-muted-2: #667085;
    --ranto-border: #dce1e8;
    --ranto-success: #147a50;
    --ranto-warning: #9a6200;
    --ranto-danger: #c93c3c;
    --ranto-focus: #315ef5;
    --ranto-shell: 1320px;
    --ranto-shadow-card: 0 1px 2px rgb(18 24 38 / 6%);
    --ranto-shadow-overlay: 0 20px 50px rgb(18 24 38 / 16%);
    --ranto-radius-xs: 10px;
    --ranto-radius-sm: 12px;
    --ranto-radius-md: 16px;
    --ranto-radius-lg: 24px;
    --ranto-header-offset: 154px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body.ranto-page,
.ranto-preview {
    margin: 0;
    color: var(--ranto-ink);
    background: var(--ranto-surface);
    font-family: Inter, Onest, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.ranto-lock {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--ranto-focus);
    outline-offset: 2px;
}

.ranto-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ranto-skip {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border-radius: var(--ranto-radius-xs);
    color: #fff;
    background: var(--ranto-ink);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.ranto-skip:focus {
    transform: translateY(0);
}

.ranto-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ranto-sprite symbol > * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ranto-shell {
    width: min(calc(100% - 64px), var(--ranto-shell));
    margin-inline: auto;
}

.ranto-header {
    position: sticky;
    z-index: 600;
    top: 0;
    border-bottom: 1px solid var(--ranto-border);
    background: color-mix(in srgb, var(--ranto-surface) 96%, transparent);
    box-shadow: 0 1px 0 rgb(18 24 38 / 2%);
    backdrop-filter: blur(18px);
}

.ranto-topbar {
    min-height: 36px;
    color: var(--ranto-muted);
    background: var(--ranto-surface-soft);
    font-size: 13px;
}

.ranto-topbar__inner,
.ranto-topbar__contacts {
    display: flex;
    align-items: center;
}

.ranto-topbar__inner {
    min-height: 36px;
    justify-content: space-between;
    gap: 24px;
}

.ranto-topbar__contacts {
    gap: 20px;
}

.ranto-topbar a:hover {
    color: var(--ranto-ink);
}

.ranto-header__main {
    display: grid;
    min-height: 76px;
    grid-template-columns: auto auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 16px;
    transition: min-height 180ms ease;
}

.ranto-header.is-condensed .ranto-header__main {
    min-height: 64px;
}

.ranto-header__burger {
    display: none !important;
}

.ranto-logo {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 10px;
    border-radius: var(--ranto-radius-xs);
    font-weight: 760;
    letter-spacing: -.03em;
}

.ranto-logo__mark {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 13px 13px 6px 13px;
    color: #fff;
    background: var(--ranto-accent);
    box-shadow: inset -8px -8px 18px rgb(0 0 0 / 10%);
    place-items: center;
    font-size: 20px;
    transform: rotate(-5deg);
}

.ranto-logo__word {
    font-size: 24px;
}

.ranto-logo__image {
    display: block;
    width: auto;
    max-width: 190px;
    height: 44px;
    object-fit: contain;
}

.ranto-logo__image--mobile {
    display: none;
}

.ranto-catalog-trigger,
.ranto-primary-button,
.ranto-secondary-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--ranto-radius-sm);
    cursor: pointer;
    font-weight: 680;
    transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}

.ranto-catalog-trigger,
.ranto-primary-button {
    padding: 0 20px;
    color: #fff;
    background: var(--ranto-accent);
}

.ranto-catalog-trigger:hover,
.ranto-primary-button:hover {
    background: var(--ranto-accent-hover);
}

.ranto-catalog-trigger:active,
.ranto-primary-button:active,
.ranto-secondary-button:active {
    transform: translateY(1px);
}

.ranto-catalog-trigger svg,
.ranto-actions svg,
.ranto-icon-button svg,
.ranto-search svg,
.ranto-drawer__search svg,
.ranto-mobile-bar svg,
.ranto-menu svg,
.ranto-mega svg,
.ranto-mobile-menu svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ranto-search {
    display: grid;
    height: 48px;
    grid-template-columns: 1fr 48px;
    overflow: hidden;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-sm);
    background: var(--ranto-surface-raised);
    transition: border 120ms ease, box-shadow 120ms ease;
}

.ranto-search:focus-within {
    border-color: var(--ranto-accent);
    box-shadow: 0 0 0 4px var(--ranto-accent-soft);
}

.ranto-drawer__search:focus-within {
    border-color: var(--ranto-accent);
    box-shadow: 0 0 0 4px var(--ranto-accent-soft);
}

.ranto-search input,
.ranto-drawer__search input {
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
}

.ranto-search input::placeholder,
.ranto-drawer__search input::placeholder {
    color: var(--ranto-muted-2);
}

.ranto-search button,
.ranto-drawer__search button {
    display: grid;
    border: 0;
    cursor: pointer;
    background: transparent;
    place-items: center;
}

.ranto-search button:hover,
.ranto-drawer__search button:hover {
    color: var(--ranto-accent);
}

.ranto-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ranto-actions a {
    position: relative;
    display: flex;
    min-width: 64px;
    min-height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: var(--ranto-radius-xs);
    color: var(--ranto-muted);
    font-size: 12px;
    transition: color 120ms ease, background 120ms ease;
}

.ranto-actions a:hover {
    color: var(--ranto-ink);
    background: var(--ranto-surface-soft);
}

.ranto-actions b {
    position: absolute;
    top: 3px;
    right: 7px;
    display: grid;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid var(--ranto-surface);
    border-radius: 99px;
    color: #fff;
    background: var(--ranto-danger);
    place-items: center;
    font-size: 10px;
}

.ranto-header__nav {
    border-top: 1px solid var(--ranto-border);
}

.ranto-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ranto-menu--desktop {
    display: flex;
    min-height: 41px;
    align-items: center;
    gap: 28px;
}

.ranto-menu__item {
    position: relative;
}

.ranto-menu__item > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ranto-menu--desktop > .ranto-menu__item > a {
    min-height: 41px;
    color: var(--ranto-muted);
    font-size: 14px;
    font-weight: 580;
}

.ranto-menu--desktop > .ranto-menu__item > a:hover,
.ranto-menu--desktop > .ranto-menu__item.is-active > a {
    color: var(--ranto-accent);
}

.ranto-menu__item > a > svg {
    width: 15px;
    height: 15px;
}

.ranto-menu__children {
    position: absolute;
    z-index: 20;
    top: calc(100% - 2px);
    left: -16px;
    display: none;
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-md);
    background: var(--ranto-surface);
    box-shadow: var(--ranto-shadow-overlay);
    list-style: none;
}

.ranto-menu__item:hover > .ranto-menu__children,
.ranto-menu__item:focus-within > .ranto-menu__children {
    display: block;
}

.ranto-menu__children .ranto-menu__item > a {
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 9px;
    justify-content: space-between;
}

.ranto-menu__children .ranto-menu__item > a:hover {
    background: var(--ranto-surface-soft);
}

.ranto-menu__children .ranto-menu__children {
    top: -10px;
    left: calc(100% - 2px);
}

.ranto-mega {
    position: absolute;
    z-index: 590;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 12px 0 32px;
    opacity: 0;
    background: linear-gradient(rgb(18 24 38 / 14%), transparent 60%);
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ranto-mega.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ranto-mega__surface {
    max-height: calc(100vh - var(--ranto-header-offset));
    padding: 24px;
    overflow: auto;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-lg);
    background: var(--ranto-surface);
    box-shadow: var(--ranto-shadow-overlay);
}

.ranto-mega__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--ranto-border);
}

.ranto-mega__head strong {
    font-size: 24px;
}

.ranto-mega__head a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ranto-accent);
    font-weight: 650;
}

.ranto-mega .ranto-menu--desktop {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 24px 32px;
}

.ranto-mega .ranto-menu--desktop > .ranto-menu__item > a {
    min-height: 48px;
    color: var(--ranto-ink);
    font-size: 16px;
    font-weight: 700;
}

.ranto-mega .ranto-menu__item > a img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
    object-fit: contain;
}

.ranto-mega .ranto-menu--desktop > .ranto-menu__item > .ranto-menu__children {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 46px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ranto-mega .ranto-menu__children .ranto-menu__item > a {
    min-height: 34px;
    padding: 4px 0;
    color: var(--ranto-muted);
    justify-content: flex-start;
    font-size: 14px;
}

.ranto-mega .ranto-menu__children .ranto-menu__item > a:hover {
    color: var(--ranto-accent);
    background: transparent;
}

.ranto-mega .ranto-menu__children .ranto-menu__children {
    position: static;
    display: block;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
}

.ranto-icon-button {
    display: inline-grid;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: var(--ranto-radius-xs);
    cursor: pointer;
    background: transparent;
    place-items: center;
}

.ranto-icon-button:hover {
    background: var(--ranto-surface-soft);
}

.ranto-drawer,
.ranto-mobile-bar {
    display: none;
}

.ranto-main {
    min-height: 55vh;
}

.ranto-breadcrumbs {
    display: flex;
    padding: 22px 0 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ranto-muted-2);
    list-style: none;
    font-size: 13px;
}

.ranto-breadcrumbs li:not(:last-child)::after {
    margin-left: 8px;
    content: "/";
}

.ranto-hero {
    display: grid;
    min-height: 480px;
    padding: 54px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 75% 38%, rgb(183 243 74 / 85%) 0 12%, transparent 13%),
        radial-gradient(circle at 88% 78%, rgb(255 255 255 / 17%) 0 17%, transparent 18%),
        linear-gradient(125deg, #142147 0%, #2546c6 54%, #315ef5 100%);
    grid-template-columns: minmax(0, 650px) 1fr;
    align-items: center;
}

.ranto-hero__eyebrow {
    display: inline-flex;
    width: max-content;
    padding: 8px 12px;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 999px;
    background: rgb(255 255 255 / 10%);
    font-size: 13px;
    font-weight: 650;
}

.ranto-hero h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.ranto-hero p {
    max-width: 600px;
    margin: 0 0 28px;
    color: rgb(255 255 255 / 76%);
    font-size: 18px;
}

.ranto-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ranto-hero .ranto-primary-button {
    color: var(--ranto-ink);
    background: var(--ranto-accent-2);
}

.ranto-secondary-button {
    padding: 0 20px;
    border: 1px solid var(--ranto-border);
    background: var(--ranto-surface);
}

.ranto-hero .ranto-secondary-button {
    border-color: rgb(255 255 255 / 30%);
    color: #fff;
    background: rgb(255 255 255 / 8%);
}

.ranto-section {
    padding: 64px 0;
}

.ranto-section--soft {
    background: var(--ranto-surface-soft);
}

.ranto-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.ranto-section__head h1,
.ranto-section__head h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.ranto-section__head p {
    max-width: 650px;
    margin: 8px 0 0;
    color: var(--ranto-muted);
}

.ranto-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.ranto-category-card {
    display: flex;
    min-height: 104px;
    padding: 16px;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-md);
    background: var(--ranto-surface);
    box-shadow: var(--ranto-shadow-card);
    font-weight: 650;
    transition: border 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.ranto-category-card:hover {
    border-color: var(--ranto-accent);
    box-shadow: 0 8px 22px rgb(18 24 38 / 8%);
    transform: translateY(-2px);
}

.ranto-category-card__icon,
.ranto-mobile-menu__fallback,
.ranto-demo-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    color: var(--ranto-accent-hover);
    background: var(--ranto-accent-soft);
    place-items: center;
    font-weight: 760;
}

.ranto-catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.ranto-filter {
    position: sticky;
    top: 174px;
    padding: 22px;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-lg);
    background: var(--ranto-surface);
}

.ranto-filter-drawer__backdrop,
.ranto-filter-drawer__head {
    display: none;
}

.ranto-filter__result {
    padding: 12px 0 0;
    color: var(--ranto-muted);
    font-size: 13px;
}

.ranto-filter__result a {
    margin-left: 6px;
    color: var(--ranto-accent);
    font-weight: 700;
}

.ranto-filter__head,
.ranto-toolbar,
.ranto-filter__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ranto-filter__head {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ranto-border);
}

.ranto-filter__head h2 {
    margin: 0;
    font-size: 20px;
}

.ranto-filter__head button,
.ranto-filter__actions button,
.ranto-link-button {
    padding: 0;
    border: 0;
    color: var(--ranto-accent);
    cursor: pointer;
    background: transparent;
    font-weight: 620;
}

.ranto-filter details {
    border-bottom: 1px solid var(--ranto-border);
}

.ranto-filter summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 650;
    list-style: none;
}

.ranto-filter summary::-webkit-details-marker {
    display: none;
}

.ranto-filter summary::after {
    color: var(--ranto-muted-2);
    content: "+";
    font-size: 20px;
}

.ranto-filter details[open] summary::after {
    content: "−";
}

.ranto-filter__body {
    display: grid;
    padding: 0 0 18px;
    gap: 10px;
}

.ranto-filter label {
    display: grid;
    min-height: 32px;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: 8px;
    color: var(--ranto-muted);
}

.ranto-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ranto-accent);
}

.ranto-filter label small {
    color: var(--ranto-muted-2);
}

.ranto-filter__range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ranto-filter__range input,
.ranto-filter__search {
    width: 100%;
    height: 42px;
    padding: 0 11px;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-xs);
    outline: 0;
}

.ranto-filter__range input:focus-visible,
.ranto-filter__search:focus-visible {
    border-color: var(--ranto-accent);
    outline: 3px solid var(--ranto-focus);
    outline-offset: 2px;
}

.ranto-filter__actions {
    padding-top: 18px;
}

.ranto-toolbar {
    min-height: 48px;
    margin-bottom: 18px;
}

.ranto-toolbar__chips,
.ranto-toolbar__controls,
.ranto-selected-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ranto-chip {
    display: inline-flex;
    min-height: 36px;
    padding: 0 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--ranto-border);
    border-radius: 999px;
    color: var(--ranto-muted);
    background: var(--ranto-surface);
    font-size: 13px;
    font-weight: 600;
}

.ranto-chip.is-selected {
    border-color: var(--ranto-accent);
    color: var(--ranto-accent-hover);
    background: var(--ranto-accent-soft);
}

.ranto-toolbar select {
    height: 42px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-xs);
    background: var(--ranto-surface);
}

.ranto-mobile-filter-trigger {
    display: none;
}

.ranto-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ranto-product-grid--list {
    grid-template-columns: 1fr;
}

.ranto-product-grid--list .ranto-product-card {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 18px;
}

.ranto-product-grid--list .ranto-product-card__media {
    height: 100%;
    min-height: 210px;
    aspect-ratio: auto;
}

.ranto-product-grid--list .ranto-product-card__body {
    padding: 10px 8px 8px 0;
}

.ranto-product-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 10px;
}

.ranto-product-grid--compact .ranto-product-card {
    padding: 9px;
    border-radius: 14px;
}

.ranto-product-grid--compact .ranto-product-card__body {
    padding-top: 10px;
}

.ranto-product-grid--compact .ranto-product-card__title {
    min-height: 42px;
    margin-bottom: 8px;
    font-size: 14px;
}

.ranto-product-grid--compact .ranto-product-card__price strong {
    font-size: 17px;
}

.ranto-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 12px;
    flex-direction: column;
    border: 1px solid var(--ranto-border);
    border-radius: var(--ranto-radius-md);
    background: var(--ranto-surface);
    box-shadow: var(--ranto-shadow-card);
    transition: border 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.ranto-product-card:hover {
    border-color: #c8ced8;
    box-shadow: 0 12px 30px rgb(18 24 38 / 10%);
    transform: translateY(-2px);
}

.ranto-product-card__media {
    position: relative;
    display: grid;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--product-color, #e9eeff), #fff);
    place-items: center;
}

.ranto-product-card__media::before {
    width: 55%;
    border: 10px solid rgb(255 255 255 / 70%);
    border-radius: 36% 44% 38% 42%;
    box-shadow: 0 22px 30px rgb(49 94 245 / 14%);
    content: "";
    aspect-ratio: .82;
    transform: rotate(8deg);
}

.ranto-product-card__badges {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ranto-badge {
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--ranto-ink);
    background: var(--ranto-accent-2);
    font-size: 11px;
    font-weight: 750;
}

.ranto-badge--sale {
    color: #fff;
    background: var(--ranto-danger);
}

.ranto-product-card__favorite {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: grid;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgb(255 255 255 / 90%);
    place-items: center;
}

.ranto-product-card__favorite svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.ranto-product-card__body {
    display: flex;
    padding: 14px 4px 4px;
    flex: 1;
    flex-direction: column;
}

.ranto-product-card__meta {
    display: flex;
    min-height: 22px;
    align-items: center;
    gap: 8px;
    color: var(--ranto-muted-2);
    font-size: 12px;
}

.ranto-product-card__rating {
    color: var(--ranto-warning);
    font-weight: 700;
}

.ranto-product-card__title {
    display: -webkit-box;
    min-height: 48px;
    margin: 7px 0 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 650;
}

.ranto-product-card__delivery {
    margin-bottom: 10px;
    color: var(--ranto-success);
    font-size: 13px;
    font-weight: 620;
}

.ranto-product-card__price {
    display: flex;
    min-height: 28px;
    margin-top: auto;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.ranto-product-card__price strong {
    font-size: 20px;
    letter-spacing: -.02em;
}

.ranto-product-card__price del {
    color: var(--ranto-muted-2);
    font-size: 13px;
}

.ranto-product-card__buy {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
}

.ranto-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ranto-trust-card {
    padding: 24px;
    border-radius: var(--ranto-radius-md);
    background: var(--ranto-surface-soft);
}

.ranto-trust-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.ranto-trust-card span {
    color: var(--ranto-muted);
    font-size: 14px;
}

.ranto-footer {
    padding: 60px 0 20px;
    color: #fff;
    background: var(--ranto-ink);
}

.ranto-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 48px;
}

.ranto-footer .ranto-logo__mark {
    color: var(--ranto-ink);
    background: var(--ranto-accent-2);
}

.ranto-footer__brand p {
    max-width: 340px;
    color: rgb(255 255 255 / 62%);
}

.ranto-footer__brand > a:not(.ranto-logo) {
    display: block;
    width: max-content;
    margin-top: 7px;
}

.ranto-footer section h2 {
    margin: 0 0 16px;
    color: rgb(255 255 255 / 52%);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ranto-footer .ranto-mobile-menu__trail,
.ranto-footer .ranto-mobile-menu__fallback,
.ranto-footer .ranto-mobile-menu__item > button,
.ranto-footer .ranto-mobile-menu__level .ranto-mobile-menu__level {
    display: none !important;
}

.ranto-footer .ranto-mobile-menu__level,
.ranto-footer__links {
    display: grid;
    padding: 0;
    margin: 0;
    gap: 10px;
    list-style: none;
}

.ranto-footer .ranto-mobile-menu__item > a,
.ranto-footer__links a,
.ranto-footer__links button {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    color: rgb(255 255 255 / 72%);
    cursor: pointer;
    background: transparent;
    font-size: 14px;
}

.ranto-footer .ranto-mobile-menu__item > a:hover,
.ranto-footer__links a:hover,
.ranto-footer__links button:hover {
    color: #fff;
}

.ranto-footer a:focus-visible,
.ranto-footer button:focus-visible {
    outline-color: var(--ranto-accent-2);
}

.ranto-footer__bottom {
    display: flex;
    padding-top: 22px;
    margin-top: 48px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgb(255 255 255 / 46%);
    font-size: 12px;
}

@media (max-width: 1279px) {
    .ranto-shell {
        width: min(calc(100% - 48px), var(--ranto-shell));
    }

    .ranto-header__main {
        grid-template-columns: auto auto minmax(230px, 1fr) auto;
    }

    .ranto-actions a {
        min-width: 52px;
    }

    .ranto-actions a > span {
        display: none;
    }

    .ranto-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ranto-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    :root {
        --ranto-header-offset: 64px;
    }

    .ranto-shell {
        width: min(calc(100% - 32px), var(--ranto-shell));
    }

    .ranto-topbar,
    .ranto-header__nav,
    .ranto-catalog-trigger,
    .ranto-actions,
    .ranto-header__main > .ranto-search,
    .ranto-mega {
        display: none !important;
    }

    .ranto-header__main {
        display: grid;
        min-height: 64px;
        grid-template-columns: 48px 1fr 48px;
        gap: 8px;
    }

    .ranto-header__burger {
        display: inline-grid !important;
    }

    .ranto-header__main > .ranto-logo {
        justify-self: center;
    }

    .ranto-header__main::after {
        display: block;
        width: 48px;
        content: "";
    }

    .ranto-logo__word {
        font-size: 21px;
    }

    .ranto-logo__mark {
        width: 34px;
        height: 34px;
        border-radius: 11px 11px 5px 11px;
        font-size: 18px;
    }

    .ranto-logo__image--desktop {
        display: none;
    }

    .ranto-logo__image--mobile {
        display: block;
        max-width: 150px;
        height: 38px;
    }

    .ranto-drawer {
        position: fixed;
        z-index: 900;
        inset: 0;
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    .ranto-drawer.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .ranto-drawer__backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        border: 0;
        background: rgb(18 24 38 / 48%);
    }

    .ranto-drawer__panel {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(100%, 520px);
        overflow: hidden auto;
        background: var(--ranto-surface);
        box-shadow: var(--ranto-shadow-overlay);
        transform: translateX(-100%);
        transition: transform 220ms ease;
    }

    .ranto-drawer.is-open .ranto-drawer__panel {
        transform: translateX(0);
    }

    .ranto-drawer__head {
        position: sticky;
        z-index: 3;
        top: 0;
        display: flex;
        min-height: 68px;
        padding: 0 16px;
        border-bottom: 1px solid var(--ranto-border);
        align-items: center;
        justify-content: space-between;
        background: color-mix(in srgb, var(--ranto-surface) 96%, transparent);
        backdrop-filter: blur(16px);
    }

    .ranto-drawer__search {
        display: grid;
        height: 48px;
        margin: 16px;
        grid-template-columns: 1fr 48px;
        overflow: hidden;
        border: 1px solid var(--ranto-border);
        border-radius: var(--ranto-radius-sm);
        background: var(--ranto-surface-soft);
    }

    .ranto-mobile-menu {
        position: relative;
        padding: 0 16px 16px;
        overflow: hidden;
    }

    .ranto-mobile-menu__trail {
        display: flex;
        min-height: 48px;
        align-items: center;
        gap: 12px;
    }

    .ranto-mobile-menu__trail button {
        display: inline-flex;
        min-height: 40px;
        padding: 0 8px 0 0;
        border: 0;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        background: transparent;
    }

    .ranto-mobile-menu__trail button svg {
        width: 18px;
        transform: rotate(180deg);
    }

    .ranto-mobile-menu__trail strong {
        font-size: 18px;
    }

    .ranto-mobile-menu__level {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .ranto-mobile-menu__level .ranto-mobile-menu__level {
        position: absolute;
        z-index: 2;
        top: 48px;
        left: 100%;
        display: none;
        width: 100%;
        min-height: calc(100vh - 196px);
        padding: 0 16px 24px;
        background: var(--ranto-surface);
        transform: translateX(12%);
        transition: transform 180ms ease;
    }

    .ranto-mobile-menu__level.is-current {
        left: 0;
        display: block;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .ranto-mobile-menu__level.is-ancestor {
        left: 0;
        display: block;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(0);
    }

    .ranto-mobile-menu.has-active-level .ranto-mobile-menu__level:not(.is-current) {
        visibility: hidden;
        pointer-events: none;
    }

    .ranto-mobile-menu__item {
        position: static;
        display: grid;
        min-height: 60px;
        border-bottom: 1px solid var(--ranto-border);
        grid-template-columns: minmax(0, 1fr) 48px;
        align-items: center;
    }

    .ranto-mobile-menu__item > a {
        display: flex;
        min-width: 0;
        min-height: 59px;
        align-items: center;
        gap: 12px;
        font-weight: 620;
    }

    .ranto-mobile-menu__item > a > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ranto-mobile-menu__fallback {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 11px;
        font-size: 14px;
    }

    .ranto-mobile-menu__item > a > img {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 11px;
        object-fit: contain;
    }

    .ranto-mobile-menu__item > button {
        display: grid;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        border-radius: 10px;
        cursor: pointer;
        background: transparent;
        place-items: center;
    }

    .ranto-mobile-menu__item > button:hover {
        color: var(--ranto-accent);
        background: var(--ranto-accent-soft);
    }

    .ranto-drawer__secondary {
        padding: 16px 16px 96px;
        border-top: 8px solid var(--ranto-surface-soft);
    }

    .ranto-mobile-bar {
        position: fixed;
        z-index: 650;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        min-height: calc(66px + env(safe-area-inset-bottom));
        padding: 6px 8px env(safe-area-inset-bottom);
        border-top: 1px solid var(--ranto-border);
        grid-template-columns: repeat(5, minmax(0, 1fr));
        background: color-mix(in srgb, var(--ranto-surface) 96%, transparent);
        box-shadow: 0 -8px 24px rgb(18 24 38 / 7%);
        backdrop-filter: blur(18px);
    }

    .ranto-lock .ranto-mobile-bar {
        display: none;
    }

    .ranto-mobile-bar a {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        border-radius: 9px;
        color: var(--ranto-muted);
        font-size: 10px;
    }

    .ranto-mobile-bar a.is-active {
        color: var(--ranto-accent);
    }

    .ranto-mobile-bar svg {
        width: 21px;
        height: 21px;
    }

    .ranto-main {
        padding-bottom: 66px;
    }

    .ranto-hero {
        min-height: 430px;
        padding: 40px;
        grid-template-columns: 1fr;
    }

    .ranto-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ranto-catalog-layout {
        grid-template-columns: 1fr;
    }

    body.ranto-filter-lock {
        overflow: hidden;
    }

    .ranto-filter-drawer {
        position: fixed;
        z-index: 920;
        inset: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 0s linear 180ms;
    }

    .ranto-filter-drawer.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .ranto-filter-drawer__backdrop {
        position: absolute;
        display: block;
        inset: 0;
        width: 100%;
        border: 0;
        background: rgb(18 24 38 / 48%);
    }

    .ranto-filter-drawer__panel {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(100%, 440px);
        overflow: hidden auto;
        background: var(--ranto-surface);
        box-shadow: var(--ranto-shadow-overlay);
        transform: translateX(100%);
        transition: transform 180ms ease;
    }

    .ranto-filter-drawer.is-open .ranto-filter-drawer__panel {
        transform: translateX(0);
    }

    .ranto-filter-drawer__head {
        position: sticky;
        z-index: 2;
        top: 0;
        display: flex;
        min-height: 64px;
        padding: 0 16px;
        border-bottom: 1px solid var(--ranto-border);
        align-items: center;
        justify-content: space-between;
        background: var(--ranto-surface);
    }

    .ranto-filter-drawer__head strong {
        font-size: 20px;
    }

    .ranto-filter-drawer__head .ranto-icon-button {
        font-size: 28px;
    }

    .ranto-filter-drawer .ranto-filter {
        position: static;
        display: block;
        padding: 16px;
        border: 0;
        border-radius: 0;
    }

    .ranto-mobile-filter-trigger {
        display: inline-flex;
    }

    .ranto-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ranto-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranto-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .ranto-footer__grid section:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 767px) {
    .ranto-shell {
        width: min(calc(100% - 32px), var(--ranto-shell));
    }

    .ranto-hero {
        min-height: 450px;
        padding: 28px 22px;
        margin-top: 16px;
        border-radius: var(--ranto-radius-lg);
        align-items: end;
    }

    .ranto-hero h1 {
        margin: 16px 0 14px;
        font-size: clamp(34px, 11vw, 48px);
    }

    .ranto-hero p {
        font-size: 16px;
    }

    .ranto-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ranto-section {
        padding: 44px 0;
    }

    .ranto-section__head {
        display: block;
        margin-bottom: 22px;
    }

    .ranto-section__head h1,
    .ranto-section__head h2 {
        font-size: 29px;
    }

    .ranto-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranto-category-card {
        min-height: 92px;
        padding: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
        font-size: 13px;
    }

    .ranto-category-card__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 11px;
    }

    .ranto-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ranto-toolbar__chips {
        width: calc(100vw - 16px);
        padding-right: 16px;
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: none;
    }

    .ranto-toolbar__chips::-webkit-scrollbar {
        display: none;
    }

    .ranto-toolbar__controls {
        width: 100%;
    }

    .ranto-toolbar select,
    .ranto-mobile-filter-trigger {
        flex: 1;
    }

    .ranto-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ranto-product-card {
        padding: 8px;
        border-radius: 13px;
    }

    .ranto-product-card:hover {
        box-shadow: var(--ranto-shadow-card);
        transform: none;
    }

    .ranto-product-card__body {
        padding: 10px 2px 2px;
    }

    .ranto-product-card__meta {
        display: block;
        font-size: 10px;
    }

    .ranto-product-card__meta span + span::before {
        content: " · ";
    }

    .ranto-product-card__title {
        min-height: 40px;
        margin: 5px 0 8px;
        font-size: 13px;
        line-height: 1.45;
    }

    .ranto-product-card__delivery {
        font-size: 11px;
    }

    .ranto-product-card__price strong {
        font-size: 17px;
    }

    .ranto-product-card__buy {
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
    }

    .ranto-product-card__favorite {
        width: 36px;
        height: 36px;
    }

    .ranto-trust-grid {
        grid-template-columns: 1fr;
    }

    .ranto-footer {
        padding-top: 44px;
    }

    .ranto-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 20px;
    }

    .ranto-footer__brand {
        grid-column: 1 / -1;
    }

    .ranto-footer__grid section:last-child {
        grid-column: 1 / -1;
    }

    .ranto-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .ranto-product-grid--list .ranto-product-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 10px;
    }

    .ranto-product-grid--list .ranto-product-card__media {
        min-height: 154px;
    }

    .ranto-product-grid--list .ranto-product-card__body {
        padding: 2px 2px 2px 0;
    }

    .ranto-product-grid--list .ranto-product-card__meta {
        display: none;
    }

    .ranto-product-grid--list .ranto-product-card__buy {
        min-height: 38px;
        margin-top: 8px;
    }
}

@media (max-width: 359px) {
    .ranto-product-grid {
        grid-template-columns: 1fr;
    }
}

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

/* End */


/* Start:/local/templates/ranto/styles.css?1786849771169*/
.ranto-lead {
    font-size: 1.125rem;
    line-height: 1.65;
}

.ranto-note {
    padding: 1rem 1.25rem;
    border-left: 4px solid #5b5ce2;
    background: #f4f4ff;
}

/* End */


/* Start:/local/templates/ranto/template_styles.css?1786849771244*/
img {
    max-width: 100%;
    height: auto;
}

.ranto-content table {
    width: 100%;
    border-collapse: collapse;
}

.ranto-content th,
.ranto-content td {
    padding: .75rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

/* End */
/* /local/templates/ranto/assets/ranto.css?178684977138953 */
/* /local/templates/ranto/styles.css?1786849771169 */
/* /local/templates/ranto/template_styles.css?1786849771244 */
