
/* ===== CUSTOM COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 420px;
  max-width: calc(100vw - 48px);
  background-color: #ffffff;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: inherit;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.cookie-consent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-custom-primary);
  margin: 0;
}

.cookie-consent-body p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cookie-consent-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.cookie-consent-links a {
  color: var(--color-custom-primary);
  text-decoration: underline;
}

.cookie-consent-links a:hover {
  text-decoration: none;
}

.cookie-consent-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-consent-btn-custom {
  background: none;
  border: none;
  color: #333;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.cookie-consent-btn-custom:hover {
  color: var(--color-custom-primary);
}

.cookie-consent-btn-reject {
  background-color: #e9ecef;
  color: #495057;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.cookie-consent-btn-reject:hover {
  background-color: #dee2e6;
  color: #212529;
}

.cookie-consent-btn-accept {
  background-color: var(--color-custom-primary);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.cookie-consent-btn-accept:hover {
  filter: brightness(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Customization Panel */
.cookie-consent-custom-panel {
  display: none;
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 16px;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-custom-primary);
  cursor: pointer;
  margin-top: 2px;
}

.cookie-consent-option-text {
  flex: 1;
}

.cookie-consent-option-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 2px 0;
}

.cookie-consent-option-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

.cookie-consent-btn-save {
  background-color: var(--color-custom-primary);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.cookie-consent-btn-save:hover {
  filter: brightness(0.95);
}