/* Banner Cookie — Hotel La Rotonda */
#hlrCookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1a18;
  color: #f5f3ee;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.hlr-cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hlr-cb-text {
  flex: 1;
  min-width: 260px;
}

.hlr-cb-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin-bottom: .35rem;
  color: #fff;
}

.hlr-cb-text p {
  font-size: .82rem;
  color: #c8c4bb;
  margin: 0;
  line-height: 1.5;
}

.hlr-cb-text a {
  color: #b8a96a;
  text-decoration: underline;
}

.hlr-cb-actions {
  display: flex;
  gap: .7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.hlr-btn {
  padding: .6rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.hlr-btn-primary {
  background: #b8a96a;
  color: #1a1a18;
  border-color: #b8a96a;
}

.hlr-btn-primary:hover {
  background: #c9bc82;
}

.hlr-btn-outline {
  background: transparent;
  color: #f5f3ee;
  border-color: #4a4a46;
}

.hlr-btn-outline:hover {
  border-color: #b8a96a;
  color: #b8a96a;
}

@media (max-width: 600px) {
  .hlr-cb-inner { gap: 1rem; }
  .hlr-cb-actions { width: 100%; }
  .hlr-btn { flex: 1; text-align: center; }
}
