.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  background: #f2f2f2;
  color: #68808a;
  padding: 25px 30px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgb(0, 0, 0);
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #525252;
  margin: 0;
}

.cookie-content a {
  color: #061F2A;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #061F2A;
  color: #fff;
}

.cookie-btn.accept:hover {
  background: #061F2A;
}

.cookie-btn.reject {
  background: transparent;
  color: #061F2A;
  border-color: #061F2A;
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
