/* Banner positioning */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  padding: 0 16px;
  z-index: 9999;
  font-family: 'Lato', Arial, sans-serif;
}

/* Container */
.cookie-container {
  background: #ffffff;
  border-radius: 16px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  /* box-shadow: #9425EC 0px 7px 29px 0px; */
  box-shadow: #9425EC 0px 1px 9px 0px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 24px; */
  gap: 24px;
}

/* Text */
.cookie-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #1b2a52;
}

.cookie-message {
  font-size: 14px;
  margin: 0;
  color: #333;
  line-height: 1.4;
  max-width: 600px;
}

/* Button */
/**.cookie-button {
  padding: 10px 24px;
  border-radius: 24px;
  border: none;
  background: #0C1E32;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-button:hover {
  opacity: 0.9;
}**/

.cookie-button {
  border: 0;
  border-radius: 50px;
  background: linear-gradient(180deg, #9425EC 0%, #7D25EC 100%);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  height: 46px;
  line-height: 45px;
  padding: 0 25px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.cookie-button:hover {
  background: linear-gradient(180deg, #7D25EC 0%, #9425EC 100%);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .cookie-message {
    font-size: 12px;
  }

  .cookie-button {
    width: 100%;
    text-align: center;
  }
}