.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-consent-banner.cookie-consent-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner.cookie-consent-hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.cookie-consent-text {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-consent-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}
.cookie-consent-accept {
  background: #e60000;
  color: #fff;
}
.cookie-consent-accept:hover {
  background: #c40000;
}
.cookie-consent-settings, .cookie-consent-cancel {
  background: transparent;
  border: 1px solid #ccc;
  color: #444;
}
.cookie-consent-settings:hover, .cookie-consent-cancel:hover {
  background: #f5f5f5;
}
.cookie-consent-save {
  background: #e60000;
  color: #fff;
}
.cookie-consent-save:hover {
  background: #c40000;
}
.cookie-consent-title {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}
.cookie-consent-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cookie-consent-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
}
.cookie-consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
@media (max-width: 767.75px) {
  .cookie-consent-content {
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .cookie-consent-text {
    text-align: center;
    width: 100%;
  }
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  .cookie-consent-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  .cookie-consent-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .cookie-consent-text {
    text-align: left;
  }
  .cookie-consent-buttons {
    flex-direction: row;
    width: auto;
  }
  .cookie-consent-btn {
    width: auto;
  }
}
