
:root {
  --fw-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --fw-text: #e9f6f5;
  --fw-muted: rgba(233,246,245,.72);
  --fw-bg: #071416;
  --fw-panel: rgba(255,255,255,.06);
  --fw-border: rgba(255,255,255,.10);
  --fw-aqua: #10c6bf;
  --fw-aqua-2: #0ea9a3;
  --fw-r: 16px;
  --fw-r2: 22px;
  --fw-g: 16px;
}

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

html { height: 100%; }

body {
  margin: 0;
  font-family: var(--fw-font);
  color: var(--fw-text);
  background-color: var(--fw-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to bottom,
      rgba(8,12,25,.30) 0%,
      rgba(7,20,22,.85) 88%,
      var(--fw-bg) 100%
    ),
    var(--fw-bg-image);
  background-position: center top, center top;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--fw-aqua); }

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

.fw-hero-logo a {
  display: inline-flex;
  pointer-events: auto;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.fw-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.fw-card {
  background: var(--fw-panel);
  border: 1px solid var(--fw-border);
  border-radius: var(--fw-r2);
  padding: 18px;
}

.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16,198,191,.45);
  background: rgba(16,198,191,.12);
  color: var(--fw-text);
  cursor: pointer;
  user-select: none;
}
.fw-btn:hover { background: rgba(16,198,191,.18); border-color: rgba(16,198,191,.62); }
.fw-btn:active { transform: translateY(1px); }

.site-header {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  pointer-events: none;
}

.fw-page { flex: 1; min-height: 100vh; position: relative; z-index: 1; }

.site-header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.site-header .actions,
.site-header nav,
.site-header .site-navigation,
.site-header .site-sale-banner,
.site-header .log-in { display: none; }

.site-header .user-actions {
  position: absolute;
  top: 18px;
  right: 20px;
}

.site-title {
  margin: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
}
.site-title a { display: inline-flex; align-items: center; }
.site-title img { height: 320px; width: auto; }

.site-header button:not(.fw-hero-icon) {
  font: inherit;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--fw-text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.site-header button:not(.fw-hero-icon):hover {
  border-color: rgba(16,198,191,.55);
  background: rgba(16,198,191,.10);
}

@media (max-width: 860px) {
  .site-header { top: 0; padding-top: 32px; }
  .site-header-inner { flex-direction: column; align-items: center; gap: 10px; }
  .site-header .user-actions { top: 14px; right: 14px; }
  .fw-layout-wrap {
    flex-direction: column;
    align-items: stretch;
    padding-top: 380px;
  }
  .fw-sidebar {
    flex: none;
    width: 100%;
  }
  .fw-main-panel {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 720px) {
  .site-title { justify-content: flex-start; flex-basis: 100%; }
  .site-header .info { width: 100%; justify-content: center; }
}

.fw-hero-left,
.fw-hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  pointer-events: auto;
}

.fw-hero-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  pointer-events: auto;
}

@keyframes fw-hero-logo-z {
  0%,
  100% { transform: translateZ(0) scale(1); }
  50% { transform: translateZ(90px) scale(1.05); }
}

.fw-hero-logo img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  animation: fw-hero-logo-z 3.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fw-hero-logo img { animation: none; }
}

.fw-hero-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cfe6ff;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  cursor: pointer;
  font: inherit;
}

.fw-hero-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

.fw-hero-top {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3aa0ff;
}

.fw-hero-bottom {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #cfe6ff;
}

.fw-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(6,16,18,.45);
  border: 1px solid rgba(16,198,191,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.fw-hero-icon:hover {
  border-color: rgba(16,198,191,.70);
  background: rgba(16,198,191,.12);
  box-shadow: 0 0 18px rgba(16,198,191,.25);
}

.fw-hero-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #3aa0ff;
}

.fw-swap {
  display: inline-block;
  overflow: hidden;
  height: 1.1em;
  max-width: min(320px, 35vw);
}
.fw-swap-inner {
  display: block;
  transition: transform .22s ease;
}
.fw-swap-a,
.fw-swap-b {
  display: block;
  height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fw-hero-info:hover .fw-swap-inner { transform: translateY(-1.1em); }

.fw-layout-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 360px;
  padding-bottom: 60px;
}

.fw-sidebar {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-sidebar-goal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-sidebar-goal[hidden] {
  display: none !important;
}

.fw-sidebar-goal .widget,
.fw-sidebar-goal .widget-goal,
.fw-sidebar-goal .widget-community-goal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16,198,191,.16), transparent 44%),
    linear-gradient(180deg, rgba(8,18,28,.96) 0%, rgba(7,20,22,.84) 100%);
  border: 1px solid rgba(16,198,191,.18);
  border-radius: 18px;
  padding: 16px 20px;
  color: rgba(233,246,245,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.fw-sidebar-goal .widget::before,
.fw-sidebar-goal .widget-goal::before,
.fw-sidebar-goal .widget-community-goal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 34%);
  pointer-events: none;
}

.fw-sidebar-goal .widget-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(16,198,191,.94);
}

.fw-sidebar-goal .widget-content {
  position: relative;
  z-index: 1;
}

.fw-sidebar-goal .goal-image {
  width: 100%;
  max-height: 124px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.08);
}

.fw-sidebar-goal .descr {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(233,246,245,.58);
}

.fw-sidebar-goal .progress {
  width: 100%;
  height: 11px;
  margin: 12px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.fw-sidebar-goal .progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #10c6bf 0%, #23d2ff 100%);
  box-shadow: 0 0 18px rgba(16,198,191,.24);
}

.fw-sidebar-goal .progress-bar.striped {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.18) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.18) 75%, transparent 75%, transparent),
    linear-gradient(90deg, #10c6bf 0%, #23d2ff 100%);
  background-size: 18px 18px, 100% 100%;
}

.fw-sidebar-goal .progress-bar.animated {
  animation: fw-goal-stripes 1s linear infinite;
}

@keyframes fw-goal-stripes {
  from { background-position: 0 0, 0 0; }
  to { background-position: 18px 0, 0 0; }
}

.fw-sidebar-goal p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(233,246,245,.58);
}

.fw-sidebar-goal p + p {
  margin-top: 8px;
}

.fw-sidebar-goal strong {
  color: #f7fffd;
  font-weight: 800;
}

.fw-sidebar-user {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.88) 0%,
    rgba(7,20,22,.70) 100%
  );
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}

.fw-sidebar-avatar {
  width: 50px;
  height: auto;
  border-radius: 0;
  image-rendering: pixelated;
  border: 0;
  flex-shrink: 0;
}

.fw-sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.fw-sidebar-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fw-text);
}

.fw-sidebar-login,
.fw-sidebar-logout {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 8px;
  border: 1px solid rgba(16,198,191,.45);
  background: rgba(16,198,191,.10);
  color: var(--fw-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.fw-sidebar-login:hover,
.fw-sidebar-logout:hover {
  background: rgba(16,198,191,.20);
  border-color: rgba(16,198,191,.70);
  color: var(--fw-text);
}

.fw-sidebar-nav {
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.82) 0%,
    rgba(7,20,22,.60) 75%,
    rgba(7,20,22,0) 100%
  );
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 12px 0 12px;
}

.fw-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fw-sidebar-nav li { position: relative; }

.fw-sidebar-nav a {
  display: block;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(233,246,245,.75);
  text-decoration: none;
  transition: color .15s, background .15s;
  border-left: 3px solid transparent;
}
.fw-sidebar-nav a:hover {
  color: var(--fw-text);
  background: rgba(255,255,255,.05);
  border-left-color: rgba(16,198,191,.40);
}

.fw-sidebar-nav li.fw-nav-active > a {
  color: #3aa0ff;
  border-left-color: #3aa0ff;
  background: rgba(58,160,255,.08);
}

.fw-subnav {
  padding-left: 16px;
}
.fw-subnav a {
  font-size: 13px;
  padding: 8px 24px;
  color: rgba(233,246,245,.55);
}
.fw-subnav li.fw-nav-active > a {
  color: #3aa0ff;
  border-left-color: #3aa0ff;
}

.fw-sidebar-modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.fw-sidebar-modules ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.fw-sidebar-modules li {
  width: 100%;
  padding: 0;
  margin: 0;
}

.fw-sidebar-modules .widget {
  background: linear-gradient(to bottom, rgba(7,20,22,.82) 0%, rgba(7,20,22,.60) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px 20px;
  color: rgba(233,246,245,.85);
  width: 100%;
  box-sizing: border-box;
}

.fw-sidebar-modules .widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(16,198,191,.9);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fw-sidebar-modules .widget-gift-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16,198,191,.18), transparent 44%),
    linear-gradient(180deg, rgba(8,18,28,.96) 0%, rgba(7,20,22,.84) 100%);
  border-color: rgba(16,198,191,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.fw-sidebar-modules .widget-gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 34%);
  pointer-events: none;
}

.fw-sidebar-modules .widget-gift-card ~ .widget-gift-card {
  display: none;
}

.fw-sidebar-modules .widget-gift-card .widget-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.gift-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.gift-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: 0 0 38px;
  color: rgba(233,246,245,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.gift-card-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.gift-card-copy {
  min-width: 0;
  flex: 1;
}

.fw-sidebar-modules .widget-gift-card .widget-title {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0 0 4px;
  color: rgba(233,246,245,.96);
  letter-spacing: .07em;
}

.gift-card-subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(233,246,245,.48);
}

.gift-card-input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(4,12,18,.82);
  color: var(--fw-text);
  font: inherit;
  text-align: center;
  letter-spacing: .02em;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.gift-card-input::placeholder {
  color: rgba(233,246,245,.36);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 700;
}

.gift-card-input:hover {
  border-color: rgba(16,198,191,.22);
}

.gift-card-input:focus {
  border-color: rgba(16,198,191,.58);
  box-shadow: 0 0 0 3px rgba(16,198,191,.14);
  background: rgba(5,14,20,.94);
}

.gift-card-submit {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #071416;
  cursor: pointer;
  background: linear-gradient(90deg, #0fbfda 0%, #23d2ff 52%, #6ce8ff 100%);
  box-shadow: 0 12px 24px rgba(15,191,218,.18);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.gift-card-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(15,191,218,.24);
  filter: saturate(1.05);
}

.gift-card-submit:active {
  transform: translateY(0);
}

.gift-card-result {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(4,12,18,.72);
}

.gift-card-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.gift-card-status-success {
  color: rgba(145,244,223,.92);
}

.gift-card-status-warning {
  color: rgba(255,214,122,.92);
}

.gift-card-status-error {
  color: rgba(255,164,164,.92);
}

.fw-sidebar-modules .purchases {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-sidebar-modules .purchase {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fw-sidebar-modules .purchase .avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  image-rendering: pixelated;
}

.fw-sidebar-modules .purchase .info {
  min-width: 0;
}

.fw-sidebar-modules .purchase .username {
  font-size: 13px;
  font-weight: 600;
  color: var(--fw-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fw-sidebar-modules .purchase .info p {
  font-size: 11px;
  color: rgba(233,246,245,.5);
  margin: 2px 0 0;
}

.fw-sidebar-modules .purchase .info time {
  font-size: 11px;
  color: rgba(233,246,245,.4);
}

.fw-sidebar-modules .purchase .price {
  color: #f6ad55;
  font-weight: 600;
}

.fw-sidebar-modules .sep {
  margin: 0 3px;
  opacity: .4;
}

.fw-sidebar-modules .widget-top-donator {
  text-align: center;
}

.fw-sidebar-modules .widget-top-donator .avatar {
  width: auto;
  height: 88px;
  max-width: 100%;
  border-radius: 0;
  margin: 4px auto 10px;
  display: block;
  image-rendering: pixelated;
  object-fit: contain;
}

.fw-sidebar-modules .widget-top-donator .username {
  font-size: 14px;
  font-weight: 700;
  color: var(--fw-text);
  margin: 0 0 4px;
}

.fw-sidebar-modules .widget-top-donator p {
  font-size: 12px;
  color: rgba(233,246,245,.55);
  margin: 0;
}

.fw-sidebar-modules .widget-top-donator strong {
  color: #f6ad55;
}

.fw-sidebar-modules .empty {
  font-size: 12px;
  color: rgba(233,246,245,.4);
  text-align: center;
  margin: 0;
  padding: 8px 0;
}

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
  height: 100%;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 9, 12, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.popup[hidden] {
  display: none !important;
}

.popup-scroll-cont {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  position: relative;
  width: min(720px, 100%);
  margin: auto;
}

.basket-popup {
  padding: 22px;
}

.basket-popup .popup-scroll-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
}

.basket-popup .basket-popup-content {
  position: relative;
  width: min(1120px, calc(100vw - 32px));
  max-height: min(860px, calc(100vh - 32px));
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(16,198,191,.24);
  background:
    radial-gradient(circle at top right, rgba(16,198,191,.14), transparent 32%),
    linear-gradient(180deg, rgba(8,18,28,.98) 0%, rgba(7,20,22,.98) 100%);
  box-shadow: 0 26px 64px rgba(0,0,0,.52);
}

.basket-popup .popup-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(233,246,245,.84);
  display: grid;
  place-items: center;
  z-index: 2;
}

.basket-popup .popup-close:hover {
  border-color: rgba(16,198,191,.42);
  background: rgba(16,198,191,.12);
}

.basket {
  display: block;
  color: var(--fw-text);
}

.basket-shell {
  display: block;
}

.basket-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 0 72px 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.basket-header-copy {
  min-width: 0;
}

.basket-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(233,246,245,.42);
}

.basket-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fcfbf6;
}

.basket-subtitle {
  margin: 12px 0 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(233,246,245,.58);
}

.basket-head-actions {
  flex: 0 0 auto;
}

.basket-currency-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.basket-currency-btn {
  min-width: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(233,246,245,.72);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}

.basket-currency-btn:hover,
.basket-currency-btn.is-active {
  border-color: rgba(16,198,191,.42);
  background: rgba(16,198,191,.12);
  color: #aef7f3;
}

.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 360px);
  gap: 22px;
  padding-top: 24px;
}

.basket-content,
.basket-summary {
  min-width: 0;
}

.basket-items,
.basket-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.basket-item,
.basket-panel,
.basket-checkout {
  background: linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.028) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.basket-item {
  padding: 18px 18px 16px;
}

.basket-item-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.basket-item-copy {
  min-width: 0;
  flex: 1;
}

.basket-item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #f7fffd;
}

.basket-item-title a:hover {
  color: #8ee7ff;
}

.basket-item-meta {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.basket-item-meta li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(233,246,245,.58);
  font-size: 12px;
  line-height: 1.45;
}

.basket-item-meta strong {
  color: rgba(233,246,245,.92);
}

.basket-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 180px;
}

.basket-item-price {
  font-size: 19px;
  font-weight: 900;
  text-align: right;
  color: #aef7f3;
}

.basket-quantity-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.basket-quantity-field .adjust {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--fw-text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.basket-quantity-field .adjust:hover:not(:disabled) {
  border-color: rgba(16,198,191,.40);
  background: rgba(16,198,191,.12);
}

.basket-quantity-field .adjust:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.basket-quantity-field .quantity {
  width: 62px;
  min-height: 36px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(4,12,18,.78);
  color: var(--fw-text);
  text-align: center;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.basket-item-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(233,246,245,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.basket-item-remove:hover {
  border-color: rgba(255,98,98,.34);
  background: rgba(255,98,98,.12);
  color: #ffb0b0;
}

.basket-empty-state {
  padding: 32px 26px;
  text-align: center;
}

.basket-empty-state h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  color: #f7fffd;
}

.basket-empty-state p {
  margin: 0;
  color: rgba(233,246,245,.58);
  line-height: 1.65;
}

.basket-panel,
.basket-checkout {
  padding: 18px;
}

.basket-panel-head {
  margin-bottom: 14px;
}

.basket-panel-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #f7fffd;
}

.basket-panel-head p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(233,246,245,.5);
}

.basket-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(233,246,245,.66);
}

.basket-total-line strong {
  font-size: 24px;
  font-weight: 900;
  color: #10c6bf;
}

.basket-code-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.basket-code-input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(4,12,18,.82);
  color: var(--fw-text);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.basket-code-input::placeholder {
  color: rgba(233,246,245,.34);
}

.basket-code-input:hover {
  border-color: rgba(16,198,191,.20);
}

.basket-code-input:focus {
  border-color: rgba(16,198,191,.56);
  box-shadow: 0 0 0 3px rgba(16,198,191,.12);
  background: rgba(5,14,20,.92);
}

.basket-code-input:disabled,
.basket-code-submit:disabled,
.basket-checkout .checkout:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.basket-code-submit,
.basket-code-remove-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #10c6bf, #0ea9a3);
  color: #071416;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.basket-code-remove-inline {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(233,246,245,.78);
}

.basket-code-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.basket-code-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.basket-code-chip-copy {
  min-width: 0;
  font-size: 12px;
  color: rgba(233,246,245,.72);
}

.basket-code-chip-copy strong {
  color: #f7fffd;
  letter-spacing: .04em;
}

.basket-code-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(233,246,245,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.basket-code-remove:hover,
.basket-code-remove-inline:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
}

.basket-checkout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.basket-checkout .checkout {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #10c6bf, #0ea9a3);
  color: #071416;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16,198,191,.20);
}

.basket-checkout .checkout:hover:not(:disabled) {
  filter: saturate(1.05);
  transform: translateY(-1px);
}

.basket-checkout p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(233,246,245,.48);
}

.basket-popup-content.updating,
.basket-popup-content .basket.updating {
  cursor: progress;
}

.basket-popup-content.updating .basket-item,
.basket-popup-content.updating .basket-panel,
.basket-popup-content.updating .basket-checkout,
.basket-popup-content .basket.updating .basket-item,
.basket-popup-content .basket.updating .basket-panel,
.basket-popup-content .basket.updating .basket-checkout {
  opacity: .68;
}

.fw-main-panel {
  flex: 1;
  min-width: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.82) 0%,
    rgba(7,20,22,.60) 75%,
    rgba(7,20,22,0) 100%
  );
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 40px 48px 80px;
}

.fw-cms-page h2 {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 900;
  color: var(--fw-text);
}

.fw-cms-page p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(233,246,245,.72);
  margin: 0 0 16px;
}

.fw-cms-page a {
  color: var(--fw-aqua);
  text-decoration: underline;
}

.fw-cms-page ul, .fw-cms-page ol {
  padding-left: 24px;
  color: rgba(233,246,245,.72);
  line-height: 1.75;
}

.fw-cms-page h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--fw-text);
}

.fw-welcome {
  padding: 4px 0 12px;
}

.fw-home-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.fw-home-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(233,246,245,.46);
}

.fw-home-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  color: #fcfbf6;
  letter-spacing: -.03em;
}

.fw-home-copy {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(233,246,245,.64);
}

.fw-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fw-home-card {
  --fw-home-accent: #10c6bf;
  --fw-home-accent-soft: rgba(16,198,191,.22);
  --fw-home-mark: rgba(233,246,245,.92);
  position: relative;
  overflow: hidden;
  min-height: 196px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 28px 34px;
  border-radius: 18px;
  border: 1px solid rgba(16,198,191,.30);
  background:
    radial-gradient(circle at 84% 50%, rgba(16,198,191,.10) 0, rgba(16,198,191,.10) 26%, rgba(16,198,191,0) 27%),
    linear-gradient(135deg, rgba(7,20,22,.97) 0%, rgba(8,24,28,.98) 68%, rgba(10,32,36,.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.fw-home-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 40%),
    radial-gradient(circle at top right, var(--fw-home-accent-soft), transparent 38%);
  pointer-events: none;
}

.fw-home-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16,198,191,.55);
  box-shadow: 0 18px 46px rgba(5,20,22,.42);
}

.fw-home-card-accent {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 58px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--fw-home-accent), #0ea9a3);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(16,198,191,.35);
}

.fw-home-card-copy {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.fw-home-card-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(233,246,245,.42);
}

.fw-home-card-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fffaf1;
  text-wrap: balance;
}

.fw-home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--fw-home-accent);
}

.fw-home-card-link::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .5;
}

.fw-home-card-art {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 140px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.fw-home-card-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 62%),
    radial-gradient(circle, var(--fw-home-accent-soft) 0%, rgba(0,0,0,0) 70%);
  filter: blur(.1px);
}

.fw-home-card-mark {
  position: relative;
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--fw-home-mark);
  text-shadow: 0 10px 30px rgba(0,0,0,.42);
}

.fw-home-card-img {
  position: relative;
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}

.fw-home-card.tone-1 {
  --fw-home-accent: #10c6bf;
  --fw-home-accent-soft: rgba(16,198,191,.24);
}

.fw-home-card.tone-2 {
  --fw-home-accent: #0ea9a3;
  --fw-home-accent-soft: rgba(14,169,163,.22);
}

.fw-home-card.tone-3 {
  --fw-home-accent: #14d4cc;
  --fw-home-accent-soft: rgba(20,212,204,.22);
}

.fw-home-card.tone-4 {
  --fw-home-accent: #0fbdb7;
  --fw-home-accent-soft: rgba(15,189,183,.24);
}

.fw-home-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  text-align: center;
}

.fw-home-empty h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--fw-text);
}

.fw-home-empty p {
  margin: 0;
  color: rgba(233,246,245,.62);
}

.fw-home-meta {
  margin-top: 26px;
  text-align: center;
}

.fw-home-meta p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(233,246,245,.44);
}

.fw-home-meta a {
  color: #7bc7ff;
  text-decoration: underline;
}

.fw-topbar {
  position: absolute;
  top: 16px;
  right: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.fw-topbar-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(7,20,22,.55);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--fw-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s, border-color .18s;
}
.fw-topbar-btn:hover {
  background: rgba(16,198,191,.15);
  border-color: rgba(16,198,191,.45);
  color: var(--fw-text);
}

@media (max-width: 980px) {
  .fw-home-grid {
    grid-template-columns: 1fr;
  }

  .fw-home-card-copy {
    max-width: 58%;
  }
}

@media (max-width: 700px) {
  .fw-home-head {
    margin-bottom: 20px;
  }

  .fw-home-card {
    min-height: 0;
    padding: 24px 20px 22px 26px;
    gap: 16px;
  }

  .fw-home-card-copy {
    max-width: none;
  }

  .fw-home-card-art {
    width: 96px;
    height: 96px;
  }

  .fw-home-card-mark {
    font-size: 36px;
  }

  .fw-home-card-img {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 520px) {
  .fw-home-card {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 22px;
  }

  .fw-home-card-copy {
    max-width: none;
    width: 100%;
  }

  .fw-home-card-art {
    align-self: flex-end;
    margin-top: -6px;
  }
}

.fw-footer {
  background: rgba(7,20,22,.85);
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: auto;
}

.fw-footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.fw-footer-cols {
  display: flex;
  gap: 120px;
  margin-right: auto;
  margin-left: 280px;
}

.fw-footer-top { padding: 48px 0 40px; }

.fw-footer-brand { flex: 1; max-width: 340px; }

.fw-footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--fw-text);
  margin: 0 0 12px;
}

.fw-footer-tagline {
  font-size: 13px;
  color: rgba(233,246,245,.50);
  line-height: 1.65;
  margin: 0 0 20px;
}

.fw-footer-socials {
  display: flex;
  gap: 10px;
}

.fw-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(233,246,245,.70);
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}
.fw-footer-social-btn:hover {
  background: rgba(16,198,191,.15);
  border-color: rgba(16,198,191,.45);
  color: var(--fw-text);
}

.fw-footer-col { flex: 0 0 auto; }

.fw-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3aa0ff;
  margin: 0 0 18px;
}

.fw-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fw-footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(233,246,245,.60);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  display: inline-block;
}
.fw-footer-links a:hover {
  color: #3aa0ff;
  padding-left: 4px;
}

.fw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
  background: rgba(255,255,255,.03);
}
.fw-footer-bottom .fw-footer-inner { align-items: center; }

.fw-footer-copy,
.fw-footer-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ──────────────── Mobile fixes ──────────────── */

@media (max-width: 860px) {
  .basket-popup {
    padding: 12px;
  }

  .basket-popup .basket-popup-content {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 18px;
    border-radius: 18px;
  }

  .basket-header {
    flex-direction: column;
    align-items: stretch;
    padding: 0 52px 18px 0;
  }

  .basket-currency-switch {
    justify-content: flex-start;
  }

  .basket-layout {
    grid-template-columns: 1fr;
  }

  .basket-item-main {
    flex-direction: column;
  }

  .basket-item-side {
    width: 100%;
    align-items: stretch;
  }

  .basket-item-price {
    text-align: left;
  }

  .basket-code-form {
    flex-wrap: wrap;
  }

  .basket-code-submit,
  .basket-code-remove-inline {
    width: 100%;
  }

  .fw-layout-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .fw-sidebar {
    flex: none;
    width: 100%;
  }

  .fw-main-panel {
    width: 100%;
  }

  .site-title img { height: 180px; }

  .fw-hero-left,
  .fw-hero-right {
    width: 100%;
    justify-content: center;
  }

  .fw-hero-center { order: -1; }

  .fw-sidebar-user {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-height: none;
    overflow: visible;
  }

  .fw-sidebar-avatar { width: 44px; }

  .fw-main-panel {
    padding: 24px 18px 40px;
  }

  .fw-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .fw-footer-cols {
    margin-left: 0;
    gap: 48px;
  }

  .fw-footer-bottom .fw-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .basket-popup .basket-popup-content {
    padding: 16px;
  }

  .basket-popup .popup-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .basket-title {
    font-size: 28px;
  }

  .basket-item {
    padding: 16px 14px;
  }

  .basket-panel,
  .basket-checkout {
    padding: 14px;
  }

  .basket-quantity-field {
    justify-content: space-between;
  }

  .basket-item-remove {
    width: 100%;
  }

  .site-title img { height: 140px; }

  .fw-layout-wrap {
    width: calc(100% - 24px);
    padding-top: 320px;
    gap: 14px;
  }

  .fw-hero-left,
  .fw-hero-right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .fw-hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .fw-hero-icon svg { width: 20px; height: 20px; }

  .fw-hero-top { font-size: 13px; }
  .fw-hero-bottom { font-size: 11px; }

  .fw-swap {
    max-width: 45vw;
  }

  .fw-sidebar {
    gap: 8px;
  }

  .fw-sidebar-goal .widget,
  .fw-sidebar-goal .widget-goal,
  .fw-sidebar-goal .widget-community-goal {
    border-radius: 14px;
    padding: 14px 16px;
  }

  .fw-sidebar-user {
    padding: 10px 14px;
    border-radius: 14px;
    gap: 10px;
  }
  .fw-sidebar-avatar { width: 40px; }
  .fw-sidebar-name { font-size: 14px; }

  .fw-sidebar-login,
  .fw-sidebar-logout {
    padding: 5px 12px;
    font-size: 12px;
  }

  .fw-sidebar-nav {
    border-radius: 14px;
    padding: 8px 0;
  }
  .fw-sidebar-nav a {
    padding: 9px 18px;
    font-size: 14px;
  }

  .fw-sidebar-modules .widget {
    border-radius: 14px;
    padding: 14px 16px;
  }

  .fw-main-panel {
    padding: 18px 14px 32px;
    border-radius: 14px;
  }

  .site-header .user-actions {
    top: 10px;
    right: 10px;
  }

  .fw-footer-cols {
    flex-direction: column;
    gap: 28px;
  }

  .fw-footer-top { padding: 32px 0 28px; }
}
