/* Biosfera Club — простое согласие на cookie в стиле сайта. */
.bfcc {
  --bfcc-gold: #958058;
  --bfcc-gold-hover: #7e6c49;
  --bfcc-ink: #2a2520;
  --bfcc-muted: #6a635b;
  --bfcc-line: #e8e4dc;
  --bfcc-soft: #f7f5f1;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 100000;
  width: min(420px, calc(100vw - 40px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(42, 37, 32, 0.14);
  border: 1px solid var(--bfcc-line);
  font-family: "PT Sans Caption", "PT Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bfcc-ink);
  padding: 22px 24px;
  display: none;
}
.bfcc.is-visible { display: block; }
.bfcc__title {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--bfcc-ink);
}
.bfcc__text { margin: 0 0 18px; color: var(--bfcc-muted); }
.bfcc__text a {
  color: var(--bfcc-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}
.bfcc__text a:hover { color: var(--bfcc-gold-hover); }
.bfcc__actions { display: flex; }
.bfcc__btn {
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
}
.bfcc__btn--accept {
  background: var(--bfcc-gold);
  color: #fff;
  min-width: 140px;
}
.bfcc__btn--accept:hover { background: var(--bfcc-gold-hover); }

.bfcc-footer-link {
  text-align: center;
  padding: 10px 16px 18px;
}
.bfcc-footer-link button {
  background: none;
  border: 0;
  color: #8a837a;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: inherit;
}
.bfcc-footer-link button:hover { color: #958058; }

@media (max-width: 640px) {
  .bfcc {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 18px;
  }
  .bfcc__btn { width: 100%; }
}
