
.menu-item-has-children > .sub-menu {
  display: none;
}
.menu-item-has-children.tte-menu-open > .sub-menu {
  display: block;
}

.tte-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  padding: 20px;
}
.tte-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: pointer;
}

.tte-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.tte-lightbox-overlay.tte-lightbox-open {
  display: flex;
}
.tte-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.tte-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.tte-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  width: 33%;
  min-width: 280px;
  margin: 0 auto;
  padding: 16px 20px;
}
.tte-newsletter-form input[type="email"],
.tte-newsletter-form button {
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  line-height: 40px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  border-width: 1px !important;
  vertical-align: middle;
}
.tte-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0 12px !important;
}
.tte-newsletter-form button {
  padding: 0 20px !important;
  flex-shrink: 0;
}
.tte-newsletter-message {
  width: 100%;
  text-align: center;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  .tte-newsletter-form {
    width: 90%;
    min-width: 0;
  }
}

/* Hero placement (homepage, next to "London, United Kingdom" / "Get directions") —
   fits the existing Elementor column instead of the footer's centered 33% rule. */
.tte-newsletter-hero {
  display: flex;
  align-items: center;
  height: 100%;
  /* no padding of its own — the column it sits in already has its own
     (theme-default) padding, stacking another layer here would double it up */
}
.tte-newsletter-hero .tte-newsletter-form {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.tte-newsletter-hero .tte-newsletter-form input[type="email"] {
  background: #fff !important;
  border: 1px solid #d1dada !important;
  color: #1b3e41 !important;
  border-radius: 3px 0 0 3px !important;
}
.tte-newsletter-hero .tte-newsletter-form button {
  background: #df453e;
  color: #fff;
  border: 1px solid #df453e !important;
  border-radius: 0 3px 3px 0 !important;
  font-weight: bold;
  cursor: pointer;
}
.tte-newsletter-hero .tte-newsletter-message {
  color: inherit;
}

