/* 🔒 reCAPTCHA */
.grecaptcha-badge {
  bottom: -100px !important;
}

/* 🔹 Nasconde il titolo della pagina con ID 355 */
.page-id-355 h1.entry-title {
  display: none;
}

/* 🔧 WhatsApp fixed icon (solo mobile) */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: calc(100vw - 40px);
  overflow-x: hidden;
}
.whatsapp-icon:hover {
  background-color: #1ebe5d;
}
@media (min-width: 769px) {
  .whatsapp-icon {
    display: none;
  }
}

/* 🔹 HEADER + MENU MOBILE */
@media (max-width: 768px) {

  /* Logo + Branding */
  .site-branding {
    display: flex;
    align-items: center;
    gap: 2px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .custom-logo-link img {
    max-height: 18px;
    width: auto;
    height: auto;
  }

  .title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    max-width: calc(100vw - 90px); /* spazio per logo e menu */
    padding-top: 2px;
  }

  .site-branding .site-title {
    font-size: 24px;
    line-height: 22px;
    font-weight: 700;
    margin: 0;
  }

  .site-branding .site-description {
    font-size: 10.5px;
    line-height: 12px;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* Menu toggle */
  .menu-toggle {
    display: block !important;
    font-size: 22px;
    color: white;
    background: transparent;
    border: none;
    padding: 4px 8px;
  }

  /* Rimuove menu extra */
  #header-dropdown-toggle,
  .header-dropdown,
  .header-dropdown-toggle,
  .header-dropdown-content {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
	
	
	.primary-menu-more-toggle {
    padding: 0px 0 0 0px; /* prima era 20px */
    background: transparent;
    outline: none;
    color: inherit;
    height: 42px;
}



 
}

/* 🔹 Footer su desktop */
@media (min-width: 992px) {
  .site-footer {
    padding: 20px 20px;
  }
}
