.pdd-cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  background: #111827;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
  padding: 20px;
}

.pdd-cookie-banner__content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pdd-cookie-banner__text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #acb6e0;
}

.pdd-cookie-banner__text p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

.pdd-cookie-banner__text a {
  color: #93c5fd;
  text-decoration: underline;
}

.pdd-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdd-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.pdd-btn-primary {
  background: #2563eb;
  color: #fff;
}

.pdd-btn-light {
  background: #e5e7eb;
  color: #111827;
}

.pdd-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

.pdd-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}

.pdd-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.pdd-cookie-modal__dialog {
  position: relative;
  width: min(640px, calc(100vw - 32px));
  margin: 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  overflow: hidden;
}

.pdd-cookie-modal__header,
.pdd-cookie-modal__footer {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.pdd-cookie-modal__footer {
  border-bottom: 0;
  border-top: 1px solid #eee;
  text-align: right;
}

.pdd-cookie-modal__body {
  padding: 20px;
}

.pdd-cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdd-cookie-modal__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.pdd-cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
}

.pdd-cookie-option:last-child {
  border-bottom: 0;
}

.pdd-cookie-option p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.pdd-cookie-floating-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99998;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  cursor: pointer;
  font-weight: 600;
  display: none;
}

.pdd-cookie-floating-btn:hover {
  opacity: 0.92;
}


@media (max-width: 768px) {
  .pdd-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .pdd-cookie-modal__dialog {
    margin: 20px auto;
  }

 .pdd-cookie-floating-btn {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 14px;
  }
}