/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  min-width: 300px;
}

.cookie-consent-text a {
  color: #8ab4a8;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #a5cfc3;
}

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

.cookie-btn {
  padding: 12px 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'QuestrialRegular', sans-serif;
  white-space: nowrap;
}

.cookie-accept {
  background: #8ab4a8;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #6b9d8f;
}

.cookie-decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #666666;
}

.cookie-decline:hover {
  background: #444444;
  border-color: #888888;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-text {
    font-size: 14px;
    text-align: center;
    min-width: auto;
  }

  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
