/* cookie-banner.css — Banner de consentimiento ADY — tema oscuro */

#ady-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  border-top: 3px solid #B19777;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  z-index: 9998;
  padding: 1.25rem 1.5rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

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

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

.ccb-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #B19777;
  margin-bottom: .35rem;
}

.ccb-text p {
  margin: 0;
  font-size: .875rem;
  color: #AAAAAA;
  line-height: 1.5;
}

.ccb-text a {
  color: #B19777;
  text-decoration: underline;
  transition: color .2s;
}
.ccb-text a:hover { color: #c9b08b; }

.ccb-buttons {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ccb-btn {
  padding: .6rem 1.4rem;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-transform: uppercase;
}

.ccb-btn--primary {
  background: #B19777;
  color: #222222;
  border: 2px solid #B19777;
}
.ccb-btn--primary:hover {
  background: #c9b08b;
  border-color: #c9b08b;
}

.ccb-btn--outline {
  background: transparent;
  color: #B19777;
  border: 2px solid #B19777;
}
.ccb-btn--outline:hover {
  background: rgba(177,151,119,.1);
}

@media (max-width: 768px) {
  #ady-cookie-banner { padding: 1rem; }
  .ccb-inner { gap: 1rem; }
  .ccb-buttons { width: 100%; }
  .ccb-btn { flex: 1; text-align: center; padding: .6rem .5rem; font-size: .8rem; }
}

@media (max-width: 480px) {
  .ccb-text strong { font-size: .9rem; }
  .ccb-text p { font-size: .8rem; }
}