#panticz-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e1e1e;
  color: #e0e0e0;
  border-top: 1px solid #444;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

#panticz-cookie-consent.is-visible {
  transform: translateY(0);
}

#panticz-cookie-consent .cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#panticz-cookie-consent .cookie-consent__content {
  flex: 1 1 auto;
  min-width: 300px;
}

#panticz-cookie-consent .cookie-consent__title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  color: #fff;
}

#panticz-cookie-consent .cookie-consent__text {
  margin: 0;
  line-height: 1.5;
  color: #b0b0b0;
}

#panticz-cookie-consent .cookie-consent__text a {
  color: #8ab4f8;
  text-decoration: underline;
}

#panticz-cookie-consent .cookie-consent__buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

#panticz-cookie-consent .cookie-consent__btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid #555;
  border-radius: 4px;
  background: transparent;
  color: #e0e0e0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

#panticz-cookie-consent .cookie-consent__btn:hover {
  background: #333;
  border-color: #777;
}

#panticz-cookie-consent .cookie-consent__btn--accept {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

#panticz-cookie-consent .cookie-consent__btn--accept:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

#panticz-cookie-consent .cookie-consent__btn--settings {
  background: transparent;
  border-color: #555;
}

#panticz-cookie-consent .cookie-consent__settings {
  display: none;
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid #444;
  margin-top: 0.25rem;
}

#panticz-cookie-consent.is-expanded .cookie-consent__settings {
  display: block;
}

#panticz-cookie-consent .cookie-consent__setting {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  color: #b0b0b0;
}

#panticz-cookie-consent .cookie-consent__setting input[type="checkbox"] {
  accent-color: #2563eb;
}

#panticz-cookie-consent .cookie-consent__setting--disabled {
  opacity: 0.6;
}

#panticz-cookie-consent .cookie-consent__setting--disabled input {
  pointer-events: none;
}

@media (max-width: 768px) {
  #panticz-cookie-consent .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  #panticz-cookie-consent .cookie-consent__buttons {
    justify-content: stretch;
  }

  #panticz-cookie-consent .cookie-consent__btn {
    flex: 1;
    text-align: center;
  }
}
