/* CraftBox shared landing nav layout — keep nav block centered on every
   landing page (homepage, about, blog, contact, shop). Without this, the
   default flex justify-end pushes the menu to the right edge. */

/* Keep every nav label on a single line. The two-word Georgian "ჩვენ შესახებ"
   ("About") otherwise wraps onto two lines on the static sub-pages, while the
   homepage shows it on one line — this matches them. */
header a.links { white-space: nowrap; }
@media (min-width: 1024px) {
  .relative.z-2.container.flex.items-center.justify-between {
    position: relative;
  }
  .relative.z-2.container.flex.items-center.justify-between > .flex.flex-1.justify-end {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex: 0 0 auto;
    justify-content: center;
    gap: 3rem;
  }
}
