.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.cookie-consent p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.cookie-btn.deny {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

.cookie-btn.customize {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

.cookie-btn.accept {
  background-color: #007bff;
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #0069d9;
}

.cookie-btn.save {
  background-color: #007bff;
  color: #fff;
}

.cookie-btn.save:hover {
  background-color: #0069d9;
}

.cookie-customize-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.cookie-customize-content {
  background-color: #fff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
}

.cookie-customize-content h4 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}

.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info {
  margin-left: 15px;
}

.cookie-category-info h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.cookie-category-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #007bff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #007bff;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.cookie-customize-buttons {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

