.pp-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 0.75rem;
  pointer-events: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.pp-cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pp-cookie-consent.is-hidden {
  display: none;
}

.pp-cookie-consent__panel {
  pointer-events: auto;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pp-cookie-consent__main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pp-cookie-consent__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #333;
}

.pp-cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

.pp-cookie-consent__more-btn,
.pp-cookie-consent__accept-btn {
  border: none;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.pp-cookie-consent__more-btn {
  padding: 0.55rem 0.85rem;
  background: transparent;
  color: var(--pp-accent, #0071e3);
}

.pp-cookie-consent__more-btn:hover {
  background: rgba(0, 113, 227, 0.08);
}

.pp-cookie-consent__accept-btn {
  padding: 0.55rem 1rem;
  background: var(--pp-accent, #0071e3);
  color: #fff;
}

.pp-cookie-consent__accept-btn:hover {
  filter: brightness(0.92);
}

.pp-cookie-consent__details {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ececec;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #4a4a4a;
}

.pp-cookie-consent__details.is-open {
  display: block;
}

.pp-cookie-consent__details p {
  margin: 0 0 0.65rem;
}

.pp-cookie-consent__details p:last-child {
  margin-bottom: 0;
}

.pp-cookie-consent__details a {
  color: var(--pp-accent, #0071e3);
  text-decoration: none;
}

.pp-cookie-consent__details a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pp-cookie-consent {
    padding: 0.5rem;
  }

  .pp-cookie-consent__main {
    flex-direction: column;
    gap: 0.65rem;
  }

  .pp-cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
