
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  border-top: 2px solid #ff1493;
  padding: 1.5rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
}

.cookie-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.cookie-content {
  flex: 1;
  color: #fff;
}

.cookie-content h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.cookie-content p {
  font-size: 0.875rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.cookie-content a {
  color: #ff1493;
  text-decoration: none;
  font-weight: 600;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn.primary {
  background: #ff1493;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.cookie-btn.primary:hover {
  background: #ff0080;
  box-shadow: 0 6px 16px rgba(255, 20, 147, 0.4);
}

.cookie-btn.secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

.cookie-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ff1493;
  color: #ff1493;
}

.cookie-btn.tertiary {
  background: transparent;
  color: #ff1493;
  border: 1px solid #ff1493;
}

.cookie-btn.tertiary:hover {
  background: #ff1493;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #0a0a0a;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.cookie-category:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #ff1493;
}

.cookie-category-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.cookie-category-text p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-modal-buttons .cookie-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .cookie-container {
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
  }
  
  .cookie-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

.cookie-banner { color: #ffffff !important; }
.cookie-btn.primary { color: #ffffff !important; }
.cookie-btn.secondary:hover { color: #111111 !important; }
.cookie-btn.tertiary:hover { color: #ffffff !important; }

.cookie-modal { color: #ffffff !important; }


/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
.cookie-banner { color: #ffffff !important; }
.cookie-btn.primary { color: #ffffff !important; }
.cookie-btn.secondary:hover { color: #111111 !important; }
.cookie-btn.tertiary:hover { color: #ffffff !important; }
.cookie-modal { color: #ffffff !important; }
