/*
Theme Name: CoinTax Theme
Theme URI: https://cointax.net
Author: CoinTax
Author URI: https://cointax.net
Description: A modern, clean WordPress theme for CoinTax.net - the free cryptocurrency tax calculator. Features editable homepage sections, custom Calculator and Guide post types, country archive pages, and full Gutenberg/FSE support.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cointax
Tags: full-site-editing, block-patterns, custom-colors, custom-menu, featured-images, responsive-layout, finance, cryptocurrency
*/

/* =============================================================
   DESIGN TOKENS
   ============================================================= */
:root {
  --ct-primary:      #4f46e5;   /* indigo-600 */
  --ct-primary-dark: #3730a3;   /* indigo-800 */
  --ct-primary-light:#eef2ff;   /* indigo-50  */
  --ct-accent:       #06b6d4;   /* cyan-500   */
  --ct-text:         #1e293b;   /* slate-800  */
  --ct-text-muted:   #64748b;   /* slate-500  */
  --ct-border:       #e2e8f0;   /* slate-200  */
  --ct-bg:           #ffffff;
  --ct-bg-alt:       #f8fafc;   /* slate-50   */
  --ct-bg-indigo:    #eef2ff;   /* indigo-50  */
  --ct-radius:       0.75rem;
  --ct-radius-sm:    0.375rem;
  --ct-shadow:       0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --ct-shadow-md:    0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --ct-shadow-lg:    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --ct-font:         'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;
  --ct-mono:         'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --ct-max-width:    1280px;
  --ct-content-width: 800px;
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ct-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ct-text);
  background: var(--ct-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

a { color: var(--ct-primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ct-primary-dark); text-decoration: underline; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ct-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.375rem; }

code {
  font-family: var(--ct-mono);
  font-size: 0.875em;
  background: var(--ct-bg-alt);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-sm);
  padding: 0.1em 0.35em;
}

hr { border: none; border-top: 1px solid var(--ct-border); margin: 2rem 0; }

/* =============================================================
   LAYOUT
   ============================================================= */
.ct-container {
  width: 100%;
  max-width: var(--ct-max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.ct-content-wrap {
  max-width: var(--ct-content-width);
  margin-inline: auto;
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ct-border);
  box-shadow: var(--ct-shadow);
}

.site-header .ct-container {
  padding-block: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ct-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo:hover { color: var(--ct-primary-dark); text-decoration: none; }

.site-logo svg { width: 32px; height: 32px; }

.site-logo-text { color: var(--ct-text); }
.site-logo-text span { color: var(--ct-primary); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ct-text-muted);
  border-radius: var(--ct-radius-sm);
  transition: color .15s, background .15s;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
  color: var(--ct-primary);
  background: var(--ct-primary-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ct-text);
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .primary-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--ct-border);
    padding: 1rem; box-shadow: var(--ct-shadow-md); }
  .primary-navigation.is-open { display: block; }
  .site-nav { flex-direction: column; align-items: flex-start; }
  .site-nav a { width: 100%; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--ct-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--ct-primary);
  color: #fff;
  border-color: var(--ct-primary);
}
.btn-primary:hover {
  background: var(--ct-primary-dark);
  border-color: var(--ct-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--ct-shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ct-primary);
  border-color: var(--ct-primary);
}
.btn-outline:hover {
  background: var(--ct-primary-light);
  color: var(--ct-primary-dark);
  text-decoration: none;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--ct-radius); }

/* =============================================================
   HERO SECTION
   ============================================================= */
.ct-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(79,70,229,.06) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 45%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.05) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ct-primary-light);
  color: var(--ct-primary);
  border: 1px solid rgba(79,70,229,.2);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ct-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.ct-hero h1 span { color: var(--ct-primary); }

.ct-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ct-text-muted);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.ct-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.ct-hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ct-primary);
}

.ct-hero-stat-label {
  font-size: 0.875rem;
  color: var(--ct-text-muted);
}

/* =============================================================
   SECTION SCAFFOLDING
   ============================================================= */
.ct-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ct-section-alt {
  background: var(--ct-bg-alt);
}

.ct-section-indigo {
  background: var(--ct-bg-indigo);
}

.ct-section-header {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto 3rem;
}

.ct-section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ct-primary);
  margin-bottom: 0.75rem;
}

.ct-section-header h2 {
  margin-bottom: 0.75rem;
}

.ct-section-header p {
  color: var(--ct-text-muted);
  margin-bottom: 0;
}

/* =============================================================
   CARD GRID
   ============================================================= */
.ct-grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr)); gap: 1.5rem; }
.ct-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 1.5rem; }
.ct-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 1.25rem; }

/* CALCULATOR CARD */
.ct-calc-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}

.ct-calc-card:hover {
  box-shadow: var(--ct-shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
  border-color: rgba(79,70,229,.3);
}

.ct-calc-card-flag {
  font-size: 2rem;
  line-height: 1;
}

.ct-calc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ct-text);
  margin: 0;
}

.ct-calc-card-desc {
  font-size: 0.875rem;
  color: var(--ct-text-muted);
  margin: 0;
  flex: 1;
}

.ct-calc-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ct-primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* GUIDE CARD */
.ct-guide-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}

.ct-guide-card:hover {
  box-shadow: var(--ct-shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.ct-guide-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ct-bg-alt);
}

.ct-guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.ct-guide-card:hover .ct-guide-card-img img { transform: scale(1.04); }

.ct-guide-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.ct-guide-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ct-primary);
}

.ct-guide-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ct-text);
  margin: 0;
  line-height: 1.4;
}

.ct-guide-card-desc {
  font-size: 0.875rem;
  color: var(--ct-text-muted);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ct-guide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ct-border);
}

.ct-guide-card-date {
  font-size: 0.8125rem;
  color: var(--ct-text-muted);
}

.ct-guide-card-readmore {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ct-primary);
}

/* =============================================================
   FEATURES GRID
   ============================================================= */
.ct-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  transition: box-shadow .2s, transform .2s;
}

.ct-feature-card:hover {
  box-shadow: var(--ct-shadow-md);
  transform: translateY(-2px);
}

.ct-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--ct-primary-light);
  border-radius: var(--ct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--ct-primary);
  font-size: 1.5rem;
}

.ct-feature-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}

.ct-feature-card p {
  font-size: 0.9375rem;
  color: var(--ct-text-muted);
  margin: 0;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.ct-testimonials { }

.ct-testimonial {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-testimonial-stars {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.ct-testimonial-text {
  font-size: 0.9375rem;
  color: var(--ct-text);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.ct-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ct-border);
}

.ct-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ct-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ct-primary);
  flex-shrink: 0;
}

.ct-testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.ct-testimonial-role {
  font-size: 0.8125rem;
  color: var(--ct-text-muted);
}

/* =============================================================
   CALCULATOR WRAPPER (single page)
   ============================================================= */
.ct-calculator-section {
  background: var(--ct-bg-alt);
  border-radius: var(--ct-radius);
  border: 1px solid var(--ct-border);
  padding: 2rem;
  margin: 2.5rem 0;
}

/* =============================================================
   SINGLE POST / PAGE
   ============================================================= */
.ct-single-header {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  border-bottom: 1px solid var(--ct-border);
}

.ct-single-header h1 {
  margin-bottom: 1rem;
}

.ct-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--ct-text-muted);
}

.ct-post-meta a { color: var(--ct-primary); }

.ct-breadcrumb {
  font-size: 0.875rem;
  color: var(--ct-text-muted);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

.ct-breadcrumb a { color: var(--ct-primary); }
.ct-breadcrumb-sep { opacity: 0.5; }

.ct-post-content {
  padding: 3rem 0;
}

.ct-post-content h2 { margin: 2.5rem 0 1rem; }
.ct-post-content h3 { margin: 2rem 0 0.75rem; }
.ct-post-content p  { color: var(--ct-text); }

.ct-post-content ul li::marker { color: var(--ct-primary); }
.ct-post-content ol li::marker { color: var(--ct-primary); font-weight: 700; }

.ct-post-thumbnail {
  width: 100%;
  border-radius: var(--ct-radius);
  margin-bottom: 2rem;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* =============================================================
   COUNTRY PAGE
   ============================================================= */
.ct-country-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid var(--ct-border);
  text-align: center;
}

.ct-country-flag {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* =============================================================
   ARCHIVE
   ============================================================= */
.ct-archive-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--ct-border);
  background: var(--ct-bg-alt);
}

.ct-archive-header h1 {
  margin-bottom: 0.5rem;
}

.ct-archive-desc {
  color: var(--ct-text-muted);
  max-width: 56ch;
  margin: 0;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.ct-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .ct-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .ct-footer-grid { grid-template-columns: 1fr; }
}

.ct-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.ct-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.ct-footer-logo:hover { color: #fff; text-decoration: none; }

.ct-footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ct-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ct-footer-links a {
  font-size: 0.9375rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color .15s;
}

.ct-footer-links a:hover { color: #fff; }

.ct-footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.ct-footer-bottom a { color: #64748b; }
.ct-footer-bottom a:hover { color: #94a3b8; }

.ct-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =============================================================
   PAGINATION
   ============================================================= */
.ct-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.ct-pagination a,
.ct-pagination .current,
.ct-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--ct-radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all .15s;
}

.ct-pagination a {
  background: #fff;
  border: 1px solid var(--ct-border);
  color: var(--ct-text);
}

.ct-pagination a:hover {
  background: var(--ct-primary-light);
  border-color: var(--ct-primary);
  color: var(--ct-primary);
}

.ct-pagination .current {
  background: var(--ct-primary);
  color: #fff;
  border: 1px solid var(--ct-primary);
}

/* =============================================================
   CTA BANNER
   ============================================================= */
.ct-cta-banner {
  background: linear-gradient(135deg, var(--ct-primary) 0%, #3730a3 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.ct-cta-banner h2 { color: #fff; margin-bottom: 1rem; }

.ct-cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.125rem;
  max-width: 44ch;
  margin: 0 auto 2rem;
}

.ct-cta-banner .btn-primary {
  background: #fff;
  color: var(--ct-primary);
  border-color: #fff;
}

.ct-cta-banner .btn-primary:hover {
  background: #f0f0f0;
  color: var(--ct-primary-dark);
}

/* =============================================================
   UTILITY
   ============================================================= */
.ct-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--ct-primary-light);
  color: var(--ct-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.ct-tag:hover { background: rgba(79,70,229,.2); color: var(--ct-primary-dark); text-decoration: none; }

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

.ct-divider { height: 1px; background: var(--ct-border); margin: 2.5rem 0; }

.ct-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--ct-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 768px) {
  .ct-hero-stats { gap: 1.5rem; }
  .ct-grid-3 { grid-template-columns: 1fr 1fr; }
  .ct-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ct-grid-2, .ct-grid-3, .ct-grid-4 { grid-template-columns: 1fr; }
}

/* =============================================================
   WP CORE OVERRIDES
   ============================================================= */
.alignwide { max-width: calc(var(--ct-max-width) + 2rem); margin-inline: auto; }
.alignfull { width: 100%; max-width: none; }

.wp-block-image img { border-radius: var(--ct-radius-sm); }

/* Gutenberg buttons */
.wp-block-button__link {
  border-radius: var(--ct-radius-sm) !important;
  font-weight: 600;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}