/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tecro-black, #2A2A2A);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent--hidden {
  transform: translateY(100%);
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  min-width: 250px;
}

.cookie-consent__link {
  color: var(--tecro-orange, #EB8825);
  text-decoration: underline;
}

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

.cookie-consent__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
}

.cookie-consent__btn--accept {
  background: var(--tecro-orange, #EB8825);
  color: white;
}

.cookie-consent__btn--accept:hover {
  background: #ff9933;
  transform: translateY(-1px);
}

.cookie-consent__btn--reject {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-consent__btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile styles */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__text {
    text-align: center;
    font-size: 13px;
  }

  .cookie-consent__buttons {
    flex-direction: column;
    width: 100%;
  }

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