/**
 * Swiss Green - Cookie Banner SCSS
 * Fichier source pour compilation Koala
 * Output: ../css/cookie-banner.css
 */
.cookie-banner-modern {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 52, 54, 0.98);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease; }

@keyframes slideUp {
  from {
    transform: translateY(100%); }
  to {
    transform: translateY(0); } }
.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px; }

.cookie-banner-text {
  flex: 1; }
  .cookie-banner-text p {
    margin: 0 0 4px 0;
    font-size: 15px;
    line-height: 1.6; }

.cookie-link {
  color: #58A333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease; }
  .cookie-link:hover {
    color: #3d7a22;
    text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0; }

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap; }

.cookie-btn-primary {
  background: #58A333;
  color: #fff; }
  .cookie-btn-primary:hover {
    background: #3d7a22;
    box-shadow: 0 4px 12px rgba(88, 163, 51, 0.3);
    transform: translateY(-2px); }

.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3); }
  .cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5); }

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px; }

  .cookie-banner-actions {
    width: 100%; }

  .cookie-btn {
    flex: 1;
    min-width: 120px; } }

/*# sourceMappingURL=cookie-banner.css.map */
