.cookies p {
  color: #000;
  text-transform: none;
}

#cookie-button,
.cookie-button {
  position: fixed;
  bottom: 15px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
}

#cookie-button img {
  width: 70%;
  height: 70%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

#cookie-button:hover img,
#cookie-button:focus img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

#cookie-button:focus {
  outline: 2px solid #2196f3;
  outline-offset: 2px;
}

.cookie-popup {
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 10000;
  font-size: 14px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}

.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cookie-popup h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  padding: 0;
}

#cookie-close:hover,
#cookie-close:focus {
  color: #f44336;
  outline: none;
}

.cookie-options {
  margin: 10px 0;
}

.cookie-options label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 6px;
}

.cookie-buttons button {
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

#cookie-accept {
  background: #4caf50;
  color: #fff;
}

#cookie-reject {
  background: #f44336;
  color: #fff;
}

#cookie-save {
  background: #2196f3;
  color: #fff;
}

@media (max-width: 992px) {
  .cookie-popup {
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 8px 8px 0 0;
  }
}
