/* ============================================================
   SnapSell static export — language switching & font setup
   ============================================================ */

/* Fonts (replaces next/font) */
:root {
  --font-plus-jakarta: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-urbanist: 'Urbanist', system-ui, sans-serif;
  --font-poppins: 'Poppins', system-ui, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Urbanist', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  margin: 0;
}

/* Language visibility — only the active language root is shown */
.lang-root {
  display: none;
}
html[data-lang='en'] .lang-root[data-lang='en'] {
  display: block;
}
html[data-lang='de'] .lang-root[data-lang='de'] {
  display: block;
}

/* ============================================================
   Footer (matches checkout-template design)
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #0b0f19;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background-color: #0b0f19;
  color: #2fea1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  background-color: #080a0f;
  color: #ffffff;
  border-top: 1px solid rgba(47, 234, 28, 0.25);
  box-shadow: 0 -1px 24px rgba(47, 234, 28, 0.08);
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 16px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
  color: #ffffff;
}

.logo-footer .logo-mark {
  background-color: #2fea1c;
  color: #080a0f;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 700;
  color: #2fea1c;
  margin-top: 16px;
}

.footer-description {
  font-size: 13.5px;
  color: #9ca3af;
  margin-top: 6px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  font-size: 13.5px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #2fea1c;
}

.store-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #10141c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  color: #ffffff;
  width: fit-content;
  transition: border-color 0.15s ease;
}

.store-badge:hover {
  border-color: #2fea1c;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 13px;
  font-weight: 600;
}

.store-badge-text small {
  font-size: 10px;
  font-weight: 400;
  color: #9ca3af;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.footer-copyright {
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #10141c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  color: #2fea1c;
  border-color: #2fea1c;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
