/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  background: rgba(13, 11, 20, 0.96);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

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

.cookie-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: var(--g);
  color: #fff;
}

.cookie-btn.accept:hover {
  background: var(--gd);
}

.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-btn.reject:hover {
  border-color: #fff;
}

.cookie-visible .whatsapp-btn {
  bottom: 104px;
}

@media (max-width: 768px) {
  .cookie-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}
