/* ============================================
   Cookie Notice Styles (based on climb-lab t657)
   ============================================ */

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-notice_closed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-notice__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-notice__text {
  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-notice__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-family: 'TildaSans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #000000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cookie-notice__button:hover {
  background-color: #333333;
}

.cookie-notice__button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.cookie-notice__close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.cookie-notice__close-button:hover {
  opacity: 0.7;
}

.cookie-notice__close-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
  border-radius: 2px;
}

.cookie-notice__close-button svg {
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 640px) {
  .cookie-notice {
    padding: 15px;
  }

  .cookie-notice__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-notice__text {
    font-size: 12px;
    min-width: auto;
  }

  .cookie-notice__button {
    width: 100%;
    padding: 12px 30px;
    font-size: 12px;
  }

  .cookie-notice__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
