.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--darker-bg);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-bar.active {
  transform: translateY(0);
}

.cookie-bar.dismissed {
  transform: translateY(100%);
}

.cookie-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 25px 40px;
}

.cookie-bar-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  flex: 1;
}

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-accept {
  padding: 10px 30px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-bar-inner {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    text-align: center;
  }

  .cookie-bar-actions {
    width: 100%;
    justify-content: center;
  }
}
