/* Noice Promo Banner */
:root {
  --promo-banner-height: 72px;
}

.noice-promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-black-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.noice-promo-banner.is-hidden {
  display: none;
}

body.has-promo-banner .transparent-header {
  top: var(--promo-banner-height);
}

body.has-promo-banner .header-area.sticky {
  top: var(--promo-banner-height);
}

body.has-promo-banner .header-area.sticky {
  -webkit-animation-name: sticky-with-promo;
          animation-name: sticky-with-promo;
}

@-webkit-keyframes sticky-with-promo {
  0% {
    top: calc(var(--promo-banner-height) - 200px);
  }
  100% {
    top: var(--promo-banner-height);
  }
}

@keyframes sticky-with-promo {
  0% {
    top: calc(var(--promo-banner-height) - 200px);
  }
  100% {
    top: var(--promo-banner-height);
  }
}

.noice-promo-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 0;
  min-height: 72px;
}

.noice-promo-banner__visual {
  flex-shrink: 0;
}

.noice-promo-banner__phone {
  position: relative;
  width: 52px;
  height: 68px;
  background: linear-gradient(145deg, #1e302f 0%, #0f1a19 100%);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.noice-promo-banner__phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 4px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 4px;
  z-index: 2;
}

.noice-promo-banner__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noice-promo-banner__phone-screen img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.noice-promo-banner__content {
  flex: 1;
  min-width: 0;
}

.noice-promo-banner__content h4 {
  margin: 0 0 2px;
  font-family: "Marcellus", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white-color);
  letter-spacing: 0.01em;
}

.noice-promo-banner__content p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.noice-promo-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.noice-store-badge {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.noice-store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.noice-store-badge img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .noice-promo-banner__inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.65rem 0;
  }

  .noice-promo-banner__actions {
    width: 100%;
    padding-left: calc(52px + 1.25rem);
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .noice-store-badge {
    flex: 1;
    min-width: 0;
  }

  .noice-store-badge img {
    height: 40px;
    width: 100%;
    max-width: 155px;
    object-fit: contain;
    object-position: left center;
  }
}

@media (max-width: 575.98px) {
  .noice-promo-banner__inner {
    min-height: auto;
  }

  .noice-promo-banner__phone {
    width: 44px;
    height: 58px;
  }

  .noice-promo-banner__content h4 {
    font-size: 0.92rem;
  }

  .noice-promo-banner__content p {
    font-size: 0.75rem;
  }

  .noice-promo-banner__actions {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .noice-store-badge img {
    height: 36px;
    max-width: none;
  }
}
