/* Thylo clone runtime: cookie banner + form status. Scoped with #thylo- ids
   to avoid clashing with the cloned Wix CSS. */
#thylo-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  color: #1e1e1e;
}
#thylo-cookie .thylo-cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#thylo-cookie p { margin: 0; font-size: 14px; line-height: 1.5; flex: 1 1 280px; }
#thylo-cookie a { color: #0e7a5f; }
#thylo-cookie .thylo-cc-actions { display: flex; gap: 10px; flex: 0 0 auto; }
#thylo-cookie button {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #1e1e1e;
}
#thylo-cookie button.thylo-cc-accept {
  background: #0e7a5f;
  border-color: #0e7a5f;
  color: #fff;
}
.thylo-form-status { margin-top: 10px; font-size: 14px; font-weight: 600; }
.thylo-form-status.err { color: #c0341d; }
.thylo-form-status.ok { color: #0e7a5f; }

/* Mobile menu overlay (replaces Wix's JS-driven menu) */
#thylo-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  background: #fff;
  padding: 72px 24px 24px;
  overflow-y: auto;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}
#thylo-mobile-nav[data-open] { display: block; }
#thylo-mobile-nav .thylo-mnav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #1e1e1e;
  cursor: pointer;
}
#thylo-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
#thylo-mobile-nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
#thylo-mobile-nav a {
  display: block;
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 600;
  color: #1aa3e0;
  text-decoration: none;
}
