/* Cookie Consent Banner - groundzy.com */

.groundzy-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(25, 66, 74, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #F1F5F5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.groundzy-cookie-banner.groundzy-cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.groundzy-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.groundzy-cookie-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #F1F5F5;
  flex: 0 0 auto;
}

.groundzy-cookie-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(241, 245, 245, 0.9);
  flex: 1 1 280px;
  min-width: 0;
}

.groundzy-cookie-desc a {
  color: #9FEF4C;
  text-decoration: underline;
}

.groundzy-cookie-desc a:hover {
  color: #C9F3A1;
}

.groundzy-cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.groundzy-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.groundzy-cookie-accept {
  background: #9FEF4C;
  color: #19424A;
}

.groundzy-cookie-accept:hover {
  background: #C9F3A1;
}

.groundzy-cookie-decline {
  background: transparent;
  color: #F1F5F5;
  border: 1px solid rgba(241, 245, 245, 0.5);
}

.groundzy-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .groundzy-cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .groundzy-cookie-buttons {
    justify-content: center;
  }
}
