/* CSS Variables - Matching React Theme */
:root {
  /* Colors from React theme */
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(24, 10%, 10%);
  --card: hsl(40, 20%, 97%);
  --card-foreground: hsl(24, 10%, 10%);
  --primary: hsl(24, 10%, 10%);
  --primary-foreground: hsl(40, 20%, 98%);
  --secondary: hsl(24, 5%, 90%);
  --secondary-foreground: hsl(24, 10%, 10%);
  --muted: hsl(24, 5%, 90%);
  --muted-foreground: hsl(24, 5%, 45%);
  --accent: hsl(24, 10%, 90%);
  --accent-foreground: hsl(24, 10%, 10%);
  --border: hsl(24, 5%, 85%);
  --input: hsl(24, 5%, 85%);
  --ring: hsl(24, 10%, 10%);

  /* Spacing */
  --section-padding: 6rem 0;
  --container-padding: 0 3rem;
  --border-radius: 1.5rem;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 2rem;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link-icon {
  color: var(--foreground);
}

.nav-link-icon:hover {
  opacity: 0.7;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 6rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 100%;
  position: relative;
  z-index: 10;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: var(--border-radius);
  /* Vignette mask for dissolve effect */
  -webkit-mask-image: radial-gradient(circle, black 25%, transparent 65%);
  mask-image: radial-gradient(circle, black 25%, transparent 65%);
  transform: scale(1.8);
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--foreground);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  height: 3rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: hsl(24, 10%, 5%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--accent);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-border {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section-accent {
  background: rgba(0, 0, 0, 0.02);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.section-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted-foreground);
}

.section-img {
  width: 100%;
  max-width: 60rem;
  height: auto;
  opacity: 0.9;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.section-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gradient background for mission section image */
#mission .section-image {
  background: url('images/bgs/Gradient-1.webp') center/cover;
  border-radius: 1rem;
  padding: 2rem;
}

#mission .section-img {
  filter: brightness(1.1);
}

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

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(28, 25, 23, 0.2);
  background-color: rgba(245, 245, 244, 0.8);
}

.product-icon {
  margin-bottom: 1.5rem;
}

.product-img {
  width: 4rem;
  height: 4rem;
  opacity: 0.8;
  filter: brightness(0.3);
}

.product-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.product-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.product-link:hover {
  opacity: 0.7;
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Yellow highlight for coming soon product card */
.product-card-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 54, 0.12) 0%, rgba(255, 255, 54, 0.08) 100%);
  border: 2px solid rgba(255, 255, 54, 0.35);
  box-shadow: 0 4px 20px rgba(255, 255, 54, 0.2);
}

.product-card-highlight:hover {
  background: linear-gradient(135deg, rgba(255, 255, 54, 0.18) 0%, rgba(255, 255, 54, 0.12) 100%);
  border-color: rgba(255, 255, 54, 0.5);
  box-shadow: 0 12px 40px rgba(255, 255, 54, 0.3);
}

/* Green highlight for released product card */
.product-card-released {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
  border: 2px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.product-card-released:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.12) 100%);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.3);
}

/* Released badge */
.released-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(22, 163, 74, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.btn-coming-soon {
  position: relative;
  overflow: visible;
}

.btn-coming-soon::before {
  content: 'Coming Soon';
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #ffff36;
  color: hsl(24, 10%, 10%);
  padding: 0.25rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 255, 54, 0.4);
  z-index: 10;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-img {
  width: 5rem;
  height: 5rem;
  opacity: 0.8;
  filter: brightness(0.3);
}

.feature-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 4rem 0 1rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 1;
}

.footer-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-video {
    max-width: 100%;
    transform: scale(1.5);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
    --container-padding: 0 1.5rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .section-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-image {
    order: -1;
  }

  .section-img {
    max-width: 100%;
    margin: 0 auto;
  }

  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (max-width: 480px) {

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ========================================
   WIKI/DOCUMENTATION PAGE STYLES
   ======================================== */

/* Wiki Body */
.wiki-body {
  background: var(--background);
  padding-top: 80px;
}

/* Wiki Header */
.wiki-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.wiki-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wiki-home {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wiki-home:hover {
  opacity: 0.7;
}

.wiki-actions {
  display: flex;
  gap: 1rem;
}

.wiki-action {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.wiki-action:hover {
  background: hsl(24, 10%, 5%);
}

/* Wiki Container */
.wiki-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

/* Wiki Sidebar */
.wiki-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.wiki-toc h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.wiki-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wiki-toc li {
  margin-bottom: 0.5rem;
}

.wiki-toc a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: block;
  padding: 0.25rem 0;
}

.wiki-toc a:hover {
  color: var(--foreground);
}

/* Wiki Main Content */
.wiki-main {
  min-width: 0;
}

.wiki-article {
  max-width: 900px;
}

/* Wiki Page Header */
.wiki-page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.wiki-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.wiki-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.wiki-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.wiki-version,
.wiki-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Wiki Sections */
.wiki-section {
  margin-bottom: 3rem;
}

.wiki-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.wiki-subheading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.wiki-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* Wiki Lists */
.wiki-list {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.7;
}

.wiki-list li {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.wiki-list li strong {
  font-weight: 600;
  color: var(--foreground);
}

/* Wiki Code Blocks */
.wiki-code-block {
  background: hsl(24, 5%, 95%);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  overflow-x: auto;
}

.wiki-code-block code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--foreground);
}

code {
  background: hsl(24, 5%, 95%);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875em;
  color: var(--foreground);
}

/* Wiki Infobox */
.wiki-infobox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.wiki-infobox table {
  width: 100%;
  border-collapse: collapse;
}

.wiki-infobox tr {
  border-bottom: 1px solid var(--border);
}

.wiki-infobox tr:last-child {
  border-bottom: none;
}

.wiki-infobox td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.wiki-infobox td:first-child {
  width: 40%;
  color: var(--muted-foreground);
}

.wiki-infobox td:last-child {
  color: var(--foreground);
}

.wiki-infobox a {
  color: var(--foreground);
  text-decoration: underline;
}

.wiki-infobox a:hover {
  opacity: 0.7;
}

/* Wiki Notices */
.wiki-notice-coming-soon {
  background: hsl(30, 90%, 95%);
  border-left: 4px solid hsl(30, 90%, 55%);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.wiki-notice-coming-soon h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(30, 90%, 35%);
  margin-bottom: 0.5rem;
}

.wiki-notice-coming-soon p {
  color: hsl(30, 80%, 30%);
  margin: 0;
}

.wiki-notice-coming-soon a {
  color: hsl(30, 90%, 35%);
  text-decoration: underline;
}

/* Responsive Wiki Styles */
@media (max-width: 1024px) {
  .wiki-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wiki-sidebar {
    position: static;
    max-height: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .wiki-body {
    padding-top: 60px;
  }

  .wiki-nav {
    padding: 0 1rem;
  }

  .wiki-container {
    padding: 1rem;
  }

  .wiki-title {
    font-size: 2rem;
  }

  .wiki-heading {
    font-size: 1.5rem;
  }

  .wiki-subheading {
    font-size: 1.125rem;
  }

  .wiki-code-block {
    padding: 0.75rem 1rem;
  }
}

/* Coming Soon Badge for Header */
.coming-soon-badge-header {
  background: hsl(24, 10%, 10%);
  color: hsl(40, 20%, 98%);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product icon in wiki header */
.product-header-icon {
  margin-bottom: 1.5rem;
}

.product-header-icon img {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}