/* HexaRoot Cookie Consent - Unique Classes Only */
.hexaroot-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #012970;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.hexaroot-cookie-banner--show {
  transform: translateY(0);
}

.hexaroot-cookie-banner--hidden {
  display: none;
}

.hexaroot-cookie-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hexaroot-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hexaroot-cookie-text {
  flex: 1;
  min-width: 300px;
}

.hexaroot-cookie-highlight {
  color: #fcb614;
  font-weight: 600;
}

.hexaroot-cookie-link {
  color: #fcb614;
  text-decoration: underline;
}

.hexaroot-cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hexaroot-cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hexaroot-cookie-btn--accept {
  background: #fcb614;
  color: #012970;
}

.hexaroot-cookie-btn--accept:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

.hexaroot-cookie-btn--reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hexaroot-cookie-btn--reject:hover {
  background: #fff;
  color: #012970;
}

@media (max-width: 768px) {
  .hexaroot-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .hexaroot-cookie-text {
    min-width: auto;
  }
}
