:root {
  --bg: #050812;
  --bg-alt: #0e1324;
  --card: #151a2f;
  --accent: #e9a14a;
  --accent-soft: rgba(233, 161, 74, 0.25);
  --accent-strong: #ffcf73;
  --text: #f5f5fa;
  --muted: #a3a7c7;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  --body-bg: radial-gradient(
    circle at top,
    #202740 0,
    #050812 38%,
    #080e1c 100%
  );
  --section-alt-bg: radial-gradient(circle at top, #222945 0, #0a1020 60%);
}

[data-theme="light"] {
  --bg: #f6f7fc;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --accent: #e0a23c;
  --accent-soft: rgba(224, 162, 60, 0.15);
  --accent-strong: #b46b08;
  --text: #171827;
  --muted: #5b6078;
  --border-subtle: rgba(10, 14, 30, 0.12);
  --shadow-soft: 0 18px 45px rgba(32, 37, 66, 0.22);
  --shadow-subtle: 0 10px 28px rgba(32, 37, 66, 0.2);
  --body-bg: radial-gradient(
    circle at top,
    #ffffff 0,
    #f1f3ff 40%,
    #e3e7ff 100%
  );
  --section-alt-bg: radial-gradient(circle at top, #f0f3ff 0, #e1e5ff 60%);
}

[data-theme="light"] .site-header {
  background: linear-gradient(
    to bottom,
    rgba(244, 246, 255, 0.96),
    rgba(238, 241, 255, 0.9),
    rgba(232, 236, 255, 0.86)
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--body-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 18, 0.96),
    rgba(5, 8, 18, 0.86),
    rgba(5, 8, 18, 0.72)
  );
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(
    from 160deg,
    #ffe6a7,
    #e8a15a,
    #f09aaa,
    #9c8be6,
    #ffe6a7
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(232, 161, 90, 0.55);
  position: relative;
  overflow: hidden;
}

.logo-mandala {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(246, 243, 238, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
  position: relative;
}

.logo-mandala::before,
.logo-mandala::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.55);
}

.logo-mandala::after {
  inset: 9px;
  border-style: solid;
  opacity: 0.9;
}

.site-title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.site-tagline {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition:
    color 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  transform: translateY(-0.5px);
}

.theme-toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.theme-toggle-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  padding: 56px 0 32px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: center;
}

.hero-content > div {
  max-width: 640px;
  text-align: left;
}

.hero h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.hero p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-note {
  color: var(--accent-strong);
  font-weight: 500;
  margin-top: 4px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(232, 161, 90, 0.35) 0, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(156, 139, 230, 0.28) 0, transparent 52%),
    radial-gradient(circle at 40% 100%, rgba(255, 214, 165, 0.4) 0, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.12s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #11121a;
  box-shadow: 0 14px 35px rgba(233, 161, 74, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(233, 161, 74, 0.7);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: 40px 0 36px;
  scroll-margin-top: 96px;
}

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

.section-header {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: left;
}

.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.product-card {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.0)
    ),
    var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.product-image.placeholder span {
  opacity: 0.9;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-title {
  margin: 0;
  font-size: 1rem;
}

.product-description {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.affiliate-disclosure {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(233, 161, 74, 0.6);
  background: rgba(7, 10, 24, 0.9);
  padding: 10px 12px;
}

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

.local-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.local-card h3 {
  margin: 0 0 6px;
}

.local-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.local-details {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.local-note,
.local-disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.local-note strong,
.local-disclaimer strong {
  color: var(--accent-strong);
}

.local-disclaimer {
  margin-top: 18px;
}

.section#about p {
  font-size: 0.96rem;
  color: var(--muted);
}

.contact-email a {
  color: var(--accent-strong);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 16px 0 22px;
  margin-top: 10px;
  background: linear-gradient(
    to top,
    rgba(5, 8, 18, 0.98),
    rgba(5, 8, 18, 0.92)
  );
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-small {
  margin-top: 4px;
  opacity: 0.9;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 16px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero {
    padding-top: 40px;
  }
}

