:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --accent: #4788f1;
  --accent-dark: #1d4ed8;
  --text: #1a3065;
  --muted: #364353;
  --border: #e2e8f0;
  --success: #52b367;
  --shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

header {
  padding: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #f1f5fb);
  border-bottom: 1px solid #e5ebf5;
}

header h1 {
  margin: 0;
  font-weight: 600;
}

header p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.site-header {
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e0e0f3;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.site-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 44px;
  display: block;
}

.menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.menu-toggle {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: #111;
  display: block;
}

.menu > span {
  width: 100%;
  height: 0.5px;
  background: #111;
  display: flex;
}

.menu-toggle:focus-visible {
  outline: 2px solid #2563eb;
  border-radius: 0.25rem;
}

.menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  flex-direction: column;
  min-width: 250px;
  z-index: 1001;
}

.menu.is-open {
  display: flex;
}

.menu a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu a:hover {
  color: #2563eb;
}

.menu a img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.menu a span {
  color: var(--text);
}
.menu a span:hover {
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.layout {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.ads-panel {
  position: relative;
  width: 280px;
  flex: 0 0 auto;
  transition: width 0.3s ease;
}

.ads-panel .controls {
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.ads-panel.is-collapsed {
  width: 0;
}

.ads-panel.is-collapsed .controls {
  transform: translateX(calc(-100% - 1rem));
  opacity: 0;
  pointer-events: none;
}

.controls {
  width: 280px;
  background: var(--panel);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 1.5rem;
}

.controls h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.donation-copy {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid #f4b400;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: #ffc439;
  color: #1f2937;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.donate-button:hover {
  background: #f4b400;
  transform: translateY(-1px);
}

.donate-button:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

.google-ad-unit {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

input[type="file"] {
  width: 100%;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

button {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.1s ease;
}

button.secondary {
  background: #e0e7ff;
  color: #1e3a8a;
  border-color: #c7d2fe;
}

button.primary {
  background: var(--accent-dark);
  color: white;
}

button.primary.outline {
  background: transparent;
  border-color: var(--accent-dark);
  color: var(--accent);
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.ads-toggle {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 1rem;
  right: -18px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 10;
  transition: color 0.2s ease, background 0.2s ease, transform 0.1s ease;
}

.ads-toggle-icon {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.2s ease;
}

.ads-panel.is-collapsed .ads-toggle-icon {
  transform: rotate(180deg);
}

.ads-panel.is-collapsed .ads-toggle {
  right: -18px;
}

.ads-toggle:hover {
  background: #edf2ff;
  color: var(--accent-dark);
}

.status {
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.status.success {
  color: var(--success);
}

.status.error {
  color: #fb7185;
}

.tips {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px dashed var(--border);
}

.tips h3 {
  margin-top: 0;
  font-size: 1rem;
}

.tips ul {
  padding-left: 1rem;
  color: var(--muted);
}

.actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.editor {
  flex: 1;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0.5rem;
  box-shadow: var(--shadow);
}

#tui-image-editor {
  height: 700px;
  position: relative;
}

.editor-action-menu-label {
  color: var(--muted);
}

.editor-inline-status {
  position: absolute;
  right: 1.5rem;
  bottom: 5.5rem;
  padding: 5px 15px !important;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 0.85rem;
  min-width: 160px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.editor-inline-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.editor-inline-status.is-error {
  background: rgba(185, 28, 28, 0.9);
}

.editor-inline-status.is-success {
  background: var(--success);
}

/* Lighten the built-in TUI Image Editor skin */
#tui-image-editor .tui-image-editor-container {
  background-color: #ffffff;
  color: var(--text);
}

#tui-image-editor .tui-image-editor-menu > .tui-image-editor-item,
#tui-image-editor .tui-image-editor-help-menu > .tui-image-editor-item {
  color: var(--muted);
  height: 40px;
  width: 40px;

}

#tui-image-editor .tui-image-editor-menu > .tui-image-editor-item > svg,
#tui-image-editor .tui-image-editor-help-menu > .tui-image-editor-item > svg {
  color: var(--muted);

  height: 25px;
  width: 25px;
}

.tui-image-editor-header-buttons {
  float: right;
  top: 4rem;
  position: relative;
  z-index: 999;
}

.tui-image-editor-menu use.normal.use-default, .tui-image-editor-help-menu use.normal.use-default {
  fill-rule: evenodd;
  fill: var(--accent) !important;
  stroke: var(--accent) !important;
}

#tui-image-editor .tui-image-editor-menu > .tui-image-editor-item.active,
#tui-image-editor .tui-image-editor-help-menu > .tui-image-editor-item.active {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

#tui-image-editor .tui-image-editor-submenu,
#tui-image-editor .tui-image-editor-controls {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
}

#tui-image-editor .tui-image-editor-submenu label,
#tui-image-editor .tui-image-editor-submenu input,
#tui-image-editor .tui-image-editor-submenu span {
  color: var(--text);
}

button {
  margin-bottom: 0;
}

.info-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-hero {
  background: linear-gradient(135deg, #eef2ff, #fdf2f8);
  border: 1px solid #e0e7ff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.page-hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.page-hero p {
  margin-bottom: 0;
  color: #475569;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6366f1;
  margin: 0;
}

.page-section {
  margin-top: 2rem;
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.success {
  background: rgba(82, 179, 103, 0.12);
  color: #166534;
  border: 1px solid rgba(82, 179, 103, 0.4);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
}

.contact-form label {
  font-weight: 600;
  color: #0f172a;
  justify-self: flex-start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  grid-column: 2 / 3;
  justify-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form button {
    grid-column: 1 / 2;
  }
}

.landing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 3.5rem 3rem;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 50%), var(--panel);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 1rem 0;
}

.hero-subcopy {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  margin: 1rem 0;
  flex-direction: column;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: #c7d2fe;
  color: var(--accent-dark);
}

.btn.secondary {
  background: #e0e7ff;
  color: #312e81;
  border-color: #c7d2fe;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

.hero-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hero-tool-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid #e0e7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-dark);
}

.text-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.tool-grid {
  gap: 2rem;
}

.tool-card {
  background: #f8fafc;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1rem;
  background: #f8fafc;
}

.before-after-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sample {
  position: relative;
  border-radius: 16px;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.4rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sample span {
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sample.before {
  background: linear-gradient(135deg, #475569, #1e293b);
  opacity: 0.85;
}

.sample.after {
  background: linear-gradient(135deg, #34d399, #38bdf8);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.highlight-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: #c7d2fe;
  background: #f8fafc;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2.5rem 1.5rem 3rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links__group {
  min-width: 160px;
}

.footer-links__title {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.footer-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.colorize-page,
.remove-page {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.layout > .colorize-page,
.layout > .remove-page {
  margin: 0;
}

.colorize-hero,
.remove-hero {
  margin-bottom: 1rem;
}

.colorize-workbench,
.remove-workbench {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0 2rem;
  box-shadow: var(--shadow);
}

.colorize-status,
.remove-status {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #312e81;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.colorize-status.is-error,
.remove-status.is-error {
  background: #fee2e2;
  color: #7f1d1d;
}

.colorize-status.is-success,
.remove-status.is-success {
  background: #dcfce7;
  color: #065f46;
}

.colorize-grid,
.remove-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.preview-pane {
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1.25rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-pane header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.preview-surface {
  border: 1px dashed #cbd5f5;
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.preview-image {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
}

.preview-image.is-hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.preview-placeholder {
  color: #94a3b8;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0 1rem;
}

.preview-placeholder.is-hidden {
  display: none;
}

.preview-loader {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid #dbeafe;
  border-top-color: #6366f1;
  animation: spin 0.8s linear infinite;
  display: none;
}

.preview-surface.is-loading .preview-loader {
  display: block;
}

.colorize-actions,
.remove-actions {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.colorize-workbench [data-colorize-download][disabled],
.remove-workbench [data-remove-download][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.preview-surface.is-transparent {
  background: repeating-linear-gradient(
      45deg,
      #f1f5f9,
      #f1f5f9 10px,
      #e2e8f0 10px,
      #e2e8f0 20px
  );
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 2.5rem 1.5rem;
  }

  .section {
    padding: 2rem 1.5rem;
  }

  .preview-surface {
    min-height: 220px;
  }

  .colorize-grid,
  .remove-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.info-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  min-height: 180px;
}

.info-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-panel {
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
}

.info-panel ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.policy h2 {
  margin-top: 0;
}

.policy-list {
  list-style: none;
  padding-left: 0;
}

.policy-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.policy-list li:last-child {
  border-bottom: none;
}

.workflow ol {
  padding-left: 1.25rem;
}

.workflow li {
  margin-bottom: 0.5rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #111827;
  color: #f8fafc;
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.cta-banner h3 {
  margin: 0 0 0.25rem 0;
}

.cta-banner p {
  margin: 0;
  color: #cbd5f5;
}

.cta-banner .donate-button {
  width: auto;
  min-width: 190px;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.55) 100%);
  z-index: 2000;
}

.cookie-consent__card {
  width: min(420px, 100%);
  background: var(--panel);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 18px 65px rgba(15, 23, 42, 0.2);
  padding: 1.5rem;
}

.cookie-consent__copy {
  margin: 0.5rem 0 1.5rem 0;
  color: var(--muted);
}

.cookie-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-consent__actions button {
  width: 100%;
}

.cookie-consent__link {
  display: inline-flex;
  margin-top: 1rem;
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
  text-decoration: underline;
}

.cookie-consent__manage {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  z-index: 1990;
}

.cookie-consent__manage:hover,
.cookie-consent__manage:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(15, 23, 42, 0.15);
}
