/* --------------------------------------------------------------------------
   28. COOKIE BAR
   -------------------------------------------------------------------------- */

.cookie-bar {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--warm-mid);
  border-top: 3px solid var(--brass);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 600;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-drawer), opacity var(--t-drawer);
}

.cookie-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-bar-eyebrow {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.cookie-bar-text {
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.65;
}

.cookie-bar-text a {
  color: var(--brass-dk);
  text-decoration: none;
}
.cookie-bar-text a:hover { text-decoration: underline; }

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-bar-accept {
  background: var(--ink);
  color: #fff;
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  flex: 1;
  transition: background var(--t-fast);
}
.cookie-bar-accept:hover { background: #2d3348; }

.cookie-bar-decline {
  background: none;
  border: 1px solid var(--warm-mid);
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.cookie-bar-decline:hover { border-color: var(--brass); color: var(--ink); }

@media (max-width: 600px) {
  .cookie-bar {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--brass);
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
