
.popular-categories-bar {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 0 20px;
}

.popular-categories-inner {

}

.popular-categories-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
}

.popular-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.popular-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: border-color .2s, box-shadow .2s, color .2s;
}

.popular-category-chip:hover {
  color: var(--accent);
  background: #f5f6f8;
  transition: all 0.2s ease;
  text-decoration: none;
}

.popular-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  background: #ebedf2;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.popular-category-chip:hover .popular-category-count {
  background: var(--accent-soft);
  color: var(--accent);
}

@media (max-width: 1300px) {
  .popular-categories-bar {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .popular-categories-inner {
    padding: 20px 16px;
  }
  .popular-categories-list {
    gap: 8px;
  }
  .popular-category-chip {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.tld-banner {
  position: relative;
  overflow: hidden;

  margin: 20px auto 20px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  max-width: 1302px;
  margin-left: auto;
  margin-right: auto;

}
.tld-banner .container { padding: 0 32px; }
.tld-banner-bg {
  border-radius: 5px;
  background-image: url('../img/bg-ad-tld-light@2x.png');
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.tld-banner .container {
  position: relative;
  z-index: 2;
}
.tld-banner-inner {
  border-radius: 5px;
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  padding: 48px 0;
}
.tld-banner-content {
  grid-column: span 6;
  max-width: 520px;
}
@media (max-width: 768px) {
  .tld-banner-content { grid-column: span 12; }
}
.tld-banner-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}
.tld-banner-title-line {
  display: block;
}
.tld-banner-title-white { color: #000; }
.tld-banner-title-red { color: var(--accent); }
.tld-banner-desc {
  color: #000;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  text-align: center;
}
.tld-banner-question {
  color: #000;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
}
.tld-banner-form {
  display: flex;
  width: max-content;
  gap: 10px;
  align-items: stretch;
}
.tld-banner-input {

  min-width: 260px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
}
.tld-banner-input::placeholder {
  color: var(--muted);
}
.tld-banner-select {
  padding: 14px 36px 14px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px auto;
}
.tld-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.tld-banner-btn:hover {
  background: var(--accent-dark);
}

span.tld-banner-title-line:nth-child(2) {
  margin-left: 50px;
  font-size: 50px;
}
span.tld-banner-title-line:nth-child(1) {
  font-size: 50px;
}

@media (max-width: 1300px) {
  .tld-banner {
    margin: 20px !important;
    max-width: calc(100% - 40px) !important;
  }
}

@media (max-width: 768px) {
  .tld-banner .container { padding: 0 16px; }
  .tld-banner-inner { min-height: auto; padding: 32px 0; }

  .tld-banner-bg {
    background-image: none;
    background-color: #d7d8d7;
  }

  .tld-banner-form {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .tld-banner-input { min-width: 100%; }
}

footer.page-footer {
    background: #f5f6f8;

    padding: 35px 0 35px;
    margin-top: 0;
    border-top: 1px solid #e3e6ee;
}

.footer-inner {
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo svg {
    height: 40px;
    width: auto;
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-top,
.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #5b6272;
    line-height: 1.5;
    justify-content: right;

}

.footer-top span,
.footer-nav a {
    color: #5b6272;
    text-decoration: none;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--text);
    text-decoration: underline;
}

.separator {
    color: #5b6272;
    margin: 0 4px;
}

.footer-social {
  text-align: right;font-size: 20px;letter-spacing: 4px;
}

.footer-bottom {
    margin-top: 16px;
    text-align: right;
}

.footer-privacy-link {
    color: #8a8d96;
    text-decoration: none;
    font-size: 13px;
}

.footer-privacy-link:hover {
    color: var(--text);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-inner { gap: 24px; }
}

@media (max-width: 600px) {

    .footer-top,
    .footer-nav {
        font-size: 12px;
        gap: 6px;
    }

    .separator {
        margin: 0 2px;
    }
}