#cookie-banner {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem 0;
}

#cookie-banner.visible {
  display: block;
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .cookie-wrapper {
    flex-direction: row;
  }
}

.cookie-text {
  color: #4b5563; /* text-gray-600 */
  font-family: 'Chivo', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-text {
    text-align: left;
    max-width: 70%;
  }
}

.cookie-text a {
  color: #111827; /* text-gray-900 */
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-text a:hover {
  color: #064e3b; /* text-green-900 */
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Chivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #111827; /* gray-900 */
  color: white;
  border: 1px solid #111827;
}

.cookie-btn-accept:hover {
  background-color: #374151; /* lighter gray */
  border-color: #374151;
  transform: translateY(-2px);
}

.cookie-btn-refuse {
  background-color: white;
  color: #111827;
  border: 1px solid #d1d5db; /* gray-300 */
}

.cookie-btn-refuse:hover {
  background-color: #f3f4f6; /* gray-100 */
  transform: translateY(-2px);
}
