/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.cookie-consent__description {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent__btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-consent__btn--accept {
  background: var(--primary);
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary);
}

.cookie-consent__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cookie-consent__link:hover {
  color: #fff;
}

/* Responsive Design */
@media (min-width: 768px) {
  .cookie-consent__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-consent__description {
    flex: 1;
    margin-right: 2rem;
  }

  .cookie-consent__actions {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent__title {
    font-size: 1.1rem;
  }

  .cookie-consent__description {
    font-size: 0.9rem;
  }

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