.page-main {
  padding-bottom: 56px;
}

.page-hero {
  margin: 28px 0 22px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgb(251 191 36 / 0.16), transparent 28%),
    radial-gradient(circle at left center, rgb(161 98 7 / 0.12), transparent 26%),
    linear-gradient(135deg, #3b2f2f 0%, #2a211f 62%, #1e1a17 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-hero h1 {
  font-size: 2.4rem;
  line-height: 1.12;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.06rem;
  max-width: 760px;
  color: #d6d3d1;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  font-weight: 600;
}

.section-stack {
  display: grid;
  gap: 20px;
}

.surface-card {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-wrap: anywhere;
}

.surface-card h2 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.surface-card h3 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.surface-card p + p {
  margin-top: 14px;
}

.surface-card p,
.surface-card li {
  color: #4b3f38;
}

.surface-card ul,
.surface-card ol {
  margin: 16px 0 0 20px;
}

.surface-card li + li {
  margin-top: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe1 100%);
}

.info-panel p {
  margin: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 700;
  color: var(--secondary);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 22px;
}

.callout-card {
  background: linear-gradient(135deg, rgb(251 191 36 / 0.14), rgb(161 98 7 / 0.08));
  border: 1px solid rgb(161 98 7 / 0.16);
}

.callout-card h2 {
  margin-bottom: 10px;
}

.mini-note {
  font-size: 0.92rem;
  color: var(--text-light);
}

.category-grid-shell,
[data-category-index] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

[data-category-index] .card {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

[data-category-index] .card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

[data-category-index] .card h2 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

[data-category-index] .card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

[data-category-index] .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-category-index] .tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at right top, rgb(251 191 36 / 0.12), transparent 24%),
    linear-gradient(135deg, #2f2522 0%, #241d1b 46%, #1e1a17 100%);
  color: white;
}

.cta-banner h2,
.cta-banner h3 {
  color: white;
}

.cta-banner p {
  color: rgb(255 255 255 / 0.84);
}

.button-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #1e1a17;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #f5b51d 0%, #c96d09 56%, #8a5409 100%);
}

.legal-copy p + h2,
.legal-copy ul + h2 {
  margin-top: 26px;
}

.legal-copy h2 {
  font-size: 1.28rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.surface-card form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
}

.field-group textarea {
  min-height: 150px;
  resize: vertical;
}

.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary-shell,
.button-secondary-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary-shell {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  box-shadow: var(--shadow);
}

.button-secondary-shell {
  background: var(--light-bg);
  color: var(--secondary);
  border-color: var(--border);
}

.button-primary-shell:hover,
.button-secondary-shell:hover {
  transform: translateY(-1px);
}

.link-list {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 12px;
}

.link-list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

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

.directory-toolbar {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.control-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 180px));
  gap: 12px;
}

.control-row input,
.control-row select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fffdfa;
  color: var(--text);
  font: inherit;
}

.control-row input:focus,
.control-row select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgb(251 191 36 / 0.14);
}

[data-directory-results-meta] {
  color: var(--text-light);
  font-size: 0.92rem;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.tool-card {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tool-image {
  height: 160px;
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 22px;
  color: white;
  position: relative;
  overflow: hidden;
}

.tool-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgb(255 255 255 / 0.1) 100%);
}

.tool-image-label,
.tool-image-name,
.tool-image-sub {
  position: relative;
  z-index: 1;
}

.tool-image-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 14px;
}

.tool-image-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.tool-image-head .tool-image-label {
  margin-bottom: 0;
  margin-left: auto;
}

.tool-image-name {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 85%;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgb(30 26 23 / 0.28);
}

.tool-image-sub {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.88);
  font-weight: 500;
}

.tool-image-brand,
.logo-badge,
.tool-hero-brand {
  position: relative;
  overflow: hidden;
}

.tool-image-brand,
.logo-badge {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.18);
  box-shadow: 0 12px 24px rgb(30 26 23 / 0.18);
  backdrop-filter: blur(10px);
}

.tool-hero-brand {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.2);
  box-shadow: 0 18px 34px rgb(15 23 42 / 0.18);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
}

.tool-image-brand img,
.logo-badge img,
.tool-hero-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.tool-hero-brand img {
  width: 34px;
  height: 34px;
}

.logo-fallback-text {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tool-image-brand.is-fallback .logo-fallback-text,
.logo-badge.is-fallback .logo-fallback-text,
.tool-hero-brand.is-fallback .logo-fallback-text {
  display: grid;
}

.tool-content {
  padding: 20px;
  flex: 1;
}

.tool-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.tool-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.tool-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.tool-category {
  background: var(--light-bg);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.tool-rating {
  color: var(--warning);
  font-weight: 700;
}

.card-top,
.badge-row,
.listing-meta,
.tag-row,
.card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.card-top {
  justify-content: space-between;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-free {
  background: rgb(16 185 129 / 0.12);
  color: #047857;
}

.badge-paid {
  background: rgb(245 158 11 / 0.14);
  color: #b45309;
}

.listing-card h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.listing-card h3 a {
  text-decoration: none;
}

.listing-card p {
  margin: 0;
  color: var(--text-light);
  overflow-wrap: anywhere;
}

.listing-meta {
  color: var(--text-light);
  font-size: 0.84rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
}

.button.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.search-bar {
  position: relative;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-suggest-item,
.search-suggest-action {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: #fffdfa;
  color: var(--secondary);
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.search-suggest-item + .search-suggest-item,
.search-suggest-item + .search-suggest-action {
  border-top: 1px solid var(--border);
}

.search-suggest-item:hover,
.search-suggest-action:hover {
  background: #f8f1e4;
}

.search-suggest-item span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.use-case-card {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  color: var(--secondary);
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.use-case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(251 191 36 / 0.16), rgb(161 98 7 / 0.12));
  font-size: 1.4rem;
}

.use-case-card h3 {
  margin-bottom: 8px;
}

.use-case-card p {
  color: var(--text-light);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-btn {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
}

.page-btn.is-active {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  border-color: var(--primary);
  color: #1e1a17;
}

.empty-state {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  text-align: center;
  box-shadow: var(--shadow);
}

.comparison-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgb(251 191 36 / 0.14), rgb(161 98 7 / 0.1));
  border: 1px solid rgb(161 98 7 / 0.16);
}

.comparison-highlight strong {
  color: var(--secondary);
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fffdfa;
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--secondary);
  background: #f6ead3;
}

.decision-grid,
.popular-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.decision-card,
.popular-comparison-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.decision-card:hover,
.popular-comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.popular-comparison-card h3,
.decision-card h3 {
  margin-bottom: 10px;
  color: var(--secondary);
}

.popular-comparison-card p,
.decision-card p {
  color: var(--text-light);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.comparison-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
}

.compare-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.compare-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.compare-link-list a:hover {
  background: rgb(251 191 36 / 0.14);
}

@media (max-width: 960px) {
  .info-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .comparison-highlight {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .search-bar,
  .nav-cta {
    width: 100%;
  }

  .nav-cta {
    justify-content: center;
  }

  .page-hero {
    padding: 24px 20px;
  }

  .page-hero h1 {
    font-size: 1.95rem;
  }

  .surface-card {
    padding: 22px 18px;
  }

  .page-hero,
  .page-hero h1,
  .page-hero p,
  .comparison-badge,
  .comparison-meta,
  .hero-chip,
  .hero-chip a {
    overflow-wrap: anywhere;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .control-row,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .search-suggest {
    position: static;
    margin-top: 12px;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  box-shadow: 0 18px 34px rgba(30, 26, 23, 0.22);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(30, 26, 23, 0.28);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-social-row,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social-row {
  margin-top: 16px;
}

.footer-social-row a,
.share-actions a,
.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.share-panel p {
  margin-bottom: 14px;
}

.share-actions button:hover,
.share-actions a:hover,
.footer-social-row a:hover {
  background: rgba(251, 191, 36, 0.14);
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1201;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 47, 47, 0.96), rgba(30, 26, 23, 0.96));
  box-shadow: 0 24px 70px rgba(30, 26, 23, 0.32);
  backdrop-filter: blur(16px);
}

.cookie-consent__content {
  max-width: 760px;
}

.cookie-consent__title {
  margin: 0 0 6px;
  color: #f5f5f4;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0;
  color: #d6d3d1;
  line-height: 1.65;
}

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

.cookie-consent__link,
.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent__link {
  color: #fbbf24;
}

.cookie-consent__btn {
  border: 1px solid rgba(251, 191, 36, 0.18);
  cursor: pointer;
}

.cookie-consent__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f4;
}

.cookie-consent__btn--primary {
  background: linear-gradient(135deg, #fbbf24, #a16207);
  color: #1e1a17;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__link,
  .cookie-consent__btn {
    flex: 1 1 140px;
  }
}
