/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--forest);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  animation: cookieSlideUp 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.cookie-banner.hidden {
  display: none;
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text p {
  font-size: 13px;
  color: rgba(245,240,232,0.75);
  line-height: 1.55;
  margin: 0;
}

.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--forest);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(245,240,232,0.5);
  border: 1px solid rgba(245,240,232,0.2);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.cookie-btn-decline:hover {
  color: rgba(245,240,232,0.8);
  border-color: rgba(245,240,232,0.4);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    width: calc(100% - 32px);
    gap: 14px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn-accept {
    flex: 1;
    text-align: center;
  }
}
