.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 193, 72, 0.15);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-consent__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 72, 0.4) 50%, transparent 100%);
}

.cookie-consent__icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--prime, #FFC148);
  opacity: 0.9;
}

.cookie-consent__body {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.cookie-consent__text {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
}

.cookie-consent__link {
  color: var(--prime, #FFC148);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cookie-consent__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cookie-consent__btn--accept {
  background: var(--prime, #FFC148);
  color: #121212;
  border-color: var(--prime, #FFC148);
}

.cookie-consent__btn--accept:hover {
  background: #ffce6a;
  border-color: #ffce6a;
}

.cookie-consent__btn--accept:active {
  transform: scale(0.97);
}

.cookie-consent__btn--necessary {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--necessary:hover {
  border-color: rgba(255, 193, 72, 0.4);
  color: #fff;
}

.cookie-consent__btn--necessary:active {
  transform: scale(0.97);
}

@media screen and (max-width: 768px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    gap: 0.75rem;
  }

  .cookie-consent__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cookie-consent__icon {
    width: 1.3rem;
    height: 1.3rem;
  }

  .cookie-consent__text {
    font-size: 0.82rem;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-consent__btn {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }
}
