.dpvc-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
  max-width: 380px;
  width: calc(100% - 40px);
  font-family: inherit;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: none;
}

.dpvc-cookie-banner.dpvc-cookie-show {
  animation: dpvcSlideIn .45s cubic-bezier(.25, .46, .45, .94) forwards;
  pointer-events: auto;
}

.dpvc-cookie-banner.dpvc-cookie-hide {
  animation: dpvcFadeOut .35s ease-in forwards;
  pointer-events: none;
}

.dpvc-cookie-inner {
  background: #1e1e1e;
  color: #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18), 0 2px 8px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dpvc-cookie-text {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: #ccc;
}

.dpvc-cookie-link {
  color: #90b4f8;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 2px;
}

.dpvc-cookie-link:hover {
  text-decoration: underline;
  color: #afc8fa;
}

.dpvc-cookie-btn {
  align-self: flex-end;
  background: #fff;
  color: #1e1e1e;
  border: none;
  border-radius: 20px;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  line-height: 1;
}

.dpvc-cookie-btn:hover {
  background: #e2e2e2;
  transform: scale(1.03);
}

.dpvc-cookie-btn:active {
  transform: scale(.97);
}

/* Mobile: full width en pantallas pequeñas */
@media (max-width: 480px) {
  .dpvc-cookie-banner {
    left: 10px;
    bottom: 10px;
    max-width: none;
    width: calc(100% - 20px);
  }

  .dpvc-cookie-inner {
    padding: 14px 16px;
  }

  .dpvc-cookie-text {
    font-size: 12px;
  }

  .dpvc-cookie-btn {
    align-self: stretch;
    text-align: center;
    padding: 11px 16px;
  }
}

@keyframes dpvcSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dpvcFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
