/**
 * Contact + social strip — in-flow inside first section (hero / page lead).
 */

.pyrotech-top-bar {
  position: relative;
  z-index: 3;
  padding: 12px 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
}

/* Over imagery (home hero, products/industries hero): no solid bar */
.pyrotech-hero .pyrotech-top-bar,
.pyrotech-products-hero > .pyrotech-top-bar {
  background: transparent;
}

/* First block on plain pages (article / archive) — readable on light backgrounds */
.site-main > .pyrotech-top-bar,
.page-section > .pyrotech-top-bar:first-child {
  background: rgba(10, 39, 103, 0.96);
}

.pyrotech-products-hero > .pyrotech-top-bar {
  z-index: 5;
  flex-shrink: 0;
}

.pyrotech-top-bar__contact {
  display: flex;
  align-items: center;
  gap: 50px;

  font-weight: 400;
  font-size: 15px;

  text-transform: uppercase;
  color: #fff;
}

.pyrotech-top-bar__contact a {
  color: inherit;
  text-decoration: none;
}

.pyrotech-top-bar__contact a:hover {
  text-decoration: underline;
}

.pyrotech-top-bar__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pyrotech-top-bar__contact-email {
  text-transform: none;
}

.pyrotech-top-bar__contact-item svg,
.pyrotech-top-bar__contact-item img {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: block;
}

.pyrotech-top-bar__social {
  display: flex;
  gap: 8px;
}

.pyrotech-top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
}

.pyrotech-top-bar__social a img {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .pyrotech-top-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pyrotech-top-bar::-webkit-scrollbar {
    display: none;
  }

  .pyrotech-top-bar__contact {
    flex-wrap: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    gap: 14px;
    overflow-x: auto;
    font-size: 11px;
    letter-spacing: 0.02em;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pyrotech-top-bar__contact::-webkit-scrollbar {
    display: none;
  }

  .pyrotech-top-bar__contact-item {
    flex-shrink: 0;
    white-space: nowrap;
    gap: 4px;
  }

  .pyrotech-top-bar__contact-item svg,
  .pyrotech-top-bar__contact-item img {
    width: 15px;
    height: 15px;
  }

  .pyrotech-top-bar__social {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .pyrotech-top-bar {
    padding: 6px 12px;
    gap: 10px;
  }

  .pyrotech-top-bar__contact {
    gap: 10px;
    font-size: 10px;
  }

  .pyrotech-top-bar__contact-item svg,
  .pyrotech-top-bar__contact-item img {
    width: 14px;
    height: 14px;
  }
}
