
/* ==========================================
   COOKIE NOTICE — FIXED BOTTOM BAR 
   ========================================== */

.cookie-notice-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  z-index: 9999;

  font-family: 'Inter', system-ui, sans-serif;
  gap: 16px;
}

/* Title block */
.cookie-notice-title {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 70px;
}

.cookie-notice-title img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cookie-notice-title h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

/* CTA container */
.cookie-cta-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 24px;
}

/* Buttons */
.cookie-btn {
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;

  font-size: 14px;
  font-weight: 600;
  font-family: inherit;

  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

/* Accept button */
.cookie-btn.cookie-accept {
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cookie-btn.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(37, 99, 235, 0.35);
}

/* Reject button */
.cookie-btn.cookie-reject {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.cookie-btn.cookie-reject:hover {
  transform: translateY(-1px);
  background: #e5e7eb;
}

/* Remove default p spacing inside buttons */
.cookie-btn p {
  margin: 0;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

/* Mobile */
@media (max-width: 640px) {

  .cookie-notice-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
  }

  .cookie-cta-container {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }

  .cookie-notice-title {
    height: 20px;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
