/* ============================================
   COOKIE CONSENT BANNER - Kaen Agency
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(25, 49, 72, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(169, 154, 146, 0.15);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  color: rgba(244, 239, 234, 0.85);
  font-size: 13px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.cookie-text a {
  color: #a99a92;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: #c4b5ab;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.cookie-btn-accept {
  background: #a99a92;
  color: #193148;
}

.cookie-btn-accept:hover {
  background: #c4b5ab;
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(244, 239, 234, 0.7);
  border: 1px solid rgba(169, 154, 146, 0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(169, 154, 146, 0.6);
  color: rgba(244, 239, 234, 1);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
