/* Cookie Banner - tenerife3bandas.com */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #f0f0f0;
  z-index: 99999;
  border-top: 3px solid #e63946;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
}

#cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#cookie-banner p {
  margin: 0;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

#cookie-banner a {
  color: #f4d03f;
  text-decoration: underline;
}

#cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-banner button {
  padding: 9px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

#cookie-accept {
  background: #e63946;
  color: #fff;
}

#cookie-accept:hover {
  background: #c1121f;
}

#cookie-reject {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #f0f0f0 !important;
}

#cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
  #cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #cookie-banner-buttons {
    width: 100%;
  }
  #cookie-banner button {
    flex: 1;
  }
}
