/**
 * Cookie Banner Styles
 * Минималистичный баннер для уведомления о cookies
 */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999999999999999999999;
  padding: 24px 20px;
  background: linear-gradient(145deg, #190b05 0%, #2D1B0F 100%);
  border-top: 1px solid rgba(212, 171, 112, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__content {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #E8C696;
  margin: 0;
}

.cookie-banner__link {
  color: #D4AB70;
  text-decoration: underline;
  text-decoration-color: rgba(212, 171, 112, 0.4);
  transition: all 0.3s ease;
}

.cookie-banner__link:hover {
  color: #E8C696;
  text-decoration-color: rgba(232, 198, 150, 0.6);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-banner__button {
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__button--accept {
  background: linear-gradient(247.39deg, #E8C696 46.24%, #D4AB70 90.24%);
  box-shadow: inset 0px 0px 44px rgba(255, 255, 255, 0.3);
  color: #2D1B0F;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__button--accept:hover {
  background: linear-gradient(247.39deg, #E8C696 60%, #D4AB70 100%);
  box-shadow: inset 0px 0px 44px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cookie-banner__button--accept:active {
  transform: translateY(0);
}

.cookie-banner__button--decline {
  background: transparent;
  color: #E8C696;
  border: 1px solid rgba(232, 198, 150, 0.3);
  padding: 14px 24px;
}

.cookie-banner__button--decline:hover {
  border-color: rgba(232, 198, 150, 0.6);
  background: rgba(232, 198, 150, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 16px;
  }

  .cookie-banner__container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__content {
    min-width: auto;
    text-align: center;
  }

  .cookie-banner__text {
    font-size: 13px;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .cookie-banner__button {
    width: 100%;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .cookie-banner__text {
    font-size: 12px;
  }

  .cookie-banner__button {
    font-size: 13px;
    padding: 14px 20px;
  }
}


