/* ============================================
   COOKIE CONSENT BANNER — DogNavi
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid #667e6d;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 99999;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: 'Nunito', 'Open Sans', sans-serif;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

#cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.55;
}

#cookie-banner .cookie-text strong {
  color: #667e6d;
  font-weight: 700;
}

#cookie-banner .cookie-text a {
  color: #667e6d;
  font-weight: 600;
  text-decoration: underline;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

#cookie-accept {
  background: #667e6d;
  color: #fff;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

#cookie-accept:hover {
  background: #FFB347;
  color: #333;
  transform: translateY(-1px);
}

#cookie-reject {
  background: transparent;
  color: #667e6d;
  border: 2px solid #667e6d;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s ease;
  white-space: nowrap;
}

#cookie-reject:hover {
  background: #f4ede4;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.2rem 1.4rem;
  }
  #cookie-banner .cookie-actions {
    width: 100%;
  }
  #cookie-accept, #cookie-reject {
    flex: 1;
    text-align: center;
  }
}
