@charset "UTF-8";
/* $menu-bg: linear-gradient(82deg, darken(#10556b, 15%) 0%, #10556b 100%); */
:root {
  /* New design tokens */
  --navy: #065184;
  --navy-light: #1B3A5C;
  --ocean: #0E7C9A;
  --turquoise: #17B8C2;
  --sun-gold: #F79B36;
  --sun-deep: #E8941E;
  --white: #FFF;
  --off-white: #F7F9FB;
  --text-muted: #7A8EA0;
  --shadow-soft: 0 8px 40px rgba(13,43,69,.12);
  --shadow-strong: 0 16px 60px rgba(13,43,69,.22);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  /* Bootstrap compat */
  --bs-primary: #065184;
  --bs-primary-rgb: 6, 81, 132;
  --bs-accent: #F79B36;
  --bs-light: #17B8C2;
  --bs-font-sans-serif: "Outfit", sans-serif;
  --light-gray: #7A8EA0;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #065184;
  --bs-btn-border-color: #065184;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #065184;
  --bs-btn-hover-border-color: #065184;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #065184;
  --bs-btn-active-border-color: #065184;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #065184;
  --bs-btn-disabled-border-color: #065184;
}

.btn-outline-primary {
  --bs-btn-color: #065184;
  --bs-btn-border-color: #065184;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #065184;
  --bs-btn-hover-border-color: #065184;
}

.btn-accent {
  background-color: #F79B36;
  color: #fff;
  border: none;
  --bs-btn-hover-bg: #F79B36;
  --bs-btn-hover-color: #fff;
}

.btn-white-accent {
  --bs-btn-color: #F79B36;
  --bs-btn-bg: #F0F0F0;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #F79B36;
  --bs-btn-hover-bg: #f0f0f0;
  --bs-btn-hover-border-color: transparent;
  border: none;
}

.btn-gray-accent {
  --bs-btn-color: #F79B36;
  --bs-btn-bg: #DEDEDE;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #F79B36;
  --bs-btn-hover-bg: #DEDEDE;
  --bs-btn-hover-border-color: transparent;
  border: none;
}

.text-accent {
  color: #F79B36 !important;
}

[x-cloak] {
  display: none !important;
}

.vc[data-vc-input] {
  z-index: 999;
}

.swiper {
  padding-bottom: 38px !important;
  --swiper-pagination-color: #065184;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-width: 14px;
  --swiper-pagination-bullet-height: 14px;
  --swiper-pagination-bottom: 0;
}

/* Togli i bordi di focus e altri stati su input */
input:focus, textarea:focus, select:focus,
input:focus-visible, textarea:focus-visible, select:focus-visible,
input:focus-within, textarea:focus-within, select:focus-within,
input:active, textarea:active, select:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: none !important;
}

/* personalizza tutti i checkbox */
input[type=checkbox] {
  width: 21px;
  height: 21px;
  border: 1px solid #707070;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}
input[type=checkbox]:checked {
  background-color: var(--bs-accent) !important;
  border-color: #9A470A !important;
  background-image: none !important;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}
/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#mainNav {
  padding: 1rem 0;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 2px 30px rgba(13, 43, 69, 0.08);
  padding: 0.6rem 0;
}

.nav-logo-img {
  height: 55px;
  transition: height 0.3s ease;
}

#mainNav.scrolled .nav-logo-img {
  height: 46px;
}

#mainNav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  position: relative;
}
#mainNav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--sun-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
#mainNav .nav-link:not(.dropdown-toggle):hover::after {
  transform: scaleX(1);
}
#mainNav .nav-link:hover {
  color: var(--white) !important;
}

#mainNav.scrolled .nav-link {
  color: var(--navy) !important;
}
#mainNav.scrolled .nav-link:hover {
  color: var(--ocean) !important;
}

#mainNav.scrolled .dropdown-toggle::after {
  border-top-color: var(--navy);
}

.dropdown-toggle::after {
  border-top-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s;
  border-top-width: 0.35em;
  border-right-width: 0.35em;
  border-left-width: 0.35em;
  vertical-align: 0.2em;
  margin-left: 0.4em;
}

.btn-cta-nav {
  background: var(--sun-gold);
  color: var(--white) !important;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-nav:hover {
  background: var(--sun-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.nav-cart {
  position: relative;
  font-size: 1.15rem;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--sun-gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
  transition: filter 0.45s ease;
}

#mainNav.scrolled .navbar-toggler-icon {
  filter: none;
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 0;
}

.dropdown-item {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
  color: var(--navy);
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--ocean);
}

/* Mobile collapse */
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.8rem;
    box-shadow: var(--shadow-soft);
  }
  #mainNav .navbar-collapse .nav-link {
    color: var(--navy) !important;
  }
}
/* MOBILE SIDEBAR (keep for backwards compat / mobile override) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1060;
}
.mobile-menu .mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mobile-menu .mobile-sidebar {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease-in-out;
  padding: 20px;
}
.mobile-menu .mobile-sidebar .close-menu {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
}
.mobile-menu .mobile-sidebar .close-menu i {
  color: var(--navy);
}
.mobile-menu .mobile-sidebar .navbar-nav .nav-link {
  color: var(--navy) !important;
  border: none;
  background-color: transparent;
  text-align: left;
}
.mobile-menu .mobile-sidebar .navbar-nav .dropdown-menu {
  background: transparent;
  border: none;
  box-shadow: none;
}
.mobile-menu .mobile-sidebar .nav-social {
  align-items: flex-end;
  justify-content: start;
  display: flex;
}
.mobile-menu .mobile-sidebar .nav-social a {
  text-decoration: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: all 0.25s;
  font-size: 18px;
}
.mobile-menu .mobile-sidebar .nav-social a:hover {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.mobile-menu.show {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.show .mobile-sidebar {
  left: 0;
  display: flex;
  flex-direction: column;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-item > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: 1055;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .navbar .navbar-nav .nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.lightbox__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 100px;
  z-index: 1;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.lightbox__close:active {
  transform: scale(0.95);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox__nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.lightbox__nav:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox__nav--prev {
  left: 20px;
}
.lightbox__nav--next {
  right: 20px;
}
@media (max-width: 768px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__nav svg {
    width: 24px;
    height: 24px;
  }
}
.lightbox__image-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox__loader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: lightbox-spin 0.8s linear infinite;
}
.lightbox__counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}
.lightbox__thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  max-width: 90%;
  overflow-x: auto;
  z-index: 10;
}
.lightbox__thumbnails::-webkit-scrollbar {
  height: 4px;
}
.lightbox__thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.lightbox__thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.lightbox__thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.lightbox__thumbnail {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  padding: 0;
}
.lightbox__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox__thumbnail:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.lightbox__thumbnail--active {
  border-color: white;
}
.lightbox__transition-enter {
  transition: opacity 0.3s ease;
}
.lightbox__transition-enter-start {
  opacity: 0;
}
.lightbox__transition-enter-end {
  opacity: 1;
}
.lightbox__transition-leave {
  transition: opacity 0.3s ease;
}
.lightbox__transition-leave-start {
  opacity: 1;
}
.lightbox__transition-leave-end {
  opacity: 0;
}
.lightbox__image-enter {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox__image-enter-start {
  opacity: 0;
  transform: scale(0.95);
}
.lightbox__image-enter-end {
  opacity: 1;
  transform: scale(1);
}

@keyframes lightbox-spin {
  to {
    transform: rotate(360deg);
  }
}
[x-cloak] {
  display: none !important;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.2rem;
}

.footer-company {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-contacts p {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contacts i {
  color: var(--turquoise);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--sun-gold);
  border-color: var(--sun-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-links a i {
  font-size: 0.8rem;
  color: var(--turquoise);
}

.footer-license {
  margin-top: 3rem;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-license p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.footer-credits {
  padding: 0.8rem 0;
  background: #060F1A;
}

.credits-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

.credits-sep {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.credits-travio {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.credits-icon {
  height: 18px;
  width: auto;
  opacity: 0.35;
  margin-left: 0.1rem;
}

@media (max-width: 575.98px) {
  .footer-logo {
    height: 36px;
  }
}
/* ═══════════════════════════════════════
   AUTH MODAL — Login / Registrati
   ═══════════════════════════════════════ */
.auth-dialog {
  max-width: 480px;
}

.auth-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(6, 81, 132, 0.2);
  background: var(--white);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.auth-close:hover {
  opacity: 1;
}

/* Tabs */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--off-white);
  padding: 0;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 1.1rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.auth-tab:hover {
  color: var(--navy);
}

.auth-tab.active {
  color: var(--ocean);
  border-bottom-color: var(--ocean);
  background: rgba(14, 124, 154, 0.02);
}

/* Body */
.auth-body {
  padding: 1.8rem 2rem 2rem;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.auth-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

/* Google button */
.auth-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--white);
  border: 1.5px solid rgba(6, 81, 132, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.25s;
  cursor: pointer;
}

.auth-google:hover {
  border-color: rgba(6, 81, 132, 0.25);
  box-shadow: 0 2px 12px rgba(6, 81, 132, 0.08);
  background: var(--off-white);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(6, 81, 132, 0.08);
}

.auth-divider span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-field {
  margin-bottom: 0.85rem;
}

.auth-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: block;
}

.auth-input-wrap {
  position: relative;
}

.auth-input-wrap > i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ocean);
  font-size: 0.88rem;
  pointer-events: none;
  z-index: 2;
}

.auth-input {
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.65rem 0.85rem 0.65rem 2.4rem;
  height: 44px;
  transition: all 0.25s;
}

.auth-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.auth-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
  z-index: 2;
}

.auth-eye:hover {
  color: var(--ocean);
}

/* Overrides for global input focus reset */
.auth-input:focus {
  background: var(--white) !important;
  border-color: var(--turquoise) !important;
  box-shadow: 0 0 0 3px rgba(23, 184, 194, 0.1) !important;
  outline: none;
}

/* Remember / Forgot */
.auth-remember {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
}

.auth-forgot {
  font-size: 0.78rem;
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.auth-forgot:hover {
  color: var(--navy);
}

/* Override global checkbox background-image:none reset */
.auth-form .form-check-input[type=checkbox]:checked {
  background-color: var(--ocean) !important;
  border-color: var(--ocean) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

/* Primary button */
.auth-btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--turquoise));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 10px;
  height: 48px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.auth-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 124, 154, 0.3);
  color: var(--white);
}

.auth-btn-primary:active {
  transform: translateY(0);
}

/* Error message */
.auth-error {
  font-size: 0.8rem;
  color: #d93025;
  background: rgba(217, 48, 37, 0.07);
  border: 1px solid rgba(217, 48, 37, 0.2);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 575.98px) {
  .auth-dialog {
    margin: 0.5rem;
  }
  .auth-body {
    padding: 1.3rem 1.2rem 1.5rem;
  }
  .auth-title {
    font-size: 1.4rem;
  }
}
.site-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0D2440;
}
.site-loader-content img {
  height: 50px;
  width: auto;
}
.site-loader-content .loader-text {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}
.site-loader-content .loader-more {
  color: #000;
}
.site-loader-content.loader-error img {
  display: none;
}
.site-loader-content.loader-error .loader-text {
  color: #D9534F;
  font-weight: 700;
}

/* seleziona .zkPopup con all'interno un elemento .site-loader */
.zkPopup:has(.site-loader-content.loader-error) {
  border: 2px solid #D9534F;
}

.custom-switch {
  display: inline-block;
  height: 14px;
  width: 34px;
  background: #e6e6e6;
  border-radius: 40px;
  cursor: pointer;
}
.custom-switch span {
  display: block;
  height: 16px;
  width: 16px;
  margin-top: -2px;
  border-radius: 50%;
  background: #a7a6a6;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
}
.custom-switch.active {
  background-color: #065184;
  box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.3);
}
.custom-switch.active span {
  -webkit-transform: translate3d(20px, 0, 0);
  -moz-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  background-color: #fff;
}
.custom-switch.active.disabled {
  cursor: default;
  opacity: 0.7;
}

.static-page h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--bs-primary);
}

.general-top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  color: #fff;
  height: 165px;
  position: relative;
  background-image: url("/app/assets/img/general-banner.webp");
  background-size: cover;
  background-position: center;
}
.general-top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 83, 128, 0.8);
  z-index: 0;
}
.general-top-banner .banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float:hover {
  background-color: #20b358;
}