/* ========================================
   Header Contact - VernatShop
   Link in Shoptet header (before </head>)
   ======================================== */

/* Hide original contact in top navigation bar - desktop only */
@media (min-width: 992px) {
  .top-navigation-contacts {
    display: none !important;
  }
}

/* New contact section in header */
.vern-header-contact {
  display: none; /* Hidden by default */
}

/* Show only on desktop */
@media (min-width: 992px) {
  .vern-header-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align left by icons */
    gap: 2px;
    padding: 0 25px;
    margin-right: 15px; /* Space from cart */
    flex-shrink: 0; /* Prevent shrinking */
  }

  .vern-header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .vern-header-contact a:hover {
    color: #cb0000;
  }

  .vern-header-contact svg {
    width: 16px;
    height: 16px;
    fill: #cb0000;
    flex-shrink: 0;
  }
}
