/* Cookie banner - Gyémánt Kézimunka */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #5c4a3d 0%, #816f5b 100%);
  color: #f6f4e8;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cookie-banner.is-visible {
  transform: translateY(0);
}
#cookie-banner .cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#cookie-banner .cookie-banner-text {
  flex: 1 1 280px;
}
#cookie-banner .cookie-banner-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
#cookie-banner .cookie-banner-text a {
  color: #bcc7a8;
  text-decoration: underline;
}
#cookie-banner .cookie-banner-text a:hover {
  color: #fff;
}
#cookie-banner .cookie-banner-actions {
  flex-shrink: 0;
}
#cookie-banner .cookie-banner-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #80a640;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
}
#cookie-banner .cookie-banner-btn:hover {
  background: #6d8f36;
  color: #fff !important;
}
@media (max-width: 767px) {
  #cookie-banner {
    padding: 14px 16px;
    font-size: 13px;
  }
  #cookie-banner .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  #cookie-banner .cookie-banner-actions {
    text-align: center;
  }
}
