/* Cookie Consent GR — cookie-consent.css */

#ccg-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #1a1a2e;
  color: #e8e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#ccg-banner.ccg-visible {
  transform: translateY(0);
  opacity: 1;
}

#ccg-banner.ccg-hiding {
  transform: translateY(100%);
  opacity: 0;
}

#ccg-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  text-align: center;
}

#ccg-text {
  flex: 0 1 auto;
  color: #c8c8d8;
  font-size: 13.5px;
  margin: 0;
}

#ccg-text strong {
  color: #e8e8f0;
  font-weight: 600;
}

#ccg-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ccg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.ccg-btn:active {
  transform: scale(0.97);
}

/* Περισσότερες πληροφορίες */
#ccg-more {
  background: transparent;
  color: #8888cc;
  border: 1.5px solid #8888cc;
  font-weight: 500;
}

#ccg-more:hover,
#ccg-more:focus-visible {
  background: rgba(136, 136, 204, 0.12);
  color: #aaaaee;
  border-color: #aaaaee;
  text-decoration: none;
}

/* Αποδοχή */
#ccg-accept {
  background: #f5c842;
  color: #1a1a2e;
}

#ccg-accept:hover,
#ccg-accept:focus-visible {
  background: #f7d55e;
}

/* Απόρριψη */
#ccg-reject {
  background: transparent;
  color: #b0b0c8;
  border: 1.5px solid #4a4a6a;
}

#ccg-reject:hover,
#ccg-reject:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #d0d0e8;
  border-color: #6a6a8a;
}

/* Focus visible για accessibility */
.ccg-btn:focus-visible {
  outline: 2px solid #f5c842;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  #ccg-inner {
    gap: 12px;
    padding: 12px 16px;
  }

  #ccg-text {
    flex-basis: 100%;
  }

  #ccg-actions {
    width: 100%;
    justify-content: center;
  }
}
