/* GAYA cookie consent banner (custom CMP) — 1b corner card */

.gaya-consent {
  /* Brand tokens, scoped to the banner */
  --gaya-ink: #1c2a1e;
  --gaya-ink-muted: #6b7b6d;
  --gaya-card: #fff;
  --gaya-line: rgba(28, 42, 30, .12);
  --gaya-eco: #4a7a4a;
  --gaya-eco-tint: #e1ebe1;

  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 100000;
  width: 340px;
  max-width: calc(100% - 32px);
}

.gaya-consent__box {
  background: var(--gaya-card);
  border: 1px solid var(--gaya-line);
  border-radius: 22px;
  box-shadow: 0 24px 60px -20px rgba(28, 42, 30, .5);
  padding: 26px 26px 24px;
}

.gaya-consent__leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background: var(--gaya-eco-tint);
  border-radius: 999px;
  color: var(--gaya-eco);
}

.gaya-consent__leaf svg {
  display: block;
  width: 26px;
  height: 26px;
}

.gaya-consent__title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--gaya-ink);
}

.gaya-consent__text {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gaya-ink-muted);
}

.gaya-consent__text a {
  color: var(--gaya-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gaya-consent__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
}

.gaya-consent__options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gaya-ink);
  cursor: pointer;
}

.gaya-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.gaya-consent__btn {
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .15s, border-color .15s, opacity .15s;
}

/* Settings — plain text link, pushed left */
.gaya-consent__btn--settings {
  margin-right: auto;
  padding: 4px 2px;
  border: 0;
  background: none;
  color: var(--gaya-ink);
  opacity: .7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gaya-consent__btn--settings:hover {
  opacity: 1;
}

/* Reject — outline */
.gaya-consent__btn--necessary {
  background: transparent;
  color: var(--gaya-ink);
  border-color: rgba(28, 42, 30, .2);
}

.gaya-consent__btn--necessary:hover {
  border-color: rgba(28, 42, 30, .45);
}

/* Accept / Save — filled */
.gaya-consent__btn--accept,
.gaya-consent__btn--save {
  background: var(--gaya-eco);
  color: #fff;
}

.gaya-consent__btn--accept:hover,
.gaya-consent__btn--save:hover {
  background: #3d683d;
}

.gaya-consent-reopen {
  display: block;
  margin: 0 auto;
  padding: 8px;
  border: 0;
  background: none;
  color: inherit;
  font-size: 12px;
  opacity: 0.7;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 600px) {
  .gaya-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
  }
}
