.mobile-bottom-nav {
  display: none;
}

.mobile-menu-fab,
.mobile-cart-fab {
  display: none;
}

@media (min-width: 901px) {
  .home-nav,
  .vm-nav {
    overflow: visible;
  }

  .catalog-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .catalog-popover {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 1600;
    width: min(1240px, calc(100vw - 56px));
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 26px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 54px rgba(45, 49, 66, .13);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-28%, 8px) scale(.985);
    transform-origin: 160px top;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .catalog-popover::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
  }

  .catalog-dropdown:hover .catalog-popover,
  .catalog-dropdown:focus-within .catalog-popover,
  .catalog-dropdown.is-open .catalog-popover {
    opacity: 1;
    visibility: visible;
    transform: translate(-28%, 0) scale(1);
    pointer-events: auto;
  }

  .catalog-popover__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #eef2f6;
    color: #2d3142;
  }

  .catalog-popover__head strong {
    font-family: Oswald, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .catalog-popover__head span {
    color: #8b95a3;
    font-size: 13px;
    font-weight: 500;
  }

  .catalog-popover__grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
    padding-top: 14px;
  }

  .catalog-popover a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 142px;
    padding: 10px;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    background: #fff;
    color: #2d3142 !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: normal;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  }

  .catalog-popover a:hover {
    border-color: color-mix(in srgb, var(--tile, #edf4fb) 55%, #dbe5ef);
    box-shadow: 0 12px 28px rgba(45, 49, 66, .08);
    color: #1764E8 !important;
    transform: translateY(-2px);
  }

  .catalog-popover i {
    display: grid;
    place-items: center;
    width: 100%;
    height: 76px;
    flex: 0 0 76px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--tile, #edf4fb);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
  }

  .catalog-popover i img {
    width: 86px;
    height: 68px;
    object-fit: contain;
    transform: scale(1.04);
  }

  .catalog-popover span {
    display: block;
    min-width: 0;
  }

  .catalog-popover span strong {
    display: block;
    color: #2d3142;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.18;
  }

  .catalog-popover span em {
    display: block;
    margin-top: 4px;
    color: #8b95a3;
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
  }

  .catalog-popover b {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .16s ease, transform .16s ease;
  }

  .catalog-popover a:hover b {
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 1180px) {
    .catalog-popover {
      width: min(760px, calc(100vw - 40px));
      transform: translate(-24%, 8px) scale(.985);
    }

    .catalog-dropdown:hover .catalog-popover,
    .catalog-dropdown:focus-within .catalog-popover,
    .catalog-dropdown.is-open .catalog-popover {
      transform: translate(-24%, 0) scale(1);
    }

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

@media (max-width: 900px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }

  body {
    background: #f8f9fa;
    padding-bottom: 0;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
    height: auto;
  }

  a,
  button,
  input,
  textarea,
  select {
    max-width: 100%;
  }

  .home-frame,
  .catalog-frame,
  .coffee-frame,
  .plant-frame,
  .water-frame,
  .ice-frame,
  .syrups-frame,
  .cups-frame,
  .search-frame,
  .cart-frame,
  .checkout-frame,
  .product-frame,
  .success-frame,
  .delivery-frame,
  .contacts-frame,
  .bubble-page {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: #f8f9fa;
  }

  .home-header,
  .vm-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: 58px !important;
    padding: 0 !important;
    transform: none !important;
    background: rgba(255, 255, 255, .96) !important;
    border-bottom: 1px solid #eef0f3 !important;
    backdrop-filter: blur(10px);
  }

  .home-header__inner,
  .vm-header__inner {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    overflow: visible !important;
    justify-content: flex-start !important;
  }

  .home-brand,
  .vm-brand {
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  .home-brand img,
  .vm-brand img {
    width: 138px !important;
    height: auto !important;
    max-height: 42px !important;
    object-fit: contain !important;
  }

  .home-nav,
  .vm-nav,
  .home-phone,
  .vm-phone,
  .home-search,
  .vm-search {
    display: none !important;
  }

  .home-cart,
  .vm-cart {
    position: fixed !important;
    left: auto !important;
    top: 9px !important;
    right: 58px !important;
    margin-left: auto !important;
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1300 !important;
    background: #f2f4f6 !important;
  }

  .home-burger,
  .vm-burger {
    display: flex !important;
    position: fixed !important;
    top: 9px !important;
    right: 12px !important;
    left: auto !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 9px !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    border: 0 !important;
    background: transparent !important;
    order: 4 !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1301 !important;
    background: #fff !important;
    border-radius: 999px !important;
  }

  .home-header__inner > *,
  .vm-header__inner > * {
    min-width: 0 !important;
  }

  .home-burger span,
  .vm-burger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #2d3142;
  }

  .home-mobile-menu,
  .vm-mobile-menu {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: 68px !important;
    z-index: 999 !important;
    display: none !important;
    width: auto !important;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    flex-direction: column !important;
    padding: 10px 16px 18px !important;
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid #eef0f3 !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(45, 49, 66, .18) !important;
    backdrop-filter: blur(16px);
  }

  body.menu-open .home-mobile-menu,
  body.menu-open .vm-mobile-menu {
    display: flex !important;
  }

  .home-mobile-menu a,
  .vm-mobile-menu a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 46px;
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 12px 2px !important;
    border-bottom: 1px solid #f1f3f5 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #2d3142 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    text-decoration: none !important;
  }

  .home-mobile-menu .home-catalog-btn,
  .vm-mobile-menu .home-catalog-btn,
  .home-mobile-menu a:first-child,
  .vm-mobile-menu a:first-child {
    min-width: 0 !important;
    padding: 12px 2px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #2d3142 !important;
  }

  .home-mobile-menu a img,
  .vm-mobile-menu a img {
    display: none !important;
  }

  .home-mobile-menu a:last-child,
  .vm-mobile-menu a:last-child {
    border-bottom: 0 !important;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 58px 0 0;
    z-index: 998;
    background: rgba(45, 49, 66, .18);
    backdrop-filter: blur(2px);
  }

  main,
  section,
  article,
  aside,
  nav,
  form,
  footer,
  div {
    max-width: 100%;
  }

  .home-main,
  .catalog-main,
  .cart-main,
  .checkout-main,
  .product-main,
  .success-main,
  .delivery-main,
  .contacts-main,
  .btc-main {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 24px 14px 42px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    overflow: visible !important;
  }

  .home-main > *,
  .catalog-main > *,
  .cart-main > *,
  .checkout-main > *,
  .product-main > *,
  .success-main > *,
  .delivery-main > *,
  .contacts-main > *,
  .btc-main > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-main {
    padding-top: 20px !important;
  }

  .catalog-head,
  .catalog-title,
  .catalog-tools,
  .catalog-sidebar,
  .catalog-content,
  .catalog-promo,
  .catalog-grid,
  .catalog-pages,
  .cart-crumbs,
  .cart-title,
  .cart-content,
  .cart-list,
  .cart-side,
  .cart-related,
  .checkout-crumbs,
  .checkout-title,
  .checkout-head,
  .checkout-layout,
  .checkout-form,
  .checkout-section,
  .checkout-fields,
  .checkout-field,
  .checkout-contact,
  .checkout-contact__grid,
  .checkout-delivery-note,
  .checkout-offer,
  .checkout-agree,
  .checkout-aside,
  .checkout-order,
  .checkout-safe,
  .checkout-help,
  .checkout-side,
  .product-crumbs,
  .product-hero,
  .product-gallery,
  .product-info,
  .product-related,
  .success-hero,
  .success-actions,
  .delivery-crumbs,
  .delivery-title,
  .delivery-hero,
  .delivery-grid,
  .delivery-map,
  .delivery-faq,
  .contacts-crumbs,
  .contacts-hero,
  .contacts-grid,
  .contacts-consultation,
  .contacts-info,
  .contacts-map {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .catalog-title,
  .cart-title,
  .checkout-title,
  .checkout-head,
  .product-hero,
  .delivery-title,
  .contacts-hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  h1,
  .catalog-title h1,
  .cart-title h1,
  .checkout-title h1,
  .checkout-head h1,
  .product-info h1,
  .delivery-title h1,
  .contacts-hero h1,
  .btc-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(26px, 7.4vw, 36px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  h2 {
    overflow-wrap: break-word !important;
  }

  p {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  body :where(main, section, article, aside, nav, form, footer, div, p, h1, h2, h3, h4, a, button, label, input, textarea) {
    max-width: 100% !important;
  }

  .catalog-crumbs,
  .cart-crumbs,
  .checkout-crumbs,
  .product-crumbs,
  .delivery-crumbs,
  .contacts-crumbs,
  .btc-crumbs {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 18px !important;
  }

  .catalog-tools {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .catalog-tools > button,
  .btc-sort button {
    width: 100% !important;
    height: 42px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
  }

  .catalog-sidebar,
  .cart-total,
  .cart-payment,
  .checkout-side,
  .catalog-promo,
  .delivery-hero,
  .contacts-consultation,
  .success-hero {
    padding: 18px !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(45, 49, 66, .04) !important;
  }

  .catalog-sidebar nav,
  .btc-cats {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .catalog-sidebar nav > a,
  .btc-cats > a {
    width: 100% !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .catalog-sub,
  .btc-tabs,
  .btc-cats {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-sub {
    flex-wrap: nowrap !important;
    gap: 14px !important;
    padding: 2px 0 6px 30px !important;
  }

  .catalog-sub:not(.is-open) {
    display: none !important;
  }

  .catalog-sub.is-open {
    display: flex !important;
  }

  .catalog-sub a {
    flex: 0 0 auto !important;
  }

  .catalog-promo {
    overflow: hidden !important;
  }

  .catalog-promo > img {
    display: none !important;
  }

  .catalog-promo__text {
    position: static !important;
    width: 100% !important;
    height: auto !important;
  }

  .catalog-promo__text h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .catalog-grid,
  .coffee-grid,
  .search-grid,
  .cart-related-grid,
  .bubble-product-grid {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .milk-card,
  .coffee-card,
  .cart-card-small {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  .milk-card__image,
  .coffee-card__image {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .milk-card__image > img,
  .coffee-card__image > img {
    position: absolute !important;
    left: 10% !important;
    top: 10% !important;
    width: 80% !important;
    height: 80% !important;
    object-fit: contain !important;
  }

  .milk-card h3,
  .coffee-card h3 {
    width: 100% !important;
    min-height: 0 !important;
    margin: 10px 0 0 !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    color: #2d3142 !important;
    font-size: 15px !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere !important;
  }

  .milk-card p,
  .coffee-card p {
    width: 100% !important;
    margin: 6px 0 0 !important;
    color: #8b95a5 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .milk-card > div:last-child,
  .coffee-card > div:last-child {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin-top: auto !important;
    padding-top: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 3px 8px !important;
    align-items: end !important;
  }

  .milk-card strong,
  .coffee-card strong {
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .milk-card small,
  .coffee-card small {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .milk-card > div:last-child button,
  .coffee-card > div:last-child button,
  .product-add,
  .milk-add {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    align-self: end !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 50% !important;
  }

  .home-hero,
  .home-catalog,
  .home-about,
  .home-faq,
  .home-delivery,
  .home-reviews,
  .home-contacts {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .home-hero {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
    border-radius: 0 0 24px 24px !important;
    overflow: hidden !important;
    text-align: left !important;
  }

  .home-hero__content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-hero h1,
  .home-discount {
    max-width: 302px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-hero h1 {
    font-size: 23px !important;
    line-height: 1.07 !important;
    overflow-wrap: anywhere !important;
  }

  .home-hero__actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .home-btn,
  .home-hero__actions a {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 52px !important;
    padding: 0 18px !important;
  }

  .home-section-head,
  .home-faq__head {
    display: block !important;
    margin-bottom: 16px !important;
  }

  .home-section-head > div {
    display: none !important;
  }

  .home-section-head h2,
  .home-faq__head h2 {
    font-size: 32px !important;
    line-height: 1.05 !important;
  }

  .home-section-head p,
  .home-faq__head p {
    margin-top: 8px !important;
    text-align: left !important;
  }

  .home-catalog-grid,
  .home-about-layout,
  .home-about-row,
  .home-about-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    height: auto !important;
  }

  .home-cat {
    position: relative !important;
    width: 100% !important;
    min-height: 148px !important;
    padding: 22px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .home-cat h3 {
    max-width: calc(100% - 58px) !important;
    color: #fff !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.34) !important;
  }

  .home-cat p {
    display: none !important;
  }

  .home-cat > img,
  .home-cat--milk > img,
  .home-cat--coffee > img,
  .home-cat--water > img,
  .home-cat--syrup > img,
  .home-cat--ice > img {
    position: absolute !important;
    inset: 0 !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .home-cat i,
  .home-cat--milk i {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 36px !important;
    height: 36px !important;
  }

  .home-about article,
  .home-faq button {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
    border-radius: 20px !important;
  }

  .home-about article p br {
    display: none !important;
  }

  .home-about-row--reverse .home-about-image {
    order: 2 !important;
  }

  .home-about-row--reverse .home-about-cards {
    order: 1 !important;
  }

  .home-about-image {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-height: 280px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #e8eaed !important;
  }

  .home-about-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    aspect-ratio: 1.12 / 1 !important;
    object-fit: cover !important;
  }

  .cart-content,
  .checkout-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .cart-list__head {
    display: none !important;
  }

  .cart-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 14px !important;
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 12px !important;
    border-radius: 18px !important;
    background: #fff !important;
  }

  .cart-item__image {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 92px !important;
    height: 92px !important;
    grid-row: 1 / span 3 !important;
    border-radius: 14px !important;
  }

  .cart-item__body,
  .cart-item__price,
  .cart-remove {
    position: static !important;
    width: auto !important;
    height: auto !important;
  }

  .cart-remove {
    position: absolute !important;
    right: 12px !important;
    top: 12px !important;
  }

  .cart-item__price {
    grid-column: 2 !important;
  }

  .checkout-form,
  .checkout-side,
  .cart-side,
  .cart-total {
    width: 100% !important;
  }

  .checkout-section {
    padding: 18px !important;
    border-radius: 22px !important;
    background: #fff !important;
  }

  .checkout-section__title {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .checkout-section__title h2 {
    min-width: 0 !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
  }

  .checkout-fields,
  .checkout-fields--two,
  .checkout-contact__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .checkout-contact label,
  .checkout-contact label span {
    width: 100% !important;
    min-width: 0 !important;
  }

  .checkout-field--wide {
    width: 100% !important;
  }

  .checkout-head p,
  .catalog-title p,
  .catalog-promo__text p {
    max-width: 302px !important;
  }

  .home-hero__content,
  .home-hero h1,
  .home-discount,
  .checkout-head,
  .checkout-head h1,
  .checkout-head p,
  .catalog-title,
  .catalog-title h1,
  .catalog-promo__text,
  .catalog-promo__text h2,
  .catalog-promo__text p {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-btn img,
  .home-btn--dark img {
    flex: 0 0 14px !important;
    width: 14px !important;
    min-width: 14px !important;
  }

  .home-btn--dark img {
    display: none !important;
  }

  .home-btn--dark::after {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    font-size: 22px;
    line-height: 1;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select,
  .contacts-consultation input,
  .contacts-consultation textarea,
  .bubble-form input,
  .bubble-form textarea,
  .bubble-form select {
    width: 100% !important;
    min-width: 0 !important;
  }

  .btc-wrap,
  .btc-layout,
  .btc-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .btc-crumbbar,
  .btc-hero {
    overflow-x: hidden !important;
  }

  .btc-hero__inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 32px 14px !important;
  }

  .btc-hero__text,
  .btc-hero p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .btc-hero__img {
    display: none !important;
  }

  .btc-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .btc-side {
    position: static !important;
    width: 100% !important;
  }

  .btc-cats {
    flex-direction: row !important;
    gap: 10px !important;
    padding-bottom: 6px !important;
  }

  .btc-cats > a {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    padding: 0 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .btc-subcats {
    display: none !important;
  }

  .btc-toolbar {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .btc-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .btc-tabs button {
    flex: 0 0 auto !important;
  }

  .btc-sort {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
  }

  .btc-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .btc-card {
    min-width: 0 !important;
  }

  .btc-card__body {
    padding-top: 10px !important;
  }

  .btc-card h3 {
    font-size: 15px !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere !important;
  }

  .btc-buy {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .btc-stepper {
    justify-content: space-between !important;
  }

  .btc-add {
    width: 100% !important;
    min-width: 0 !important;
  }

  .home-footer,
  .vm-footer {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    background: #fff !important;
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .home-footer__top,
  .home-footer__actions,
  .home-footer__bottom,
  .vm-footer__inner,
  .vm-footer__top,
  .vm-footer__bottom {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .home-footer__top,
  .vm-footer__inner {
    padding-top: 28px !important;
  }

  .home-footer__top,
  .vm-footer__top {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
    row-gap: 22px !important;
  }

  .home-footer__brand,
  .vm-footer__brand {
    grid-column: 1 / -1 !important;
  }

  .home-footer__bottom,
  .vm-footer__bottom {
    padding-top: 14px !important;
    padding-bottom: 18px !important;
    border-top: 1px solid #eef0f3 !important;
  }

  .home-footer section,
  .vm-footer section,
  .home-footer__brand,
  .vm-footer__brand {
    position: static !important;
    width: 100% !important;
    height: auto !important;
  }

  .home-footer__brand img,
  .vm-footer__brand img {
    width: min(220px, 74vw) !important;
    height: auto !important;
    margin: 0 0 10px !important;
    object-fit: contain !important;
  }

  .home-footer__brand p,
  .vm-footer__brand p {
    margin: 0 !important;
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .home-footer h4,
  .vm-footer h4 {
    margin: 0 0 10px !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
  }

  .home-footer__top section > a,
  .vm-footer__col a {
    margin-bottom: 7px !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .home-footer__top section > a.home-footer__social,
  .vm-footer__col a.vm-footer__social {
    display: inline-flex !important;
  }

  .home-footer__social,
  .vm-footer__social {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 28px !important;
    margin-bottom: 8px !important;
    color: #6b7280 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .home-footer__social img,
  .vm-footer__social img {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
  }

  .home-footer__social span,
  .vm-footer__social span {
    display: inline-block !important;
    min-width: 0 !important;
  }

  .home-footer__social b,
  .vm-footer__social b {
    display: inline-grid !important;
    place-items: center !important;
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    border-radius: 7px !important;
    background: #111827 !important;
    color: #fff !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: -.3px !important;
  }

  .home-footer__actions,
  .vm-footer__actions {
    gap: 10px !important;
    padding-top: 14px !important;
  }

  .home-footer__phone,
  .home-footer__cta,
  .vm-footer__phone,
  .vm-footer__cta {
    width: 100% !important;
    height: 48px !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 16px !important;
  }

  .home-footer__bottom,
  .vm-footer__bottom,
  .home-footer__bottom div,
  .vm-footer__bottom div {
    gap: 8px !important;
    align-items: flex-start !important;
  }

  .home-footer__bottom,
  .home-footer__bottom a,
  .vm-footer__bottom,
  .vm-footer__bottom a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .mobile-bottom-nav {
    display: none !important;
  }

  .mobile-bottom-nav a {
    display: flex;
    min-width: 0;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 18px;
    color: #4b5563;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-bottom-nav a.is-active,
  .mobile-bottom-nav a:active {
    background: #edf5ff;
    color: #1764E8;
  }

  .mobile-bottom-nav b {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    font-size: 16px;
    line-height: 1;
  }

  .mobile-cart-fab,
  .mobile-menu-fab {
    display: none !important;
  }

  .mobile-cart-fab {
    left: min(calc(100vw - 98px), 292px);
    right: auto;
    color: #2d3142;
    text-decoration: none;
  }

  .mobile-menu-fab {
    left: min(calc(100vw - 52px), 338px);
    right: auto;
    border: 0;
  }

  .mobile-menu-fab span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 2px;
    background: #2d3142;
  }

  .cart-wholesale p,
  .cart-payment p,
  .checkout-delivery-note p,
  .checkout-offer p,
  .bubble-hero p,
  .btc-hero p {
    max-width: 302px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .bubble-hero h1,
  .btc-hero h1 {
    max-width: 330px !important;
    font-size: 25px !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }

  .catalog-tools,
  .btc-tabs,
  .catalog-sub {
    scrollbar-width: none;
  }

  .catalog-tools::-webkit-scrollbar,
  .btc-tabs::-webkit-scrollbar,
  .catalog-sub::-webkit-scrollbar {
    display: none;
  }

  .milk-card,
  .coffee-card,
  .btc-card,
  .home-cat {
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .milk-card:active,
  .coffee-card:active,
  .btc-card:active,
  .home-cat:active {
    transform: scale(.985);
  }
}

@media (min-width: 901px) {
  .home-btn--dark img {
    display: block !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 14px !important;
    height: 16px !important;
    min-width: 14px !important;
    flex: 0 0 14px !important;
    object-fit: contain !important;
  }

  .home-btn--dark::after {
    content: none !important;
    display: none !important;
  }

  .home-search,
  .catalog-search,
  .contacts-search,
  .delivery-search {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    overflow: visible !important;
  }

  .home-search span,
  .home-search b,
  .catalog-search span,
  .catalog-search b,
  .contacts-search span,
  .contacts-search b,
  .delivery-search span,
  .delivery-search b {
    position: static !important;
    left: auto !important;
    top: auto !important;
  }

  .header-search__input {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #2d3142 !important;
    font: 400 14px/1 Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  }

  .header-search__input::placeholder {
    color: #8f97a5 !important;
    opacity: 1 !important;
  }

  .header-search__button {
    display: grid !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    cursor: pointer !important;
  }

  .header-search__button img {
    position: static !important;
    width: 13px !important;
    height: 13px !important;
  }

  .header-search__results {
    position: absolute !important;
    z-index: 80 !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    display: none !important;
    width: 380px !important;
    max-height: 360px !important;
    padding: 10px !important;
    overflow-y: auto !important;
    border: 1px solid #e3e9f0 !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.99) !important;
    box-shadow: 0 22px 46px rgba(31,41,55,.16) !important;
  }

  .header-search__results.is-open {
    display: grid !important;
    gap: 6px !important;
  }

  .header-search__result {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    color: #2d3142 !important;
    text-decoration: none !important;
  }

  .header-search__result:hover {
    background: #eef6fd !important;
  }

  .header-search__result strong,
  .header-search__result small {
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .header-search__result strong {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .header-search__result small {
    margin-top: 3px !important;
    color: #8b95a3 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .header-search__result b {
    color: #1764E8 !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .header-search__results p {
    margin: 0 !important;
    padding: 12px 14px !important;
    color: #8b95a3 !important;
    font-size: 14px !important;
  }

  .catalog-popover {
    position: fixed !important;
    top: 84px !important;
    left: 50% !important;
    width: min(1280px, calc(100vw - 52px)) !important;
    min-height: 548px !important;
    max-height: min(680px, calc(100vh - 112px)) !important;
    padding: 28px 30px 30px !important;
    overflow: hidden !important;
    border: 1px solid #dfe6ef !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.99) !important;
    box-shadow: 0 26px 60px rgba(31, 41, 55, .12), 0 8px 22px rgba(31, 41, 55, .07) !important;
    transform: translate(-50%, 10px) scale(.99) !important;
  }

  .catalog-popover::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -24px !important;
    height: 28px !important;
    background: transparent !important;
  }

  .catalog-dropdown:hover .catalog-popover,
  .catalog-dropdown:focus-within .catalog-popover,
  .catalog-dropdown.is-open .catalog-popover {
    transform: translate(-50%, 0) scale(1) !important;
  }

  .catalog-popover__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 0 22px !important;
    border-bottom: 1px solid #eef2f6 !important;
  }

  .catalog-popover__head strong {
    font-family: Oswald, Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
  }

  .catalog-popover__head a {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #8b95a3 !important;
    font-size: 16px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transform: none !important;
  }

  .catalog-popover__head a:hover {
    color: #1764E8 !important;
  }

  .catalog-popover__tabs,
  .catalog-popover__columns,
  .catalog-popover__matrix {
    display: none !important;
  }

  .catalog-popover__body {
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) !important;
    gap: 30px !important;
    min-height: 438px !important;
    padding-top: 22px !important;
  }

  .catalog-popover__side {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    max-height: none !important;
    padding: 0 18px 0 0 !important;
    overflow: visible !important;
    border-right: 1px solid #edf2f7 !important;
    scrollbar-width: thin !important;
    scrollbar-color: #d2dbe7 transparent !important;
  }

  .catalog-popover__side::-webkit-scrollbar,
  .catalog-popover__content::-webkit-scrollbar {
    width: 6px !important;
  }

  .catalog-popover__side::-webkit-scrollbar-thumb,
  .catalog-popover__content::-webkit-scrollbar-thumb {
    border-radius: 999px !important;
    background: #d2dbe7 !important;
  }

  .catalog-popover__side button {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: transparent !important;
    color: #2d3142 !important;
    font: 750 16px/1.2 Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background .18s ease, color .18s ease, transform .18s ease !important;
  }

  .catalog-popover__side button::after {
    content: "→" !important;
    color: #a6afbd !important;
    font-size: 18px !important;
    line-height: 1 !important;
    transition: transform .18s ease, color .18s ease !important;
  }

  .catalog-popover__side button:hover,
  .catalog-popover__side button.is-active {
    background: #eef6fd !important;
    color: #1764E8 !important;
  }

  .catalog-popover__side button:hover::after,
  .catalog-popover__side button.is-active::after {
    color: #1764E8 !important;
    transform: translateX(3px) !important;
  }

  .catalog-popover__content {
    position: relative !important;
    min-height: 438px !important;
    max-height: 438px !important;
    overflow-y: auto !important;
    padding: 0 6px 0 0 !important;
  }

  .catalog-popover__content section {
    display: none !important;
    animation: catalogPanelIn .18s ease both !important;
  }

  .catalog-popover__content section.is-active {
    display: block !important;
  }

  .catalog-popover__content section > div {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-bottom: 22px !important;
  }

  .catalog-popover__title {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    color: #2d3142 !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    text-decoration: none !important;
    transform: none !important;
  }

  .catalog-popover__all {
    display: inline-flex !important;
    width: auto !important;
    min-width: max-content !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #8b95a3 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transform: none !important;
  }

  .catalog-popover__content ul {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    column-gap: 34px !important;
    row-gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .catalog-popover__content li {
    margin: 0 !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid #f0f3f7 !important;
  }

  .catalog-popover__content li a {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #6f7a8a !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    text-decoration: none !important;
    white-space: normal !important;
    transform: none !important;
  }

  .catalog-popover__title:hover,
  .catalog-popover__all:hover,
  .catalog-popover__content li a:hover {
    color: #1764E8 !important;
  }

  @keyframes catalogPanelIn {
    from {
      opacity: 0;
      transform: translateX(8px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 1180px) {
    .catalog-popover {
      width: min(980px, calc(100vw - 40px)) !important;
      transform: translate(-50%, 8px) scale(.985) !important;
    }

    .catalog-popover__body {
      grid-template-columns: 280px minmax(0, 1fr) !important;
      gap: 22px !important;
    }

    .catalog-popover__content ul {
      grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
    }

    .catalog-dropdown:hover .catalog-popover,
    .catalog-dropdown:focus-within .catalog-popover,
    .catalog-dropdown.is-open .catalog-popover {
      transform: translate(-50%, 0) scale(1) !important;
    }
  }
}

@media (max-width: 520px) {
  h1,
  .home-hero h1,
  .catalog-title h1,
  .cart-title h1,
  .checkout-head h1,
  .checkout-title h1,
  .btc-hero h1 {
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  .catalog-grid,
  .coffee-grid,
  .search-grid,
  .cart-related-grid,
  .bubble-product-grid,
  .btc-grid {
    grid-template-columns: 1fr !important;
  }

  .milk-card,
  .coffee-card,
  .cart-card-small,
  .btc-card {
    padding: 12px !important;
  }

  .home-cat h3,
  .home-cat p {
    max-width: 68% !important;
  }

  .cart-item {
    grid-template-columns: 86px minmax(0, 1fr) !important;
  }

  .cart-item__image {
    width: 86px !important;
    height: 86px !important;
  }

  .checkout-contact label span {
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    border-radius: 50% !important;
  }
}

@media (max-width: 380px) {
  .home-brand img,
  .vm-brand img {
    width: 132px !important;
  }

  .home-main,
  .catalog-main,
  .cart-main,
  .checkout-main,
  .product-main,
  .success-main,
  .delivery-main,
  .contacts-main,
  .btc-main {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 900px) {
  .checkout-contact input[type="radio"],
  .checkout-agree input[type="checkbox"] {
    position: absolute !important;
    inset: auto !important;
    width: 1px !important;
    height: 1px !important;
    min-width: 1px !important;
    max-width: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .checkout-contact label {
    position: relative !important;
    overflow: hidden !important;
  }

  .mobile-bottom-nav {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 1500 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
    width: auto !important;
    min-height: 64px !important;
    padding: 8px !important;
    border: 1px solid rgba(226, 232, 240, .92) !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 18px 48px rgba(45, 49, 66, .14) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    backdrop-filter: blur(18px) !important;
  }

  .mobile-bottom-nav a {
    position: relative !important;
    display: flex !important;
    min-width: 0 !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    border-radius: 18px !important;
    color: #5f6877 !important;
    font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-bottom-nav a.is-active,
  .mobile-bottom-nav a:active {
    background: #edf5ff !important;
    color: #1764E8 !important;
  }

  .mobile-bottom-nav b {
    position: relative !important;
    display: grid !important;
    width: 22px !important;
    height: 22px !important;
    place-items: center !important;
  }

  .mobile-bottom-nav img {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(33%) sepia(12%) saturate(708%) hue-rotate(178deg) brightness(94%) contrast(86%) !important;
  }

  .mobile-bottom-nav em {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    font-style: normal !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .mobile-contact-icon::before,
  .mobile-contact-icon::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
  }

  .mobile-contact-icon::before {
    left: 2px !important;
    top: 5px !important;
    width: 18px !important;
    height: 13px !important;
    border: 2px solid #4b5563 !important;
    border-radius: 4px !important;
  }

  .mobile-contact-icon::after {
    left: 5px !important;
    top: 7px !important;
    width: 12px !important;
    height: 12px !important;
    border-left: 2px solid #4b5563 !important;
    border-bottom: 2px solid #4b5563 !important;
    transform: rotate(-45deg) !important;
    transform-origin: center !important;
  }

  .mobile-bottom-nav a.is-active .mobile-contact-icon::before,
  .mobile-bottom-nav a:active .mobile-contact-icon::before {
    border-color: #1764E8 !important;
  }

  .mobile-bottom-nav a.is-active .mobile-contact-icon::after,
  .mobile-bottom-nav a:active .mobile-contact-icon::after {
    border-color: #1764E8 !important;
  }

  .mobile-cart-count {
    position: absolute !important;
    top: 4px !important;
    right: 13px !important;
    display: grid !important;
    min-width: 17px !important;
    height: 17px !important;
    padding: 0 5px !important;
    place-items: center !important;
    border: 2px solid #fff !important;
    border-radius: 999px !important;
    background: #1764E8 !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .home-footer,
  .vm-footer {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 760px) {
  .home-catalog {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .home-catalog .home-section-head {
    margin-bottom: 18px !important;
  }

  .home-catalog .home-section-head p {
    display: none !important;
  }

  .home-catalog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .home-cat,
  .home-cat--milk,
  .home-cat--coffee,
  .home-cat--plant,
  .home-cat--water,
  .home-cat--syrup,
  .home-cat--ice,
  .home-cat--cups {
    position: relative !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    min-height: 176px !important;
    aspect-ratio: 1.72 / 1 !important;
    padding: 20px !important;
    border: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #dcebf4 !important;
    box-shadow: 0 14px 34px rgba(45, 49, 66, .08) !important;
  }

  .home-cat::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: rgba(20, 25, 38, .28) !important;
    pointer-events: none !important;
  }

  .home-cat h3,
  .home-cat--milk h3,
  .home-cat--coffee h3,
  .home-cat--plant h3,
  .home-cat--water h3,
  .home-cat--syrup h3,
  .home-cat--ice h3,
  .home-cat--cups h3 {
    position: relative !important;
    z-index: 2 !important;
    max-width: calc(100% - 56px) !important;
    margin-top: auto !important;
    color: #fff !important;
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: .98 !important;
    text-transform: uppercase !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .38) !important;
  }

  .home-cat p {
    display: none !important;
  }

  .home-cat > img,
  .home-cat--milk > img,
  .home-cat--coffee > img,
  .home-cat--plant > img,
  .home-cat--water > img,
  .home-cat--syrup > img,
  .home-cat--ice > img,
  .home-cat--cups > img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .home-cat--milk > img { object-position: 62% center !important; }
  .home-cat--coffee > img { object-position: 50% center !important; }
  .home-cat--plant > img { object-position: 56% center !important; }
  .home-cat--water > img { object-position: 54% center !important; }
  .home-cat--syrup > img { object-position: 50% center !important; }
  .home-cat--ice > img { object-position: center !important; }
  .home-cat--cups > img { object-position: center !important; }

  .home-cat i,
  .home-cat--milk i {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 3 !important;
    width: 38px !important;
    height: 38px !important;
    transform: none !important;
    background: rgba(255, 255, 255, .86) !important;
    box-shadow: 0 8px 20px rgba(20, 25, 38, .14) !important;
  }
}
