/* ===========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #ffffff;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #008080;
  padding: 16px 24px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  color: #334155;
  margin: 0;
  min-width: 220px;
}

.cookie-banner__link {
  color: #008080;
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: #006e6e;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: #008080;
  color: #ffffff;
}

.cookie-btn--decline {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 14px 16px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
