:root {
  --sf-bg: #151517;
  --sf-bg-soft: #1d1f24;
  --sf-bg-strong: #1a1b1f;
  --sf-global-bg: #141416;
  --sf-border: #2a2d35;
  --sf-border-soft: #242730;
  --sf-text: #ffffff;
  --sf-text-soft: #c8ccd7;
  --sf-text-muted: #8c93a5;
  --sf-green: #16cd69;
  --sf-green-dark: #129553;
  --sf-blue: #4c67ff;
  --sf-red: #ef4444;
  --sf-shell-gap: 48px;
  --sf-bar-bg: linear-gradient(180deg, rgba(31, 32, 37, 0.94) 0%, rgba(28, 29, 34, 0.96) 100%);
}

html[data-theme='light'] {
  --sf-bg: #edf3fb;
  --sf-bg-soft: #ffffff;
  --sf-bg-strong: #e4ebf6;
  --sf-border: #d4ddeb;
  --sf-border-soft: #dce5f2;
  --sf-text: #0f1729;
  --sf-text-soft: #334560;
  --sf-text-muted: #5c6f8a;
  --sf-bar-bg: linear-gradient(180deg, rgba(245, 248, 253, 0.97) 0%, rgba(236, 242, 251, 0.98) 100%);
  --sf-global-bg: #eef3fb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.storefront-body {
  background: #1a1a1d;
  color: var(--sf-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

html[data-theme='light'] .storefront-body {
  background: #edf3fb;
}

.sf-shell {
  width: calc(100% - (var(--sf-shell-gap) * 2));
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.sf-header {
  position: relative;
  z-index: 200;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  background:
    linear-gradient(180deg, rgba(36, 37, 42, 0.96) 0%, rgba(26, 27, 31, 0.985) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

html[data-theme='light'] .sf-header {
  border-bottom: 1px solid rgba(37, 54, 81, 0.09);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(238, 244, 252, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(54, 78, 117, 0.08);
}

.sf-topbar {
  background: var(--sf-bar-bg);
  border-bottom: 1px solid rgba(255,255,255,0.035);
}

html[data-theme='light'] .sf-topbar {
  border-bottom: 1px solid rgba(27, 42, 66, 0.09);
}

.sf-topbar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.sf-topbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sf-topbar-nav a,
.sf-topbar-right {
  color: var(--sf-text);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.sf-topbar-nav a:hover {
  color: var(--sf-blue);
}

.sf-topbar-right {
  color: var(--sf-text-soft);
  text-transform: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.sf-topbar-special-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sf-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.sf-topbar-special-trigger:hover {
  color: #6b7cff;
}

.sf-topbar-caret {
  font-size: 6px;
  margin-left: 4px;
  color: #d8dce6;
}

.sf-topbar-special-menu {
  position: absolute;
  right: 0;
  top: 40px;
  left: 0;
  z-index: 270;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.sf-header.is-special-menu-open .sf-topbar-special-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sf-header.is-special-menu-open .sf-topbar-special-trigger .sf-topbar-caret {
  transform: rotate(180deg);
}

.sf-topbar-special-panel {
  margin-left: auto;
  width: min(100%, 548px);
  background: #1f1f22;
  border-top: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 28px 48px rgba(0,0,0,0.32);
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  min-height: 336px;
}

.sf-topbar-special-left {
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 4px solid #3e5cff;
  justify-content: space-between;
}

.sf-topbar-special-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color .18s ease, transform .18s ease, padding-left .18s ease;
}

.sf-topbar-special-heading {
  color: #8fa1ff;
  cursor: default;
  pointer-events: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sf-topbar-special-link:hover {
  color: #dfe5ff;
  transform: translateX(4px);
  padding-left: 4px;
}

.sf-topbar-special-heading:hover {
  color: #8fa1ff;
}

.sf-topbar-special-right {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-topbar-special-hero {
  min-height: 176px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 20% 5%, rgba(130, 75, 255, 0.88), transparent 36%),
    linear-gradient(180deg, #2f59d4 0%, #1a275a 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.sf-topbar-special-hero-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: Georgia, "Times New Roman", serif;
}

.sf-topbar-special-hero-pill {
  min-width: 184px;
  max-width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 4px;
  background: rgba(19, 29, 76, 0.56);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.sf-topbar-special-hero-pill-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sf-topbar-special-hero-pill-icon svg {
  width: 18px;
  height: 18px;
}

.sf-topbar-special-cta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-topbar-special-cta {
  min-height: 44px;
  border-radius: 4px;
  background: #2b314d;
  border: 1px solid rgba(102, 122, 202, 0.4);
  color: #cfd7f6;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.sf-topbar-special-cta:hover {
  color: #ffffff;
  border-color: rgba(111, 130, 255, 0.52);
  background: #36416a;
  transform: translateX(4px);
}

.sf-mainbar {
  background: var(--sf-bar-bg);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  box-shadow: none;
}

.sf-mainbar-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 276px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-left: 0;
  padding-right: 0;
}

.sf-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-content: flex-start;
  padding-left: 0;
}

.sf-brand-logo {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  justify-content: flex-start;
}

.sf-brand-logo img {
  max-height: 66px;
  width: auto;
  max-width: 258px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.sf-brand-logo span {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.sf-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  margin: 0 0 0 -50px;
  justify-content: flex-start;
}

.sf-search-form {
  position: relative;
  flex: 1 1 auto;
  height: 46px;
  background:
    linear-gradient(180deg, rgba(52, 55, 66, 0.72) 0%, rgba(45, 48, 59, 0.74) 100%);
  border: 1px solid rgba(255, 255, 255, 0.028);
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 8px 18px rgba(0,0,0,0.14);
}

.sf-search-input {
  flex: 1 1 auto;
  height: 100%;
  background: transparent;
  border: 0;
  color: #e8edf7;
  padding: 0 18px;
  font-size: 17px;
  outline: none;
}

.sf-search-input::placeholder {
  color: #aeb6c8;
}

.sf-search-button {
  width: 44px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #f4f6fb;
  cursor: pointer;
}

.sf-search-button svg {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}

.sf-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #1c1f25;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  padding: 14px 12px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 40;
}

.sf-search-suggestions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sf-search-suggestions-title {
  margin-bottom: 12px;
  color: #f2f4f8;
  font-size: 14px;
  font-weight: 700;
}

.sf-search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sf-search-suggestion-item {
  border: 0;
  background: #242a33;
  color: #d7e4fb;
  text-align: center;
  padding: 13px 18px;
  min-height: 46px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.sf-search-suggestion-item:hover {
  background: #2b3340;
  color: #ffffff;
}

.sf-cdkey-button {
  height: 46px;
  min-width: 112px;
  padding: 0 12px;
  background:
    linear-gradient(180deg, rgba(32, 122, 79, 0.68) 0%, rgba(28, 106, 70, 0.74) 100%);
  border: 1px solid rgba(76, 190, 132, 0.18);
  border-radius: 4px;
  color: #27d880;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 16px rgba(0,0,0,0.14);
  text-align: center;
}

.sf-cdkey-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #39f097;
  line-height: 1;
}

.sf-cdkey-icon svg {
  width: 17px;
  height: 17px;
}

.sf-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding-right: 0;
  margin-right: 0;
  margin-left: auto;
  padding-left: 0;
  position: relative;
  right: 0;
  justify-self: end;
}

.sf-auth-form {
  margin: 0;
}

.sf-userbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-login-toast {
  position: absolute;
  top: -54px;
  right: 0;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(68, 255, 151, 0.16);
  background: rgba(18, 31, 22, 0.96);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(0,0,0,0.24);
  z-index: 35;
}

.sf-login-toast__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22e276;
  flex: 0 0 auto;
}

.sf-userbar__profile {
  min-width: 138px;
  max-width: 100%;
  height: 46px;
  padding: 0 9px;
  border-radius: 4px;
  background: #25314a;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sf-userbar__avatar {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, #9ad5ff 0%, #dceeff 100%);
  color: #33445f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sf-userbar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.sf-userbar__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.sf-userbar__identity strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.sf-userbar__balance {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.sf-userbar__balance > span:first-child {
  color: #27e26d;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.sf-userbar__visibility {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sf-userbar__visibility svg {
  width: 14px;
  height: 14px;
}

.sf-userbar__load {
  min-width: 72px;
  height: 46px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(32, 122, 79, 0.68) 0%, rgba(28, 106, 70, 0.74) 100%);
  border: 1px solid rgba(76, 190, 132, 0.18);
  color: #27d880;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.sf-userbar__icon {
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #2c3670;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.sf-userbar__icon svg {
  width: 22px;
  height: 22px;
}

.sf-userbar__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.sf-userbar__icon img[src*="desteksistemiicon"] {
  width: 32px;
  height: 32px;
}

.sf-userbar__icon--cart {
  background:
    linear-gradient(180deg, rgba(32, 122, 79, 0.68) 0%, rgba(28, 106, 70, 0.74) 100%);
  border: 1px solid rgba(76, 190, 132, 0.18);
  color: #27d880;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 16px rgba(0,0,0,0.12);
}

.sf-userbar__badge {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #ff4459;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.sf-userbar__menu-wrap {
  position: relative;
}

.sf-userbar__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #1d1f24;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 18px 32px rgba(0,0,0,0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 35;
}

.sf-userbar__menu-wrap.is-open .sf-userbar__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sf-userbar__menu-link {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  background: transparent;
  border: 0;
  color: #f2f4f8;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.sf-userbar__menu-link.is-button {
  cursor: pointer;
}

.sf-userbar__menu-link + .sf-userbar__menu-link,
.sf-userbar__logout-form {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.sf-userbar__menu-link:hover,
.sf-userbar__menu-link.is-button:hover {
  background: rgba(92,108,255,0.14);
}

.sf-userbar__menu {
  display: block;
}

.sf-userbar__profile-trigger {
  border: 0;
  cursor: pointer;
  text-align: left;
}

.sf-userpanel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 286px;
  max-width: min(286px, calc(100vw - 24px));
  background: #1f1f22;
  box-shadow: 0 24px 44px rgba(0,0,0,0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 40;
  overflow: hidden;
  border-radius: 4px;
}

.sf-userbar.is-panel-open .sf-userpanel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.sf-cart-preview-open {
  overflow: hidden;
}

.sf-cart-preview {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.sf-cart-preview.is-open {
  pointer-events: auto;
}

.sf-cart-preview__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 12, 22, 0.56);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .28s ease;
  cursor: pointer;
}

.sf-cart-preview.is-open .sf-cart-preview__backdrop {
  opacity: 1;
}

.sf-cart-preview__panel {
  position: absolute;
  top: 76px;
  right: auto;
  left: var(--sf-cart-preview-left, auto);
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 100px);
  background:
    radial-gradient(circle at 78% 2%, rgba(80, 120, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #242b46 0%, #191d30 100%);
  border: 1px solid rgba(130, 150, 255, 0.24);
  border-radius: var(--sf-header-radius, 4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 28px 44px rgba(0,0,0,0.42);
  display: grid;
  grid-template-rows: minmax(170px, 1fr) auto auto;
  overflow: hidden;
  transform-origin: var(--sf-cart-preview-anchor-x, 50%) -18px;
  transform: translateY(-14px) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, transform .34s cubic-bezier(.22, 1, .36, 1), visibility .24s ease;
}

.sf-cart-preview.is-open .sf-cart-preview__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.sf-cart-preview__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: var(--sf-cart-preview-anchor-x, 50%);
  width: 14px;
  height: 14px;
  background: #242b46;
  border-left: 1px solid rgba(130, 150, 255, 0.24);
  border-top: 1px solid rgba(130, 150, 255, 0.24);
  transform: translateX(-50%) rotate(45deg);
}

.sf-cart-preview__tab-icon {
  position: absolute;
  left: var(--sf-cart-preview-anchor-x, 50%);
  top: -24px;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--sf-header-radius, 4px);
  background: #f3f6ff;
  color: #ff4b4b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0,0,0,0.28);
  z-index: 2;
}

.sf-cart-preview__tab-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 2px;
  height: 12px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(168, 188, 255, 0.95) 0%, rgba(110, 139, 255, 0) 100%);
  pointer-events: none;
}

.sf-cart-preview__tab-icon svg {
  width: 16px;
  height: 16px;
}

.sf-cart-preview__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sf-cart-preview__body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

.sf-cart-preview__empty {
  min-height: 130px;
  border-radius: var(--sf-header-radius, 4px);
  border: 1px dashed rgba(128, 151, 255, 0.32);
  background: rgba(17, 21, 35, 0.62);
  color: rgba(228, 236, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
}

.sf-cart-preview__empty strong {
  font-size: 14px;
  font-weight: 700;
}

.sf-cart-preview__empty span {
  font-size: 12px;
  opacity: .84;
}

.sf-cart-preview__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-cart-preview__item {
  border-radius: var(--sf-header-radius, 4px);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11, 15, 28, 0.56);
  padding: 10px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 10px;
}

.sf-cart-preview__item img {
  width: 62px;
  height: 62px;
  border-radius: var(--sf-header-radius, 4px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.sf-cart-preview__item-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sf-cart-preview__item-title {
  color: #f4f7ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.sf-cart-preview__item-subtitle {
  color: rgba(199, 214, 255, 0.76);
  font-size: 11px;
  line-height: 1.2;
}

.sf-cart-preview__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sf-cart-preview__qty {
  display: inline-flex;
  align-items: center;
  border-radius: var(--sf-header-radius, 4px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.sf-cart-preview__qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(255,255,255,0.06);
  color: #f3f7ff;
  font-size: 16px;
  cursor: pointer;
}

.sf-cart-preview__qty span {
  width: 30px;
  height: 28px;
  background: rgba(57, 191, 125, 0.88);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.sf-cart-preview__price {
  color: #f5f9ff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sf-cart-preview__remove {
  width: 24px;
  height: 24px;
  border-radius: var(--sf-header-radius, 4px);
  border: 0;
  background: rgba(255,255,255,0.08);
  color: rgba(251, 193, 193, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sf-cart-preview__coupon {
  min-height: 44px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 10, 17, 0.42);
  color: #f7faff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.sf-cart-preview__summary {
  min-height: 42px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 10, 17, 0.52);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sf-cart-preview__summary-label {
  color: rgba(247, 250, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.sf-cart-preview__summary-value {
  color: #f7faff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .01em;
}

.sf-cart-preview__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sf-cart-preview__balance {
  min-height: 44px;
  border-radius: 0 0 0 var(--sf-header-radius, 4px);
  border-right: 1px solid rgba(130, 150, 255, 0.3);
  background: rgba(8, 10, 17, 0.42);
  color: #f7faff;
  text-decoration: none;
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.sf-cart-preview__action-label {
  display: block;
  color: rgba(247, 250, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.sf-cart-preview__action-value {
  display: block;
  color: #f7faff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.sf-cart-preview__checkout {
  min-width: 0;
  height: 44px;
  border-radius: 0 0 var(--sf-header-radius, 4px) 0;
  background: linear-gradient(180deg, #1e253d 0%, #171d2f 100%);
  color: #f7faff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid rgba(130, 150, 255, 0.3);
  border-left: 0;
  box-shadow: none;
}

.sf-cart-preview__checkout:hover {
  background: linear-gradient(180deg, #263050 0%, #1a2239 100%);
}

.sf-cart-preview__checkout.is-disabled {
  background: linear-gradient(180deg, #2a3042 0%, #232938 100%);
  color: rgba(247, 250, 255, 0.45);
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .sf-cart-preview__panel {
    top: 68px;
    left: 12px !important;
    right: 12px !important;
    width: min(360px, calc(100vw - 24px)) !important;
    max-height: calc(100vh - 84px);
    transform-origin: 50% -18px;
  }

  .sf-cart-preview__panel::before {
    left: 50%;
  }

  .sf-cart-preview__tab-icon {
    left: 50%;
  }

  .sf-cart-preview__body {
    padding: 10px 12px;
  }

  .sf-cart-preview__coupon,
  .sf-cart-preview__balance,
  .sf-cart-preview__checkout {
    min-height: 42px;
  }
}

.sf-userpanel__top {
  padding: 10px 11px 12px;
  background:
    radial-gradient(circle at 62% 16%, rgba(111, 140, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #33407d 0%, #2c3670 48%, #27315f 100%);
}

.sf-userpanel__user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sf-userpanel__avatar {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(26, 20, 20, 0.82) 0%, rgba(42, 26, 23, 0.92) 100%);
  color: #f5f7fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.sf-userpanel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.sf-userpanel__eye svg,
.sf-userpanel__card svg {
  width: 22px;
  height: 22px;
}

.sf-userpanel__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.sf-userpanel__identity strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.sf-userpanel__identity span {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1;
}

.sf-userpanel__eye {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.95);
  flex: 0 0 auto;
}

.sf-userpanel__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sf-userpanel__card {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.09);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sf-userpanel__card[data-theme-toggle] {
  cursor: pointer;
}

html[data-theme='light'] .sf-userpanel__card {
  background: rgba(21, 40, 70, 0.08);
  color: #142036;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.sf-userpanel__card img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.sf-userpanel__card--full {
  grid-column: 1 / -1;
}

.sf-userpanel__card:hover {
  background: rgba(255,255,255,0.13);
}

html[data-theme='light'] .sf-userpanel__card:hover {
  background: rgba(27, 56, 97, 0.14);
}

.sf-userpanel__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0 4px;
  background: #212123;
}

html[data-theme='light'] .sf-userpanel__nav {
  background: #eef3fb;
}

.sf-userpanel__link {
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255,255,255,0.46);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

html[data-theme='light'] .sf-userpanel__link {
  color: rgba(16, 27, 43, 0.68);
}

.sf-userpanel__link-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgba(255,255,255,0.5);
}

.sf-userpanel__link-icon svg {
  width: 22px;
  height: 22px;
}

.sf-userpanel__link-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.sf-userpanel__link-icon--large img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.sf-userpanel__link:hover,
.sf-userpanel__link--button:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.sf-userpanel__link:hover .sf-userpanel__link-icon,
.sf-userpanel__link--button:hover .sf-userpanel__link-icon {
  color: rgba(255,255,255,0.92);
}

.sf-userpanel__logout-form {
  margin: 0;
}

.sf-userpanel__link--button {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.sf-auth-button {
  min-width: 118px;
  height: 46px;
  padding: 0 15px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  color: #fff;
}

.sf-auth-button.is-register {
  background: linear-gradient(180deg, #27ea8a 0%, #1fdd7d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.13),
    0 8px 16px rgba(0,0,0,0.12);
}

.sf-auth-button.is-login {
  background: linear-gradient(180deg, #5468f7 0%, #4a5ef1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 16px rgba(0,0,0,0.12);
}

.sf-auth-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sf-auth-icon svg,
.sf-auth-circle svg {
  width: 20px;
  height: 20px;
}

.sf-auth-icon-register {
  width: 24px;
  height: 24px;
}

.sf-auth-icon-register svg {
  width: 24px;
  height: 24px;
}

.sf-auth-icon-register .sf-register-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sf-auth-circle {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sf-auth-circle {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.sf-categorybar {
  background: var(--sf-bar-bg) !important;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

.sf-categorybar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  padding-right: 0;
}

.sf-categories-trigger {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 15px 0 0;
  border-radius: var(--sf-header-radius, 4px);
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: background .18s ease, color .18s ease;
}

.sf-categories-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--sf-header-radius, 4px);
  background: rgba(76, 103, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4e63ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sf-categories-icon svg {
  width: 21px;
  height: 21px;
}

.sf-categories-caret {
  font-size: 11px;
  color: currentColor;
}

.sf-category-nav {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-left: auto;
  overflow-x: auto;
}

.sf-category-nav::-webkit-scrollbar {
  display: none;
}

.sf-category-item {
  flex: 0 1 auto;
  min-width: max-content;
  height: 40px;
  padding: 0;
  border-radius: var(--sf-header-radius, 4px);
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.sf-category-nav > .sf-category-item:last-child {
  padding-right: 0;
}

.sf-category-item:hover,
.sf-category-item.is-active {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.032);
}

.sf-category-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--sf-header-radius, 4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 18px rgba(0,0,0,0.16);
}

.sf-category-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.sf-category-item-icon .sf-lol-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.sf-category-item-icon .sf-appstore-svg,
.sf-category-item-icon .sf-roblox-icon,
.sf-category-item-icon .sf-blog-icon,
.sf-category-item-icon .sf-valorant-icon,
.sf-category-item-icon .sf-steam-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.sf-category-item-icon .sf-pubg-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.sf-category-item-icon .sf-mobilelegends-svg,
.sf-category-item-icon .sf-mobilelegends-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.sf-category-item-icon .sf-clashofclans-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.sf-category-item-icon .sf-xbox-svg,
.sf-category-item-icon .sf-xbox-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.sf-category-item-icon::before,
.sf-category-item-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.sf-category-item.is-violet .sf-category-item-icon { background: linear-gradient(180deg, rgba(62, 79, 209, 0.58) 0%, rgba(47, 61, 182, 0.68) 100%); color: #97a8ff; }
.sf-category-item.is-blue .sf-category-item-icon { background: linear-gradient(180deg, rgba(62, 79, 209, 0.58) 0%, rgba(47, 61, 182, 0.68) 100%); color: #97a8ff; }
.sf-category-item.is-amber .sf-category-item-icon { background: linear-gradient(180deg, rgba(95, 77, 42, 0.58) 0%, rgba(79, 64, 36, 0.68) 100%); color: #d6b675; }
.sf-category-item.is-red .sf-category-item-icon { background: linear-gradient(180deg, rgba(97, 48, 56, 0.58) 0%, rgba(79, 38, 43, 0.68) 100%); color: #ff6f7c; }
.sf-category-item.is-indigo .sf-category-item-icon { background: linear-gradient(180deg, rgba(62, 79, 209, 0.58) 0%, rgba(47, 61, 182, 0.68) 100%); color: #97a8ff; }
.sf-category-item.is-cobalt .sf-category-item-icon { background: linear-gradient(180deg, rgba(56, 65, 103, 0.62) 0%, rgba(46, 53, 86, 0.72) 100%); color: #6e8aff; }
.sf-category-item.is-gold .sf-category-item-icon { background: linear-gradient(180deg, rgba(95, 77, 42, 0.58) 0%, rgba(79, 64, 36, 0.68) 100%); color: #efb640; }
.sf-category-item.is-royal .sf-category-item-icon { background: linear-gradient(180deg, rgba(52, 74, 173, 0.6) 0%, rgba(39, 55, 143, 0.72) 100%); color: #6c8cff; }

.sf-category-item.sf-category-roblox .sf-category-item-icon {
  background: rgba(78, 149, 232, 0.1);
  box-shadow: none;
  color: #5aa2ee;
}

.sf-category-item.sf-category-roblox .sf-roblox-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.sf-category-item.sf-category-lol-rp .sf-category-item-icon {
  background: rgba(190, 141, 67, 0.1);
  box-shadow: none;
  color: #d39a42;
}

.sf-category-item.sf-category-lol-rp .sf-lol-icon {
  filter: brightness(0) saturate(100%) invert(66%) sepia(56%) saturate(945%) hue-rotate(354deg) brightness(92%) contrast(92%);
}

.sf-category-item.sf-category-valorant-vp .sf-category-item-icon {
  background: rgba(229, 72, 72, 0.1);
  box-shadow: none;
  color: #ef5a5a;
}

.sf-category-item.sf-category-valorant-vp .sf-valorant-icon {
  filter: brightness(0) saturate(100%) invert(36%) sepia(72%) saturate(1699%) hue-rotate(328deg) brightness(102%) contrast(99%);
}

.sf-category-item.sf-category-steam .sf-category-item-icon {
  background: rgba(76, 157, 237, 0.1);
  box-shadow: none;
  color: #57a6f2;
}

.sf-category-item.sf-category-steam .sf-steam-icon {
  filter: brightness(0) saturate(100%) invert(48%) sepia(80%) saturate(1518%) hue-rotate(187deg) brightness(101%) contrast(92%);
}

.sf-category-item.sf-category-mobile-legends .sf-category-item-icon {
  background: rgba(154, 104, 233, 0.1);
  box-shadow: none;
  color: #a973f0;
}

.sf-category-item.sf-category-mobile-legends .sf-mobilelegends-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(56%) saturate(1607%) hue-rotate(231deg) brightness(102%) contrast(93%);
}

.sf-category-item.sf-category-xbox-game-pass .sf-category-item-icon {
  background: rgba(88, 185, 98, 0.1);
  box-shadow: none;
  color: #63cb71;
}

.sf-category-item.sf-category-clash-of-clans .sf-category-item-icon {
  background: rgba(223, 168, 59, 0.1);
  box-shadow: none;
  color: #e4af46;
}

.sf-category-item.sf-category-clash-of-clans .sf-clashofclans-icon {
  filter: brightness(0) saturate(100%) invert(71%) sepia(77%) saturate(557%) hue-rotate(357deg) brightness(95%) contrast(90%);
}

.sf-category-item.sf-category-pubg-uc .sf-category-item-icon {
  background: rgba(223, 168, 59, 0.1);
  box-shadow: none;
  color: #e4af46;
}

.sf-category-item.sf-category-pubg-uc .sf-pubg-icon {
  filter: brightness(0) saturate(100%) invert(65%) sepia(77%) saturate(734%) hue-rotate(356deg) brightness(94%) contrast(92%);
}

.sf-category-item.sf-category-blog .sf-category-item-icon {
  background: rgba(84, 167, 232, 0.1);
  box-shadow: none;
  color: #61b2ef;
}

.sf-category-item.sf-category-xbox-game-pass .sf-xbox-icon {
  filter: brightness(0) saturate(100%) invert(69%) sepia(43%) saturate(696%) hue-rotate(74deg) brightness(93%) contrast(88%);
}

.sf-category-item.sf-category-blog .sf-blog-icon {
  filter: brightness(0) saturate(100%) invert(68%) sepia(50%) saturate(822%) hue-rotate(180deg) brightness(95%) contrast(92%);
}

.sf-icon-pin::before {
  width: 12px;
  height: 2px;
  border-radius: 2px;
}
.sf-icon-pin::after {
  width: 2px;
  height: 12px;
  border-radius: 2px;
}

.sf-icon-gem::before {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.sf-icon-shield::before {
  width: 12px;
  height: 15px;
  clip-path: polygon(50% 0%, 100% 18%, 85% 100%, 15% 100%, 0% 18%);
}

.sf-icon-bolt::before {
  width: 10px;
  height: 16px;
  clip-path: polygon(42% 0, 100% 0, 60% 42%, 100% 42%, 0 100%, 34% 56%, 0 56%);
}

.sf-icon-card::before {
  width: 14px;
  height: 10px;
  border-radius: 2px;
}
.sf-icon-card::after {
  width: 10px;
  height: 2px;
  top: 11px;
  border-radius: 2px;
}

.sf-icon-xbox::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 50%;
}
.sf-icon-xbox::after {
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.sf-icon-tag::before {
  width: 14px;
  height: 10px;
  border-radius: 2px;
}

.sf-icon-blog::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 50%;
}
.sf-icon-blog::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  background: transparent;
  right: 8px;
  bottom: 8px;
  transform: rotate(45deg);
}

.sf-megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 12px);
  z-index: 260;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition: opacity .26s cubic-bezier(0.22, 1, 0.36, 1), transform .26s cubic-bezier(0.22, 1, 0.36, 1), visibility .26s ease;
}

.sf-megamenu > .sf-shell {
  width: calc(100% - 60px);
}


.sf-header.is-megamenu-open .sf-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sf-header.is-megamenu-open .sf-categories-trigger {
  background: rgba(76, 103, 255, 0.08);
}

.sf-header.is-megamenu-open .sf-categories-caret {
  transform: rotate(180deg);
}

.sf-categories-caret {
  transition: transform .24s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-megamenu-panel {
  border-radius: 0 0 8px 8px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: transparent;
  box-shadow:
    0 24px 40px rgba(0,0,0,0.28);
  padding: 16px;
}

.sf-megamenu-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 0;
  min-height: 498px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background: #2a303a;
}

.sf-megamenu-sidebar {
  background: #1f232b;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sf-megamenu-sidebar-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.sf-megamenu-sidebar-list {
  display: grid;
  gap: 12px;
  flex: 1 1 auto;
  align-content: start;
  overflow-y: auto;
  padding-right: 2px;
}

.sf-megamenu-section {
  width: 100%;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1b2028;
  color: #f3f6fb;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px 0 12px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.sf-megamenu-section.is-active {
  background: #3a3f49;
  border-color: rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.sf-megamenu-section-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.sf-megamenu-section-badge img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.sf-megamenu-section-badge.is-popular { background: linear-gradient(180deg, #7f64ff 0%, #5e47db 100%); }
.sf-megamenu-section-badge.is-all { background: linear-gradient(180deg, #41d7a7 0%, #27b889 100%); }
.sf-megamenu-section-badge.is-item { background: linear-gradient(180deg, #6ba9ff 0%, #4d7dea 100%); }
.sf-megamenu-section-badge.is-account { background: linear-gradient(180deg, #9da6b6 0%, #788192 100%); }
.sf-megamenu-section-badge.is-topup { background: linear-gradient(180deg, #808893 0%, #606873 100%); }
.sf-megamenu-section-badge.is-epin { background: linear-gradient(180deg, #ff5b9d 0%, #da3879 100%); }
.sf-megamenu-section-badge.is-software { background: linear-gradient(180deg, #f4b24f 0%, #d18a1d 100%); }
.sf-megamenu-section-badge.is-freelance { background: linear-gradient(180deg, #62d2ff 0%, #2f98db 100%); }
.sf-megamenu-section-badge.is-platform { background: linear-gradient(180deg, #5e90ff 0%, #3a64d8 100%); }
.sf-megamenu-section-badge.is-gift { background: linear-gradient(180deg, #ff7f9e 0%, #de4b74 100%); }
.sf-megamenu-section-badge.is-other { background: linear-gradient(180deg, #9198a8 0%, #666e80 100%); }

.sf-megamenu-section-caret {
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1;
}

.sf-megamenu-sidebar-all {
  margin-top: 14px;
  min-height: 54px;
  border-radius: 4px;
  padding: 0 18px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #d54484 0%, #bb3b73 100%);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
}

.sf-megamenu-main {
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sf-megamenu-heading {
  margin-bottom: 14px;
}

.sf-megamenu-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sf-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow-y: auto;
  padding-right: 4px;
}

.sf-mega-card {
  min-height: 230px;
  border-radius: 4px;
  border: 0;
  color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-rows: 196px auto;
  gap: 10px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .18s ease, opacity .18s ease;
}

.sf-mega-card:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.sf-mega-card[hidden] {
  display: none;
}

.sf-mega-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(74, 78, 89, 0.88) 0%, rgba(52, 56, 66, 0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-mega-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.04) 0%, rgba(12, 14, 18, 0.22) 100%);
}

.sf-mega-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sf-mega-card-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: rgba(18, 22, 30, 0.46);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.sf-mega-card-name {
  display: block;
  text-align: center;
  color: #f3f5fa;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 0 8px;
}

.sf-megamenu-panel {
  border-radius: 0 0 var(--sf-header-radius, 4px) var(--sf-header-radius, 4px);
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, rgba(117, 79, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #20242c 0%, #1a1e26 100%);
  padding: 18px;
  overflow: hidden;
}

.sf-megamenu-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: 460px;
  border-radius: var(--sf-header-radius, 4px);
  border: 1px solid rgba(255,255,255,0.06);
  background: #222730;
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
}

.sf-megamenu-sidebar {
  padding: 24px 16px 16px;
  background: linear-gradient(180deg, #12151b 0%, #181c24 100%);
}

.sf-megamenu-sidebar-title {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.sf-megamenu-sidebar-list {
  gap: 10px;
  max-height: 340px;
  padding-right: 6px;
}

.sf-megamenu-sidebar-list::-webkit-scrollbar,
.sf-megamenu-grid::-webkit-scrollbar {
  width: 8px;
}

.sf-megamenu-sidebar-list::-webkit-scrollbar-thumb,
.sf-megamenu-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.sf-megamenu-section {
  min-height: 44px;
  border-radius: var(--sf-header-radius, 4px);
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sf-megamenu-section:hover,
.sf-megamenu-section:focus-visible,
.sf-megamenu-section.is-active {
  background: linear-gradient(180deg, rgba(66, 71, 82, 0.98) 0%, rgba(50, 55, 66, 0.98) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 26px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.03);
  transform: translateX(2px);
}

.sf-megamenu-section-label {
  font-size: 12px;
  line-height: 1.35;
}

.sf-megamenu-sidebar-all {
  margin-top: 10px;
  min-height: 42px;
  border-radius: var(--sf-header-radius, 4px);
  background: linear-gradient(135deg, #cc4378 0%, #8e315f 100%);
  box-shadow: 0 16px 32px rgba(153, 44, 93, 0.28);
}

.sf-megamenu-main {
  padding: 24px 20px 18px;
}

.sf-megamenu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sf-megamenu-heading h2 {
  font-size: 24px;
}

.sf-megamenu-heading p {
  margin: 0;
  color: #99a3ba;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sf-megamenu-grid {
  align-content: start;
  max-height: 350px;
  padding-right: 6px;
  gap: 18px;
}

.sf-mega-card {
  min-height: 0;
  gap: 12px;
  grid-template-rows: auto auto;
}

.sf-mega-card-media {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: var(--sf-header-radius, 4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 32px rgba(0,0,0,0.2);
}

.sf-mega-card:hover .sf-mega-card-media {
  border-color: rgba(116, 132, 255, 0.5);
}

.sf-mega-card-name {
  font-size: 18px;
  font-weight: 700;
}

.sf-megamenu-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: var(--sf-header-radius, 4px);
  color: #b5bed1;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  grid-column: 1 / -1;
}

@media (max-width: 1199.98px) {
  .sf-megamenu-heading h2 {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {
  .sf-megamenu-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-megamenu-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .sf-megamenu-panel {
    padding: 10px;
    border-radius: 0 0 var(--sf-header-radius, 4px) var(--sf-header-radius, 4px);
  }

  .sf-megamenu-layout {
    border-radius: var(--sf-header-radius, 4px);
  }

  .sf-megamenu-sidebar,
  .sf-megamenu-main {
    padding: 14px 12px;
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: 1fr;
  }

  .sf-megamenu-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .sf-megamenu-heading h2 {
    font-size: 19px;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sf-mega-card-name {
    font-size: 15px;
  }

  .sf-mega-card {
    grid-template-rows: 150px auto;
  }

  .sf-mega-card-media {
    height: 150px;
    min-height: 150px;
  }
}

@media (max-width: 479.98px) {
  .sf-megamenu-grid {
    grid-template-columns: 1fr;
  }
}

/* Category menu cleanup */
.sf-categorybar-inner {
  gap: 14px;
}

.sf-categories-trigger {
  height: 42px;
  padding-right: 10px;
  white-space: nowrap;
}

.sf-category-nav {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  padding: 0 0 2px 0;
}

.sf-category-item {
  flex: 0 0 auto;
  min-width: auto;
  white-space: nowrap;
  padding-right: 0;
}

.sf-category-nav > .sf-category-item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.sf-category-item span:last-child {
  font-size: 14px;
  line-height: 1;
}

.sf-megamenu {
  padding-top: 8px;
}

.sf-megamenu-panel {
  padding: 12px;
  border-radius: 0 0 18px 18px;
}

.sf-megamenu-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  min-height: 460px;
  border-radius: 16px;
}

.sf-megamenu-sidebar {
  padding: 18px 14px;
}

.sf-megamenu-sidebar-title {
  margin-bottom: 12px;
  font-size: 13px;
}

.sf-megamenu-sidebar-list {
  gap: 8px;
  max-height: 344px;
}

.sf-megamenu-section {
  min-height: 52px;
  border-radius: 12px;
  padding: 0 12px;
}

.sf-megamenu-sidebar-all {
  min-height: 50px;
  border-radius: 12px;
  margin-top: 12px;
  font-size: 14px;
}

.sf-megamenu-main {
  padding: 18px 16px;
}

.sf-megamenu-heading {
  margin-bottom: 14px;
}

.sf-megamenu-heading h2 {
  font-size: 20px;
}

.sf-megamenu-heading p {
  font-size: 12px;
}

.sf-megamenu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-height: 344px;
  overflow: auto;
}

.sf-mega-card {
  gap: 10px;
}

.sf-mega-card-media {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.sf-mega-card-name {
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.35;
}

.sf-megamenu-empty {
  min-height: 160px;
  border-radius: 14px;
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  .sf-megamenu-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

@media (max-width: 991.98px) {
  .sf-categorybar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-categories-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .sf-category-nav {
    width: 100%;
    margin-left: 0;
  }

  .sf-megamenu {
    padding-top: 0;
  }

  .sf-megamenu-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-megamenu-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .sf-category-item span:last-child {
    font-size: 13px;
  }

  .sf-megamenu-panel {
    padding: 10px;
  }

  .sf-megamenu-sidebar,
  .sf-megamenu-main {
    padding: 14px 12px;
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: 1fr;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 479.98px) {
  .sf-megamenu-grid {
    grid-template-columns: 1fr;
  }
}

.storefront-main {
  min-height: calc(100vh - 146px);
  background: #1a1a1d;
}

.storefront-results {
  padding: 32px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(92, 108, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #1b1c20 0%, #17181c 100%);
}

.storefront-results--home {
  padding-bottom: 0;
}

.storefront-results__shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.storefront-results__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(36, 37, 42, 0.96) 0%, rgba(28, 29, 34, 0.98) 100%);
  box-shadow: 0 20px 38px rgba(0,0,0,0.18);
}

.storefront-results__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #6f82ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-results__hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.storefront-results__hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #b7bed0;
  font-size: 15px;
  line-height: 1.7;
}

.storefront-results__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.storefront-results__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: #eef2fb;
  font-size: 13px;
  font-weight: 600;
}

.storefront-results__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.storefront-results__filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: #d4d9e5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.storefront-results__filter.is-active,
.storefront-results__filter:hover {
  border-color: rgba(92,108,255,0.55);
  background: rgba(92,108,255,0.18);
  color: #ffffff;
}

.storefront-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.storefront-results__card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(38, 39, 44, 0.98) 0%, rgba(31, 32, 37, 0.98) 100%);
  box-shadow: 0 16px 28px rgba(0,0,0,0.14);
}

.storefront-results__card-category {
  display: inline-block;
  margin-bottom: 14px;
  color: #6f82ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-results__card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.storefront-results__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.storefront-results__price {
  color: #1ed760;
  font-size: 18px;
  font-weight: 700;
}

.storefront-results__cta,
.storefront-results__empty-link {
  min-height: 42px;
  padding: 0 16px;
  background: #5c6cff;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.storefront-results__empty {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(36, 37, 42, 0.96) 0%, rgba(28, 29, 34, 0.98) 100%);
  text-align: center;
}

.storefront-results__empty h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
}

.storefront-results__empty p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #b7bed0;
  font-size: 15px;
  line-height: 1.7;
}

.storefront-hero-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 116, 33, 0.38), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(255, 138, 48, 0.34), transparent 24%),
    linear-gradient(180deg, #7f2f10 0%, #7a2c0d 24%, #43190f 100%);
}

.storefront-promo-strip {
  min-height: 124px;
  background:
    linear-gradient(90deg, rgba(191, 64, 20, 0.76), rgba(143, 49, 16, 0.35)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.storefront-promo-strip-inner {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.storefront-promo-title {
  color: #fff;
  font-size: 33px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.storefront-promo-cta {
  flex: 0 0 auto;
  height: 54px;
  min-width: 258px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b52910, #941f0b);
  box-shadow: 0 10px 24px rgba(56, 7, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
}

.storefront-hero-wrap {
  position: relative;
  padding-bottom: 32px;
}

.storefront-hero-card {
  margin: -2px auto 0;
  min-height: 430px;
  background:
    radial-gradient(circle at 34% 24%, rgba(46, 98, 165, 0.28), transparent 24%),
    linear-gradient(90deg, #0f1626 0%, #12203b 32%, #22395d 100%);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  display: grid;
  grid-template-columns: 38% 62%;
  overflow: hidden;
}

.storefront-hero-copy {
  padding: 92px 60px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.storefront-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 108px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid #d7aa09;
  color: #ffdd47;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 34px;
}

.storefront-hero-copy h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -1.2px;
}

.storefront-hero-copy p {
  margin: 0;
  max-width: 480px;
  color: rgba(255,255,255,0.94);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.storefront-hero-visual {
  position: relative;
  min-height: 430px;
}

.storefront-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 31, 0.15), rgba(12, 18, 31, 0)),
    linear-gradient(180deg, rgba(8, 12, 24, 0.06), rgba(8, 12, 24, 0.18));
  z-index: 1;
}

.storefront-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.storefront-page {
  margin: 28px auto 60px;
}

.storefront-page__card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #1a1a1d;
  padding: 30px 34px;
}

.storefront-page__card h1 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 800;
}

.storefront-page-content {
  color: #c7cfdd;
  line-height: 1.8;
}

.storefront-auth-body {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    linear-gradient(180deg, rgba(16, 118, 185, 0.78) 0%, rgba(78, 49, 128, 0.74) 45%, rgba(28, 28, 30, 0.98) 46%, rgba(28, 28, 30, 1) 100%),
    radial-gradient(circle at center top, rgba(33, 178, 255, 0.55), transparent 36%),
    linear-gradient(120deg, rgba(90, 35, 111, 0.76), rgba(18, 101, 155, 0.68));
  overflow-x: hidden;
}

.storefront-auth-screen {
  position: relative;
  min-height: 100vh;
  padding: 42px 16px 64px;
}

.storefront-auth-screen::before,
.storefront-auth-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.storefront-auth-screen::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 16%);
  opacity: 0.8;
}

.storefront-auth-screen::after {
  top: 220px;
  bottom: auto;
  height: 360px;
  background: #1d1d1f;
  clip-path: polygon(0 24%, 100% 24%, 100% 100%, 0 100%, 0 58%);
}

.storefront-auth-brand {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.storefront-auth-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.storefront-auth-brand img {
  max-width: min(100%, 240px);
  max-height: 72px;
  object-fit: contain;
}

.storefront-auth-brand span {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.storefront-auth-flash {
  position: relative;
  z-index: 2;
  width: min(100%, 626px);
  margin: 0 auto 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(39, 202, 119, 0.16);
  border: 1px solid rgba(39, 202, 119, 0.26);
  color: #d7ffe8;
  text-align: center;
}

.storefront-auth-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 626px);
  margin: 0 auto;
}

.storefront-auth-card {
  display: block;
}

.storefront-auth-form-panel {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #2a2a2d;
  box-shadow: 0 24px 44px rgba(0,0,0,0.28);
}

.storefront-auth-form-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.storefront-auth-form-panel.is-visual {
  gap: 20px;
}

.storefront-auth-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.storefront-auth-panel-head h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.storefront-auth-alt-link {
  min-width: 160px;
  height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #4464ff;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}

.storefront-auth-social {
  width: 100%;
  min-height: 100px;
  border: 0;
  border-radius: 8px;
  background: #e13143;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
}

.storefront-auth-social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.storefront-auth-social-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.storefront-auth-social-copy strong {
  font-size: 20px;
  font-weight: 700;
}

.storefront-auth-social-copy small {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}

.storefront-auth-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.storefront-auth-field input {
  width: 100%;
  height: 76px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  background: #111214;
  color: #edf2ff;
  padding: 0 64px 0 30px;
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.storefront-auth-field input::placeholder {
  color: #9eafda;
}

.storefront-auth-field input:focus {
  border-color: rgba(76, 103, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(76, 103, 255, 0.12);
}

.storefront-auth-field-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #f2f5ff;
  opacity: 0.9;
  pointer-events: none;
}

.storefront-auth-field-icon svg {
  width: 24px;
  height: 24px;
}

.storefront-auth-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c8ccd7;
  font-size: 14px;
}

.storefront-auth-check input {
  width: 16px;
  height: 16px;
}

.storefront-auth-submit {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #4c67ff 0%, #3c56ea 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(29, 43, 122, 0.28);
}

.storefront-auth-switch {
  margin: 0;
  color: #aeb6c8;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.storefront-auth-switch a {
  color: #6f82ff;
  text-decoration: none;
  font-weight: 600;
}

.storefront-auth-error {
  color: #ff8e9d;
  font-size: 13px;
}

@media (max-width: 1199.98px) {
  .sf-shell {
    width: calc(100% - 40px);
  }

  .legal-page__shell {
    width: calc(100% - 40px);
  }

  .sf-mainbar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .sf-brand,
  .sf-auth,
  .sf-topbar-inner,
  .sf-categorybar-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .sf-search-wrap {
    max-width: none;
  }

  .sf-auth {
    justify-content: flex-start;
  }

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

  .storefront-promo-title {
    font-size: 27px;
  }

  .storefront-hero-card {
    grid-template-columns: 44% 56%;
  }

  .storefront-hero-copy {
    padding: 68px 38px 56px;
  }

  .storefront-hero-copy h1 {
    font-size: 42px;
  }

  .storefront-hero-copy p {
    font-size: 17px;
  }

  .storefront-auth-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .sf-shell {
    width: calc(100% - 28px);
  }

  .sf-topbar-inner {
    gap: 10px;
  }

  .sf-topbar-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .sf-mainbar-inner {
    padding: 16px 0;
  }

  .sf-brand {
    justify-content: center;
  }

  .sf-brand-logo {
    justify-content: center;
  }

  .sf-brand-logo img {
    max-width: min(100%, 240px);
  }

  .sf-search-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    justify-content: center;
  }

  .sf-auth {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: 0;
    right: 0;
  }

  .sf-categorybar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .sf-categories-trigger {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .sf-category-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    margin-left: 0;
    padding-bottom: 4px;
  }

  .sf-category-item {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0 6px 0 0;
    font-size: 15px;
  }

  .sf-megamenu-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-megamenu-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .sf-megamenu-main {
    padding: 16px 12px 14px;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 560px;
  }

  .sf-topbar-special-panel {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-topbar-special-left {
    padding: 24px 18px;
    gap: 18px;
    border-right: 0;
    border-bottom: 3px solid #405cff;
  }

  .sf-topbar-special-link {
    font-size: 16px;
  }

  .sf-topbar-special-right {
    padding: 18px;
  }

  .sf-topbar-special-hero {
    min-height: 180px;
    gap: 26px;
  }

  .sf-topbar-special-hero-title {
    font-size: 19px;
  }

  .sf-topbar-special-hero-pill {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    height: 60px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .sf-shell {
    width: calc(100% - 20px);
  }

  .legal-page__shell {
    width: calc(100% - 20px);
  }

  .sf-topbar-inner,
  .sf-categorybar-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .sf-topbar-nav {
    width: 100%;
    gap: 10px 14px;
  }

  .sf-topbar-nav a,
  .sf-topbar-right {
    font-size: 12px;
  }

  .sf-topbar-right {
    width: 100%;
    text-align: left;
  }

  .sf-topbar-special-trigger {
    justify-content: flex-start;
  }

  .sf-search-wrap,
  .sf-auth {
    width: 100%;
    flex-wrap: wrap;
  }

  .sf-userbar {
    width: 100%;
    flex-wrap: wrap;
  }

  .sf-userbar__profile {
    min-width: 0;
    width: 100%;
  }

  .sf-userpanel {
    left: 0;
    right: auto;
  }

  .sf-brand {
    justify-content: flex-start;
  }

  .sf-brand-logo {
    width: 100%;
    justify-content: flex-start;
  }

  .sf-brand-logo img {
    max-width: min(100%, 220px);
    max-height: 58px;
  }

  .sf-search-wrap {
    gap: 12px;
    margin-left: 0;
  }

  .sf-search-form {
    height: 46px;
  }

  .sf-search-input {
    font-size: 16px;
    padding: 0 16px;
  }

  .sf-cdkey-button,
  .sf-auth-button {
    min-width: 0;
    height: 46px;
  }

  .sf-categorybar-inner {
    gap: 12px;
  }

  .sf-categories-trigger {
    font-size: 15px;
  }

  .sf-category-item {
    font-size: 14px;
    height: 42px;
  }

  .sf-category-item-icon {
    width: 34px;
    height: 34px;
  }

  .sf-megamenu {
    padding-top: 0;
  }

  .sf-megamenu-panel {
    padding: 10px;
    border-radius: 0 0 6px 6px;
  }

  .sf-megamenu-sidebar {
    padding: 14px 10px 10px;
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sf-megamenu-main {
    padding: 12px 10px 10px;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 480px;
  }

  .sf-mega-card {
    min-height: 180px;
    grid-template-rows: 144px auto;
  }

  .sf-megamenu-section {
    min-height: 44px;
    font-size: 14px;
  }

  .sf-search-form,
  .sf-cdkey-button,
  .sf-auth-button,
  .sf-auth-form {
    width: 100%;
  }

  .sf-auth-form button {
    width: 100%;
  }

  .storefront-page {
    padding: 24px 18px;
  }

  .storefront-promo-strip-inner {
    padding: 22px 0 26px;
    flex-direction: column;
    gap: 18px;
  }

  .storefront-promo-title {
    font-size: 22px;
  }

  .storefront-promo-cta {
    min-width: 220px;
    height: 48px;
    font-size: 15px;
  }

  .storefront-hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .storefront-hero-copy {
    padding: 38px 22px 24px;
  }

  .storefront-hero-copy h1 {
    font-size: 34px;
  }

  .storefront-hero-copy p {
    font-size: 16px;
  }

  .storefront-hero-visual {
    min-height: 260px;
  }

  .storefront-auth-wrap {
    width: calc(100% - 20px);
  }

  .storefront-auth-form-panel {
    padding: 22px 18px;
  }

  .storefront-auth-screen {
    padding-top: 28px;
  }

  .storefront-auth-screen::after {
    top: 180px;
    height: 260px;
  }

  .storefront-auth-panel-head {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront-auth-alt-link {
    min-width: 0;
    width: 100%;
    height: 44px;
  }

  .storefront-auth-social {
    min-height: 88px;
    padding: 16px;
  }

  .storefront-auth-social-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .storefront-auth-field input {
    height: 64px;
    padding-left: 20px;
    padding-right: 56px;
  }
}

@media (max-width: 575.98px) {
  .sf-shell {
    width: calc(100% - 16px);
  }

  .sf-mainbar-inner {
    gap: 12px;
    padding: 14px 0;
  }

  .sf-topbar-nav {
    gap: 8px 12px;
  }

  .sf-brand-logo img {
    max-width: min(100%, 190px);
    max-height: 52px;
  }

  .sf-categories-trigger {
    font-size: 15px;
    height: 42px;
    padding-right: 12px;
  }

  .sf-categories-icon {
    width: 36px;
    height: 36px;
  }

  .sf-megamenu-heading h2 {
    font-size: 20px;
  }

  .sf-megamenu-sidebar-title {
    font-size: 15px;
  }

  .sf-megamenu-grid {
    grid-template-columns: 1fr;
    max-height: 420px;
  }

  .sf-mega-card {
    min-height: 168px;
    grid-template-rows: 132px auto;
  }

  .sf-topbar-special-panel {
    width: 100%;
  }

  .sf-topbar-special-hero {
    min-height: 160px;
    gap: 18px;
    padding: 18px 14px;
  }

  .sf-topbar-special-hero-title {
    font-size: 17px;
  }

  .sf-topbar-special-hero-pill {
    min-width: 0;
    padding: 0 18px;
    font-size: 14px;
  }

  .sf-userpanel {
    width: min(100%, calc(100vw - 16px));
  }

  .sf-mega-card {
    min-height: 68px;
  }

  .sf-mega-card-name {
    font-size: 15px;
  }

  .storefront-page {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .storefront-page h1 {
    font-size: 24px;
  }

  .storefront-hero-copy {
    padding: 28px 16px 18px;
  }

  .storefront-hero-copy h1 {
    font-size: 28px;
  }

  .storefront-hero-copy p {
    font-size: 15px;
  }

  .storefront-hero-visual {
    min-height: 220px;
  }

  .storefront-auth-wrap {
    width: calc(100% - 16px);
    margin-top: 18px;
  }

  .storefront-auth-form-panel {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .storefront-auth-brand img {
    max-width: 190px;
  }

  .storefront-auth-submit,
  .storefront-auth-field input {
    height: 48px;
  }

  .storefront-auth-panel-head h1 {
    font-size: 24px;
  }

  .storefront-auth-social {
    min-height: 74px;
    gap: 12px;
  }

  .storefront-auth-social-copy strong {
    font-size: 18px;
  }
}

.storefront-auth-screen::after {
  top: 344px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 58%);
}

.storefront-auth-form-panel.is-register-visual {
  gap: 14px;
}

.storefront-auth-form-panel.is-register-visual .storefront-auth-panel-head h1 {
  font-size: 28px;
}

.storefront-auth-form-panel.is-register-visual .storefront-auth-alt-link {
  min-width: 158px;
  height: 54px;
  font-size: 14px;
  font-weight: 800;
}

.storefront-auth-form-panel.is-register-visual .storefront-auth-field input {
  height: 62px;
  background: #030919;
  color: #f0f4ff;
  padding-left: 20px;
  padding-right: 58px;
  font-size: 15px;
}

.storefront-auth-form-panel.is-register-visual .storefront-auth-field input::placeholder {
  color: #a5b6df;
}

.storefront-auth-note {
  margin: 2px 0 0;
  color: #bdb6ac;
  font-size: 13px;
  line-height: 1.6;
}

.storefront-auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ebe5db;
  font-size: 13px;
  line-height: 1.55;
}

.storefront-auth-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #4c67ff;
}

.storefront-auth-consent strong {
  color: #ffffff;
  font-weight: 700;
}

.storefront-auth-form-panel.is-register-visual .storefront-auth-submit {
  height: 72px;
  margin-top: 10px;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.storefront-auth-bottom-link {
  margin: 28px -28px -28px;
  min-height: 96px;
  padding: 0 26px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #25cb69 0%, #18ba60 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .storefront-auth-screen::after {
    top: 300px;
    height: 320px;
  }

  .storefront-auth-form-panel.is-register-visual .storefront-auth-alt-link {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .storefront-auth-form-panel.is-register-visual .storefront-auth-field input {
    height: 58px;
  }

  .storefront-auth-form-panel.is-register-visual .storefront-auth-submit {
    height: 62px;
    font-size: 18px;
  }

  .storefront-auth-bottom-link {
    margin: 20px -18px -22px;
    min-height: 82px;
    padding: 0 20px;
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .storefront-auth-note,
  .storefront-auth-consent {
    font-size: 12px;
  }

  .storefront-auth-bottom-link {
    margin: 16px -14px -18px;
    min-height: 74px;
    font-size: 18px;
  }
}

.storefront-auth-body--register {
  background-color: #1d1e21;
  background:
    linear-gradient(180deg, transparent 0 56%, #1d1e21 56%, #1d1e21 100%),
    url("/assets/image/kayitolarkaplan.jpg") center top / cover no-repeat;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-attachment: scroll, scroll;
  min-height: 100vh;
}

.storefront-auth-body--register .storefront-auth-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 46px 20px 40px;
  overflow: hidden;
}

.storefront-auth-body--register .storefront-auth-screen::before {
  inset: 0 0 auto 0;
  height: 49vh;
  min-height: 360px;
  background: url("/assets/image/kayitolarkaplan.jpg") center top / cover no-repeat;
  opacity: 1;
}

.storefront-auth-body--register .storefront-auth-screen::after {
  inset: auto 0 0;
  top: auto;
  height: 72vh;
  min-height: 620px;
  background:
    linear-gradient(180deg, #252528 0%, #1d1e21 100%);
  clip-path: polygon(0 0, 50% 61%, 100% 0, 100% 100%, 0 100%);
  transform: translateY(-108px);
}

.storefront-auth-body--register .storefront-auth-brand {
  margin-bottom: 24px;
}

.storefront-auth-body--register .storefront-auth-brand img {
  max-width: min(100%, 268px);
  max-height: 84px;
  filter: none;
}

.storefront-auth-footer {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding: 0 16px 18px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.storefront-auth-body--register .storefront-auth-flash {
  width: min(100%, 520px);
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(26, 211, 103, 0.18);
  border: 1px solid rgba(26, 211, 103, 0.24);
}

.register-page {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.register-page__shell {
  width: min(100%, 500px);
}

.storefront-auth-body--register,
.storefront-auth-body--register .register-page,
.storefront-auth-body--register .register-page * {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.register-card {
  background: #2c2c30;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.48);
  overflow: hidden;
}

.register-card__form {
  padding: 40px 40px 18px;
}

.register-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.register-card__header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.register-card__switch {
  min-width: 132px;
  height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  background: #5c6cff;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.register-step {
  display: none;
}

.register-step.is-active {
  display: block;
}

.register-card__subhead {
  margin-bottom: 18px;
}

.register-card__subhead h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.register-card__subhead p {
  margin: 0;
  color: #d2d4dc;
  font-size: 13px;
  line-height: 1.55;
}

.register-billing-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.register-billing-toggle__item {
  flex: 1 1 0;
  height: 54px;
  border: 0;
  border-radius: 6px;
  background: #090909;
  color: #f1f4fb;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.register-billing-toggle__item.is-active {
  background: #28cf6d;
  box-shadow: 0 10px 24px rgba(40, 207, 109, 0.28);
}

.register-corporate-fields {
  display: none;
}

.register-corporate-fields.is-active {
  display: block;
}

.register-corporate-fields .register-field {
  margin-bottom: 14px;
}

.register-field {
  position: relative;
  margin-bottom: 8px;
}

.register-field input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 3px;
  background: #090909;
  color: #d2d2d7;
  padding: 0 62px 0 19px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.register-field select,
.register-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 3px;
  background: #090909;
  color: #d2d2d7;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.register-field select {
  height: 52px;
  padding: 0 62px 0 19px;
  appearance: none;
  text-align: left;
}

.register-field textarea {
  min-height: 118px;
  padding: 18px 62px 18px 19px;
  resize: vertical;
}

.register-field select:focus,
.register-field textarea:focus {
  border-color: rgba(92, 108, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(92, 108, 255, 0.13);
  background: #101010;
}

.register-field.has-error input,
.register-field.has-error select,
.register-field.has-error textarea {
  border-color: rgba(255, 104, 133, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 104, 133, 0.12);
}

.register-field select option {
  color: #d2d2d7;
  background: #090909;
}

.register-field--textarea .register-field__icon {
  top: 28px;
  transform: none;
}

.register-field input::placeholder {
  color: #9fa3ad;
  opacity: 1;
}

.register-field input:focus {
  border-color: rgba(92, 108, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(92, 108, 255, 0.13);
  background: #101010;
}

.register-field__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: #f5f7fe;
  opacity: 0.96;
  pointer-events: none;
}

.register-field__toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}

.register-field__toggle .register-field__eye--visible {
  display: none;
}

.register-field__toggle.is-visible .register-field__eye--hidden {
  display: none;
}

.register-field__toggle.is-visible .register-field__eye--visible {
  display: block;
}

.register-field__icon svg {
  width: 24px;
  height: 24px;
}

.register-card__note {
  margin: 4px 0 8px;
  color: #bfbfbf;
  font-size: 10.6px;
  line-height: 1.4;
}

.register-card__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #e5e7ec;
  font-size: 11px;
  line-height: 1.6;
}

.register-card__consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: #5c6cff;
  flex: 0 0 auto;
}

.register-card__consent strong {
  font-weight: 800;
  color: #ffffff;
}

.register-card__consent-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.register-card__consent-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.74);
}

.register-card__primary {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 4px;
  background: #5c6cff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(44, 59, 191, 0.38);
}

.register-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.register-card__back {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.register-card__primary--final {
  gap: 0;
}

.register-page__secondary {
  margin-top: 18px;
  width: 100%;
  min-height: 62px;
  border-radius: 4px;
  background: #1ed760;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 0 30px rgba(30,215,96,0.6);
}

.register-page .storefront-auth-error {
  display: block;
  margin-top: 8px;
  padding-left: 2px;
  color: #ffacb8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.register-card__consent.has-error {
  color: #ffd3da;
}

.register-card__consent.has-error input {
  outline: 2px solid rgba(255, 104, 133, 0.85);
  outline-offset: 1px;
}

.legal-page {
  padding: 40px 0 72px;
}

.legal-page__shell {
  width: calc(100% - (var(--sf-shell-gap) * 2));
  max-width: none;
  margin: 0 auto;
}

.legal-page__card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(38, 39, 44, 0.97) 0%, rgba(28, 29, 33, 0.985) 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  padding: 32px;
}

.legal-page__header {
  margin-bottom: 28px;
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(79, 152, 242, 0.12);
  color: #75b3ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-page__title {
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
}

.legal-page__intro {
  margin: 0;
  max-width: 760px;
  color: #bfc5d2;
  font-size: 15px;
  line-height: 1.7;
}

.legal-page__section + .legal-page__section {
  margin-top: 28px;
}

.legal-page__section-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-page__text {
  margin: 0;
  color: #d2d7e2;
  font-size: 15px;
  line-height: 1.9;
}

.legal-page__list {
  margin: 0;
  padding-left: 22px;
  color: #d2d7e2;
}

.legal-page__list li {
  font-size: 15px;
  line-height: 1.85;
}

.storefront-blog {
  padding: 56px 0 88px;
}

.storefront-blog__shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.storefront-blog__shell--narrow {
  width: min(900px, calc(100% - 48px));
}

.storefront-blog__hero,
.storefront-blog__detail,
.storefront-blog__empty {
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(37, 39, 46, 0.98) 0%, rgba(27, 29, 35, 0.99) 100%);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

.storefront-blog__hero,
.storefront-blog__detail {
  border-radius: 10px;
  padding: 34px 36px;
}

.storefront-blog__eyebrow {
  display: inline-block;
  color: #6d7cff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-blog__title,
.storefront-blog__detail-title {
  margin: 12px 0 0;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.storefront-blog__intro {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(223, 229, 241, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.storefront-blog__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.storefront-blog__card {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(34, 36, 42, 0.98) 0%, rgba(26, 28, 34, 0.99) 100%);
  padding: 24px 24px 22px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.storefront-blog__date {
  display: inline-block;
  color: rgba(255,255,255,0.54);
  font-size: 13px;
  font-weight: 600;
}

.storefront-blog__card-title {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.32;
}

.storefront-blog__card-title a,
.storefront-blog__link,
.storefront-blog__back {
  color: #fff;
  text-decoration: none;
}

.storefront-blog__excerpt,
.storefront-blog__content {
  margin-top: 14px;
  color: rgba(226, 232, 242, 0.84);
  font-size: 16px;
  line-height: 1.85;
}

.storefront-blog__link {
  display: inline-flex;
  margin-top: 18px;
  color: #6d7cff;
  font-size: 14px;
  font-weight: 700;
}

.storefront-blog__back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 700;
}

.storefront-blog__empty {
  margin-top: 28px;
  border-radius: 10px;
  padding: 40px 36px;
  text-align: center;
  color: rgba(233, 238, 248, 0.84);
}

.storefront-blog__empty h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
}

.login-card__form {
  padding-bottom: 24px;
}

.login-card__header {
  margin-bottom: 24px;
}

.login-card__description {
  margin: -2px 0 18px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.65;
}

.login-card__consent {
  margin-top: 12px;
  margin-bottom: 14px;
}

.login-card__helper {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.login-card__forgot {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.login-card__forgot:hover {
  color: rgba(255,255,255,0.82);
}

.storefront-auth-body--login .register-page__shell {
  width: min(100%, 520px);
}

.storefront-auth-body--login .storefront-auth-screen::after {
  transform: translateY(-8px);
}

@media (max-width: 767.98px) {
  .storefront-auth-body--register .storefront-auth-screen {
    padding: 34px 14px 32px;
  }

  .storefront-results {
    padding: 24px 0 40px;
  }

  .storefront-results__hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .storefront-results__hero h1 {
    font-size: 28px;
  }

  .storefront-results__meta {
    justify-content: flex-start;
  }

  .storefront-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-auth-body--register .storefront-auth-screen::before {
    height: 38vh;
    min-height: 280px;
    background-position: center top;
  }

  .storefront-auth-body--register .storefront-auth-screen::after {
    height: 70vh;
    min-height: 470px;
    clip-path: polygon(0 0, 50% 53%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(-64px);
  }

  .storefront-auth-body--register .storefront-auth-brand {
    margin-bottom: 22px;
  }

  .storefront-auth-footer {
    margin-top: 20px;
    font-size: 11px;
    padding-bottom: 14px;
  }

  .register-page__shell {
    width: min(95%, 618px);
  }

  .register-page {
    margin-top: 28px;
  }

  .register-card__form {
    padding: 30px 20px 16px;
  }

  .register-card__header {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .register-card__switch {
    width: 100%;
    min-width: 0;
    height: 44px;
  }

  .register-billing-toggle {
    flex-direction: column;
  }

  .register-page__secondary {
    min-height: 60px;
    padding: 0 22px;
    font-size: 17px;
  }

  .login-card__description {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .storefront-auth-body--login .register-page__shell {
    width: min(95%, 560px);
  }

  .storefront-auth-body--login .storefront-auth-screen::after {
    transform: translateY(6px);
  }

  .register-card__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .storefront-auth-body--register .storefront-auth-screen {
    padding: 28px 10px 24px;
  }

  .storefront-results__hero {
    padding: 22px 16px;
  }

  .storefront-results__hero h1 {
    font-size: 24px;
  }

  .storefront-results__hero p,
  .storefront-results__empty p {
    font-size: 14px;
  }

  .storefront-results__grid {
    grid-template-columns: 1fr;
  }

  .storefront-results__card {
    padding: 18px 16px;
  }

  .storefront-results__empty {
    padding: 28px 18px;
  }

  .storefront-auth-body--register .storefront-auth-brand img {
    max-width: 226px;
  }

  .storefront-auth-footer {
    margin-top: 16px;
    font-size: 10px;
    padding-bottom: 12px;
  }

  .register-page__shell {
    width: 95%;
  }

  .register-page {
    margin-top: 20px;
  }

  .register-card__form {
    padding: 28px 14px 16px;
  }

  .register-card__header h1 {
    font-size: 20px;
  }

  .register-field input {
    height: 50px;
    padding-left: 18px;
    padding-right: 56px;
    font-size: 14px;
  }

  .register-field select {
    height: 50px;
    padding-left: 18px;
    padding-right: 56px;
    font-size: 14px;
  }

  .register-field textarea {
    min-height: 104px;
    padding: 16px 56px 16px 18px;
    font-size: 14px;
  }

  .register-card__note,
  .register-card__consent {
    font-size: 10px;
  }

  .register-card__primary {
    height: 50px;
    font-size: 16px;
  }

  .register-page__secondary {
    min-height: 58px;
    font-size: 16px;
  }

.storefront-auth-body--login .register-page__shell {
    width: 95%;
  }
}

/* Mega menu refinements */
.sf-megamenu-panel {
  border-radius: 0 0 var(--sf-header-radius, 4px) var(--sf-header-radius, 4px);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  padding: 18px;
  overflow: hidden;
}

.sf-megamenu-layout {
  min-height: 420px;
  border-radius: var(--sf-header-radius, 4px);
  border: 1px solid rgba(255,255,255,0.06);
  background: #222730;
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
}

.sf-megamenu-sidebar {
  padding: 24px 16px 16px;
  background: linear-gradient(180deg, #12151b 0%, #181c24 100%);
}

.sf-megamenu-sidebar-title {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.sf-megamenu-sidebar-list {
  display: grid;
  grid-auto-rows: minmax(44px, auto);
  align-content: start;
  gap: 6px;
  max-height: 320px;
  padding-right: 6px;
}

.sf-megamenu-sidebar-list::-webkit-scrollbar,
.sf-megamenu-grid::-webkit-scrollbar {
  width: 8px;
}

.sf-megamenu-sidebar-list::-webkit-scrollbar-thumb,
.sf-megamenu-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.sf-megamenu-section {
  min-height: 44px;
  height: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: var(--sf-header-radius, 4px);
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sf-megamenu-section:hover,
.sf-megamenu-section:focus-visible,
.sf-megamenu-section.is-active {
  background: linear-gradient(180deg, rgba(66, 71, 82, 0.98) 0%, rgba(50, 55, 66, 0.98) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 16px 26px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.03);
  transform: translateX(2px);
}

.sf-megamenu-section-label {
  font-size: 12px;
  line-height: 1.25;
}

.sf-megamenu-sidebar-all {
  margin-top: 10px;
  min-height: 42px;
  border-radius: var(--sf-header-radius, 4px);
  background: linear-gradient(135deg, #cc4378 0%, #8e315f 100%);
  box-shadow: 0 16px 32px rgba(153, 44, 93, 0.28);
}

.sf-megamenu-main {
  padding: 24px 20px 18px;
}

.sf-megamenu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sf-megamenu-heading h2 {
  font-size: 24px;
}

.sf-megamenu-heading p {
  margin: 0;
  color: #99a3ba;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sf-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  align-content: start;
  align-items: start;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 6px;
  column-gap: 18px;
  row-gap: 14px;
}

.sf-mega-card {
  display: grid;
  min-height: 0;
  gap: 10px;
  grid-template-rows: 170px auto;
  align-content: start;
  align-self: start;
}

.sf-mega-card-media {
  aspect-ratio: auto;
  height: 170px;
  min-height: 170px;
  border-radius: var(--sf-header-radius, 4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 32px rgba(0,0,0,0.2);
}

.sf-mega-card:hover .sf-mega-card-media {
  border-color: rgba(116, 132, 255, 0.5);
}

.sf-mega-card-name {
  display: block;
  min-height: 34px;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 700;
}

.sf-megamenu-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 20px;
  color: #b5bed1;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  grid-column: 1 / -1;
}

@media (max-width: 1199.98px) {
  .sf-megamenu > .sf-shell {
    width: calc(100% - 42px);
  }

  .sf-megamenu-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .sf-megamenu-heading h2 {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {
  .sf-megamenu > .sf-shell {
    width: calc(100% - 26px);
  }

  .sf-megamenu-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-megamenu-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .sf-megamenu > .sf-shell {
    width: calc(100% - 19px);
  }

  .sf-megamenu-panel {
    padding: 10px;
    border-radius: 0 0 18px 18px;
  }

  .sf-megamenu-layout {
    border-radius: 18px;
  }

  .sf-megamenu-sidebar,
  .sf-megamenu-main {
    padding: 14px 12px;
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: 1fr;
  }

  .sf-megamenu-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .sf-megamenu-heading h2 {
    font-size: 19px;
  }

  .sf-megamenu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sf-mega-card-name {
    font-size: 15px;
  }
}

@media (max-width: 479.98px) {
  .sf-megamenu > .sf-shell {
    width: calc(100% - 15px);
  }

  .sf-megamenu-grid {
    grid-template-columns: 1fr;
  }
}

/* Final desktop lock: prevent right-side card overlap */
@media (min-width: 992px) {
  .sf-megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: max-content;
    align-items: start;
    align-content: start;
    row-gap: 14px;
    column-gap: 18px;
  }

  .sf-megamenu-grid > .sf-mega-card {
    display: grid;
    grid-template-rows: 170px auto;
    gap: 10px;
    min-height: 0;
    margin: 0;
    align-self: start;
  }

  .sf-megamenu-grid > .sf-mega-card .sf-mega-card-media {
    height: 170px;
    min-height: 170px;
    aspect-ratio: auto;
  }

  .sf-megamenu-grid > .sf-mega-card .sf-mega-card-name {
    min-height: 34px;
    line-height: 1.25;
  }
}

/* ── Sidebar badge (sol kolon ikonları): arka plan yok, büyük ikon ── */
.sf-megamenu-section-badge {
  background: none !important;
  box-shadow: none !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 0 !important;
}

.sf-megamenu-section-badge.is-popular,
.sf-megamenu-section-badge.is-all,
.sf-megamenu-section-badge.is-item,
.sf-megamenu-section-badge.is-account,
.sf-megamenu-section-badge.is-topup,
.sf-megamenu-section-badge.is-epin,
.sf-megamenu-section-badge.is-software,
.sf-megamenu-section-badge.is-freelance,
.sf-megamenu-section-badge.is-platform,
.sf-megamenu-section-badge.is-gift,
.sf-megamenu-section-badge.is-other {
  background: none !important;
}

.sf-megamenu-section-badge img {
  width: 24px !important;
  height: 24px !important;
}

/* ============================================================
  LIGHT THEME - Subpage Component Overrides
  ============================================================ */

/* --- Category page product rows --- */
html[data-theme='light'] .category-page__product-row {
  background: #ffffff;
  border-color: #d4ddeb;
}

html[data-theme='light'] .category-page__product-copy h2 {
  color: #0f1729;
}

html[data-theme='light'] .category-page__product-copy p {
  color: #334560;
}

html[data-theme='light'] .category-page__price-old {
  color: rgba(50, 70, 100, 0.5);
}

html[data-theme='light'] .category-page__price-current {
  color: #0f1729;
}

html[data-theme='light'] .category-page__qty {
  background: #e4ebf6;
}

html[data-theme='light'] .category-page__qty button {
  background: #c9d6ea;
  color: #0f1729;
}

html[data-theme='light'] .category-page__qty span {
  color: #0f1729;
}

/* --- Category info cards --- */
html[data-theme='light'] .category-page__info-card {
  background: #ffffff;
  border-color: #d4ddeb;
}

html[data-theme='light'] .category-page__info-copy h2 {
  color: #0f1729;
}

html[data-theme='light'] .category-page__info-copy p {
  color: rgba(20, 40, 80, 0.7);
}

/* --- Blog pages --- */
html[data-theme='light'] .blog-page,
html[data-theme='light'] .blog-show-page {
  color: #0f1729;
}

html[data-theme='light'] .blog-page h1,
html[data-theme='light'] .blog-page h2,
html[data-theme='light'] .blog-show-page h1,
html[data-theme='light'] .blog-show-page h2 {
  color: #0f1729;
}

html[data-theme='light'] .blog-page p,
html[data-theme='light'] .blog-show-page p {
  color: #334560;
}

/* --- Cart page --- */
html[data-theme='light'] .cart-page {
  color: #0f1729;
}

html[data-theme='light'] .cart-page h1,
html[data-theme='light'] .cart-page h2,
html[data-theme='light'] .cart-page h3 {
  color: #0f1729;
}

/* --- Legal & static pages --- */
html[data-theme='light'] .legal-page__intro {
  color: #334560;
}

html[data-theme='light'] .legal-page h2,
html[data-theme='light'] .legal-page h3 {
  color: #0f1729;
}

html[data-theme='light'] .legal-page p,
html[data-theme='light'] .legal-page li {
  color: #334560;
}

/* ============================================================
  MOBILE RESCUE LAYER
  Shared storefront header/category overrides for phones
  ============================================================ */

@media (max-width: 767.98px) {
  .sf-topbar {
    display: none;
  }

  .sf-mainbar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .sf-brand,
  .sf-brand-logo {
    justify-content: center;
    width: 100%;
  }

  .sf-brand-logo img {
    max-width: min(72vw, 220px);
    max-height: 52px;
    object-position: center;
  }

  .sf-search-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .sf-search-form {
    width: 100%;
    height: 44px;
    order: 1;
  }

  .sf-search-input {
    font-size: 16px;
    padding: 0 14px;
  }

  .sf-cdkey-button {
    order: 2;
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 14px;
  }

  .sf-auth {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .sf-auth-button,
  .sf-auth-form {
    width: 100%;
  }

  .sf-auth-button {
    min-width: 0;
    width: 100%;
    height: 44px;
    justify-content: center;
  }

  .sf-auth-form button {
    width: 100%;
  }

  .sf-userbar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .sf-userbar__profile {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .sf-userbar__load,
  .sf-userbar__icon,
  .sf-userbar__menu-wrap {
    width: 100%;
    min-width: 0;
  }

  .sf-userbar__load,
  .sf-userbar__icon,
  .sf-userbar__menu-trigger {
    height: 42px;
  }

  .sf-userbar__menu-trigger {
    width: 100%;
  }

  .sf-userbar__menu-wrap {
    display: block;
  }

  .sf-userbar__icon img[src*="desteksistemiicon"] {
    width: 24px;
    height: 24px;
  }

  .sf-userpanel,
  .sf-userbar__menu {
    position: fixed;
    top: auto;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
  }

  .sf-userpanel {
    bottom: 10px;
    max-height: min(78vh, 620px);
    overflow-y: auto;
  }

  .sf-userbar__menu {
    bottom: 10px;
    min-width: 0;
    transform: translateY(12px);
  }

  .sf-userbar__menu-wrap.is-open .sf-userbar__menu {
    transform: translateY(0);
  }

  .sf-cart-preview__panel {
    width: min(100vw - 20px, 360px) !important;
  }

  .sf-categorybar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sf-categories-trigger {
    width: 100%;
    height: 44px;
    justify-content: space-between;
    padding: 0 12px 0 0;
    font-size: 15px;
  }

  .sf-categories-icon {
    width: 34px;
    height: 34px;
  }

  .sf-category-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .sf-category-item {
    flex: 0 0 auto;
    height: 40px;
    padding-right: 4px;
    font-size: 13px;
    gap: 8px;
    scroll-snap-align: start;
  }

  .sf-category-item-icon {
    width: 34px;
    height: 34px;
  }

  .sf-category-item-icon img {
    width: 20px;
    height: 20px;
  }

  .sf-megamenu {
    padding-top: 0;
  }

  .sf-megamenu > .sf-shell {
    width: calc(100% - 12px);
  }

  .sf-megamenu-panel {
    padding: 8px;
  }

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

  .sf-megamenu-sidebar,
  .sf-megamenu-main {
    padding: 12px 10px;
  }

  .sf-megamenu-sidebar-list {
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: none;
  }

  .sf-megamenu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: none;
  }

  .sf-mega-card {
    min-height: 142px;
    grid-template-rows: 108px auto;
  }
}

@media (max-width: 575.98px) {
  .sf-shell {
    width: calc(100% - 12px);
  }

  .sf-mainbar-inner {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sf-brand-logo img {
    max-width: min(68vw, 190px);
    max-height: 46px;
  }

  .sf-search-form,
  .sf-cdkey-button,
  .sf-auth-button {
    height: 40px;
  }

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

  .sf-userbar__profile {
    padding: 0 8px;
  }

  .sf-userbar__identity strong {
    font-size: 11px;
  }

  .sf-userbar__balance > span:first-child {
    font-size: 9px;
  }

  .sf-userbar__load {
    font-size: 11px;
  }

  .sf-userbar__icon,
  .sf-userbar__menu-trigger {
    width: 100%;
    min-width: 0;
  }

  .sf-userpanel,
  .sf-userbar__menu {
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  .sf-category-item {
    font-size: 12px;
  }

  .sf-megamenu-grid {
    grid-template-columns: 1fr;
  }

  .sf-mega-card {
    min-height: 120px;
    grid-template-rows: 86px auto;
  }
}
