#cookie-popup {
  bottom: 20px;
  left: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background-color: #001845;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  position: fixed;
}

#cookie-popup p {
  margin: 0;
  font-size: 16px;
}

#cookie-popup button {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background-color: transparent;
  color: #D5BFA2;
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #D5BFA2;
}

#cookie-popup button:hover {
  color: #1F3B73;
  background-color: #D5BFA2;
}

.cookie-text {
  font-family: 'Figtree', sans-serif;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cookie-text p {
  font-size: 10px;
}

.cookie-text a {
  text-decoration: none;
  color: #D5BFA2;
  font-weight: 600
}

.cookie-button {
  display: flex;
  gap: 1rem;
}

/* Responsive for tablets and below */
@media (max-width: 1080px) {
  #cookie-popup {
    padding: 15px;
  }

  .cookie-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text p {
    font-size: 14px;
    flex: unset;
    width: 100%;
    padding-bottom: 1rem;
  }

  .cookie-button {
    justify-content: flex-start;
    width: 100%;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.75rem;
    font-size: 13px;
  }
}

/* 📱 Mobile-specific tweaks */
@media (max-width: 480px) {
  #cookie-popup p {
    font-size: 13px;
  }

  #cookie-popup button {
    font-size: 13px;
  }
}