/* Footer (Customizer-driven) */
.tchowoure-footer {
  --tchowoure-footer-bg: #1f2937;
  --tchowoure-footer-text: #ffffff;
  background: var(--tchowoure-footer-bg);
  color: var(--tchowoure-footer-text);
}

.tchowoure-footer a {
  color: inherit;
  text-decoration: none;
}

.tchowoure-footer a:hover {
  color: var(--tchowoure-secondary, #0f766e);
}

/* Active/current menu item */
.tchowoure-footer-menu .current-menu-item > a,
.tchowoure-footer-menu .current_page_item > a,
.tchowoure-footer-menu a[aria-current="page"],
.tchowoure-footer-menu a[aria-current="true"] {
  color: var(--tchowoure-secondary, #0f766e);
  font-weight: 600;
}

.tchowoure-footer-menu .current-menu-item > a,
.tchowoure-footer-menu .current_page_item > a {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.tchowoure-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;
}

.tchowoure-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tchowoure-footer-brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.tchowoure-footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.tchowoure-footer-logo img {
  height: auto;
  width: 100%;
  max-width: 100%;
}

.tchowoure-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tchowoure-footer-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tchowoure-footer-social-link:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.tchowoure-footer-social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.tchowoure-footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.tchowoure-footer-logo-img--mobile {
  display: none;
}

.tchowoure-footer-logo-img--desktop {
  display: block;
}

.tchowoure-footer-logo--effect-white img {
  filter: brightness(0) invert(1);
}

.tchowoure-footer-logo--effect-black img {
  filter: brightness(0);
}

.tchowoure-footer-logo--effect-grayscale img {
  filter: grayscale(1);
}

.tchowoure-footer-logo--effect-white-grayscale img {
  filter: brightness(0) invert(1) grayscale(1);
}

.tchowoure-footer-menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tchowoure-footer-menu li {
  margin: 0;
  padding: 0;
}

.tchowoure-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .tchowoure-footer-logo-img--desktop {
    display: none;
  }

  .tchowoure-footer-logo-img--mobile {
    display: block;
  }

  .tchowoure-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .tchowoure-footer-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
