/* ==========================================================================
   NYTESCORT.COM - Cookies Consent Banner Styles (Black & White Luxury Theme)
   ========================================================================== */

#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: #121215;
  color: #ffffff;
  border: 1px solid #3f3f46;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: 10001; /* Renders above all floating elements */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  box-sizing: border-box;
  font-family: var(--font-body), 'Jost', system-ui, -apple-system, sans-serif;
}

/* Banner Active State (Triggered by JS) */
#cookie-consent-banner.cookie-banner-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-banner-title {
  font-family: var(--font-heading), 'Montenegrin', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
}

.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d4d4d8;
  margin: 0;
}

.cookie-banner-text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: #a1a1aa;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.btn-cookie {
  flex: 1;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-body), 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  line-height: 1.2;
  transition: all 0.25s ease;
  box-sizing: border-box;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Accept All Button (Accent Red Pill) */
.btn-cookie-accept {
  background: #c50808;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(197, 8, 8, 0.4);
}

.btn-cookie-accept:hover {
  background: #e00a0a;
  box-shadow: 0 6px 20px rgba(197, 8, 8, 0.6);
  transform: translateY(-2px);
}

/* Decline / Essential Button (White Outlined Pill) */
.btn-cookie-decline {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive adjustments for mobile screen sizes */
@media (max-width: 600px) {
  #cookie-consent-banner {
    bottom: 85px; /* Offset above mobile bottom bar */
    left: 14px;
    right: 14px;
    padding: 16px 18px;
    border-radius: 14px;
  }
  
  .cookie-banner-title {
    font-size: 1.05rem;
  }

  .cookie-banner-text {
    font-size: 0.82rem;
  }

  .btn-cookie {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}
