@media (min-width: 769px) {
  .decoriko-mobile-ui {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --dm-accent: #ff6f1a;
    --dm-accent-dark: #e85f0d;
    --dm-text: #151515;
    --dm-muted: #777;
    --dm-line: #ececec;
    --dm-bg: #f7f7f7;
    --dm-card: #fff;
    --dm-radius: 10px;
  }

  html.decoriko-menu-open,
  body.decoriko-lock-scroll {
    overflow: hidden !important;
  }

  body.adaptive header .tpanel,
  body.adaptive header #header,
  body.adaptive .tline {
    display: none !important;
  }

  .decoriko-mobile-ui {
    display: block;
  }

  .decoriko-mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9020;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    height: 58px;
    padding: env(safe-area-inset-top) 10px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--dm-line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(12px);
    box-sizing: content-box;
  }

  .decoriko-mobile-logo {
    justify-self: center;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .decoriko-mobile-logo img {
    display: block;
    width: 156px;
    max-width: 45vw;
    height: auto;
  }

  .decoriko-mobile-logo-text {
    display: block;
    color: var(--dm-text);
    font-size: 28px;
    line-height: 34px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .decoriko-mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .decoriko-mobile-icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--dm-text);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-icon-button:active {
    background: #f1f1f1;
  }

  .decoriko-mobile-icon-button > span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--dm-text);
  }

  .decoriko-mobile-icon-button > span:nth-child(1) {
    transform: translateY(-7px);
  }
  .decoriko-mobile-icon-button > span:nth-child(3) {
    transform: translateY(7px);
  }

  .decoriko-mobile-icon-button svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .decoriko-mobile-badge {
    position: absolute;
    top: 6px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--dm-accent);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
  }

  .decoriko-mobile-search {
    position: fixed;
    top: calc(var(--dm-header-h) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    z-index: 9019;
    display: block !important;
    padding: 8px 12px 10px;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
  }

  html.decoriko-search-open .decoriko-mobile-search {
    display: flex;
  }

  .decoriko-mobile-search-inner {
    min-width: 0;
    flex: 1;
  }

  .decoriko-mobile-search .searchinhead {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    margin: 0 !important;
    border: 1px solid var(--dm-line) !important;
    border-radius: 10px !important;
    background: #f8f8f8 !important;
    box-shadow: none !important;
  }

  .decoriko-mobile-search .searchinhead form {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .decoriko-mobile-search .searchinhead .aroundtext {
    flex: 1 1 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .decoriko-mobile-search .searchinhead input.text {
    width: 100% !important;
    height: 42px !important;
    padding: 0 12px !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 16px !important;
    line-height: 42px !important;
    color: var(--dm-text) !important;
  }

  .decoriko-mobile-search .searchinhead label.zoom,
  .decoriko-mobile-search .searchinhead label.enter {
    display: none !important;
  }

  .decoriko-mobile-search-close {
    height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: #f1f1f1;
    color: var(--dm-text);
    font-size: 14px;
  }

  .decoriko-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 9040;
    display: none;
    background: rgba(0, 0, 0, 0.42);
  }

  html.decoriko-menu-open .decoriko-mobile-overlay {
    display: block;
  }

  .decoriko-mobile-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9050;
    background: #fff;
    color: var(--dm-text);
    transform: translateY(105%);
    transition: transform 0.22s ease;
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.2);
  }

  .decoriko-mobile-drawer {
    top: 0;
    bottom: auto;
    width: min(430px, 100vw);
    height: 100dvh;
    right: auto;
    transform: translateX(-105%);
    box-shadow: 18px 0 42px rgba(0, 0, 0, 0.2);
  }

  html.decoriko-menu-open .decoriko-mobile-drawer {
    transform: translateX(0);
  }

  .decoriko-mobile-drawer-head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    height: calc(60px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 8px 0;
    border-bottom: 1px solid rgba(255, 111, 26, 0.45);
    background: #fff;
    box-sizing: content-box;
  }

  .decoriko-mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    justify-self: start;
    border: 0;
    border-radius: 50%;
    background: #f4f4f4;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-close:active,
  .decoriko-mobile-drawer-cart:active {
    background: #eceef1;
  }

  .decoriko-mobile-close:before,
  .decoriko-mobile-close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    margin-left: -9px;
    border-radius: 2px;
    background: currentColor;
  }

  .decoriko-mobile-close:before {
    transform: rotate(45deg);
  }

  .decoriko-mobile-close:after {
    transform: rotate(-45deg);
  }

  .decoriko-mobile-close {
    color: var(--dm-text);
  }

  .decoriko-mobile-drawer-logo {
    justify-self: center;
    display: flex;
    align-items: center;
  }

  .decoriko-mobile-drawer-logo img {
    width: 146px;
    max-width: 48vw;
    height: auto;
  }

  .decoriko-mobile-drawer-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--dm-text);
  }

  .decoriko-mobile-drawer-cart svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
  }

  .decoriko-mobile-drawer-content {
    height: calc(100dvh - 61px - env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 12px calc(24px + env(safe-area-inset-bottom));
    background: #f4f5f7;
    box-sizing: border-box;
  }

  .decoriko-mobile-catalog-search {
    margin: 0 0 10px;
  }

  .decoriko-mobile-catalog-search label {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(19, 24, 31, 0.05);
  }

  .decoriko-mobile-catalog-search svg {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    fill: #8a8f98;
    pointer-events: none;
  }

  .decoriko-mobile-catalog-search input {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 44px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--dm-text);
    font-size: 16px;
    line-height: 44px;
    outline: none;
    box-sizing: border-box;
  }

  .decoriko-mobile-catalog-search input::placeholder {
    color: #8a8f98;
  }

  .decoriko-mobile-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .decoriko-mobile-quick-actions a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 56px;
    padding: 7px 4px;
    border: 1px solid #e8eaee;
    border-radius: 14px;
    background: #fff;
    color: var(--dm-text);
    text-decoration: none;
    font-size: 12px;
    line-height: 15px;
    box-shadow: 0 4px 14px rgba(19, 24, 31, 0.035);
    box-sizing: border-box;
  }

  .decoriko-mobile-quick-actions svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .decoriko-mobile-quick-actions b {
    position: absolute;
    top: 7px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #1d1f23;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
  }

  .decoriko-mobile-nav {
    display: block;
  }

  .decoriko-mobile-nav-title {
    margin: 2px 2px 11px;
  }

  .decoriko-mobile-nav-title span {
    color: var(--dm-text);
    font-size: 22px;
    line-height: 29px;
    font-weight: 800;
  }

  .decoriko-mobile-catalog-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
  }

  .decoriko-mobile-catalog-group,
  .decoriko-mobile-catalog-single,
  .decoriko-mobile-info-links,
  .decoriko-mobile-contact-card {
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(19, 24, 31, 0.045);
    overflow: hidden;
  }

  .decoriko-mobile-catalog-group summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px 14px;
    color: var(--dm-text);
    list-style: none;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-catalog-group summary::-webkit-details-marker {
    display: none;
  }

  .decoriko-mobile-cat-mark {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff1e8 0%, #ffe1ce 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 111, 26, 0.18);
  }

  .decoriko-mobile-cat-mark:before,
  .decoriko-mobile-cat-mark:after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    border-radius: 2px;
    background: var(--dm-accent);
  }

  .decoriko-mobile-cat-mark:before {
    top: 12px;
  }

  .decoriko-mobile-cat-mark:after {
    top: 20px;
  }

  .decoriko-mobile-cat-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .decoriko-mobile-cat-name {
    display: block;
    min-width: 0;
    color: inherit;
    font-size: 16px;
    line-height: 21px;
    font-weight: 800;
    overflow-wrap: anywhere;
  }

  .decoriko-mobile-cat-copy small {
    display: block;
    color: #8a8f98;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }

  .decoriko-mobile-catalog-group summary > span {
    min-width: 0;
  }

  .decoriko-mobile-catalog-group summary i {
    flex: 0 0 auto;
    margin-left: 2px;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    color: #8a8f98;
    transform: rotate(135deg);
    transition:
      transform 0.18s ease,
      color 0.18s ease;
  }

  .decoriko-mobile-catalog-group[open] summary {
    background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark {
    background: var(--dm-accent);
    box-shadow: 0 8px 18px rgba(255, 111, 26, 0.22);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark:before,
  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark:after {
    background: #fff;
  }

  .decoriko-mobile-catalog-group[open] summary i {
    color: var(--dm-accent-dark);
    transform: rotate(-45deg);
  }

  .decoriko-mobile-subnav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 10px 10px;
    padding: 6px;
    border: 1px solid #eceff3;
    border-radius: 14px;
    background: #f7f8fa;
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-subnav {
    animation: decorikoMobileSubnavIn 0.16s ease-out;
  }

  .decoriko-mobile-subnav a,
  .decoriko-mobile-catalog-single,
  .decoriko-mobile-info-grid a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    color: var(--dm-text);
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
    box-sizing: border-box;
  }

  .decoriko-mobile-subnav a {
    border-radius: 10px;
    border-bottom: 1px solid #eceff3;
  }

  .decoriko-mobile-subnav a:last-child {
    border-bottom: 0;
  }

  .decoriko-mobile-subnav a:active,
  .decoriko-mobile-catalog-single:active,
  .decoriko-mobile-quick-actions a:active,
  .decoriko-mobile-info-grid a:active {
    background: #f1f2f4;
  }

  .decoriko-mobile-all-link {
    margin-bottom: 4px;
    background: #fff;
    color: var(--dm-accent-dark) !important;
    font-weight: 800;
    border-bottom: 0 !important;
    box-shadow: inset 0 0 0 1px #ffe1ce;
  }

  .decoriko-mobile-catalog-single {
    position: relative;
    gap: 12px;
    min-height: 62px;
    padding: 10px 44px 10px 14px;
  }

  .decoriko-mobile-catalog-single:after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #8a8f98;
    border-right: 2px solid #8a8f98;
    transform: translateY(-50%) rotate(45deg);
  }

  .decoriko-mobile-info-links {
    margin-top: 18px;
    padding: 14px;
    box-shadow: none;
  }

  .decoriko-mobile-info-title {
    margin-bottom: 9px;
    color: #6f7680;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .decoriko-mobile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
  }

  .decoriko-mobile-info-grid a {
    min-height: 40px;
    padding: 0;
    color: #4d535c;
    font-size: 14px;
  }

  .decoriko-mobile-contact-card {
    margin: 10px 0 0;
    padding: 16px;
  }

  .decoriko-mobile-call,
  .decoriko-mobile-phone {
    display: block;
    color: #075dce;
    text-decoration: none;
    font-size: 17px;
    line-height: 26px;
  }

  .decoriko-mobile-phone {
    margin-top: 8px;
    color: var(--dm-text);
    font-weight: 700;
  }

  .decoriko-mobile-contact-card span {
    display: block;
    margin-top: 8px;
    color: var(--dm-muted);
    font-size: 13px;
    line-height: 18px;
  }

  @keyframes decorikoMobileSubnavIn {
    from {
      opacity: 0.45;
      transform: translateY(-4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 359px) {
    .decoriko-mobile-logo img {
      width: 136px;
      max-width: 42vw;
    }

    .decoriko-mobile-drawer-logo img {
      width: 132px;
      max-width: 42vw;
    }

    .decoriko-mobile-quick-actions {
      gap: 6px;
    }

    .decoriko-mobile-quick-actions a {
      font-size: 11px;
    }

    .decoriko-mobile-nav-title span {
      font-size: 20px;
    }
  }

  /* ===== Decoriko mobile polish: colors + typography ===== */

  :root {
    --dm-accent: #2ca63a;
    --dm-accent-dark: #1f7f2c;
    --dm-accent-soft: #eef8f0;
    --dm-accent-soft-2: #f6fbf7;
    --dm-accent-border: rgba(44, 166, 58, 0.22);
    --dm-accent-shadow: rgba(44, 166, 58, 0.18);
    --dm-font: Arial, 'Helvetica Neue', sans-serif;
  }

  .decoriko-mobile-ui {
    font-family: var(--dm-font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .decoriko-mobile-drawer-head {
    border-bottom-color: var(--dm-accent-border);
  }

  .decoriko-mobile-badge {
    background: var(--dm-accent);
    font-weight: 700;
  }

  .decoriko-mobile-nav-title {
    margin: 4px 2px 12px;
    text-align: center;
  }

  .decoriko-mobile-nav-title span {
    font-size: 21px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .decoriko-mobile-catalog-group,
  .decoriko-mobile-catalog-single,
  .decoriko-mobile-info-links,
  .decoriko-mobile-contact-card {
    border-color: #e6e9ee;
    box-shadow: 0 5px 16px rgba(19, 24, 31, 0.04);
  }

  .decoriko-mobile-catalog-group summary {
    min-height: 62px;
    padding: 10px 14px;
  }

  .decoriko-mobile-cat-mark {
    background: linear-gradient(135deg, #f2fbf3 0%, #e4f5e7 100%);
    box-shadow: inset 0 0 0 1px var(--dm-accent-border);
  }

  .decoriko-mobile-cat-mark:before,
  .decoriko-mobile-cat-mark:after {
    background: var(--dm-accent);
  }

  .decoriko-mobile-cat-name {
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .decoriko-mobile-cat-copy small {
    color: #8a8f98;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
  }

  .decoriko-mobile-catalog-group summary i {
    color: #8a8f98;
    border-width: 2px;
  }

  .decoriko-mobile-catalog-group[open] summary {
    background: linear-gradient(180deg, #fff 0%, var(--dm-accent-soft-2) 100%);
    color: var(--dm-text);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-name {
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark {
    background: var(--dm-accent);
    box-shadow: 0 7px 16px var(--dm-accent-shadow);
  }

  .decoriko-mobile-catalog-group[open] summary i {
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-subnav {
    margin: 0 10px 10px;
    padding: 6px;
    border-color: #edf0f3;
    background: #f8f9fa;
  }

  .decoriko-mobile-subnav a,
  .decoriko-mobile-catalog-single,
  .decoriko-mobile-info-grid a {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }

  .decoriko-mobile-subnav a {
    min-height: 44px;
    color: #1d1f23;
  }

  .decoriko-mobile-all-link {
    color: var(--dm-accent-dark) !important;
    font-weight: 700;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--dm-accent-border);
  }

  .decoriko-mobile-catalog-single {
    min-height: 60px;
  }

  .decoriko-mobile-quick-actions a {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
  }

  .decoriko-mobile-quick-actions b {
    font-weight: 700;
  }

  .decoriko-mobile-info-title {
    color: #6f7680;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
  }

  .decoriko-mobile-info-grid a {
    color: #3f4650;
    font-size: 14px;
    font-weight: 400;
  }

  .decoriko-mobile-call {
    color: #075dce;
    font-size: 16px;
    font-weight: 400;
  }

  .decoriko-mobile-phone {
    font-size: 17px;
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  /* ===== Catalog menu layout polish ===== */

  .decoriko-mobile-catalog-sections {
    gap: 9px;
  }

  .decoriko-mobile-catalog-group,
  .decoriko-mobile-catalog-single {
    border-radius: 15px;
  }

  .decoriko-mobile-catalog-group summary {
    min-height: 58px;
    padding: 9px 13px;
    gap: 11px;
  }

  .decoriko-mobile-catalog-single {
    min-height: 58px;
    padding: 9px 42px 9px 13px;
    gap: 11px;
  }

  .decoriko-mobile-cat-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .decoriko-mobile-cat-mark:before,
  .decoriko-mobile-cat-mark:after {
    left: 9px;
    right: 9px;
    height: 2px;
  }

  .decoriko-mobile-cat-mark:before {
    top: 11px;
  }

  .decoriko-mobile-cat-mark:after {
    top: 19px;
  }

  .decoriko-mobile-cat-copy {
    align-items: start;
    text-align: left;
    gap: 1px;
  }

  .decoriko-mobile-cat-name {
    font-size: 15.5px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
  }

  .decoriko-mobile-cat-copy small {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: #8d949d;
    text-align: left;
  }

  .decoriko-mobile-catalog-group summary i {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .decoriko-mobile-catalog-group[open] summary {
    background: #fff;
    color: var(--dm-text);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-name {
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-copy small {
    color: #7f8791;
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark {
    background: var(--dm-accent);
    box-shadow: 0 6px 14px rgba(44, 166, 58, 0.18);
  }

  .decoriko-mobile-subnav {
    margin: 0 9px 9px;
    padding: 5px;
    border-radius: 13px;
    background: #f7f8fa;
  }

  .decoriko-mobile-subnav a {
    min-height: 42px;
    padding: 0 11px;
    font-size: 14.5px;
    line-height: 19px;
    border-radius: 9px;
  }

  .decoriko-mobile-all-link {
    min-height: 40px;
    margin-bottom: 3px;
    font-size: 14.5px;
    font-weight: 700;
    text-align: left;
  }

  .decoriko-mobile-catalog-single:after {
    right: 17px;
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 768px) {
  .decoriko-mobile-info-links {
    margin-top: 16px;
    padding: 15px 16px;
    border-radius: 15px;
  }

  .decoriko-mobile-info-title {
    margin-bottom: 10px;
    color: #7a828c;
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: left;
  }

  .decoriko-mobile-info-grid {
    gap: 2px 14px;
  }

  .decoriko-mobile-info-grid a {
    min-height: 38px;
    font-size: 14.5px;
    line-height: 19px;
  }
}

/* === Decoriko mobile menu refinement: typography + spacing === */

@media (max-width: 768px) {
  :root {
    --dm-accent: #15963a;
    --dm-accent-dark: #0d7f2f;
    --dm-accent-soft: #edf8f0;
    --dm-accent-border: #c8e8cf;

    --dm-text: #111827;
    --dm-muted: #7b8490;
    --dm-bg: #f3f5f7;
    --dm-card: #ffffff;
    --dm-line: #e6e9ee;
  }

  .decoriko-mobile-drawer-content {
    background: var(--dm-bg);
    padding: 12px 12px calc(20px + env(safe-area-inset-bottom));
  }

  .decoriko-mobile-nav-title {
    margin: 4px 2px 14px;
    text-align: center;
  }

  .decoriko-mobile-nav-title span {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .decoriko-mobile-catalog-sections {
    gap: 9px;
  }

  .decoriko-mobile-catalog-group,
  .decoriko-mobile-catalog-single {
    border-color: var(--dm-line);
    border-radius: 15px;
    box-shadow: 0 5px 16px rgba(17, 24, 39, 0.035);
  }

  .decoriko-mobile-catalog-group summary {
    min-height: 58px;
    padding: 9px 14px;
    gap: 12px;
  }

  .decoriko-mobile-catalog-single {
    min-height: 58px;
    padding: 9px 44px 9px 14px;
    gap: 12px;
  }

  .decoriko-mobile-cat-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--dm-accent-soft);
    box-shadow: inset 0 0 0 1px var(--dm-accent-border);
  }

  .decoriko-mobile-cat-mark:before,
  .decoriko-mobile-cat-mark:after {
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--dm-accent);
  }

  .decoriko-mobile-cat-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.005em;
  }

  .decoriko-mobile-cat-copy small {
    margin-top: 1px;
    color: var(--dm-muted);
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
  }

  .decoriko-mobile-catalog-group summary i {
    width: 8px;
    height: 8px;
    border-width: 2px;
    color: #9aa1aa;
  }

  .decoriko-mobile-catalog-group[open] summary {
    background: #fff;
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-catalog-group[open] .decoriko-mobile-cat-mark {
    background: var(--dm-accent);
    box-shadow: 0 7px 16px rgba(21, 150, 58, 0.22);
  }

  .decoriko-mobile-catalog-group[open] summary i {
    color: var(--dm-accent-dark);
  }

  .decoriko-mobile-subnav {
    margin: 0 10px 10px;
    padding: 6px;
    border-color: var(--dm-line);
    border-radius: 13px;
    background: #f7f9fa;
  }

  .decoriko-mobile-subnav a {
    min-height: 44px;
    padding: 0 12px;
    border-bottom-color: var(--dm-line);
    border-radius: 9px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }

  .decoriko-mobile-all-link {
    color: var(--dm-accent-dark) !important;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px var(--dm-accent-border);
  }

  .decoriko-mobile-info-links {
    margin-top: 16px;
    border-color: var(--dm-line);
    border-radius: 15px;
  }

  .decoriko-mobile-info-title {
    color: var(--dm-muted);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.045em;
  }

  .decoriko-mobile-info-grid a {
    color: #374151;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }

  .decoriko-mobile-contact-card {
    border-color: var(--dm-line);
    border-radius: 15px;
    text-align: center;
  }

  .decoriko-mobile-call {
    color: #075dce;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
  }

  .decoriko-mobile-phone {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
  }

  .decoriko-mobile-contact-card span {
    color: var(--dm-muted);
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 768px) {
  footer > #footer {
    display: none !important;
  }

  footer > #block_easycart {
    display: none !important;
  }

  footer > #fixedcomparelist {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .decoriko-mobile-catalog-empty {
    display: none;
    padding: 18px 14px;
    border: 1px solid var(--dm-line);
    border-radius: 15px;
    background: #fff;
    color: var(--dm-muted);
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    box-shadow: 0 5px 16px rgba(17, 24, 39, 0.035);
  }

  .decoriko-mobile-catalog-sections.is-searching {
    gap: 8px;
  }

  .decoriko-mobile-catalog-sections.is-searching .decoriko-mobile-catalog-group,
  .decoriko-mobile-catalog-sections.is-searching
    .decoriko-mobile-catalog-single {
    display: none;
  }

  .decoriko-mobile-catalog-sections.is-searching
    .decoriko-mobile-catalog-group.is-match,
  .decoriko-mobile-catalog-sections.is-searching
    .decoriko-mobile-catalog-single.is-match {
    display: block;
  }

  .decoriko-mobile-catalog-sections.is-searching .decoriko-mobile-subnav a {
    display: none;
  }

  .decoriko-mobile-catalog-sections.is-searching
    .decoriko-mobile-subnav
    a.is-match,
  .decoriko-mobile-catalog-sections.is-searching
    .decoriko-mobile-subnav
    a.decoriko-mobile-all-link {
    display: flex;
  }

  .decoriko-mobile-catalog-search label:focus-within {
    border-color: var(--dm-accent-border);
    box-shadow: 0 0 0 3px rgba(21, 150, 58, 0.08);
  }

  .decoriko-mobile-catalog-search input {
    font-weight: 400;
  }

  .decoriko-mobile-catalog-search input::placeholder {
    font-size: 16px;
    font-weight: 400;
  }

  footer > #fixedcomparelist {
    display: block !important;
  }

  footer {
    margin: 0 !important;
    padding: 0 !important;
    background: #f4f5f7 !important;
  }

  .decoriko-mobile-page-footer {
    display: block;
    padding: 18px 12px calc(24px + env(safe-area-inset-bottom));
    background: #f4f5f7;
    color: var(--dm-text);
    box-sizing: border-box;
  }

  .decoriko-mobile-footer-card {
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid #e5e8ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(19, 24, 31, 0.045);
    box-sizing: border-box;
  }

  .decoriko-mobile-footer-title {
    margin-bottom: 12px;
    color: #6f7680;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .decoriko-mobile-footer-phone {
    display: block;
    color: var(--dm-text);
    font-size: 25px;
    line-height: 31px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .decoriko-mobile-footer-city {
    margin-top: 5px;
    margin-bottom: 15px;
    color: #6f7680;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .decoriko-mobile-footer-city a {
    color: var(--dm-text);
    font-weight: 700;
    text-decoration: none;
  }

  .decoriko-mobile-footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .decoriko-mobile-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 0 12px;
    border-radius: 13px;
    background: #15963a;
    color: #fff !important;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }

  .decoriko-mobile-footer-btn.is-light {
    background: #eaf7ee;
    color: #138234 !important;
    box-shadow: inset 0 0 0 1px rgba(21, 150, 58, 0.16);
  }

  .decoriko-mobile-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
  }

  .decoriko-mobile-footer-grid a {
    display: flex;
    align-items: center;
    min-height: 38px;
    color: #2f3742;
    font-size: 15px;
    line-height: 20px;
    text-decoration: none;
  }

  .decoriko-mobile-payments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .decoriko-mobile-payments span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 13px;
    background: #f7f8fa;
    box-shadow: inset 0 0 0 1px #edf0f3;
  }

  .decoriko-mobile-payments img {
    display: block;
    max-width: 70px;
    max-height: 28px;
    width: auto;
    height: auto;
  }

  .decoriko-mobile-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
  }

  .decoriko-mobile-footer-socials .title,
  .decoriko-mobile-footer-socials br {
    display: none !important;
  }

  .decoriko-mobile-footer-socials a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border-radius: 13px;
    background: #eaf7ee;
    color: #15963a;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(21, 150, 58, 0.16);
  }

  .decoriko-mobile-footer-socials img,
  .decoriko-mobile-footer-socials svg {
    display: block;
    max-width: 22px;
    max-height: 22px;
  }

  .decoriko-mobile-footer-legal {
    color: #6f7680;
    font-size: 12px;
    line-height: 17px;
  }

  .decoriko-mobile-footer-legal a {
    color: #2f3742;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .decoriko-mobile-footer-copy {
    margin-top: 10px;
    color: #8a8f98;
    font-size: 12px;
    line-height: 17px;
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button > span {
    left: 11px;
    width: 22px;
    height: 2px;
    background: #1d1f23;
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button > span:nth-child(1) {
    transform: translateY(-7px);
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button > span:nth-child(2) {
    transform: translateY(0);
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button > span:nth-child(3) {
    transform: translateY(7px);
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button:active {
    background: #eaf7ee;
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button:active > span {
    background: #15963a;
  }

  .decoriko-mobile-topbar .decoriko-mobile-icon-button svg {
    width: 25px;
    height: 25px;
    color: #1d1f23;
  }

  .decoriko-mobile-badge {
    background: #15963a;
    box-shadow: 0 2px 6px rgba(21, 150, 58, 0.28);
  }
}

@media (max-width: 768px) {
  :root {
    --dm-header-h: 58px;
    --dm-green: #15983a;
    --dm-green-dark: #0f7f2f;
    --dm-icon: #15191f;
    --dm-header-line: #dfe9e2;
    --dm-header-soft: #f3f7f4;
  }

  body.adaptive > .body {
    padding-top: calc(
      var(--dm-header-h) + var(--dm-search-h) + env(safe-area-inset-top)
    ) !important;
  }

  .decoriko-mobile-topbar {
    grid-template-columns: 92px minmax(0, 1fr) 92px;
    height: var(--dm-header-h);
    padding: env(safe-area-inset-top) 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--dm-header-line);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(10px);
  }

  .decoriko-mobile-logo {
    width: 100%;
    justify-content: center;
  }

  .decoriko-mobile-logo img {
    width: 166px;
    max-width: 52vw;
    height: auto;
  }

  .decoriko-mobile-actions {
    justify-self: end;
    gap: 4px;
  }

  .decoriko-mobile-icon-button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--dm-icon);
    transition:
      background 0.14s ease,
      color 0.14s ease,
      transform 0.14s ease;
  }

  .decoriko-mobile-icon-button:active {
    background: var(--dm-header-soft);
    color: var(--dm-green-dark);
    transform: scale(0.97);
  }

  .decoriko-mobile-icon-button > span {
    left: 12px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .decoriko-mobile-icon-button > span:nth-child(1) {
    transform: translateY(-6px);
  }

  .decoriko-mobile-icon-button > span:nth-child(2) {
    transform: translateY(0);
  }

  .decoriko-mobile-icon-button > span:nth-child(3) {
    transform: translateY(6px);
  }

  .decoriko-mobile-icon-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .decoriko-mobile-cart svg,
  .decoriko-mobile-drawer-cart svg {
    width: 27px;
    height: 27px;
  }

  .decoriko-mobile-badge {
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--dm-green);
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 7px rgba(21, 152, 58, 0.25);
    font-size: 10px;
    line-height: 14px;
    font-weight: 800;
  }

  .decoriko-mobile-search {
    top: calc(var(--dm-header-h) + env(safe-area-inset-top));
  }

  .decoriko-mobile-drawer-head {
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    height: calc(var(--dm-header-h) + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 12px 0;
    border-bottom: 1px solid var(--dm-header-line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.045);
    backdrop-filter: blur(10px);
  }

  .decoriko-mobile-close,
  .decoriko-mobile-drawer-cart {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: transparent;
    color: var(--dm-icon);
    transition:
      background 0.14s ease,
      color 0.14s ease,
      transform 0.14s ease;
  }

  .decoriko-mobile-close:active,
  .decoriko-mobile-drawer-cart:active {
    background: var(--dm-header-soft);
    color: var(--dm-green-dark);
    transform: scale(0.97);
  }

  .decoriko-mobile-drawer-logo img {
    width: 166px;
    max-width: 52vw;
    height: auto;
  }

  @media (max-width: 359px) {
    .decoriko-mobile-topbar {
      grid-template-columns: 82px minmax(0, 1fr) 82px;
      padding-left: 8px;
      padding-right: 8px;
    }

    .decoriko-mobile-logo img,
    .decoriko-mobile-drawer-logo img {
      width: 148px;
      max-width: 50vw;
    }

    .decoriko-mobile-icon-button,
    .decoriko-mobile-close,
    .decoriko-mobile-drawer-cart {
      width: 42px;
      height: 42px;
    }
  }
}

@media (max-width: 768px) {
  body.adaptive {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  #fixedcomparelist {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    z-index: 9035 !important;
    height: 54px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid #dde8e0 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18) !important;
    backdrop-filter: blur(12px);
    overflow: hidden !important;
  }

  #fixedcomparelist * {
    box-sizing: border-box;
  }

  #fixedcomparelist a,
  #fixedcomparelist > div,
  #fixedcomparelist .item,
  #fixedcomparelist li {
    color: #17202a !important;
    text-decoration: none !important;
  }

  #fixedcomparelist > div,
  #fixedcomparelist ul {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    list-style: none !important;
  }

  #fixedcomparelist a,
  #fixedcomparelist li,
  #fixedcomparelist .item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    min-width: 0 !important;
    height: 54px !important;
    padding: 0 4px !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  #fixedcomparelist a + a,
  #fixedcomparelist li + li,
  #fixedcomparelist .item + .item {
    border-left: 1px solid #edf1ee !important;
  }

  #fixedcomparelist a:active,
  #fixedcomparelist li:active,
  #fixedcomparelist .item:active {
    background: #f2f7f4 !important;
  }

  #fixedcomparelist img,
  #fixedcomparelist svg,
  #fixedcomparelist .icon,
  #fixedcomparelist i {
    max-width: 24px !important;
    max-height: 24px !important;
    color: #17202a !important;
    fill: currentColor !important;
    opacity: 1 !important;
  }

  #fixedcomparelist span,
  #fixedcomparelist b,
  #fixedcomparelist em {
    color: #15983a !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    font-style: normal !important;
  }

  #fixedcomparelist .up,
  #fixedcomparelist .scrolltop,
  #fixedcomparelist [href='#top'],
  #fixedcomparelist [onclick*='scroll'] {
    color: #15983a !important;
  }

  #fixedcomparelist .up img,
  #fixedcomparelist .scrolltop img,
  #fixedcomparelist [href='#top'] img {
    filter: none !important;
  }

  @media (max-width: 359px) {
    #fixedcomparelist {
      left: 6px !important;
      right: 6px !important;
      height: 52px !important;
      border-radius: 16px !important;
    }

    #fixedcomparelist a,
    #fixedcomparelist li,
    #fixedcomparelist .item {
      height: 52px !important;
      font-size: 11px !important;
    }
  }
}

@media (max-width: 768px) {
  :root {
    --dm-green: #15983a;
    --dm-green-dark: #0d7f2e;
    --dm-ink: #111827;
    --dm-soft-green: #eef8f1;
  }

  .decoriko-mobile-topbar {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(21, 152, 58, 0.22) !important;
    box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06) !important;
  }

  .decoriko-mobile-icon-button,
  .decoriko-mobile-drawer-cart,
  .decoriko-mobile-close {
    color: var(--dm-ink) !important;
  }

  .decoriko-mobile-icon-button svg,
  .decoriko-mobile-drawer-cart svg {
    fill: currentColor !important;
    stroke: none !important;
    opacity: 1 !important;
  }

  .decoriko-mobile-icon-button > span {
    background: var(--dm-ink) !important;
  }

  .decoriko-mobile-icon-button:active,
  .decoriko-mobile-close:active,
  .decoriko-mobile-drawer-cart:active {
    background: var(--dm-soft-green) !important;
  }

  .decoriko-mobile-badge {
    top: 5px !important;
    right: 2px !important;
    min-width: 19px !important;
    height: 19px !important;
    padding: 0 5px !important;
    background: var(--dm-green) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    box-shadow: 0 3px 8px rgba(21, 152, 58, 0.28) !important;
    font-size: 11px !important;
    line-height: 15px !important;
    font-weight: 800 !important;
  }

  .decoriko-mobile-cart svg,
  .decoriko-mobile-drawer-cart svg {
    width: 28px !important;
    height: 28px !important;
  }

  .decoriko-mobile-search-toggle svg {
    width: 27px !important;
    height: 27px !important;
  }

  .decoriko-mobile-logo img {
    filter: none !important;
  }
}

/* === Decoriko mobile footer/fixed panel restore === */

@media (min-width: 769px) {
  .decoriko-mobile-page-footer {
    display: none !important;
  }
}

@media (max-width: 768px) {
  footer {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f4f5f7 !important;
  }

  footer > #footer {
    display: none !important;
  }

  footer > #block_easycart {
    display: none !important;
  }

  footer > #fixedcomparelist {
    display: block !important;
  }

  .decoriko-mobile-page-footer {
    display: block !important;
  }

  body.adaptive {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  #fixedcomparelist {
    display: block !important;
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    z-index: 9035 !important;
    height: 54px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid #dde8e0 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18) !important;
    backdrop-filter: blur(12px);
    overflow: hidden !important;
  }
}

/* === Decoriko mobile footer/header final cleanup === */

@media (max-width: 768px) {
  /* 1. Убираем пустую нижнюю плашку */
  footer > #fixedcomparelist,
  #fixedcomparelist {
    display: none !important;
  }

  body.adaptive {
    padding-bottom: 0 !important;
  }

  .decoriko-mobile-page-footer {
    padding-bottom: calc(22px + env(safe-area-inset-bottom)) !important;
  }

  /* 2. Header: чтобы лого не резалось */
  .decoriko-mobile-topbar {
    height: 62px !important;
    grid-template-columns: 82px minmax(0, 1fr) 82px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    overflow: visible !important;
  }

  .decoriko-mobile-logo {
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .decoriko-mobile-logo img {
    width: 200px !important;
    max-width: 48vw !important;
    max-height: 48px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .decoriko-mobile-icon-button {
    width: 42px !important;
    height: 42px !important;
  }

  .decoriko-mobile-search-toggle svg {
    width: 25px !important;
    height: 25px !important;
  }

  .decoriko-mobile-cart svg {
    width: 27px !important;
    height: 27px !important;
  }

  .decoriko-mobile-badge {
    top: 2px !important;
    right: 0 !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    line-height: 14px !important;
  }

  /* 3. Футер: соцсети в ряд, без дублей заголовков */
  .decoriko-mobile-footer-socials {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
  }

  .decoriko-mobile-footer-socials .title,
  .decoriko-mobile-footer-socials > .title,
  .decoriko-mobile-footer-socials p,
  .decoriko-mobile-footer-socials br {
    display: none !important;
  }

  .decoriko-mobile-footer-socials ul,
  .decoriko-mobile-footer-socials li,
  .decoriko-mobile-footer-socials div {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .decoriko-mobile-footer-socials ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .decoriko-mobile-footer-socials li {
    display: block !important;
  }

  .decoriko-mobile-footer-socials a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    background: #eaf7ee !important;
    box-shadow: inset 0 0 0 1px rgba(21, 150, 58, 0.16) !important;
  }

  .decoriko-mobile-footer-socials img,
  .decoriko-mobile-footer-socials svg {
    display: block !important;
    max-width: 23px !important;
    max-height: 23px !important;
    width: auto !important;
    height: auto !important;
  }

  /* 4. Чуть компактнее карточки футера */
  .decoriko-mobile-footer-card {
    margin-bottom: 12px !important;
    border-radius: 17px !important;
  }

  .decoriko-mobile-footer-title {
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .decoriko-mobile-footer-legal {
    text-align: center !important;
  }
}

@media (max-width: 359px) {
  .decoriko-mobile-logo img {
    width: 140px !important;
    max-height: 44px !important;
  }

  .decoriko-mobile-topbar {
    grid-template-columns: 74px minmax(0, 1fr) 74px !important;
  }
}

@media (max-width: 768px) {
  body.adaptive {
    padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
  }

  footer > #fixedcomparelist {
    display: none !important;
  }

  .decoriko-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9035;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(58px + env(safe-area-inset-bottom));
    padding: 0 6px env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #dfe9e2;
    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(12px);
    box-sizing: border-box;
  }

  .decoriko-mobile-bottom-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 58px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b6bac2;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-bottom-item svg {
    display: block;
    width: 27px;
    height: 27px;
    fill: currentColor;
  }

  .decoriko-mobile-bottom-item:nth-child(2) svg {
    width: 26px;
    height: 26px;
  }

  .decoriko-mobile-bottom-item:nth-child(3) svg {
    width: 30px;
    height: 30px;
  }

  .decoriko-mobile-bottom-item:active {
    color: #15983a;
    background: #eef8f1;
    border-radius: 16px;
  }

  .decoriko-mobile-bottom-item.is-active {
    color: #15983a;
  }

  .decoriko-mobile-bottom-badge {
    position: absolute;
    top: 8px;
    right: calc(50% - 24px);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #15983a;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 3px 8px rgba(21, 152, 58, 0.28);
    font-size: 10px;
    line-height: 14px;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
  }

  html.decoriko-menu-open .decoriko-mobile-bottom-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --dm-header-h: 58px;
    --dm-search-h: 68px;
    --dm-header-line: #dfe7df;
    --dm-header-bg: rgba(255, 255, 255, 0.98);
    --dm-header-icon: #1a1f27;
    --dm-search-border: #cfd4da;
    --dm-search-placeholder: #9aa1aa;
    --dm-search-icon: #5d7cff;
  }

  .decoriko-mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9020;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    height: var(--dm-header-h);
    padding: env(safe-area-inset-top) 10px 0;
    background: var(--dm-header-bg);
    border-bottom: 1px solid var(--dm-header-line);
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
    backdrop-filter: blur(10px);
    box-sizing: content-box;
  }

  .decoriko-mobile-logo {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .decoriko-mobile-logo img {
    display: block;
    width: 166px;
    max-width: 56vw;
    height: auto;
  }

  .decoriko-mobile-topbar-spacer {
    width: 44px;
    height: 44px;
    justify-self: end;
  }

  .decoriko-mobile-icon-button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--dm-header-icon);
  }

  .decoriko-mobile-icon-button > span {
    background: currentColor;
  }

  .decoriko-mobile-icon-button svg {
    fill: currentColor;
  }

  .decoriko-mobile-search {
    position: fixed;
    top: calc(var(--dm-header-h) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    z-index: 9019;
    display: block !important;
    padding: 10px 10px 12px;
    background: #f4f4f4;
    border-bottom: 1px solid var(--dm-header-line);
    box-shadow: none;
  }

  .decoriko-mobile-header-search-form {
    margin: 0;
  }

  .decoriko-mobile-header-search {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px 0 44px;
    border: 1px solid #e3e7ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
    box-sizing: border-box;
  }

  .decoriko-mobile-header-search svg {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    fill: #9aa1aa;
    pointer-events: none;
  }

  .decoriko-mobile-header-search input {
    width: 100%;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    line-height: 48px;
    outline: none;
    box-sizing: border-box;
  }

  .decoriko-mobile-header-search input::placeholder {
    color: #9aa1aa;
    font-size: 16px;
    font-weight: 400;
  }
  .decoriko-mobile-header-search:focus-within {
    border-color: #d7dde3;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.04);
  }

  /* старые элементы поиска нам больше не нужны */
  .decoriko-mobile-search-inner,
  .decoriko-mobile-search-close {
    display: none !important;
  }
}

/* === Mobile header search final fix === */

@media (max-width: 768px) {
  :root {
    --dm-header-h: 58px;
    --dm-search-h: 58px;
  }

  body.adaptive > .body {
    padding-top: calc(
      var(--dm-header-h) + var(--dm-search-h) + env(safe-area-inset-top)
    ) !important;
  }

  .decoriko-mobile-topbar {
    height: var(--dm-header-h) !important;
    border-bottom: 1px solid #dfe7df !important;
    box-shadow: none !important;
  }

  .decoriko-mobile-search {
    position: fixed !important;
    top: calc(var(--dm-header-h) + env(safe-area-inset-top)) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9019 !important;

    display: block !important;
    height: var(--dm-search-h) !important;
    padding: 7px 3px 8px !important;

    background: #fff !important;
    border-bottom: 1px solid #e5e9ed !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-header-search-form {
    display: block !important;
    margin: 0 !important;
  }

  .decoriko-mobile-header-search {
    position: relative !important;
    display: flex !important;
    align-items: center !important;

    height: 43px !important;
    min-height: 43px !important;
    padding: 0 12px 0 42px !important;

    border: 1px solid #d8dde3 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-header-search svg {
    position: absolute !important;
    left: 14px !important;
    width: 18px !important;
    height: 18px !important;
    fill: #9aa1aa !important;
    color: #9aa1aa !important;
    pointer-events: none !important;
  }

  .decoriko-mobile-header-search input {
    width: 100% !important;
    height: 41px !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
    outline: none !important;

    color: #111827 !important;
    font-size: 16px !important;
    line-height: 41px !important;
    font-weight: 400 !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-header-search input::placeholder {
    color: #9aa1aa !important;
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .decoriko-mobile-header-search:focus-within {
    border-color: #c8ced6 !important;
    box-shadow: 0 0 0 2px rgba(21, 152, 58, 0.08) !important;
  }

  .decoriko-mobile-search-inner,
  .decoriko-mobile-search-close {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #onicon .onicon-bookmark,
  #onicon .onicon-button {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  #onicon .onicon-chat-popup,
  #onicon .onicon-popup {
    z-index: 10050 !important;
  }

  .decoriko-mobile-bottom-chat svg {
    width: 26px;
    height: 26px;
  }

  .decoriko-mobile-bottom-item.decoriko-mobile-bottom-chat:active,
  .decoriko-mobile-bottom-item.decoriko-mobile-bottom-chat.is-active {
    color: #15983a;
  }
}

/* === Mobile drawer tree navigation === */

@media (max-width: 768px) {
  .decoriko-mobile-drawer-content {
    display: block !important;
    padding: 0 0 calc(86px + env(safe-area-inset-bottom)) !important;
    background: #fff !important;
  }

  .decoriko-mobile-catalog-search {
    position: sticky;
    top: 0;
    z-index: 2;
    display: block !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-bottom: 1px solid #eef1f3 !important;
    background: #fff !important;
    box-sizing: border-box;
  }

  .decoriko-mobile-catalog-search label {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 14px 0 42px !important;
    border: 1px solid #e0e5ea !important;
    border-radius: 13px !important;
    background: #f7f8fa !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-catalog-search svg {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    width: 18px !important;
    height: 18px !important;
    transform: translateY(-50%) !important;
    fill: #8d96a1 !important;
    pointer-events: none !important;
  }

  .decoriko-mobile-catalog-search input {
    width: 100% !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 44px !important;
    outline: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-catalog-search input::placeholder {
    color: #8d96a1 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .decoriko-mobile-catalog-search label:focus-within {
    border-color: rgba(21, 152, 58, 0.32) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(21, 152, 58, 0.08) !important;
  }

  .decoriko-mobile-tree {
    display: block;
    background: #fff;
  }

  .decoriko-mobile-tree-head {
    position: sticky;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid #eef1f3;
    background: rgba(255, 255, 255, 0.98);
    box-sizing: border-box;
  }

  .decoriko-mobile-tree-head[hidden] {
    display: none !important;
  }

  .decoriko-mobile-tree-head strong {
    min-width: 0;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .decoriko-mobile-tree-back {
    position: relative;
    width: 48px;
    height: 54px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-tree-back:before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid #111827;
    border-bottom: 2px solid #111827;
    transform: translateY(-50%) rotate(45deg);
  }

  .decoriko-mobile-tree-list {
    display: block;
    background: #fff;
  }

  .decoriko-mobile-tree-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid #f0f2f4;
    border-radius: 0;
    background: #fff;
    color: #111827;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    text-decoration: none;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .decoriko-mobile-tree-row span {
    min-width: 0;
    padding: 14px 0;
    overflow-wrap: anywhere;
  }

  .decoriko-mobile-tree-row i {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-left: 14px;
    border-top: 2px solid #a1a9b3;
    border-right: 2px solid #a1a9b3;
    transform: rotate(45deg);
  }

  .decoriko-mobile-tree-row:active {
    background: #f7f8fa;
  }

  .decoriko-mobile-tree-row-catalog {
    min-height: 58px;
    color: #111827;
    font-weight: 700;
  }

  .decoriko-mobile-tree-row-catalog span {
    position: relative;
    padding-left: 14px;
  }

  .decoriko-mobile-tree-row-catalog span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 24px;
    border-radius: 999px;
    background: #15983a;
    transform: translateY(-50%);
  }

  .decoriko-mobile-tree-row-all {
    color: #15983a;
    font-weight: 700;
  }

  .decoriko-mobile-tree-row-link {
    padding-right: 16px;
  }

  .decoriko-mobile-catalog-empty {
    display: none;
    padding: 28px 16px;
    color: #6b7280;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    background: #fff;
  }

  .decoriko-mobile-catalog-empty:not([hidden]) {
    display: block;
  }

  .decoriko-mobile-menu-contact {
    margin: 0 !important;
    padding: 26px 29px 34px !important;
    border: 0 !important;
    border-top: 1px solid #ff7a21 !important;
    border-radius: 0 !important;
    background: #fff !important;
    text-align: left !important;
    box-shadow: none !important;
    box-sizing: border-box;
  }

  .decoriko-mobile-menu-contact .decoriko-mobile-call {
    display: block !important;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #006de5 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    text-decoration: none !important;
  }

  .decoriko-mobile-menu-contact .decoriko-mobile-phone {
    display: block !important;
    margin-top: 22px !important;
    color: #006de5 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    text-decoration: none !important;
  }

  .decoriko-mobile-menu-contact .decoriko-mobile-hours {
    display: block !important;
    margin-top: 22px !important;
    color: #1f2933 !important;
    font-size: 18px !important;
    line-height: 24px !important;
  }
}

@media (max-width: 359px) {
  .decoriko-mobile-tree-row {
    min-height: 54px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 15px;
  }

  .decoriko-mobile-tree-head strong {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  html.decoriko-mobile-recall-open,
  html.decoriko-mobile-recall-open body {
    overflow: hidden !important;
  }

  html.decoriko-mobile-recall-open .decoriko-mobile-bottom-nav {
    display: none !important;
  }

  html.decoriko-mobile-recall-open .fancybox-overlay {
    background: rgba(17, 24, 39, 0.62) !important;
    z-index: 9060 !important;
  }

  html.decoriko-mobile-recall-open .fancybox-wrap {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    margin: 0 !important;
    z-index: 9070 !important;
  }

  html.decoriko-mobile-recall-open .fancybox-skin {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: #f4f5f7 !important;
    box-shadow: none !important;
  }

  html.decoriko-mobile-recall-open .fancybox-outer,
  html.decoriko-mobile-recall-open .fancybox-inner {
    width: 100% !important;
    height: 100% !important;
    overflow-y: auto !important;
    background: #f4f5f7 !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
  }

  html.decoriko-mobile-recall-open .fancybox-inner {
    padding: calc(28px + env(safe-area-inset-top)) 16px
      calc(28px + env(safe-area-inset-bottom)) !important;
  }

  html.decoriko-mobile-recall-open .fancybox-close {
    position: fixed !important;
    top: calc(14px + env(safe-area-inset-top)) !important;
    right: 14px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    z-index: 9080 !important;
  }

  html.decoriko-mobile-recall-open .fancybox-close svg {
    display: none !important;
  }

  html.decoriko-mobile-recall-open .fancybox-close:before,
  html.decoriko-mobile-recall-open .fancybox-close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    margin-top: -1px;
    border-radius: 999px;
    background: #111827;
  }

  html.decoriko-mobile-recall-open .fancybox-close:before {
    transform: rotate(45deg);
  }

  html.decoriko-mobile-recall-open .fancybox-close:after {
    transform: rotate(-45deg);
  }

  html.decoriko-mobile-recall-open .someform {
    width: 100% !important;
    max-width: 420px !important;
    min-height: auto !important;
    margin: 52px auto 0 !important;
    padding: 22px 16px 18px !important;
    border: 1px solid #e5e8ed !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12) !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-recall-title {
    margin: 0 44px 8px 0;
    color: #111827;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .decoriko-mobile-recall-subtitle {
    margin: 0 0 18px;
    color: #7b8490;
    font-size: 14px;
    line-height: 20px;
  }

  html.decoriko-mobile-recall-open .oneclick {
    margin: 0 !important;
  }

  html.decoriko-mobile-recall-open .oneclick .line {
    margin: 0 0 12px !important;
    padding: 0 !important;
  }

  html.decoriko-mobile-recall-open .oneclick input[type='text'],
  html.decoriko-mobile-recall-open .oneclick textarea {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #e1e5eb !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 50px !important;
    font-weight: 400 !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-recall-open .oneclick input[type='text']:focus,
  html.decoriko-mobile-recall-open .oneclick textarea:focus {
    border-color: #c8e8cf !important;
    box-shadow: 0 0 0 3px rgba(21, 150, 58, 0.08) !important;
  }

  html.decoriko-mobile-recall-open .oneclick textarea {
    min-height: 104px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    line-height: 20px !important;
    resize: none !important;
  }

  html.decoriko-mobile-recall-open .oneclick input::placeholder,
  html.decoriko-mobile-recall-open .oneclick textarea::placeholder {
    color: #8f98a3 !important;
    opacity: 1 !important;
  }

  html.decoriko-mobile-recall-open .main-user-consent-request {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 10px !important;
    margin: 4px 0 14px !important;
    color: #6f7680 !important;
    font-size: 13px !important;
    line-height: 17px !important;
    text-align: left !important;
  }

  html.decoriko-mobile-recall-open
    .main-user-consent-request
    input[type='checkbox'] {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    accent-color: #15963a !important;
    transform: none !important;
  }

  html.decoriko-mobile-recall-open .main-user-consent-request a {
    color: #4d5560 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
  }

  html.decoriko-mobile-recall-open .oneclick .buttons {
    margin-bottom: 0 !important;
  }

  html.decoriko-mobile-recall-open .oneclick input.btn,
  html.decoriko-mobile-recall-open .oneclick input.btn1,
  html.decoriko-mobile-recall-open .oneclick input[type='submit'] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 15px !important;
    background: #15963a !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 52px !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: 0 8px 18px rgba(21, 150, 58, 0.22) !important;
    cursor: pointer !important;
  }

  html.decoriko-mobile-recall-open .oneclick input.btn:active,
  html.decoriko-mobile-recall-open .oneclick input.btn1:active,
  html.decoriko-mobile-recall-open .oneclick input[type='submit']:active {
    background: #0d7f2f !important;
  }

  html.decoriko-mobile-recall-open .req_fiel {
    max-width: 420px !important;
    margin: 0 auto 12px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: #fff1f1 !important;
    color: #c62828 !important;
    font-size: 14px !important;
    line-height: 19px !important;
    font-weight: 700 !important;
  }

  html.decoriko-mobile-recall-open .someform h2 {
    margin: 18px 0 !important;
    color: #111827 !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 800 !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  html.decoriko-mobile-recall-open .fancybox-inner {
    padding: calc(18px + env(safe-area-inset-top)) 18px
      calc(24px + env(safe-area-inset-bottom)) !important;
  }

  html.decoriko-mobile-recall-open .fancybox-close {
    top: calc(14px + env(safe-area-inset-top)) !important;
    right: 18px !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
  }

  html.decoriko-mobile-recall-open .someform {
    margin: calc(74px + env(safe-area-inset-top)) auto 0 !important;
    padding: 26px 18px 18px !important;
    border-radius: 22px !important;
  }

  html.decoriko-mobile-recall-open .decoriko-mobile-recall-title {
    margin: 0 0 10px !important;
    font-size: 25px !important;
    line-height: 30px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }

  html.decoriko-mobile-recall-open .decoriko-mobile-recall-subtitle {
    margin: 0 0 20px !important;
    font-size: 15px !important;
    line-height: 21px !important;
    color: #6f7680 !important;
  }

  html.decoriko-mobile-recall-open .oneclick .line {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    float: none !important;
    overflow: visible !important;
  }

  html.decoriko-mobile-recall-open .oneclick .line:before,
  html.decoriko-mobile-recall-open .oneclick .line:after {
    content: none !important;
    display: none !important;
  }

  html.decoriko-mobile-recall-open .oneclick input,
  html.decoriko-mobile-recall-open .oneclick textarea {
    float: none !important;
    position: static !important;
  }

  html.decoriko-mobile-recall-open .oneclick .skritiy_input,
  html.decoriko-mobile-recall-open .oneclick input.skritiy_input,
  html.decoriko-mobile-recall-open .oneclick input[name='name'].skritiy_input {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html.decoriko-mobile-recall-open
    .oneclick
    input[type='text']:not(.skritiy_input),
  html.decoriko-mobile-recall-open .oneclick textarea {
    width: 100% !important;
    height: 56px !important;
    padding: 0 16px !important;
    border: 1px solid #e2e7ed !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 56px !important;
    font-weight: 400 !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-recall-open .oneclick textarea {
    height: 112px !important;
    min-height: 112px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    line-height: 21px !important;
  }

  html.decoriko-mobile-recall-open
    .oneclick
    input[type='text']:not(.skritiy_input):focus,
  html.decoriko-mobile-recall-open .oneclick textarea:focus {
    border-color: #bfe5c8 !important;
    box-shadow: 0 0 0 3px rgba(21, 150, 58, 0.08) !important;
  }

  html.decoriko-mobile-recall-open .main-user-consent-request {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    margin: 2px 0 16px !important;
    font-size: 13px !important;
    line-height: 17px !important;
  }

  html.decoriko-mobile-recall-open
    .main-user-consent-request
    input[type='checkbox'] {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    align-self: start !important;
    accent-color: #15963a !important;
  }

  html.decoriko-mobile-recall-open .main-user-consent-request a {
    color: #4d5560 !important;
    font-size: 13px !important;
    line-height: 17px !important;
  }

  html.decoriko-mobile-recall-open .oneclick input.btn,
  html.decoriko-mobile-recall-open .oneclick input.btn1,
  html.decoriko-mobile-recall-open .oneclick input[type='submit'] {
    height: 56px !important;
    border-radius: 16px !important;
    font-size: 17px !important;
    line-height: 56px !important;
  }
}

@media (max-width: 768px) {
  html.decoriko-mobile-feedback-open .fancybox-overlay {
    background: rgba(241, 243, 245, 0.96) !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-wrap {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-skin {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-outer,
  html.decoriko-mobile-feedback-open .fancybox-inner {
    width: 100% !important;
    height: 100% !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-inner {
    overflow-y: auto !important;
    padding: calc(18px + env(safe-area-inset-top)) 16px
      calc(24px + env(safe-area-inset-bottom)) !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close {
    top: calc(12px + env(safe-area-inset-top)) !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close svg,
  html.decoriko-mobile-feedback-open .fancybox-close .svg-icon {
    width: 18px !important;
    height: 18px !important;
    fill: #111827 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback {
    max-width: 420px !important;
    margin: calc(78px + env(safe-area-inset-top)) auto 0 !important;
    padding: 24px 18px 18px !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08) !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .decoriko-mobile-feedback-head {
    margin-bottom: 18px !important;
  }

  html.decoriko-mobile-feedback-open .decoriko-mobile-feedback-title {
    margin: 0 0 8px !important;
    color: #0f172a !important;
    font-size: 24px !important;
    line-height: 29px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }

  html.decoriko-mobile-feedback-open .decoriko-mobile-feedback-subtitle {
    margin: 0 !important;
    color: #6b7280 !important;
    font-size: 15px !important;
    line-height: 21px !important;
    font-weight: 400 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .mf-name,
  html.decoriko-mobile-feedback-open .mfeedback .mf-email,
  html.decoriko-mobile-feedback-open .mfeedback .mf-message,
  html.decoriko-mobile-feedback-open .mfeedback .captcha_container {
    margin: 0 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .mf-text {
    margin: 0 0 6px !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .mf-req {
    color: #6b7280 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input[type='text'],
  html.decoriko-mobile-feedback-open .mfeedback textarea {
    width: 100% !important;
    border: 1px solid #dfe5eb !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #111827 !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input[type='text'] {
    height: 56px !important;
    padding: 0 16px !important;
    line-height: 56px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback textarea {
    min-height: 120px !important;
    padding: 14px 16px !important;
    line-height: 21px !important;
    resize: vertical !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input[type='text']:focus,
  html.decoriko-mobile-feedback-open .mfeedback textarea:focus {
    border-color: #bfe3c7 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(21, 150, 58, 0.08) !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .captcha_container {
    order: 4;
    padding: 12px !important;
    border: 1px solid #e3e8ee !important;
    border-radius: 18px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback #captcha-container,
  html.decoriko-mobile-feedback-open .mfeedback .smart-captcha {
    width: 100% !important;
    max-width: 100% !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback #submit_button,
  html.decoriko-mobile-feedback-open .mfeedback .submit_button,
  html.decoriko-mobile-feedback-open .mfeedback input[type='submit'] {
    order: 5;
    width: 100% !important;
    height: 56px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #169b35 !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 56px !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback #submit_button[disabled],
  html.decoriko-mobile-feedback-open .mfeedback .submit_button[disabled] {
    opacity: 0.55 !important;
  }
}

/* === Mobile feedback popup must be above header/search/bottom nav === */

@media (max-width: 768px) {
  html.decoriko-mobile-feedback-open,
  html.decoriko-mobile-feedback-open body {
    overflow: hidden !important;
  }

  html.decoriko-mobile-feedback-open .decoriko-mobile-topbar,
  html.decoriko-mobile-feedback-open .decoriko-mobile-search,
  html.decoriko-mobile-feedback-open .decoriko-mobile-bottom-nav {
    display: none !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99980 !important;
    background: #f1f3f5 !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-wrap {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99990 !important;
    width: 100vw !important;
    height: 100dvh !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-skin {
    width: 100vw !important;
    height: 100dvh !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-outer,
  html.decoriko-mobile-feedback-open .fancybox-inner {
    width: 100vw !important;
    height: 100dvh !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-inner {
    overflow-y: auto !important;
    padding: calc(118px + env(safe-area-inset-top)) 18px
      calc(34px + env(safe-area-inset-bottom)) !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close {
    position: fixed !important;
    top: calc(12px + env(safe-area-inset-top)) !important;
    right: 18px !important;
    z-index: 100000 !important;
    width: 92px !important;
    height: 92px !important;
    border-radius: 12px !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close:before,
  html.decoriko-mobile-feedback-open .fancybox-close:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin-left: -11px;
    border-radius: 999px;
    background: #111827;
  }

  html.decoriko-mobile-feedback-open .fancybox-close:before {
    transform: rotate(45deg);
  }

  html.decoriko-mobile-feedback-open .fancybox-close:after {
    transform: rotate(-45deg);
  }

  html.decoriko-mobile-feedback-open .fancybox-close svg,
  html.decoriko-mobile-feedback-open .fancybox-close .svg-icon {
    display: none !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback {
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 26px 20px 20px !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08) !important;
    box-sizing: border-box !important;
  }
}

/* === Mobile feedback popup visual cleanup === */

@media (max-width: 768px) {
  html.decoriko-mobile-feedback-open .fancybox-inner {
    padding: calc(25px + env(safe-area-inset-top)) 14px
      calc(22px + env(safe-area-inset-bottom)) !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close {
    top: calc(14px + env(safe-area-inset-top)) !important;
    right: 14px !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 16px !important;
  }

  html.decoriko-mobile-feedback-open .fancybox-close:before,
  html.decoriko-mobile-feedback-open .fancybox-close:after {
    width: 20px !important;
    height: 2px !important;
    margin-left: -10px !important;
    background: #111827 !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 28px 18px 18px !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08) !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback-title,
  html.decoriko-mobile-feedback-open .mfeedback h2,
  html.decoriko-mobile-feedback-open .mfeedback .title {
    margin: 0 0 10px !important;
    color: #071225 !important;
    font-size: 26px !important;
    line-height: 31px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback-subtitle,
  html.decoriko-mobile-feedback-open .mfeedback .subtitle {
    margin: 0 0 20px !important;
    color: #667085 !important;
    font-size: 16px !important;
    line-height: 23px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .mf-name,
  html.decoriko-mobile-feedback-open .mfeedback .mf-email,
  html.decoriko-mobile-feedback-open .mfeedback .mf-message {
    margin-bottom: 13px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .mf-text {
    margin-bottom: 7px !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 20px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input[type='text'],
  html.decoriko-mobile-feedback-open .mfeedback input[type='email'],
  html.decoriko-mobile-feedback-open .mfeedback textarea {
    width: 100% !important;
    border: 1px solid #dfe5ec !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 16px !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input[type='text'],
  html.decoriko-mobile-feedback-open .mfeedback input[type='email'] {
    height: 56px !important;
    padding: 0 16px !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback textarea {
    height: 128px !important;
    min-height: 128px !important;
    padding: 14px 16px !important;
    resize: vertical !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback input:focus,
  html.decoriko-mobile-feedback-open .mfeedback textarea:focus {
    border-color: #b8ddc1 !important;
    box-shadow: 0 0 0 3px rgba(21, 152, 58, 0.08) !important;
  }

  html.decoriko-mobile-feedback-open .captcha_container {
    margin: 12px 0 14px !important;
    padding: 12px !important;
    border: 1px solid #e5eaf0 !important;
    border-radius: 16px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-feedback-open .smart-captcha {
    max-width: 100% !important;
    transform-origin: left top !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .submit_button,
  html.decoriko-mobile-feedback-open .mfeedback input[type='submit'] {
    display: block !important;
    width: 100% !important;
    height: 58px !important;
    margin: 14px 0 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: #15983a !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 58px !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: none !important;
  }
}

/* === Remove extra captcha wrapper border on mobile popups === */

@media (max-width: 768px) {
  html.decoriko-mobile-feedback-open .mfeedback .captcha_container,
  html.decoriko-mobile-recall-open .someform .captcha_container {
    margin: 12px 0 14px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback #captcha-container,
  html.decoriko-mobile-feedback-open .mfeedback .smart-captcha,
  html.decoriko-mobile-recall-open .someform #captcha-container,
  html.decoriko-mobile-recall-open .someform .smart-captcha {
    width: 100% !important;
    max-width: 100% !important;
  }

  html.decoriko-mobile-feedback-open .mfeedback .captcha_container iframe,
  html.decoriko-mobile-recall-open .someform .captcha_container iframe {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .decoriko-mobile-payments img[alt='СБП'] {
    max-width: 82px;
    max-height: 30px;
  }
  .block_pay .sbp img {
    max-width: 72px;
    max-height: 42px;
  }
}

@media (min-width: 769px) {
  footer .block_pay {
    display: grid !important;
    grid-template-columns: repeat(3, 68px) !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    margin: 12px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  footer .block_pay a {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 68px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
  }

  footer .block_pay img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  footer .block_pay .yandexkassa img {
    max-width: 64px !important;
    max-height: 24px !important;
  }

  footer .block_pay .sbp img {
    max-width: 66px !important;
    max-height: 30px !important;
  }

  footer .block_pay .mir img {
    max-width: 58px !important;
    max-height: 28px !important;
  }

  footer .block_pay .clr {
    display: none !important;
  }
}

@media (min-width: 769px) {
  footer .footmenu .title {
    margin-bottom: 10px !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
  }

  footer .block_pay {
    display: grid !important;
    grid-template-columns: 78px 78px 78px !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 8px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }

  footer .block_pay a {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 78px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
  }

  footer .block_pay img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  footer .block_pay .yandexkassa img {
    max-width: 66px !important;
    max-height: 24px !important;
  }

  footer .block_pay .sbp img {
    max-width: 72px !important;
    max-height: 32px !important;
  }

  footer .block_pay .mir img {
    max-width: 56px !important;
    max-height: 24px !important;
  }

  footer .block_pay .clr {
    display: none !important;
  }
}

/* === Mobile real-device popup height fix: recall + feedback === */

@media (max-width: 768px) {
  html.decoriko-mobile-recall-open,
  html.decoriko-mobile-feedback-open,
  html.decoriko-mobile-recall-open body,
  html.decoriko-mobile-feedback-open body {
    overflow: hidden !important;
    height: var(--dm-popup-vh, 100svh) !important;
  }

  html.decoriko-mobile-recall-open .fancybox-overlay,
  html.decoriko-mobile-feedback-open .fancybox-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99980 !important;
    width: 100vw !important;
    height: var(--dm-popup-vh, 100svh) !important;
    min-height: 0 !important;
    background: #f1f3f5 !important;
    overflow: hidden !important;
  }

  html.decoriko-mobile-recall-open .fancybox-wrap,
  html.decoriko-mobile-feedback-open .fancybox-wrap {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99990 !important;
    width: 100vw !important;
    height: var(--dm-popup-vh, 100svh) !important;
    min-height: 0 !important;
    max-height: var(--dm-popup-vh, 100svh) !important;
    overflow: hidden !important;
  }

  html.decoriko-mobile-recall-open .fancybox-skin,
  html.decoriko-mobile-feedback-open .fancybox-skin,
  html.decoriko-mobile-recall-open .fancybox-outer,
  html.decoriko-mobile-feedback-open .fancybox-outer {
    width: 100vw !important;
    height: var(--dm-popup-vh, 100svh) !important;
    min-height: 0 !important;
    max-height: var(--dm-popup-vh, 100svh) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-recall-open .fancybox-inner,
  html.decoriko-mobile-feedback-open .fancybox-inner {
    width: 100vw !important;
    height: var(--dm-popup-vh, 100svh) !important;
    min-height: 0 !important;
    max-height: var(--dm-popup-vh, 100svh) !important;
    padding: calc(18px + env(safe-area-inset-top)) 14px
      calc(28px + env(safe-area-inset-bottom)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-recall-open .fancybox-inner::after,
  html.decoriko-mobile-feedback-open .fancybox-inner::after {
    content: '';
    display: block;
    height: calc(18px + env(safe-area-inset-bottom));
  }

  html.decoriko-mobile-recall-open .someform,
  html.decoriko-mobile-feedback-open .mfeedback {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  html.decoriko-mobile-recall-open .fancybox-close,
  html.decoriko-mobile-feedback-open .fancybox-close {
    position: fixed !important;
    top: calc(12px + env(safe-area-inset-top)) !important;
    right: 12px !important;
    z-index: 100000 !important;
  }

  html.decoriko-mobile-recall-open .decoriko-mobile-bottom-nav,
  html.decoriko-mobile-feedback-open .decoriko-mobile-bottom-nav,
  html.decoriko-mobile-recall-open .decoriko-mobile-topbar,
  html.decoriko-mobile-feedback-open .decoriko-mobile-topbar,
  html.decoriko-mobile-recall-open .decoriko-mobile-search,
  html.decoriko-mobile-feedback-open .decoriko-mobile-search {
    display: none !important;
  }
}

/* === Mobile Bitrix search.title slot === */

@media (max-width: 768px) {
  :root {
    --dm-header-h: 58px;
    --dm-search-h: 58px;
  }

  body.adaptive > .body {
    padding-top: calc(
      var(--dm-header-h) + var(--dm-search-h) + env(safe-area-inset-top)
    ) !important;
  }

  .decoriko-mobile-topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9020 !important;
    height: var(--dm-header-h) !important;
    box-sizing: content-box !important;
  }

  .decoriko-mobile-search {
    position: fixed !important;
    top: calc(var(--dm-header-h) + env(safe-area-inset-top)) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9019 !important;
    display: block !important;
    height: var(--dm-search-h) !important;
    padding: 7px 3px 8px !important;
    border-bottom: 1px solid #e5e9ed !important;
    background: #fff !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-search-inner {
    display: block !important;
    width: 100%;
    min-width: 0;
  }

  .decoriko-mobile-search-fallback {
    display: block !important;
    margin: 0 !important;
  }

  .decoriko-mobile-search-fallback[hidden] {
    display: none !important;
  }

  .decoriko-mobile-search #title-search.searchinhead {
    display: block !important;
    width: 97% !important;
    height: 43px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e1e6ec !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    top: unset !important;
  }

  .decoriko-mobile-search #title-search form {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 41px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .decoriko-mobile-search #title-search form:before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    background-color: #9aa1aa;
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 18a7.2 7.2 0 1 1 0-14.4 7.2 7.2 0 0 1 0 14.4Zm0-2a5.2 5.2 0 1 0 0-10.4 5.2 5.2 0 0 0 0 10.4Zm5.6.2 4 4-1.4 1.4-4-4 1.4-1.4Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 18a7.2 7.2 0 1 1 0-14.4 7.2 7.2 0 0 1 0 14.4Zm0-2a5.2 5.2 0 1 0 0-10.4 5.2 5.2 0 0 0 0 10.4Zm5.6.2 4 4-1.4 1.4-4-4 1.4-1.4Z'/%3E%3C/svg%3E")
      center / contain no-repeat;
  }

  .decoriko-mobile-search #title-search label.zoom,
  .decoriko-mobile-search #title-search label.enter,
  .decoriko-mobile-search #title-search input.nonep {
    display: none !important;
  }

  .decoriko-mobile-search #title-search .aroundtext {
    display: block !important;
    width: 100% !important;
    height: 41px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .decoriko-mobile-search #title-search-input,
  .decoriko-mobile-search #title-search-input:focus,
  .decoriko-mobile-search #title-search-input:focus-visible,
  .decoriko-mobile-search #title-search-input:active {
    display: block !important;
    width: 100% !important;
    height: 41px !important;
    margin: 0 !important;
    padding: 0 12px 0 42px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 41px !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .decoriko-mobile-search #title-search-input::placeholder {
    color: #9aa1aa !important;
    opacity: 1 !important;
  }

  .decoriko-mobile-search #title-search.focus,
  .decoriko-mobile-search #title-search:focus-within,
  .decoriko-mobile-header-search:focus-within {
    border-color: rgba(21, 152, 58, 0.42) !important;
    box-shadow: 0 0 0 3px rgba(21, 152, 58, 0.08) !important;
  }

  body > div.title-search-result {
    position: fixed !important;
    top: calc(
      var(--dm-header-h) + var(--dm-search-h) + env(safe-area-inset-top) + 6px
    ) !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 9050 !important;
    width: auto !important;
    max-width: none !important;
    max-height: 65vh !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  html.decoriko-menu-open body > div.title-search-result {
    display: none !important;
  }

  body > div.title-search-result table.title-search-result,
  body > div.title-search-result .title-search-result {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  body > div.title-search-result tbody,
  body > div.title-search-result tr,
  body > div.title-search-result td {
    display: block !important;
    width: 100% !important;
  }

  body > div.title-search-result .stitle {
    padding: 8px 0 !important;
    border: 0 !important;
    background: #fff !important;
  }

  body > div.title-search-result .stitle .title {
    margin: 0 !important;
    padding: 12px 16px 7px !important;
    border: 0 !important;
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 16px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
  }

  body > div.title-search-result .stitle .iblock .item {
    display: block !important;
    padding: 10px 16px !important;
    border-top: 1px solid #f1f3f5 !important;
    color: #111827 !important;
    text-decoration: none !important;
    background: #fff !important;
  }

  body > div.title-search-result .stitle .iblock .item:active,
  body > div.title-search-result .stitle .iblock .item:hover {
    color: #111827 !important;
    background: #f7f8fa !important;
  }

  body > div.title-search-result .stitle .iblock .catitem .inner {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 46px !important;
  }

  body > div.title-search-result .stitle .iblock .catitem .name {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    float: none !important;
    color: #111827 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
  }

  body > div.title-search-result .stitle .iblock .catitem .pic {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 10px 0 0 !important;
    border-radius: 10px !important;
    background: #f6f7f8 !important;
    overflow: hidden !important;
    text-align: center !important;
  }

  body > div.title-search-result .stitle .iblock .catitem img,
  body > div.title-search-result .stitle .iblock .catitem img.icon {
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  body > div.title-search-result .stitle .iblock .catitem .prs {
    flex: 0 0 auto !important;
    margin: 0 0 0 10px !important;
    padding: 0 !important;
    float: none !important;
    color: #15983a !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 18px !important;
    white-space: nowrap !important;
  }

  body > div.title-search-result .title-search-fader {
    display: none !important;
  }
}
