/* ============================================
   COOKIE BANNER — Component Styles
============================================ */
.cookie-banner-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 480px;
  width: calc(100% - 48px);
  background: rgba(17, 17, 19, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  z-index: 999999;
  padding: 24px;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #fafaf9;
  animation: slideInUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInUpCookie {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e4c06e, #c9a84c, #a07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.cookie-banner-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250, 250, 249, 0.7);
  margin-bottom: 20px;
}

.cookie-options {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-bottom: 20px;
}

.cookie-option-item {
  margin-bottom: 16px;
}

.cookie-option-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fafaf9;
  cursor: pointer;
  user-select: none;
}

.cookie-option-item input[type="checkbox"] {
  accent-color: #c9a84c;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cookie-option-item .option-desc {
  font-size: 0.75rem;
  color: rgba(250, 250, 249, 0.55);
  margin-left: 26px;
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.4;
}

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

.btn-cookie {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.btn-primary-cookie {
  background: #c9a84c;
  color: #0a0a0b;
  border: none;
}

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

.btn-secondary-cookie {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fafaf9;
}

.btn-secondary-cookie:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-link-cookie {
  background: none;
  border: none;
  color: #c9a84c;
  padding: 8px 12px;
}

.btn-link-cookie:hover {
  color: #e4c06e;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner-container {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 20px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie {
    width: 100%;
  }
}
