/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__content {
  margin-bottom: 20px;
}

.cookie-banner__highlight {
  background: #f6f6ff !important;
  border-left: 4px solid #4f4aff !important;
  padding: 16px !important;
  border-radius: 8px !important;
  margin: 12px 0 16px 0 !important;
  display: block !important;
}

.cookie-banner__highlight .cookie-banner__text {
  margin: 0;
  opacity: 1;
}

.cookie-banner__title {
  font-family: 'InterTight', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cookie-banner__text {
  font-family: 'InterTight', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  margin: 0;
  opacity: 0.7;
}

.cookie-banner__text a {
  color: #4f4aff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cookie-banner__text a:hover {
  opacity: 0.7;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__button {
  flex: 1;
  min-width: 120px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'InterTight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.cookie-banner__button--accept {
  background: #4f4aff;
  color: #ffffff;
}

.cookie-banner__button--accept:hover {
  background: #3f35ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(79, 74, 255, 0.3);
}

.cookie-banner__button--decline {
  background: #ffffff;
  color: #4f4aff;
  border: 2px solid #4f4aff;
}

.cookie-banner__button--decline:hover {
  background: #f6f6ff;
  transform: translateY(-2px);
}

/* Responsive styles for tablets */
@media (max-width: 991px) {
  .cookie-banner {
    right: 20px;
    bottom: 20px;
    max-width: 340px;
  }
}

/* Responsive styles for mobile */
@media (max-width: 767px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 20px;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__text {
    font-size: 13px;
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
    min-width: auto;
  }
}

/* Extra small mobile devices */
@media (max-width: 479px) {
  .cookie-banner {
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-banner__title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .cookie-banner__text {
    font-size: 12px;
  }

  .cookie-banner__button {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Hidden state */
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}