/* ==========================================================================
   Flickt Marketing Website — Cookie Consent Banner Styles
   Dark theme matching the site: #1A1A2E / #FF6B6B / #4ECDC4
   ========================================================================== */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 20px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#cookie-consent-banner.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#cookie-consent-banner.cookie-consent--hiding {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  background: #1E1E3A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4),
              0 0 60px rgba(255, 107, 107, 0.06);
}

.cookie-consent__text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #B0B0CC;
  margin: 0;
  flex: 1;
}

.cookie-consent__link {
  color: #4ECDC4;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-consent__link:hover {
  color: #6FE4DC;
}

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

.cookie-consent__btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

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

.cookie-consent__btn--accept {
  background: #FF6B6B;
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  background: #FF5252;
}

.cookie-consent__btn--decline {
  background: rgba(255, 255, 255, 0.08);
  color: #EAEAEA;
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* --- Responsive: stack on mobile --- */
@media (max-width: 600px) {
  #cookie-consent-banner {
    padding: 0 12px 12px;
  }

  .cookie-consent__inner {
    flex-direction: column;
    padding: 16px 18px;
    gap: 14px;
    text-align: center;
  }

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

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

  .cookie-consent__btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
  }
}
