:root {
  --sw-navy: #0b1324;
  --sw-ink: #172033;
  --sw-muted: #5d687b;
  --sw-paper: #f5f7fa;
  --sw-white: #fff;
  --sw-blue: #176bdf;
  --sw-blue-dark: #1157b8;
  --sw-lime: #b8e84a;
  --sw-coral: #f06449;
  --sw-line: #dce2ea;
  --sw-soft-blue: #eaf2fd;
  --sw-soft-lime: #f1f8de;
  --sw-shadow: 0 12px 32px rgba(11, 19, 36, 0.08);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--sw-ink);
  background: var(--sw-paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.sw-store {
  margin: 0;
  background: var(--sw-paper);
  color: var(--sw-ink);
  font-size: 16px;
  letter-spacing: 0;
}
.sw-store a {
  color: inherit;
}
.sw-skip {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--sw-navy);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 4px;
}
.sw-skip:focus {
  top: 12px;
}
.sw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--sw-line);
  backdrop-filter: blur(12px);
}
.sw-header__inner {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.sw-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.sw-brand img {
  display: block;
  width: 148px;
  height: auto;
}
.sw-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.sw-nav a {
  font-size: 13px;
  font-weight: 650;
  color: #465161;
  text-decoration: none;
}
.sw-nav a:hover,
.sw-nav a[aria-current="page"] {
  color: var(--sw-blue);
}
.sw-header__action,
.sw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--sw-blue);
  color: #fff !important;
  text-decoration: none;
  font:
    700 14px/1 Inter,
    sans-serif;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.sw-header__action:hover,
.sw-button:hover {
  background: var(--sw-blue-dark);
  box-shadow: 0 8px 20px rgba(23, 107, 223, 0.2);
  transform: translateY(-1px);
}
.sw-button--dark {
  background: var(--sw-navy);
}
.sw-button--dark:hover {
  background: #16233b;
}
.sw-button--light {
  background: #fff;
  color: var(--sw-ink) !important;
  border-color: var(--sw-line);
}
.sw-button--light:hover {
  background: #f8fafc;
  box-shadow: none;
}
.sw-button--wide {
  width: 100%;
}
.sw-button:focus-visible,
.sw-store a:focus-visible,
.sw-filter:focus-visible,
.sw-checkout input:focus-visible {
  outline: 3px solid rgba(23, 107, 223, 0.28);
  outline-offset: 2px;
}
.sw-main {
  min-height: 70vh;
}
.sw-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.sw-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 22px 0 8px;
  color: var(--sw-muted);
  font-size: 12px;
}
.sw-breadcrumbs a {
  text-decoration: none;
}
.sw-breadcrumbs a:hover {
  text-decoration: underline;
}
.sw-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 32px 0 30px;
}
.sw-eyebrow {
  margin: 0 0 10px;
  color: var(--sw-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sw-library-head h1,
.sw-product-copy h1 {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
  color: var(--sw-navy);
  margin: 0;
}
.sw-library-head h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}
.sw-library-head__copy {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--sw-muted);
  font-size: 17px;
  line-height: 1.65;
}
.sw-library-head__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  box-shadow: var(--sw-shadow);
  overflow: hidden;
}
.sw-fact {
  min-height: 102px;
  padding: 18px;
  border-right: 1px solid var(--sw-line);
  border-bottom: 1px solid var(--sw-line);
}
.sw-fact:nth-child(even) {
  border-right: 0;
}
.sw-fact:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.sw-fact strong {
  display: block;
  color: var(--sw-navy);
  font-size: 22px;
  margin-bottom: 6px;
}
.sw-fact span {
  font-size: 12px;
  color: var(--sw-muted);
  line-height: 1.45;
}
.sw-library-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--sw-line);
}
.sw-library-toolbar h2 {
  font:
    700 24px/1.2 Poppins,
    Inter,
    sans-serif;
  margin: 0;
}
.sw-filter-group {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
}
.sw-filter {
  white-space: nowrap;
  border: 1px solid var(--sw-line);
  border-radius: 5px;
  background: #fff;
  color: var(--sw-muted);
  padding: 9px 12px;
  font:
    650 12px Inter,
    sans-serif;
  cursor: pointer;
}
.sw-filter:hover,
.sw-filter.is-active {
  background: var(--sw-navy);
  border-color: var(--sw-navy);
  color: #fff;
}
.sw-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 0 70px;
}
.sw-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.sw-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sw-shadow);
  border-color: #c8d2df;
}
.sw-card[hidden] {
  display: none;
}
.sw-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sw-navy);
}
.sw-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.sw-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  background: var(--sw-lime);
  color: var(--sw-navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.sw-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.sw-card__category {
  color: var(--sw-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sw-card h3 {
  font:
    700 17px/1.25 Poppins,
    Inter,
    sans-serif;
  margin: 8px 0 7px;
  color: var(--sw-navy);
}
.sw-card h3 a {
  text-decoration: none;
}
.sw-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--sw-muted);
  margin: 0 0 14px;
}
.sw-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--sw-line);
}
.sw-card__price {
  font-weight: 800;
  color: var(--sw-navy);
}
.sw-card__link {
  color: var(--sw-blue) !important;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.sw-trust-band {
  background: var(--sw-navy);
  color: #fff;
}
.sw-trust-band__inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 26px;
  padding: 34px 0;
}
.sw-trust-band h2 {
  font:
    700 22px/1.25 Poppins,
    Inter,
    sans-serif;
  margin: 0;
}
.sw-trust-band h3 {
  font-size: 13px;
  margin: 0 0 6px;
}
.sw-trust-band p {
  color: #b6c1d0;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
.sw-product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
  padding: 28px 0 70px;
}
.sw-product-cover {
  position: sticky;
  top: 102px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
}
.sw-product-cover__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #25324b;
  box-shadow: 0 24px 50px rgba(11, 19, 36, 0.18);
}
.sw-product-cover__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-mini-stat {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 6px;
  padding: 12px 10px;
}
.sw-mini-stat strong {
  display: block;
  font-size: 16px;
  color: var(--sw-navy);
}
.sw-mini-stat span {
  font-size: 10px;
  line-height: 1.35;
  color: var(--sw-muted);
}
.sw-product-copy h1 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.05;
}
.sw-product-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sw-muted);
  margin: 16px 0;
}
.sw-product-price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 24px 0;
}
.sw-product-price strong {
  font:
    800 36px/1 Poppins,
    Inter,
    sans-serif;
  color: var(--sw-navy);
}
.sw-product-price span {
  font-size: 12px;
  color: var(--sw-muted);
  padding-bottom: 4px;
}
.sw-checkout {
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  padding: 18px;
}
.sw-checkout label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sw-ink);
}
.sw-checkout input {
  display: block;
  width: 100%;
  height: 46px;
  margin: 8px 0 12px;
  border: 1px solid #cbd4e1;
  border-radius: 5px;
  padding: 0 12px;
  font:
    500 14px Inter,
    sans-serif;
  color: var(--sw-ink);
}
.sw-checkout__status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--sw-blue);
  font-size: 12px;
}
.sw-secure-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 13px 0 0;
  color: var(--sw-muted);
  font-size: 11px;
  line-height: 1.45;
}
.sw-secure-dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #16a469;
  box-shadow: 0 0 0 4px rgba(22, 164, 105, 0.12);
  flex: 0 0 auto;
}
.sw-product-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.sw-panel {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 8px;
  padding: 20px;
}
.sw-panel--wide {
  grid-column: 1/-1;
}
.sw-panel h2 {
  font:
    700 18px/1.3 Poppins,
    Inter,
    sans-serif;
  margin: 0 0 12px;
}
.sw-panel p,
.sw-panel li {
  color: var(--sw-muted);
  font-size: 13px;
  line-height: 1.6;
}
.sw-panel ul {
  margin: 0;
  padding-left: 20px;
}
.sw-panel li + li {
  margin-top: 7px;
}
.sw-license {
  padding: 16px;
  border-left: 4px solid var(--sw-lime);
  background: var(--sw-soft-lime);
  color: #465326;
  font-size: 12px;
  line-height: 1.55;
}
.sw-related {
  padding: 0 0 70px;
}
.sw-related h2 {
  font:
    700 24px Poppins,
    Inter,
    sans-serif;
}
.sw-related .sw-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
}
.sw-footer {
  background: var(--sw-navy);
  color: #fff;
}
.sw-footer__grid {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.sw-footer__brand {
  font:
    700 20px Poppins,
    Inter,
    sans-serif;
  text-decoration: none;
}
.sw-footer__about p {
  max-width: 340px;
  color: #aeb9c8;
  font-size: 12px;
  line-height: 1.7;
}
.sw-footer h2 {
  font-size: 12px;
  text-transform: uppercase;
  color: #e7ebf2;
  margin: 3px 0 13px;
  letter-spacing: 0.04em;
}
.sw-footer__grid > div > a:not(.sw-footer__brand) {
  display: block;
  color: #aeb9c8;
  text-decoration: none;
  font-size: 12px;
  line-height: 2;
}
.sw-footer__grid > div > a:hover {
  color: #fff;
}
.sw-footer__bottom {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 18px 0 24px;
  border-top: 1px solid #27344a;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8997aa;
  font-size: 11px;
}
@media (max-width: 980px) {
  .sw-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sw-library-head {
    grid-template-columns: 1fr;
  }
  .sw-library-head__facts {
    max-width: 600px;
  }
  .sw-product-layout {
    gap: 30px;
  }
  .sw-product-cover {
    grid-template-columns: 1fr;
  }
  .sw-product-cover__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .sw-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .sw-footer__grid > div:last-child {
    grid-column: 2;
  }
  .sw-trust-band__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .sw-header__inner,
  .sw-container,
  .sw-footer__grid,
  .sw-footer__bottom {
    width: min(100% - 28px, 1180px);
  }
  .sw-header__inner {
    height: 64px;
    gap: 12px;
  }
  .sw-brand img {
    width: 126px;
  }
  .sw-nav {
    display: none;
  }
  .sw-header__action {
    margin-left: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }
  .sw-library-head {
    padding-top: 24px;
  }
  .sw-library-head h1 {
    font-size: 38px;
  }
  .sw-library-head__copy {
    font-size: 15px;
  }
  .sw-library-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .sw-filter-group {
    width: 100%;
  }
  .sw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sw-card__body {
    padding: 13px;
  }
  .sw-card h3 {
    font-size: 15px;
  }
  .sw-trust-band__inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
  .sw-product-layout {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }
  .sw-product-cover {
    position: static;
    max-width: 420px;
    margin: auto;
  }
  .sw-product-copy h1 {
    font-size: 38px;
  }
  .sw-product-sections {
    grid-template-columns: 1fr;
  }
  .sw-panel--wide {
    grid-column: auto;
  }
  .sw-related .sw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sw-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sw-footer__grid > div:last-child {
    grid-column: auto;
  }
  .sw-footer__about {
    grid-column: 1/-1;
  }
  .sw-footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .sw-product-grid,
  .sw-related .sw-product-grid {
    grid-template-columns: 1fr;
  }
  .sw-library-head__facts {
    grid-template-columns: 1fr;
  }
  .sw-fact {
    border-right: 0;
  }
  .sw-fact:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--sw-line);
  }
  .sw-fact:last-child {
    border-bottom: 0;
  }
  .sw-product-cover__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sw-product-copy h1,
  .sw-library-head h1 {
    font-size: 34px;
  }
  .sw-footer__grid {
    grid-template-columns: 1fr;
  }
  .sw-footer__about {
    grid-column: auto;
  }
}
