.mobile-home-mobileHome {
  display: none;
  width: 100%;
  margin-left: calc(-50vw + 50%);
  padding: 0.75rem;
  background: #f4f6f8;
  color: #172033;
}

.mobile-home-mobileHome.mobile-home-standalone {
  display: block;
}

@media (max-width: 767px) {
  .mobile-home-mobileHome {
    display: block;
  }
}

  .mobile-home-hero {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    background: #0a385d;
    color: #fff;
    overflow: hidden;
    position: relative;
  }

  .mobile-home-hero::after {
    background: linear-gradient(135deg, rgba(10, 56, 93, 0.9), rgba(9, 107, 162, 0.82));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }

  .mobile-home-heroImage {
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .mobile-home-heroCopy,
  .mobile-home-heroActions,
  .mobile-home-trustLine {
    position: relative;
    z-index: 2;
  }

  .mobile-home-heroCopy {
    display: grid;
    gap: 0.35rem;
  }

  .mobile-home-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
  }

  .mobile-home-hero h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.08;
    font-weight: 850;
  }

  .mobile-home-hero p {
    margin: 0;
    max-width: 20rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .mobile-home-heroActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .mobile-home-primaryAction,
  .mobile-home-secondaryAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.55rem 0.65rem;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-home-primaryAction {
    background: #fff;
    color: #07598c;
  }

  .mobile-home-secondaryAction {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-home-trustLine {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-home-trustLine::-webkit-scrollbar {
    display: none;
  }

  .mobile-home-trustLine span {
    flex: 0 0 auto;
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 750;
  }

  .mobile-home-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.65rem;
  }

  .mobile-home-promotions {
    margin-top: 0.65rem;
    padding: 0.8rem;
    overflow: hidden;
    border: 1px solid #cfe4f2;
    border-radius: 10px;
    background: #fff;
  }

  .mobile-home-promotionHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
  }

  .mobile-home-promotionHeading strong {
    font-size: 0.95rem;
  }

  .mobile-home-promotionHeading a {
    color: #0879b8;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-home-promotionScroller {
    display: grid;
    grid-auto-columns: minmax(280px, 96%);
    grid-auto-flow: column;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-home-promotionScroller::-webkit-scrollbar {
    display: none;
  }

  .mobile-home-promotionSlide {
    position: relative;
    display: grid;
    min-height: 108px;
    align-content: start;
    gap: 0.25rem;
    padding: 0.7rem 2.2rem 0.7rem 0.75rem;
    overflow: hidden;
    scroll-snap-align: start;
    border-radius: 9px;
    background: linear-gradient(135deg, #075b91, #0aa1d8);
    color: #fff;
    text-decoration: none;
  }

  .mobile-home-promotionSlide span {
    width: max-content;
    padding: 0.2rem 0.42rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 850;
  }

  .mobile-home-promotionSlide strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .mobile-home-promotionSlide small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .mobile-home-promotionSlide svg {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    width: 18px;
    height: 18px;
  }

  .mobile-home-pathCard {
    position: relative;
    display: flex;
    min-height: 104px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    overflow: hidden;
    padding: 0.75rem;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    background-position: center;
    background-size: cover;
  }

  .mobile-home-pathCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72));
  }

  .mobile-home-pathCard > * {
    position: relative;
    z-index: 1;
  }

  .mobile-home-pathFacades {
    background-image: url("/assets/buttons/Фасады от 3950.webp");
  }

  .mobile-home-pathFurniture {
    background-image: url("/assets/buttons/Кухни.webp");
  }

  .mobile-home-pathCard span {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.05;
  }

  .mobile-home-pathCard strong {
    display: block;
    max-width: 8.5rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.75rem;
    font-weight: 650;
    line-height: 1.22;
  }

  .mobile-home-pathCard svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .mobile-home-quickActions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    margin-top: 0.65rem;
  }

  .mobile-home-quickAction {
    display: grid;
    min-height: 66px;
    place-items: center;
    gap: 0.28rem;
    padding: 0.45rem 0.25rem;
    color: #263446;
    text-align: center;
    text-decoration: none;
    border: 1px solid #dde6ef;
    border-radius: 9px;
    background: #fff;
  }

  .mobile-home-quickAction svg {
    width: 19px;
    height: 19px;
    color: #0879b8;
  }

  .mobile-home-quickAction span {
    font-size: 0.75rem;
    font-weight: 760;
    line-height: 1.13;
  }

  .mobile-home-sectionBlock {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border: 1px solid #dfe7f0;
    border-radius: 10px;
    background: #fff;
  }

  .mobile-home-sectionHeader {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
  }

  .mobile-home-sectionHeader span {
    display: block;
    margin-bottom: 0.16rem;
    color: #0879b8;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-home-sectionHeader h3 {
    margin: 0;
    color: #172033;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .mobile-home-sectionHeader a {
    flex: 0 0 auto;
    color: #0879b8;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-home-facadeGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .mobile-home-facadeTile {
    position: relative;
    display: grid;
    min-height: 82px;
    align-content: start;
    gap: 0.16rem;
    padding: 0.65rem;
    color: #1b2a3b;
    text-decoration: none;
    border: 1px solid #e4ebf2;
    border-radius: 9px;
    background: #f8fafc;
  }

  .mobile-home-facadeTile svg {
    width: 18px;
    height: 18px;
    margin-bottom: 0.22rem;
    color: #0879b8;
  }

  .mobile-home-facadeTile span {
    font-size: 0.86rem;
    font-weight: 830;
    line-height: 1.1;
  }

  .mobile-home-facadeTile small {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .mobile-home-facadeTile b {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    padding: 0.15rem 0.36rem;
    border-radius: 999px;
    background: #e6f4fb;
    color: #05618f;
    font-size: 0.75rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-home-furnitureScroller {
    display: grid;
    grid-auto-columns: minmax(132px, 44%);
    grid-auto-flow: column;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .mobile-home-furnitureScroller::-webkit-scrollbar {
    display: none;
  }

  .mobile-home-furnitureTile {
    overflow: hidden;
    color: #172033;
    text-decoration: none;
    border: 1px solid #e4ebf2;
    border-radius: 9px;
    background: #f8fafc;
  }

  .mobile-home-furnitureTile span {
    display: block;
    height: 74px;
    background-position: center;
    background-size: cover;
  }

  .mobile-home-furnitureTile strong {
    display: block;
    padding: 0.55rem 0.6rem;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .mobile-home-compactShowcase {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .mobile-home-orderFlow {
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
    border: 1px solid #dfe7f0;
    border-radius: 10px;
    background: #fff;
  }

  .mobile-home-orderFlow span {
    color: #0879b8;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-home-orderFlow ol {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding-left: 1.1rem;
    color: #263446;
  }

  .mobile-home-orderFlow li {
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.25;
  }

  .mobile-home-infoRow {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem;
    color: #172033;
    text-decoration: none;
    border: 1px solid #dfe7f0;
    border-radius: 10px;
    background: #fff;
  }

  .mobile-home-infoRow > svg:first-child {
    width: 21px;
    height: 21px;
    color: #0879b8;
  }

  .mobile-home-infoRow > svg:last-child {
    width: 17px;
    height: 17px;
    color: #8a9aab;
  }

  .mobile-home-infoRow strong,
  .mobile-home-infoRow span {
    display: block;
  }

  .mobile-home-infoRow strong {
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .mobile-home-infoRow span {
    margin-top: 0.12rem;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.2;
  }
