#crown-cookie-banner{position:fixed;left:22px;bottom:22px;z-index:2147483000;width:min(520px,calc(100vw - 44px));#crown-cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483000;
  padding: 15px 24px;
  color: #f3ece4;
  background: #352238;
  border-top: 1px solid rgba(216, 177, 131, 0.45);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.25);
  font-family: "Inter Tight", Arial, sans-serif;
}

.crown-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.crown-cookie-message {
  margin: 0;
  color: rgba(243, 236, 228, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.crown-cookie-message a {
  margin-left: 5px;
  color: #d8b183;
  text-decoration: underline;
}

.crown-cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.crown-cookie-btn {
  min-width: 105px;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid #d8b183;
  border-radius: 3px;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.crown-cookie-btn--reject {
  color: #d8b183;
  background: transparent;
}

.crown-cookie-btn--reject:hover {
  color: #352238;
  background: #d8b183;
}

.crown-cookie-btn--accept {
  color: #352238;
  background: #d8b183;
}

.crown-cookie-btn--accept:hover {
  color: #352238;
  background: #e6c59e;
}

@media (max-width: 700px) {
  #crown-cookie-banner {
    padding: 16px;
  }

  .crown-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .crown-cookie-message {
    font-size: 13px;
  }

  .crown-cookie-actions {
    width: 100%;
  }

  .crown-cookie-btn {
    flex: 1;
  }
}