/* Tessol STORE site shell — /store · store.* */
.site-store {
  --store-bg: #f5f6f4;
  --store-surface: #ffffff;
  --store-ink: #141816;
  --store-muted: #5c6560;
  --store-accent: #1f7a4c;
  --store-accent-deep: #145536;
  --store-line: #dce3dd;
  --store-header-h: 64px;
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, #e9efe9 0%, var(--store-bg) 28%),
    var(--store-bg);
  color: var(--store-ink);
  font-family: "DM Sans", "Spoqa Han Sans Neo", sans-serif;
}

.site-store__wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-store .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--store-accent);
  color: #fff;
}
.site-store .skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--store-line);
}

.store-header__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--store-header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.store-header__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--store-ink);
  flex-shrink: 0;
}

.store-header__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.store-header__badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--store-accent);
  letter-spacing: 0.02em;
}

.store-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}

.store-header__nav a {
  color: var(--store-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.store-header__nav a:hover {
  color: var(--store-accent-deep);
}

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

.store-header__link {
  color: var(--store-muted);
  text-decoration: none;
  font-size: 13px;
}

.store-header__cart {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--store-accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.store-header__cart:hover {
  background: var(--store-accent-deep);
}

#content[data-layout="store"] {
  flex: 1;
}

.site-store .page-store {
  padding: 56px 0 80px;
}

.site-store .page-stub__inner {
  max-width: 720px;
}

.site-store .page-stub__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--store-ink);
}

.site-store .page-stub__desc {
  margin: 0 0 28px;
  color: var(--store-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.site-store .page-stub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-store .page-stub__btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: var(--store-surface);
  color: var(--store-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.site-store .page-stub__btn--primary {
  border-color: var(--store-accent);
  background: var(--store-accent);
  color: #fff;
}

.store-footer {
  margin-top: auto;
  border-top: 1px solid var(--store-line);
  background: #141816;
  color: #b7c0ba;
}

.store-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 24px 28px;
}

.store-footer__name {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.store-footer__copy {
  margin: 0 0 20px;
  font-size: 13px;
  opacity: 0.8;
}

.store-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.store-footer__nav a {
  color: #8f9a93;
  text-decoration: none;
  font-size: 13px;
}

.store-footer__nav a:hover {
  color: #fff;
}

.store-footer__legal {
  margin: 0;
  font-size: 12px;
  opacity: 0.55;
}

@media (max-width: 768px) {
  .store-header__nav {
    display: none;
  }
  .store-header__link {
    display: none;
  }
}
