.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(21, 57, 81, 0.8);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 15px 50px 15px 25px; /* spa?iu extra în dreapta */
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  justify-content: center; /* Centreazã pe verticalã */
  align-items: center; /* Centreazã pe orizontalã */
  text-align: center;
}
.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}

.cookie-text a {
  color: #f0ca62;
  text-decoration: underline;
}

.cookie-options {
  margin-top: 8px;
  display: flex;
  justify-content: center; /* aliniere centru */
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-options label {
  font-size: 13px;
  color: #eaeaea;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-buttons {
  display: flex;
  justify-content: center; /* aliniere centru pentru butoane */
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  background-color: #fff; /* un albastru mai închis pentru contrast */
  color: #005c9e;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.cookie-buttons button:hover {
  background-color: #fff;
  color: #d0a42a;
}

.close-banner {
  position: absolute;
  right: 15px;
  top: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-banner:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .cookie-options {
    flex-direction: column;
    align-items: center;
  }
  .cookie-buttons {
    justify-content: center;
  }
  .close-banner {
    top: 8px;
    right: 12px;
  }
}