/*
Theme Name: Lis Skins Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Лёгкая адаптивная тема для маркетплейса скинов Lis Skins.
Version: 1.0.0
Text Domain: lis-skins
*/

:root {
  --ls-color-bg: #020617;
  --ls-color-bg-alt: #02091b;
  --ls-color-surface: #020617;
  --ls-color-surface-alt: #02091b;
  --ls-color-border: #1e293b;
  --ls-color-primary: #f97316;
  --ls-color-primary-soft: rgba(249, 115, 22, 0.12);
  --ls-color-accent: #38bdf8;
  --ls-color-text: #e5e7eb;
  --ls-color-text-muted: #9ca3af;
  --ls-color-danger: #f97373;

  --ls-radius-sm: 8px;
  --ls-radius-md: 12px;
  --ls-radius-lg: 16px;

  --ls-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --ls-shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.6);

  --ls-container-width: 1120px;
  --ls-header-height: 72px;

  --ls-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ls-font-sans);
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #000 100%);
  color: var(--ls-color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ls-color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.ls-container {
  width: 100%;
  max-width: var(--ls-container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.ls-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.88), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.ls-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--ls-header-height);
}

.ls-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fed7aa 0, #f97316 40%, #7c2d12 100%);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9), 0 18px 40px rgba(15, 23, 42, 0.9);
}

.ls-logo__icon {
  font-size: 20px;
}

.ls-logo__text {
  display: flex;
  flex-direction: column;
}

.ls-logo__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ls-logo__subtitle {
  font-size: 11px;
  color: var(--ls-color-text-muted);
}

.ls-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ls-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ls-nav__link {
  font-size: 14px;
  color: var(--ls-color-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.ls-nav__link:hover,
.ls-nav__link--active {
  color: var(--ls-color-text);
}
.ls-nav__link--active::after,
.ls-nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ls-color-primary), var(--ls-color-accent));
}

.ls-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--ls-color-text-muted);
}

.ls-lang-switcher span {
  cursor: pointer;
}
.ls-lang-switcher span.ls-lang-switcher__active {
  color: var(--ls-color-text);
  font-weight: 600;
}

/* Buttons */

.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.ls-btn--primary {
  background: radial-gradient(circle at 0 0, #fed7aa 0, #f97316 35%, #f97316 100%);
  color: #020617;
  box-shadow: var(--ls-shadow-soft);
}
.ls-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 70px rgba(249, 115, 22, 0.6);
}

.ls-btn--outline {
  background: rgba(15, 23, 42, 0.9);
  color: var(--ls-color-text);
  border-color: rgba(148, 163, 184, 0.7);
}
.ls-btn--outline:hover {
  border-color: var(--ls-color-accent);
  box-shadow: var(--ls-shadow-subtle);
}

.ls-btn--ghost {
  background: transparent;
  color: var(--ls-color-text-muted);
  border-color: rgba(148, 163, 184, 0.25);
}
.ls-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.7);
}

/* Burger */

.ls-header__burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ls-header__burger-lines {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ls-color-text);
  position: relative;
}
.ls-header__burger-lines::before,
.ls-header__burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ls-color-text);
}
.ls-header__burger-lines::before {
  top: -6px;
}
.ls-header__burger-lines::after {
  top: 6px;
}

/* HERO */

.ls-section {
  padding: 64px 0;
}

.ls-section--tight {
  padding: 40px 0;
}

.ls-hero {
  padding-top: 32px;
  padding-bottom: 40px;
}

.ls-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.ls-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 55%);
  color: var(--ls-color-text-muted);
  margin-bottom: 14px;
}

.ls-kicker__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ls-color-primary-soft);
  color: var(--ls-color-primary);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.ls-hero__title {
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 12px;
}
.ls-hero__title span {
  background: linear-gradient(120deg, #f97316, #fbbf24, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.ls-hero__subtitle {
  font-size: 14px;
  color: var(--ls-color-text-muted);
  max-width: 440px;
  margin-bottom: 18px;
}

.ls-hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 20px;
}

.ls-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ls-color-text-muted);
}
.ls-bullet__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.ls-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.ls-hero__meta {
  font-size: 11px;
  color: var(--ls-color-text-muted);
}

.ls-hero__form {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--ls-radius-lg);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.1), transparent 60%), rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--ls-shadow-soft);
}

.ls-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ls-input {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 10px 14px;
  font-size: 14px;
  background: rgba(15, 23, 42, 0.96);
  color: var(--ls-color-text);
}
.ls-input::placeholder {
  color: var(--ls-color-text-muted);
}

.ls-input-helper {
  margin-top: 6px;
  font-size: 11px;
  color: var(--ls-color-text-muted);
}

/* Hero sidebar card */

.ls-hero__side {
  align-self: stretch;
}

.ls-card {
  border-radius: var(--ls-radius-lg);
  background: radial-gradient(circle at 0 0, rgba(249, 115, 22, 0.22), transparent 60%), rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--ls-shadow-soft);
  padding: 18px 18px 16px;
}

.ls-card--neutral {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: var(--ls-shadow-subtle);
}

.ls-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ls-card__title {
  font-size: 14px;
  font-weight: 600;
}
.ls-card__badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.ls-card__meta {
  font-size: 11px;
  color: var(--ls-color-text-muted);
  margin-bottom: 12px;
}

.ls-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 6px;
}
.ls-card__row-label {
  color: var(--ls-color-text-muted);
}
.ls-card__row-value {
  font-weight: 600;
}

/* GRID / SECTIONS */

.ls-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.ls-section__title {
  font-size: 20px;
  margin: 0;
}
.ls-section__subtitle {
  font-size: 13px;
  color: var(--ls-color-text-muted);
  max-width: 420px;
}

.ls-grid {
  display: grid;
  gap: 16px;
}

.ls-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ls-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ls-feature {
  padding: 14px 14px 12px;
  border-radius: var(--ls-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.06), transparent 55%), rgba(15, 23, 42, 0.96);
}

.ls-feature__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.ls-feature__title {
  font-size: 14px;
  margin: 0 0 4px;
}
.ls-feature__text {
  font-size: 13px;
  color: var(--ls-color-text-muted);
}

/* Steps */

.ls-steps {
  display: grid;
  gap: 16px;
}

.ls-step {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--ls-radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
}

.ls-step__index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--ls-color-primary-soft);
  color: var(--ls-color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.ls-step__body {
  font-size: 13px;
}
.ls-step__title {
  font-weight: 600;
  margin-bottom: 2px;
}
.ls-step__text {
  color: var(--ls-color-text-muted);
}

/* Tables */

.ls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ls-table th,
.ls-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}
.ls-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ls-color-text-muted);
  background: rgba(15, 23, 42, 0.9);
}

/* FAQ */

.ls-faq {
  display: grid;
  gap: 10px;
}

.ls-faq-item {
  border-radius: var(--ls-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.96);
  overflow: hidden;
}

.ls-faq-item__button {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.ls-faq-item__question {
  font-size: 14px;
  text-align: left;
}
.ls-faq-item__icon {
  font-size: 16px;
  margin-left: 10px;
}

.ls-faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}
.ls-faq-item--open .ls-faq-item__content {
  max-height: 320px;
}
.ls-faq-item__inner {
  padding: 0 14px 10px;
  font-size: 13px;
  color: var(--ls-color-text-muted);
}

/* Badges / labels */

.ls-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  color: var(--ls-color-text-muted);
}

/* Reviews */

.ls-reviews {
  display: grid;
  gap: 14px;
}

.ls-review {
  border-radius: var(--ls-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.95);
}

.ls-review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.ls-review__user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ls-review__avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #4b5563 0, #020617 60%);
}
.ls-review__name {
  font-size: 13px;
  font-weight: 600;
}
.ls-review__meta {
  font-size: 11px;
  color: var(--ls-color-text-muted);
}
.ls-review__rating {
  font-size: 12px;
}

.ls-review__text {
  font-size: 13px;
  color: var(--ls-color-text);
}

/* BLOG CARDS */

.ls-posts {
  display: grid;
  gap: 16px;
}

.ls-post-card {
  padding: 14px 14px 12px;
  border-radius: var(--ls-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.96);
}

.ls-post-card__meta {
  font-size: 11px;
  color: var(--ls-color-text-muted);
  margin-bottom: 4px;
}
.ls-post-card__title {
  font-size: 15px;
  margin: 0 0 6px;
}
.ls-post-card__excerpt {
  font-size: 13px;
  color: var(--ls-color-text-muted);
}

/* FOOTER */

.ls-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top, #020617 0, #000 80%);
  padding: 32px 0 22px;
  font-size: 12px;
  color: var(--ls-color-text-muted);
}

.ls-footer__top {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-bottom: 24px;
}

.ls-footer__logo-text {
  font-size: 13px;
  max-width: 320px;
}

.ls-footer__list-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ls-color-text-muted);
  margin-bottom: 8px;
}
.ls-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ls-footer__list li {
  margin-bottom: 4px;
}
.ls-footer__link {
  font-size: 12px;
  color: var(--ls-color-text-muted);
}
.ls-footer__link:hover {
  color: var(--ls-color-text);
}

.ls-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding-top: 12px;
}
.ls-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ls-footer__legal a {
  color: var(--ls-color-text-muted);
}

/* PAGE LAYOUT */

.ls-main {
  min-height: calc(100vh - 230px);
}

.ls-page {
  padding-top: 20px;
}

.ls-page__title {
  font-size: 22px;
  margin: 0 0 8px;
}
.ls-page__lead {
  font-size: 14px;
  color: var(--ls-color-text-muted);
  max-width: 540px;
  margin-bottom: 20px;
}

/* TYPOGRAPHY */

.ls-content h1,
.ls-content h2,
.ls-content h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}
.ls-content h1 {
  font-size: 22px;
}
.ls-content h2 {
  font-size: 18px;
}
.ls-content h3 {
  font-size: 16px;
}
.ls-content p {
  font-size: 14px;
  margin: 0 0 12px;
}
.ls-content ul {
  padding-left: 20px;
  margin: 0 0 12px;
}
.ls-content li {
  margin-bottom: 4px;
}
.ls-content strong {
  font-weight: 600;
}

/* 404 */

.ls-404 {
  text-align: center;
  padding: 60px 0;
}
.ls-404__code {
  font-size: 80px;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  background: linear-gradient(120deg, #f97316, #facc15, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}
.ls-404__text {
  font-size: 15px;
  margin-bottom: 12px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .ls-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .ls-footer__top {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 768px) {
  .ls-header__nav {
    position: fixed;
    inset: var(--ls-header-height) 0 auto 0;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
    flex-direction: column;
    padding: 14px 16px 16px;
  }
  .ls-header__nav--open {
    transform: translateY(0);
  }
  .ls-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .ls-header__burger {
    display: inline-flex;
  }
  .ls-header__actions {
    display: none;
  }

  .ls-hero {
    padding-top: 18px;
  }
  .ls-hero__subtitle {
    max-width: none;
  }
  .ls-hero__bullets {
    grid-template-columns: minmax(0, 1fr);
  }

  .ls-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .ls-section {
    padding: 40px 0;
  }
  .ls-section__title {
    font-size: 18px;
  }
}