/* Cookie Notice Component */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  padding: 10px 0;
}

.cookie-notice--visible {
  transform: translateY(0);
}

.cookie-notice__container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-notice__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-notice__text {
  flex: 1;
}

.cookie-notice__description {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

.cookie-notice__link {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cookie-notice__link:hover {
  opacity: 0.8;
}

.cookie-notice__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  flex-shrink: 0;
}

.cookie-notice__btn {
  min-width: 0;
  white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 992px) {
  .cookie-notice__container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice__actions {
    justify-content: stretch;
  }

  .cookie-notice__btn {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .cookie-notice {
    padding: 10px 0;
  }

  .cookie-notice__content {
    gap: 12px;
  }

  .cookie-notice__description {
    font-size: 13px;
  }

  .cookie-notice__actions {
    gap: 10px;
  }

  .cookie-notice__btn {
    font-size: 13px;
    padding: 8px 16px;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .cookie-notice__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cookie-notice__actions {
    width: 100%;
  }

  .cookie-notice__btn {
    width: 100%;
  }
}

