/* ============================================================
   Guest home legacy helpers (chips, cookie, CMS article).
   Float-nav removed — sticky navbar lives in guest-home.css.
   Full-page green gradient removed; guest-home.css owns palette.
   ============================================================ */

html {
  scroll-behavior: smooth;
}

.chip {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(130, 85, 0, 0.08);
  border: 1px solid rgba(130, 85, 0, 0.15);
  border-radius: 20px;
  color: #514536;
  font-size: 12px;
  margin: 4px;
}

a.chip {
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

a.chip:hover,
a.chip:focus-visible {
  background: rgba(230, 163, 58, 0.2);
  border-color: rgba(230, 163, 58, 0.4);
  color: #825500;
}

/* Guest CMS article (terms/privacy body) */
.guest-cms-article {
  color: #1f2937;
  line-height: 1.75;
  font-size: .95rem;
}

.guest-cms-article h2,
.guest-cms-article h3 {
  font-family: Sora, sans-serif;
  margin-top: 1.25rem;
}

.guest-cms-article p {
  margin-bottom: 1rem;
}

/* Cookie consent */
.rsas-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 760px;
  margin: 0 auto;
}

.rsas-cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  background: #fff;
  color: #1f2937;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  padding: 1rem 1.25rem;
  border: 1px solid #edf0f5;
}

.rsas-cookie-copy {
  flex: 1 1 260px;
  min-width: 0;
}

.rsas-cookie-title {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #825500;
}

.rsas-cookie-text {
  font-size: .875rem;
  line-height: 1.55;
  margin: 0;
  color: #374151;
}

.rsas-cookie-link {
  color: #825500;
  font-weight: 600;
  text-decoration: underline;
}

.rsas-cookie-actions {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  justify-content: flex-end;
}

.rsas-cookie-settings-link {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1070;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(130, 85, 0, .95);
  color: #fff;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.rsas-cookie-settings-link:hover,
.rsas-cookie-settings-link:focus-visible {
  background: #825500;
  color: #e6a33a;
}

.rsas-cookie-category {
  padding: .85rem 0;
  border-bottom: 1px solid #edf0f5;
}

.rsas-cookie-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rsas-cookie-category-desc {
  margin: .35rem 0 0 2.5rem;
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 575.98px) {
  .rsas-cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .rsas-cookie-actions .btn {
    flex: 1 1 auto;
  }
}
