/* unused-css-purged: 1144 rules removed */

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-RegularItalic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Medium.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Semibold.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Extrabold.woff2') format('woff2');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Black.woff2') format('woff2');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root,
html[data-theme='light'],
html[data-theme='dark'] {
  --cz-font-sans-serif: 'Gilroy', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --cz-body-font-family: var(--cz-font-sans-serif);
  --font-sans: 'Gilroy', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

:root,
html[data-theme='light'] {
  color-scheme: light;
  --bg-body: #f3f5f7;
  --bg-top: #e8ecf1;
  --bg-header: #ffffff;
  --bg-nav: #ffffff;
  --bg-input: #eef1f5;
  --bg-btn: #ffffff;
  --bg-panel: #ffffff;
  --bg-panel-soft: #f8fafc;
  --bg-elevated: #f5f7fa;
  --bg-footer: #eef1f4;
  --bg-footer-nav: #ffffff;
  --border: #dce1e6;
  --border-soft: #e4e8ed;
  --border-strong: #d0d6dd;
  --text: #151718;
  --text-muted: #66707a;
  --text-soft: #5f6b76;
  --text-dim: #6f7882;
  --logo-text: #151718;
  --orange: #ff6a00;
  --orange-hot: #f7692b;
  --orange-tint: rgba(247, 105, 43, 0.14);
  --orange-tint-text: #151718;
  --orange-tint-fg: #f7692b;
  --orange-tint-border: rgba(247, 105, 43, 0.35);
  --orange-tint-chip: rgba(247, 105, 43, 0.12);
  --green: #16a34a;
  --teal: #0f9f7f;
  --blue: #0284c7;
  --red: #dc2626;
  --container: 1456px;
  --shadow-panel: 0 12px 32px rgba(21, 23, 24, 0.08);
}

html[data-theme='dark'] {
  color-scheme: dark;
  --bg-body: #151718;
  --bg-top: #0a0c10;
  --bg-header: #111315;
  --bg-nav: #11141a;
  --bg-input: #1c2128;
  --bg-btn: #161616;
  --bg-panel: #1c1e21;
  --bg-panel-soft: #202224;
  --bg-elevated: #141618;
  --bg-footer: #1e2022;
  --bg-footer-nav: #171a1b;
  --border: #2a2a2a;
  --border-soft: #26282c;
  --border-strong: #2a2d31;
  --text: #ffffff;
  --text-muted: #d8dcdf;
  --text-soft: #e6eaed;
  --text-dim: #d0d5d9;
  --logo-text: #ffffff;
  --orange: #ff6a00;
  --orange-hot: #f7692b;
  --orange-tint: #f7692b;
  --orange-tint-text: #ffffff;
  --orange-tint-fg: #ffffff;
  --orange-tint-border: #f7692b;
  --orange-tint-chip: rgba(255, 255, 255, 0.2);
  --green: #22c55e;
  --teal: #18d3a6;
  --blue: #38bdf8;
  --red: #ef4444;
  --shadow-panel: 0 18px 40px rgba(0, 0, 0, 0.45);
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans, 'Gilroy', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif);
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  line-height: normal;
}

html,
body,
input,
textarea,
select,
button {
  font-family: var(--font-sans, 'Gilroy', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

a {
  color: inherit;
  text-decoration: none;
  line-height: normal;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  line-height: normal;
}

ul {
  list-style: none;
}

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

[hidden] {
  display: none !important;
}

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

.top-bar {
  background: var(--bg-top);
  border-bottom: 1px solid var(--border-soft);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  gap: 16px;
}

.top-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.top-bar__badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar__currency,
.top-bar__theme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 12px;
  white-space: nowrap;
  font-weight: 600;
}

.top-bar__theme img,
.top-bar__theme-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.top-bar__theme-icon--sun {
  display: none;
}

.top-bar__theme-icon--moon {
  display: block;
}

html[data-theme='dark'] .top-bar__theme-icon--sun {
  display: block;
}

html[data-theme='dark'] .top-bar__theme-icon--moon {
  display: none;
}

.top-bar__currency img {
  width: 8px;
}

.top-bar__currency-wrap {
  position: relative;
}

.top-bar__currency-wrap summary {
  list-style: none;
  cursor: pointer;
}

.top-bar__currency-wrap summary::-webkit-details-marker {
  display: none;
}

.top-bar__currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 200;
  min-width: 220px;
  padding: 8px 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.top-bar__currency-item {
  display: block;
  padding: 8px 14px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar__currency-item:hover {
  background: rgba(241, 90, 42, 0.08);
  color: var(--text-main);
}

.main-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-soft);
}

.main-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 75px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand__logo-text {
  fill: var(--logo-text);
  transition: fill 0.2s ease;
}

.brand__year {
  font-size: 16px;
  color: #989ba8;
  white-space: nowrap;
  padding-top: 4px;
}

.brand__year span {
  color: #f15a2a;
}

.search {
  flex: 1;
  min-width: 0;
  max-width: 640px;
  margin: 0 auto;
  max-width: 400px;
}

.search__wrap {
  position: relative;
}

.search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: #1c2128;
  border: 1px solid #191b1d;
  border-radius: 10px;
}

.search__field svg,
.search__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.search__field:focus-within svg,
.search__field:focus-within .search__icon {
  color: var(--text-muted);
}

.search__field input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.search__field input::placeholder {
  color: #f0f6fc;

  font-size: 14px;
  font-weight: 500;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.search-suggest__status {
  padding: 12px 14px;
  color: var(--text-dim);
  font-size: 13px;
}

.search-suggest__list {
  display: flex;
  flex-direction: column;
  max-height: 420px;
  overflow: auto;
}

.search-suggest__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid var(--border-soft);
  transition: background 0.15s ease;
}

.search-suggest__item:first-child {
  border-top: none;
}

.search-suggest__item:hover,
.search-suggest__item.is-active {
  background: var(--bg-panel-soft);
}

.search-suggest__thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-elevated);
}

.search-suggest__body {
  min-width: 0;
}

.search-suggest__title {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggest__meta {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: var(--text-dim);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggest__price {
  color: var(--orange-hot);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.search-suggest__all {
  display: block;
  padding: 12px 14px;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.search-suggest__all:hover {
  background: var(--bg-elevated);
}

html[data-theme='light'] .search-suggest {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid #202224;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
}

.icon-btn img,
.icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.icon-btn--notify {
  border-color: #f7692b99;
}

.icon-btn--notify .icon-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: #3f241a;
  border-radius: 6px;
}

.icon-btn--notify img {
  width: 24px;
  height: 24px;
}

.icon-btn--cart {
  border-color: #18c99e99;
}

.icon-btn--cart span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #133932;
  width: 37px;
  height: 37px;
  border-radius: 6px;
}

.icon-btn--messages {
  border-color: #8b7cf699;
}

.icon-btn--messages .icon-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 37px;
  height: 37px;
  background: #2a2548;
  border-radius: 6px;
  color: #a89bff;
}

.icon-btn--messages .icon-btn__inner svg {
  width: 22px;
  height: 22px;
}

.icon-btn--messages .icon-btn__badge {
  background: #8b7cf6;
  color: #fff;
  box-shadow: 0 0 0 2px var(--bg-header);
}

.icon-btn__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #f7692b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  font-style: normal;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 12px 0 10px;
  background: var(--bg-btn);
  border: 1px solid #202224;
  border-radius: 10px;
  white-space: nowrap;
  min-width: 177px;
}

.user-btn__avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161b2a;
  width: 37px;
  height: 37px;
  border-radius: 6px;
}

.user-btn__avatar {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.user-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.user-btn__text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.user-btn__text span {
  font-size: 12px;
  color: var(--teal);
}

.user-btn__chevron {
  width: 10px;
  opacity: 0.7;
  margin-left: auto;
}

.nav-bar {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-soft);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
}

.nav-cats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 25px;
  flex-direction: row;
  margin-bottom: 0 !important;
}

.nav-cats::-webkit-scrollbar {
  display: none;
}

.nav-cats__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cats__icon {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav-cats > li:nth-child(1) .nav-cats__icon {
  background: #3f241b;
}

.nav-cats > li:nth-child(2) .nav-cats__icon {
  background: #291217;
}

.nav-cats > li:nth-child(3) .nav-cats__icon {
  background: #2e2516;
}

.nav-cats > li:nth-child(4) .nav-cats__icon {
  background: rgba(75, 95, 212, 0.14);
}

.nav-cats > li:nth-child(5) .nav-cats__icon {
  background: #182e2a;
}

.nav-cats > li:nth-child(6) .nav-cats__icon {
  background: #152229;
}

.nav-cats > li:nth-child(7) .nav-cats__icon {
  background: #2f3138;
}

.nav-cats__icon svg,
.nav-cats__icon img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-cats__icon--marketplace {
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-links__dropdown {
  position: relative;
}

.nav-links a,
.nav-links__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-soft);
  font-size: 13px;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}

.nav-links a img,
.nav-links__chevron {
  width: 11px;
  height: 11px;
  opacity: 0.75;
  transition: transform 0.16s ease;
}

.nav-links a:hover,
.nav-links__trigger:hover {
  color: var(--text);
}

.nav-dropdown--corporate {
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  width: 220px;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.nav-dropdown--corporate .nav-dropdown__title {
  margin-bottom: 2px;
  padding: 6px 10px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.nav-dropdown--corporate > a {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  justify-content: flex-start;
}

.nav-dropdown--corporate > a:hover {
  padding-left: 10px;
}

.nav-links__dropdown:hover .nav-dropdown--corporate,
.nav-links__dropdown:focus-within .nav-dropdown--corporate {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links__dropdown:hover .nav-links__chevron,
.nav-links__dropdown:focus-within .nav-links__chevron {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  padding: 50px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  background-image: url('../images/hero-bg-lighr.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[data-theme='dark'] .hero::before {
  background-image: url('../images/hero-bg.jpeg');
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.market-slider {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 22px;
  overflow: hidden;
}

.market-slider .swiper {
  width: 100%;
  height: 100%;
}

.market-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.market-slider .slide-purple {
  background: #4f46e5;
}
.market-slider .slide-pink {
  background: #e84c89;
}
.market-slider .slide-orange {
  background: #e76f35;
}
.market-slider .slide-blue {
  background: #2872d6;
}
.market-slider .slide-green {
  background: #247d62;
}
.market-slider .slide-dark {
  background: #25282c;
}
.market-slider .slide-seller {
  background: #6b4be3;
}

.market-slider .swiper-slide::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -180px;
  right: 200px;
}

.market-slider .swiper-slide::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -150px;
  left: 300px;
}

.market-slider .slide-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: calc(100% - 58px);
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 60px;
  padding: 32px 60px 42px 70px;
}

.market-slider .slide-left {
  max-width: 530px;
}

.market-slider .category-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.market-slider .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 13px;
  font-weight: 800;
}

.market-slider .slide-title {
  max-width: 520px;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.market-slider .slide-description {
  max-width: 450px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.market-slider .slide-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 27px;
}

.market-slider .slide-btn,
.market-slider .slide-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 11px;
  text-decoration: none;
  transition: 0.25s;
}

.market-slider .slide-btn {
  padding: 0 22px;
  border: 0;
  background: #fff;
  color: #151515;
  font-size: 13px;
  font-weight: 700;
}

.market-slider .slide-btn:hover,
.market-slider .slide-btn-secondary:hover,
.market-slider .buy-btn:hover,
.market-slider .seller-follow-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.market-slider .slide-btn-secondary {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.11);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
}

.market-slider .product-showcase,
.market-slider .featured-seller-card {
  width: 100%;
  max-width: 395px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  color: #181818;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(1.3deg);
  transition: 0.35s ease;
}

.market-slider .swiper-slide-active .product-showcase,
.market-slider .swiper-slide-active .featured-seller-card {
  transform: rotate(0deg) translateY(0);
}

.market-slider .product-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 17px;
}

.market-slider .post-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.market-slider .post-avatar {
  width: 36px;
  height: 36px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7657ff, #ff4d7d, #ff9f42);
}

.market-slider .post-avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: inherit;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  object-fit: cover;
}

.market-slider .post-user-info strong {
  display: block;
  color: #111;
  font-size: 12px;
  line-height: 1.3;
}

.market-slider .post-user-info span {
  display: block;
  margin-top: 2px;
  color: #999;
  font-size: 10px;
}

.market-slider .post-options {
  color: #555;
  font-size: 20px;
  letter-spacing: 2px;
}

.market-slider .product-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f4f4f4;
}

.market-slider .product-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-slider .product-image-fallback .cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.market-slider .product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.market-slider .swiper-slide-active .product-image-wrapper img {
  transform: scale(1.035);
}

.market-slider .discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #151515;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.market-slider .product-content {
  padding: 18px 17px 19px;
}

.market-slider .product-likes {
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
}

.market-slider .product-title {
  color: #161616;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.market-slider .product-desc {
  margin-top: 5px;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}

.market-slider .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.market-slider .product-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.market-slider .product-price strong {
  font-size: 21px;
  letter-spacing: -0.5px;
}

.market-slider .old-price {
  color: #aaa;
  font-size: 11px;
  text-decoration: line-through;
}

.market-slider .buy-btn,
.market-slider a.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: #151515;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.market-slider .featured-seller-card {
  transform: rotate(1.2deg) translateY(6px);
}

.market-slider .seller-cover {
  position: relative;
  height: 84px;
  background: radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.28), transparent 28%), linear-gradient(135deg, #24175d 0%, #6b4be3 56%, #9a7bff 100%);
}

.market-slider .featured-label {
  position: absolute;
  top: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.market-slider .featured-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.market-slider .seller-avatar {
  position: absolute;
  left: 18px;
  bottom: -31px;
  width: 64px;
  height: 64px;
  padding: 3px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
}

.market-slider .seller-avatar img,
.market-slider .seller-avatar span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  object-fit: cover;
  font-size: 18px;
  font-weight: 800;
}

.market-slider .seller-body {
  padding: 39px 18px 16px;
}

.market-slider .seller-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-slider .seller-name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #151515;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.market-slider .verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4d7cff;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.market-slider .seller-username {
  margin-top: 2px;
  color: #999;
  font-size: 9px;
}

.market-slider .seller-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  background: #151515;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.market-slider .seller-description {
  margin-top: 10px;
  color: #696969;
  font-size: 10px;
  line-height: 1.45;
}

.market-slider .seller-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #ececef;
  border-radius: 11px;
  background: #f7f7f8;
}

.market-slider .seller-stat {
  padding: 9px 5px;
  border-right: 1px solid #e9e9eb;
  text-align: center;
}

.market-slider .seller-stat:last-child {
  border-right: 0;
}

.market-slider .seller-stat strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.market-slider .seller-stat span {
  display: block;
  margin-top: 2px;
  color: #999;
  font-size: 7.5px;
  font-weight: 500;
}

.market-slider .seller-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.market-slider .seller-tag {
  padding: 5px 8px;
  border-radius: 7px;
  background: #f2f2f4;
  color: #555;
  font-size: 8px;
  font-weight: 600;
}

.market-slider .seller-products-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 7px;
}

.market-slider .seller-products-title strong {
  font-size: 10px;
}

.market-slider .seller-products-title span {
  color: #999;
  font-size: 8px;
}

.market-slider .seller-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.market-slider .seller-product {
  position: relative;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.market-slider .seller-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.market-slider .seller-product-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.market-slider .seller-product:hover img {
  transform: scale(1.07);
}

.market-slider .seller-product-price {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 3px 5px;
  border-radius: 5px;
  background: rgba(15, 15, 15, 0.82);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
}

.market-slider .seller-profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  margin-top: 12px;
  border: 1px solid #e7e7e9;
  border-radius: 9px;
  background: #fff;
  color: #151515;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.market-slider .seller-profile-btn:hover {
  background: #151515;
  border-color: #151515;
  color: #fff;
}

.market-slider .slider-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.market-slider .slider-tab {
  position: relative;
  flex: 1;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.market-slider .slider-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.market-slider .slider-tab.active {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.market-slider .slider-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background: #fff;
}

html[data-theme='light'] .market-slider .slider-tabs {
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -8px 24px rgba(21, 23, 24, 0.06);
}

html[data-theme='light'] .market-slider .slider-tab {
  color: var(--text-muted);
}

html[data-theme='light'] .market-slider .slider-tab:hover {
  color: var(--text);
  background: rgba(21, 23, 24, 0.04);
}

html[data-theme='light'] .market-slider .slider-tab.active {
  background: rgba(21, 23, 24, 0.05);
  color: var(--text);
}

html[data-theme='light'] .market-slider .slider-tab.active::after {
  background: var(--orange-hot);
}

.market-slider .slide-left > * {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.market-slider .swiper-slide-active .category-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.market-slider .swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.market-slider .swiper-slide-active .slide-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.23s;
}

.market-slider .swiper-slide-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

@media (max-width: 950px) {
  .market-slider {
    height: 590px;
  }
  .market-slider .slide-inner {
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 40px 35px 60px;
  }
  .market-slider .slide-title {
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .market-slider {
    height: auto;
    min-height: 820px;
  }
  .market-slider .swiper {
    height: 820px;
  }
  .market-slider .slide-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    height: 760px;
    gap: 25px;
    padding: 30px 22px 75px;
  }
  .market-slider .slide-left {
    max-width: 100%;
  }
  .market-slider .slide-title {
    font-size: 27px;
  }
  .market-slider .slide-description {
    font-size: 13px;
  }
  .market-slider .product-showcase,
  .market-slider .featured-seller-card {
    max-width: 340px;
    margin: 0 auto;
  }
  .market-slider .product-image-wrapper {
    height: 200px;
  }
  .market-slider .slider-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .market-slider .slider-tabs::-webkit-scrollbar {
    display: none;
  }
  .market-slider .slider-tab {
    flex: 0 0 145px;
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #141414;
  padding-bottom: 10px;
  padding-top: 10px;
}

.hero-slider::after {
  content: '';
  position: absolute;
  width: 70%;
  background-color: #fff;
  height: 5px;
  top: 6.5px;
  left: 15%;
  right: 15%;
  z-index: 1;
  border-radius: 5px;
}

.hero-slide {
  position: relative;
  min-height: 534px;
  height: 534px;
  overflow: hidden;
}

.hero-slide--linked {
  cursor: pointer;
}

.hero-slide--linked .hero-slide__content {
  pointer-events: none;
}

.hero-slide__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-decoration: none;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 580px;
  height: 100%;
  padding: 80px 0px 75px 83px;
}

.hero-slide__badge-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 42px;
  gap: 33px;
  width: fit-content;
  position: relative;
  left: -83px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.hero-slide__badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;

  width: fit-content;
  padding: 0px 25px;
  background: #ffffff;
  border-radius: 0 35px 35px 0;
  width: 120px;
  height: 60px;
}

.hero-slide__badge img {
  width: 24px;
  height: 24px;
}

.hero-slide__title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 42px;
}

.hero-slide__text {
  max-width: 460px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.hero-slide__apps {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slide__apps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: #ffffff;
}

.hero-slide__apps img {
  height: 30px;
}

.hero-slide__cta {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-slide__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-slide--ad::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.92) 0%, rgba(8, 10, 14, 0.62) 48%, rgba(8, 10, 14, 0.22) 100%);
}

.hero-slide--ad .hero-slide__bg {
  object-position: center;
}

.hero-slide--profile .hero-slide__bg {
  filter: blur(14px) saturate(1.15) brightness(0.55);
  transform: scale(1.14);
}

.hero-slide--ad .hero-slide__cta {
  pointer-events: none;
}

.hero-slide__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
}

.hero-slide__badge-icon i,
.hero-slide__badge-icon .cat-icon,
.hero-slide__badge i {
  font-size: 24px;
  line-height: 1;
  color: #111111;
}

.hero-slide__badge-icon img,
.hero-slide__badge img,
.hero-slide__badge .cat-icon__img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-slide__sponsored {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(247, 105, 43, 0.92);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-slide__avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-slide__price {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
}

.hero-slide__seller {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.hero-slider__tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px !important;
  z-index: 6;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 48px;
  background: rgb(21, 23, 24, 0.6);
}

.hero-slider__tab {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.hero-slider .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0 !important;
}
.hero-slider__tab.swiper-pagination-bullet-active::after {
  background: #ffffff;
}

html[data-theme='light'] .hero-slider__tab.swiper-pagination-bullet-active::after {
  background: var(--orange-hot);
}
.hero-slider__tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.5px;
  height: 5px;
  border-radius: 3px;
  background: transparent;
  transition: background 0.2s ease;
}

.hero-slider__tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  padding: 24px 32px;
  background: linear-gradient(180deg, #202224 0%, #20222478 100%);
  border-radius: 23px;
}

.features-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  border-right: 1px solid #2a2a2a;
}
html[data-theme='light'] .hero-slider__tab:hover,
html[data-theme='light'] .hero-slider__tab.swiper-pagination-bullet-active {
  color: var(--text);
  background: rgba(21, 23, 24, 0.04);
}

.features-bar__title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
  display: block;
  margin-bottom: 4px;
}

.features-bar__item:last-child {
  border-right: none;
}

.features-bar__text {
  color: #c5c5c5;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  display: block;
}

.social-services {
  padding: 8px 0 125px;
  overflow: hidden;
}

.social-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.social-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.social-marquee.is-static .social-marquee__track {
  transform: none !important;
  will-change: auto;
}

.social-marquee.is-static {
  overflow-x: auto;
}

.social-marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: 22px;
  padding-right: 22px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 115px;
  width: 115px;
  height: 115px;
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  transition: transform 0.15s ease;
}

.social-card:hover {
  transform: scale(1.04);
}

.social-card img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.social-card span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.social-card--instagram {
  background: #e1306c;
}

.social-card--tiktok {
  background: #ffffff;
}

.social-card--tiktok span {
  color: #111111;
}

.social-card--twitter {
  background: #1da1f2;
}

.social-card--youtube {
  background: #ff0000;
}

.social-card--facebook {
  background: #1873eb;
}

.social-card--spotify {
  background: #22974c;
}

.social-card--telegram {
  background: #34a6d8;
}

.social-card--linkedin {
  background: #026fac;
}

.social-card--threads {
  background: #000000;
  border: 1px solid #000000;
}

.social-card--whatsapp {
  background: #25d366;
}

.social-card--twitch {
  background: #8d45f8;
}

.social-card--kick {
  background: #20ca21;
}

.social-card--kick span {
  color: #111111;
}

.social-card--soundcloud {
  background: #f97637;
}

.social-card--discord {
  background: #5865f2;
}

@media (prefers-reduced-motion: reduce) {
  .social-marquee__track {
    transform: none !important;
  }
  .social-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.featured-listings {
  padding: 8px 0 138px;
  overflow-x: clip;
}

.featured-listings .container {
  min-width: 0;
}

.featured-listings__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 20px 25px;
  background: #202224;
  border: 1px solid #26282a;
  border-radius: 10px;
  margin-bottom: 56px;
}

.featured-listings__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
  justify-self: start;
  padding-right: 18px;
  border-right: 1px solid #2e3136;
}

.featured-listings__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #4b5fd4;
  border-radius: 10px;
  flex-shrink: 0;
}

.featured-listings__icon img {
  width: 30px;
  height: 30px;
}

.featured-listings__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.featured-listings__title strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.featured-listings__title span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.featured-listings__tabs {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  max-width: 100%;
  min-width: 0;
}

.featured-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  color: #8b949e;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.featured-tab__icon,
.featured-tab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.75;
  color: inherit;
}

.featured-tab:hover {
  color: #d0d4d8;
}

.featured-tab.is-active {
  background: #4b5fd4;
  color: #ffffff;
}

.featured-tab.is-active .featured-tab__icon,
.featured-tab.is-active svg {
  opacity: 1;
}

.featured-listings__market {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: #3a2218;
  border: 1px solid #5a3424;
  border-radius: 10px;
  color: #f06a3a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.featured-listings__market img {
  width: 11px;
  height: 11px;
  color: #f06a3a;
}

.featured-listings__market:hover {
  background: #46281c;
}

.featured-listings__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 18px;
  margin-top: 18px;
  padding-top: 12px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.btn-view-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 28px;
  padding: 0 48px 0 22px;
  overflow: hidden;
  background: #151718;
  border: 1px solid #18c99e;
  border-radius: 12px;
  color: #18c99e;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  max-width: 314px;
  margin: 0 auto;
  margin-top: 52px;
}

.btn-view-more::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 35px;
  background: #18c99e;
  border-radius: 0 3px 3px 0;
}

.btn-view-more__label {
  position: relative;
  z-index: 1;
}

.btn-view-more__icon {
  position: absolute;
  top: 50%;
  right: 22px;
  z-index: 1;
  width: 14px;
  height: 7px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.btn-view-more:hover {
  background: rgba(24, 201, 158, 0.08);
}

.btn-view-more:hover .btn-view-more__icon {
  transform: translateY(calc(-50% + 2px));
}

.listing-card__media {
  position: relative;
  display: block;
  aspect-ratio: 458 / 404;
  background: var(--bg-header);
  border-radius: 14px 14px 0 0;
  max-height: 280px;
}

.listing-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.listing-card__fallback {
  position: absolute;
  inset: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.listing-card__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  max-width: calc(100% - 12px);
  padding: 0 14px;
  background: #f7692b;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 12px rgba(255, 70, 30, 0.35);
  height: 40px;
  box-sizing: border-box;
}

.listing-card__badge img {
  width: 15px;
  height: 21px;
}

.listing-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 14, 16, 0.88) 55%, rgba(12, 14, 16, 0.95) 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  flex: 1;
}

.listing-card__seller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.listing-card__seller-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.listing-card__seller-name span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-card__seller-name i {
  flex-shrink: 0;
  font-size: 13px;
}

.listing-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
}

.listing-card__rating i {
  color: #f5a623;
  font-size: 12px;
}

.listing-card__rating span {
  color: var(--text-dim);
  font-weight: 500;
}

.listing-card__name {
  min-height: 38px;
  min-width: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.listing-card__name a {
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 16px;
}

.listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  min-width: 0;
}

.listing-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.listing-card__price-symbol {
  font-size: 13px;
  font-weight: 500;
}

.listing-card__cart-form {
  margin: 0;
  flex-shrink: 0;
}

.listing-card__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--orange-hot, #f7692b) 38%, var(--border));
  border-radius: 9px;
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 10%, var(--bg-panel));
  color: var(--orange-hot, #f7692b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.listing-card__cart-btn i {
  font-size: 14px;
  color: inherit;
  line-height: 1;
}

.listing-card__cart-btn:hover:not(:disabled) {
  border-color: var(--orange-hot, #f7692b);
  color: #ffffff;
  background: var(--orange-hot, #f7692b);
}

.listing-card__cart-btn:hover:not(:disabled) i {
  color: #ffffff;
}

.listing-card__cart-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  border-color: var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text-dim);
}

.listing-card__cart-btn--disabled i {
  color: inherit;
}

.listing-cards-grid .listing-card {
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.listing-cards-grid .listing-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  max-height: none;
  background: radial-gradient(circle at 20% 10%, rgba(247, 105, 43, 0.12), transparent 42%), var(--bg-header);
}

.listing-cards-grid .listing-card__media > img {
  transition: transform 0.4s ease;
}

.listing-cards-grid .listing-card__fallback {
  background: linear-gradient(145deg, color-mix(in srgb, currentColor 8%, var(--bg-header)) 0%, var(--bg-header) 100%);
}

.listing-cards-grid .listing-card__fallback i {
  opacity: 0.55;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.listing-cards-grid .listing-card__badge {
  top: 12px;
  left: 12px;
  transform: none;
  max-width: calc(100% - 24px);
  height: 32px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(247, 105, 43, 0.35);
}

.listing-cards-grid .listing-card__meta {
  padding: 34px 14px 12px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 12, 0.55) 38%, rgba(8, 10, 12, 0.92) 100%);
}

.listing-cards-grid .listing-card__body {
  gap: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--bg-panel) 0%, color-mix(in srgb, var(--bg-panel) 88%, #000) 100%);
}

.listing-cards-grid .listing-card__seller {
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border-soft);
}

.listing-cards-grid .listing-card__seller-name {
  gap: 8px;
  max-width: calc(100% - 88px);
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
}

.listing-cards-grid .listing-card__seller-name i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 16%, transparent);
  color: var(--orange-hot, #f7692b);
  font-size: 12px;
}

.listing-cards-grid .listing-card__rating {
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #f5a623 28%, var(--border-soft));
  background: color-mix(in srgb, #f5a623 10%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.listing-cards-grid .listing-card__rating i {
  font-size: 13px;
}

.listing-cards-grid .listing-card__rating span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
}

.listing-cards-grid .listing-card__name {
  min-height: 44px;
  margin: 0;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.listing-cards-grid .listing-card__name a {
  color: var(--text);
  transition: color 0.18s ease;
}

.listing-cards-grid .listing-card__footer {
  margin-top: 0;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border-soft);
  background: color-mix(in srgb, var(--bg-panel-soft) 70%, transparent);
}

.listing-cards-grid .listing-card__price {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 11px;
  border: 1px solid color-mix(in srgb, var(--teal, #18d3a6) 28%, var(--border-soft));
  background: color-mix(in srgb, var(--teal, #18d3a6) 12%, transparent);
  color: var(--teal, #18d3a6);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.listing-cards-grid .listing-card__price-symbol {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.listing-cards-grid .listing-card__cart-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 11px;
  border-color: color-mix(in srgb, var(--orange-hot, #f7692b) 42%, var(--border));
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 12%, var(--bg-panel));
  color: var(--orange-hot, #f7692b);
  font-size: 12.5px;
  font-weight: 700;
}

.listing-cards-grid .listing-card__cart-btn i {
  font-size: 15px;
  color: inherit;
}

.listing-cards-grid .listing-card__cart-btn:hover:not(:disabled) {
  border-color: var(--orange-hot, #f7692b);
  color: #ffffff;
  background: var(--orange-hot, #f7692b);
  transform: none;
  box-shadow: none;
  filter: none;
}

.listing-cards-grid .listing-card__cart-btn:hover:not(:disabled) i {
  color: #ffffff;
}

.listing-cards-grid .listing-card__cart-btn--disabled {
  border-color: var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text-dim);
  box-shadow: none;
}

.listing-cards-grid .listing-card__cart-btn--disabled i {
  color: inherit;
}

a.listing-card__price {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  background: rgba(24, 211, 166, 0.12);
  border-radius: 7px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s ease;
  max-width: 130px;
  margin-left: auto;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.faq {
  padding: 12px 0 48px;
}

.faq__panel {
  position: relative;
  padding: 48px 24px 24px;
  background: #212224;
  border: 1px solid #2c2e32;
  border-radius: 18px;
}

.faq__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  height: 28px;
  padding: 0 14px;
  background: #1a1b1d;
  border: 1px solid #3a3c40;
  border-radius: 999px;
  color: #b8bcc2;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.faq__title {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.02em;
}

.faq__grid {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.faq__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  width: 100%;
  height: fit-content;
  align-self: flex-start;
  background: #121315;
  border: 1px solid #1c1e20;
  border-radius: 12px;
  overflow: hidden;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.faq__item:hover,
.faq__item.is-open {
  background: #16181a;
  border-color: #2a2c30;
}

.faq__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 68px;
  padding: 12px 16px;
  text-align: left;
}

.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.faq__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.faq__question {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 16px 0 74px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 0;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer > p {
  padding-bottom: 16px;
}

.service-detail {
  padding: 8px 0 48px;
}

.service-detail__panel {
  position: relative;
  padding: 22px 28px 28px;
  background: #26282c;
  border: 1px solid #32353a;
  border-radius: 18px;
  margin-top: 50px;
}

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

.service-detail__badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  background: #1a1c1f;
  border: 1px solid #3a3d42;
  border-radius: 999px;
  color: #d0d4d8;
  font-size: 12px;
  font-weight: 500;
}

.service-detail__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 58px;
  background: #1a1c1f;
  border: 1px solid #32353a;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.service-detail__expand:hover {
  background: #22252a;
}

.service-detail__expand img {
  width: 31px;
  height: 31px;
}

.service-detail__body {
  position: relative;
}

.service-detail__content {
  max-height: 168px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-detail__content h3 {
  margin: 0 0 8px;
  color: #e8eaed;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.service-detail__content h3 + p {
  margin-bottom: 18px;
}

.service-detail__content p {
  margin: 0;
  color: #9a9fa6;
  font-size: 14px;
  line-height: 1.65;
}

.service-detail__content p:last-child {
  margin-bottom: 0;
}

.service-detail__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(38, 40, 44, 0) 0%, #26282c 72%);
  transition: opacity 0.25s ease;
}

.service-detail__more {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  height: 42px;
  padding: 0 22px;
  background: #ffffff;
  border-radius: 999px;
  color: #4b5fd4;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.service-detail__more img {
  width: 12px;
  height: 12px;
}

.service-detail__more:hover {
  background: #f3f4f6;
}

.service-detail__panel.is-expanded .service-detail__content {
  max-height: none;
  overflow: visible;
  padding-bottom: 8px;
}

.service-detail__panel.is-expanded .service-detail__fade {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.service-detail__panel.is-expanded .service-detail__more {
  position: static;
  transform: none;
  margin: 18px auto 0;
  display: flex;
}

.service-detail__panel.is-expanded .service-detail__more img {
  transform: rotate(180deg);
}

.service-detail__panel.is-expanded .service-detail__expand img {
  transform: rotate(180deg);
}

.blog {
  padding: 12px 0 48px;
}

.blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.blog__title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  background: #1c1e21;
  border: 1px solid #2a2c30;
  border-radius: 10px;
  color: #d0d4d8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.blog__all img {
  width: 11px;
  height: 11px;
}

.blog__all:hover {
  background: #24262a;
  color: #ffffff;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.blog-card {
  background: #1c1e21;
  border: 1px solid #26282c;
  border-radius: 14px;
  overflow: hidden;
  padding: 23px 21px;
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111315;
}

.blog-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  background: #303030;
  border-radius: 999px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.blog-card__tag img {
  width: 12px;
  height: 12px;
}

.blog-card__body {
  padding: 16px 10px 18px;
}

.blog-card__name {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card__name a {
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  color: #9a9fa6;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog--page {
  padding: 28px 0 64px;
}

.blog-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.blog-page__main,
.blog-page__side {
  min-width: 0;
}

.blog-page__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.blog-page__hero {
  margin-bottom: 16px;
}

.blog-page__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
}

.blog-page__lead {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.blog-page__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 18px;
  border-radius: 14px;
  border: 1px dashed var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: 12px;
}

.blog-card__meta time {
  margin-right: auto;
}

.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card__meta i {
  font-size: 13px;
}

.blog-page__pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-page__pagination-btn,
.blog-page__pagination-select {
  margin: 0;
}

.blog-page__pagination-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--bg-panel);
  color: var(--text-soft);
  font-size: 18px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.blog-page__pagination-btn button:hover:not(:disabled) {
  border-color: var(--orange-hot, #f7692b);
  color: var(--orange-hot, #f7692b);
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 8%, transparent);
}

.blog-page__pagination-btn button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.blog-page__pagination-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.blog-page__pagination-select select {
  min-width: 52px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  outline: none;
  cursor: pointer;
}

.blog-page__pagination-select span {
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .blog-page__layout {
    grid-template-columns: 1fr;
  }
  .blog-page__side {
    position: static;
  }
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

.blog-detail {
  padding: 24px 0 64px;
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.blog-detail__main,
.blog-detail__side {
  min-width: 0;
}

.blog-detail__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.blog-detail__hero {
  margin-bottom: 16px;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 13px;
}

.blog-detail__category {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 16%, transparent);
  color: var(--orange-hot, #f7692b);
  font-size: 12px;
  font-weight: 700;
}

.blog-detail__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
}

.blog-detail__lead {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.blog-detail__content-panel {
  padding: 18px;
}

.blog-detail__cover {
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-elevated);
  aspect-ratio: 16 / 9;
}

.blog-detail__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail__content h2,
.blog-detail__content h3 {
  margin: 28px 0 12px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.35;
}

.blog-detail__content h2 {
  font-size: 22px;
}

.blog-detail__content h3 {
  font-size: 18px;
}

.blog-detail__content p,
.blog-detail__content li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.blog-detail__content p {
  margin: 0 0 14px;
}

.blog-detail__content ul,
.blog-detail__content ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.blog-detail__content li {
  margin-bottom: 8px;
}

.blog-detail__content blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--orange-hot, #f7692b);
  border-radius: 0 12px 12px 0;
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 10%, transparent);
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.blog-detail__content a {
  color: var(--orange-hot, #f7692b);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-detail__related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-detail__related-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.blog-detail__related-item:hover {
  border-color: color-mix(in srgb, var(--orange-hot, #f7692b) 45%, var(--border-soft));
  background: var(--bg-panel);
}

.blog-detail__related-thumb {
  display: block;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-elevated);
}

.blog-detail__related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail__related-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blog-detail__related-body strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-detail__related-body small {
  color: var(--text-dim);
  font-size: 11.5px;
}

.blog-detail__related-empty {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
}

.blog-detail__all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.blog-detail__all-link:hover {
  border-color: var(--orange-hot, #f7692b);
  color: var(--orange-hot, #f7692b);
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 8%, transparent);
}

.blog-detail__stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dim);
  font-size: 12.5px;
}

.blog-detail__stat i {
  font-size: 14px;
}

.blog-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.blog-detail__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.blog-detail__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.blog-detail__nav-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.blog-detail__nav-item--next {
  grid-template-columns: minmax(0, 1fr) 72px;
}

.blog-detail__nav-item--next .blog-detail__nav-body {
  text-align: right;
}

.blog-detail__nav-item:hover {
  border-color: color-mix(in srgb, var(--orange-hot, #f7692b) 45%, var(--border-soft));
  background: var(--bg-panel);
}

.blog-detail__nav-thumb {
  display: block;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-elevated);
}

.blog-detail__nav-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail__nav-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blog-detail__nav-body small {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-detail__nav-body strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-detail__comments {
  margin-top: 16px;
}

.blog-detail__comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-detail__comments-head .detail-panel__title {
  margin-bottom: 0;
}

.blog-detail__comment {
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}

.blog-detail__comment:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.blog-detail__comment-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.blog-detail__comment-head strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.blog-detail__comment-head time {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 12px;
}

.blog-detail__comment p,
.blog-detail__reply p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.blog-detail__reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange-hot, #f7692b);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.blog-detail__reply {
  margin-top: 14px;
  margin-left: 16px;
  padding: 14px 16px;
  border-left: 2px solid var(--border-soft);
  border-radius: 0 12px 12px 0;
  background: var(--bg-panel-soft);
}

.blog-detail__reply-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 14%, transparent);
  color: var(--orange-hot, #f7692b);
  font-size: 11px;
  font-weight: 700;
}

.blog-detail__comments-empty {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

.blog-detail__share-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-detail__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.blog-detail__share-btn:hover {
  color: #fff;
  opacity: 0.92;
}

.blog-detail__share-btn--facebook {
  background: #1877f2;
}

.blog-detail__share-btn--twitter {
  background: #000;
}

.blog-detail__share-btn--whatsapp {
  background: #25d366;
}

.blog-detail__share-btn--linkedin {
  background: #0077b5;
}

.blog-detail__share-btn--telegram {
  background: #0088cc;
}

.blog-detail__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-detail__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
  color: var(--text-soft);
  font-size: 18px;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.blog-detail__social-link:hover {
  border-color: var(--orange-hot, #f7692b);
  color: var(--orange-hot, #f7692b);
  background: color-mix(in srgb, var(--orange-hot, #f7692b) 8%, transparent);
}

@media (max-width: 980px) {
  .blog-detail__layout {
    grid-template-columns: 1fr;
  }
  .blog-detail__side {
    position: static;
  }
  .blog-detail__nav {
    grid-template-columns: 1fr;
  }
  .blog-detail__nav-item,
  .blog-detail__nav-item--next {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .blog-detail__nav-item--next .blog-detail__nav-body {
    text-align: left;
  }
  .blog-detail__comments-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer {
  padding: 35px 0 44px;
  background: var(--bg-footer);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__logo {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-footer__year {
  color: #f15a2a;
  font-size: 15px;
  font-weight: 600;
  padding-top: 4px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #1c1e21;
  border: 1px solid #2a2c30;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.site-footer__social:hover {
  background: #26282c;
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.site-footer__social:hover svg {
  color: #ffffff;
}

.site-footer__nav {
  padding: 8px 22px 22px;
  background: #171a1b;
  border-radius: 20px;
  min-height: 404px;
}

.site-footer__tabs {
  display: flex;
  align-items: stretch;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #2a2c30;
}

.site-footer__tabs::-webkit-scrollbar {
  display: none;
}

.site-footer__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 12px 14px;
  color: #9a9fa6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-footer__tab img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  filter: brightness(0) invert(0.72);
}

.site-footer__tab:hover {
  color: #d0d4d8;
}

.site-footer__tab.is-active {
  color: #ffffff;
}

.site-footer__tab.is-active img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.site-footer__tab.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #ffffff;
}

.site-footer__panels {
  padding-top: 40px;
  position: relative;
}

.site-footer__panel[hidden] {
  display: none;
}

.site-footer__more {
  display: none;
}

.site-footer__hub {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #d0d4d8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__hub:hover {
  color: #ffffff;
}

.site-footer__hub[hidden] {
  display: none;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #939ba8;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
}

.site-footer__links img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.site-footer__contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.footer-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
}

.footer-contact__icon img {
  width: 24px;
  height: 24px;
}

.footer-contact__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  line-height: 1.25;
}

.footer-contact__text strong {
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.footer-contact__text span {
  color: #939ba8;
  font-size: 13px;
  font-weight: 400;
}

.footer-contact--whatsapp .footer-contact__icon {
  background: #18c99e;
}

.footer-contact--whatsapp strong {
  color: #18c99e;
}

.footer-contact--support .footer-contact__icon {
  background: #5b6cff;
}

.footer-contact--support strong {
  color: #7b8cff;
}

.footer-contact--mail .footer-contact__icon {
  background: #4db7ff;
}

.footer-contact--mail strong {
  color: #ffffff;
}

.footer-contact--pin .footer-contact__icon {
  background: #f15a2a;
}

.footer-contact--pin strong {
  color: #ffffff;
}

.features-bar__icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #192e2a;
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme='dark'] .features-bar__item:nth-child(1) .features-bar__icon {
  background: #192e2a;
}

html[data-theme='dark'] .features-bar__item:nth-child(2) .features-bar__icon {
  background: #162229;
}

html[data-theme='dark'] .features-bar__item:nth-child(3) .features-bar__icon {
  background: #2e2516;
}

html[data-theme='dark'] .features-bar__item:nth-child(4) .features-bar__icon {
  background: #3f241b;
}

.trust__grid {
  display: flex;
  gap: 20px;
  margin-bottom: 120px;
}

.trust-card {
  background-color: #202224;
  border: 1px solid #26282a;
  border-radius: 10px;
}

.trust-card--advantages {
  width: 483px;
  min-width: 483px;
}

.trust-card--satisfaction {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 32px 38px;
}

.trust-card__content {
  width: 100%;
  max-width: 304px;
  padding: 18px 12px;
}

.trust-card__media {
  display: flex;
}

.trust-card__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.trust-card__text {
  font-size: 16px;
  font-weight: 400;
  color: #7b8795;
}

.trust-card__badge {
  margin-bottom: 28px;
  display: flex;
}

.trust-card__badge img {
  width: 280px;
}

.theme-image {
  display: inline-block;
  line-height: 0;
}

.theme-image--block {
  display: block;
  width: 100%;
}

.theme-image__item--dark {
  display: none;
}

.theme-image__item--light {
  display: inline-block;
}

.theme-image--block .theme-image__item--light {
  display: block;
}

html[data-theme='dark'] .theme-image__item--dark {
  display: inline-block;
}

html[data-theme='dark'] .theme-image__item--light {
  display: none;
}

html[data-theme='dark'] .theme-image--block .theme-image__item--dark {
  display: block;
}

.trust-card__visual {
  width: 190px;
}

.trust-card__badges {
  height: fit-content;
  margin-top: 25px;
}

.trust-card__badge--sikayetvar {
  position: relative;
  right: 32px;
}

.trust-card--advantages-img img {
  width: 100%;
  margin-top: 34px;
}

.trust-card--advantages-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card--advantages-text {
  font-size: 16px;
  font-weight: 400;
  color: #7b8795;
}

.trust-card--advantages-content {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 36px;
}

.category-page {
  padding: 20px 0 80px;
}

.category-empty {
  min-height: 220px;
  padding: 32px 20px;
  border-radius: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.category-empty p {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span[aria-current] {
  color: var(--text);
}

.breadcrumb img {
  width: 10px;
  height: 10px;
  opacity: 0.6;
}

.category-page__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

.category-filters {
  position: sticky;
  top: 20px;
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.category-filters__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.category-filters__head strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.category-filters__close {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1;
}

.category-filters-backdrop {
  display: none;
}

.category-filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.category-filters-toggle:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.category-filters__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #e1306c;
  border-radius: 10px;
  flex-shrink: 0;
  color: #ffffff;
}

.category-filters__icon i,
.category-filters__icon svg {
  color: #ffffff !important;
  fill: currentColor;
  font-size: 22px;
  line-height: 1;
}

.category-filters__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.filter-group {
  margin-bottom: 22px;
}

.filter-group__title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.filter-check__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

@keyframes ui-checkbox-pop {
  0% {
    transform: rotate(45deg) scale(0.4);
    opacity: 0.4;
  }

  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
}

.filter-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  -moz-appearance: textfield;
  appearance: textfield;
}

.filter-price input::-webkit-outer-spin-button,
.filter-price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-price input::placeholder {
  color: var(--text-dim);
}

.filter-price input:focus {
  border-color: var(--orange-hot);
}

.filter-price__sep {
  color: var(--text-dim);
  flex-shrink: 0;
}

.category-filters__apply {
  width: 100%;
  height: 46px;
  background: var(--orange-hot);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.category-filters__apply:hover {
  background: #ff7a3d;
}

.filter-group__input,
.filter-group__select {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  outline: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.filter-group__input:focus,
.filter-group__select:focus {
  border-color: var(--orange-hot);
}

.category-filters__count {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.category-filters__subcats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-filters__subcat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.category-filters__subcat:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.category-filters__subcat-count {
  color: var(--text-dim);
  font-size: 12px;
}

.category-toolbar__tab-form,
.category-toolbar__view-form {
  margin: 0;
  display: inline-flex;
}

.category-toolbar__tab-form .featured-tab {
  border: 0;
  cursor: pointer;
}

.category-toolbar__tab-form .featured-tab:not(.is-active) {
  background: transparent;
}

.category-toolbar__tab-form .featured-tab.is-active {
  background: #4b5fd4;
  color: #ffffff;
}

.category-toolbar__view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-soft);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.category-toolbar__view-btn:hover {
  color: var(--text);
  background: var(--bg-panel-soft);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.category-list__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
}

.category-list__thumb img,
.category-list__thumb-fallback {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.category-list__thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.category-list__info {
  flex: 1;
  min-width: 0;
}

.category-list__info h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.category-list__info h3 a,
.category-list__price {
  color: var(--text);
}

.category-list__info span {
  color: var(--text-dim);
  font-size: 12px;
}

.category-list__price {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.category-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.category-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}

.category-pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.category-pagination__status {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.category-empty {
  padding: 48px 24px;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.category-empty i {
  display: block;
  margin-bottom: 16px;
  font-size: 48px;
  color: var(--orange-hot);
}

.category-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.category-empty p {
  margin: 0 0 20px;
  color: var(--text-muted);
}

.category-empty__content {
  text-align: left;
}

.category-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 40px;
}

.category-toolbar__title h1 {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.category-toolbar__title span {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

.category-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.category-toolbar__actions .featured-listings__tabs {
  justify-self: auto;
  gap: 2px;
  padding: 3px;
}

.category-toolbar__actions .featured-tab {
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 8px;
}

.category-toolbar__actions .featured-tab__icon,
.category-toolbar__actions .featured-tab svg {
  width: 16px;
  height: 16px;
}

.category-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.category-sort select {
  height: 40px;
  padding: 0 36px 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  outline: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.category-sort img {
  position: absolute;
  right: 14px;
  width: 12px;
  height: 12px;
  opacity: 0.7;
  pointer-events: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 18px;
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 14px;
  }
  .category-toolbar {
    padding: 16px 18px;
    margin-bottom: 32px;
  }
  .category-toolbar__title h1 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .category-page {
    padding: 16px 0 56px;
  }
  .breadcrumb {
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .category-page__layout {
    grid-template-columns: 1fr;
  }
  .category-filters-toggle {
    display: inline-flex;
  }
  .category-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }
  .category-filters-backdrop[hidden] {
    display: none;
  }
  .category-page__layout.is-filters-open .category-filters-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .category-filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: min(340px, 88vw);
    height: 100%;
    max-height: 100dvh;
    margin: 0;
    padding: 18px 16px 24px;
    overflow-y: auto;
    border-radius: 0 14px 14px 0;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    -webkit-overflow-scrolling: touch;
  }
  .category-page__layout.is-filters-open .category-filters {
    transform: translateX(0);
  }
  .category-filters__close {
    display: inline-flex;
  }
  .category-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    margin-bottom: 28px;
  }
  .category-toolbar__actions {
    width: 100%;
    gap: 10px;
  }
  .category-toolbar__actions .featured-listings__tabs {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .category-toolbar__actions .featured-listings__tabs::-webkit-scrollbar {
    display: none;
  }
  .category-toolbar__actions .featured-tab {
    flex: 0 0 auto;
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
  .category-sort {
    flex: 1;
    min-width: 0;
  }
  .category-sort select {
    width: 100%;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
  }
  body.is-filters-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .category-page {
    padding: 12px 0 48px;
  }
  .category-toolbar__title h1 {
    font-size: 18px;
  }
  .category-toolbar__title span {
    font-size: 12px;
  }
  .category-filters-toggle {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
  .category-sort select {
    height: 38px;
    font-size: 12px;
    padding: 0 32px 0 12px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 10px;
  }
  .listing-cards-grid .listing-card__badge {
    top: 10px;
    left: 10px;
    transform: none;
    height: 28px;
    font-size: 10px;
  }
  .listing-cards-grid .listing-card__footer {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 12px 12px;
  }
  .listing-cards-grid .listing-card__price {
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
  }
  .listing-cards-grid .listing-card__cart-btn {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    height: 36px;
    padding: 0;
    flex-shrink: 0;
    gap: 0;
  }
  .listing-cards-grid .listing-card__cart-btn span {
    display: none;
  }
  .listing-cards-grid .listing-card__cart-btn i {
    font-size: 15px;
  }
  .listing-cards-grid .listing-card__seller {
    padding: 12px;
  }
  .listing-cards-grid .listing-card__name {
    padding: 10px 12px 0;
    min-height: 40px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .listing-cards-grid .listing-card__footer {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .listing-cards-grid .listing-card__price {
    font-size: 16px;
    min-height: 38px;
    padding: 0 10px;
  }
}

.listing-detail {
  padding: 20px 0 80px;
  overflow-x: clip;
}

.listing-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.listing-detail__main,
.listing-detail__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.listing-detail__side {
  position: sticky;
  top: 20px;
}

.detail-panel {
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.detail-panel__title {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.listing-hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.listing-hero-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listing-hero-card__tags a {
  color: var(--orange-hot);
}

.listing-hero-card__tags a:hover {
  color: #ff8a52;
}

.listing-hero-card__id {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.listing-hero-card__title {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.listing-hero-card__meta {
  margin: -8px 0 16px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.detail-panel__subtitle {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.deal-rail__notice {
  margin: 0;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.listing-hero-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-hero-card__chips span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}

.spec-item--full {
  grid-column: 1 / -1;
}

.spec-item__label {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
}

.spec-item__value {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.spec-item__link {
  margin-left: 6px;
  color: var(--orange-hot);
  font-weight: 600;
}

.spec-item__link:hover {
  color: #ff8a52;
}

.spec-item__value--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-item__value--tags a {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.spec-item__value--tags a:hover {
  color: var(--text);
  border-color: var(--border);
}

.detail-overview {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.detail-overview--solo {
  grid-template-columns: minmax(0, 1fr);
}

.detail-overview__media {
  min-width: 0;
}

.detail-screenshot {
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-header);
  aspect-ratio: 1 / 1;
}

.detail-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.detail-media__thumbs button {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  opacity: 0.65;
}

.detail-media__thumbs button.is-active,
.detail-media__thumbs button:hover {
  border-color: var(--orange-hot);
  opacity: 1;
}

.detail-media__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-overview__content {
  min-width: 0;
}

.detail-overview__content .detail-panel__title {
  margin-bottom: 12px;
}

.detail-description p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-description p:last-child {
  margin-bottom: 0;
}

.detail-rich-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-rich-text p {
  margin: 0 0 14px;
}

.detail-rich-text p:last-child {
  margin-bottom: 0;
}

.detail-rich-text ul,
.detail-rich-text ol {
  margin: 0 0 14px;
  padding-left: 1.25rem;
}

.detail-rich-text li {
  margin-bottom: 6px;
}

.detail-rich-text li:last-child {
  margin-bottom: 0;
}

.detail-rich-text strong,
.detail-rich-text b {
  color: var(--text);
  font-weight: 600;
}

.detail-rich-text h2,
.detail-rich-text h3,
.detail-rich-text h4 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.detail-rich-text h2:first-child,
.detail-rich-text h3:first-child,
.detail-rich-text h4:first-child {
  margin-top: 0;
}

.detail-rich-text blockquote {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange-hot);
  background: var(--bg-elevated);
  border-radius: 0 8px 8px 0;
}

.listing-detail__breadcrumb {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

.listing-detail__breadcrumb::-webkit-scrollbar {
  display: none;
}

.listing-gallery {
  width: 100%;
}

.detail-screenshot--zoomable {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
}

.detail-screenshot__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  pointer-events: none;
}

.detail-screenshot__counter {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.goverlay {
  background: color-mix(in srgb, var(--bg-body) 90%, #000 10%) !important;
}

.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
  width: 2.75rem !important;
  height: 2.75rem !important;
  background-color: var(--bg-panel) !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  color: var(--text) !important;
  opacity: 1 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.glightbox-container .gclose:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover {
  background-color: var(--bg-elevated) !important;
  border-color: var(--border-strong) !important;
}

.glightbox-container .gclose path,
.glightbox-container .gprev path,
.glightbox-container .gnext path {
  fill: currentColor !important;
}

.glightbox-container .gclose svg,
.glightbox-container .gprev svg,
.glightbox-container .gnext svg {
  width: 1.15rem;
  height: auto;
  display: block;
}

.glightbox-container .gprev.disabled,
.glightbox-container .gnext.disabled {
  opacity: 0.35 !important;
}

html[data-theme='light'] .glightbox-container .gclose,
html[data-theme='light'] .glightbox-container .gprev,
html[data-theme='light'] .glightbox-container .gnext {
  box-shadow: 0 8px 22px rgba(21, 23, 24, 0.12);
}

html[data-theme='dark'] .glightbox-container .gclose,
html[data-theme='dark'] .glightbox-container .gprev,
html[data-theme='dark'] .glightbox-container .gnext {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.deal-rail {
  padding: 20px;
  background: linear-gradient(180deg, rgba(247, 105, 43, 0.08), transparent 34%), var(--bg-panel);
  border: 1px solid #3a2a22;
  border-radius: 16px;
}

.deal-rail__price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.deal-rail__label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.deal-rail__price strong {
  color: var(--teal);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.deal-rail__price-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.deal-rail__price-meta del {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.deal-rail__price-meta span {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  background: var(--orange-tint);
  border-radius: 999px;
  color: var(--orange-tint-fg);
  font-size: 10px;
  font-weight: 600;
}

.deal-rail__price-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.deal-rail__favorite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.deal-rail__favorite-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  color: inherit;
  transition:
    color 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.9;
}

.deal-rail__favorite:hover .deal-rail__favorite-icon {
  opacity: 1;
}

.deal-rail__favorite.is-active .deal-rail__favorite-icon {
  opacity: 1;
  color: #ff8a4f;
}

.deal-rail__favorite:hover {
  border-color: #f7692b99;
  color: var(--text);
}

.deal-rail__favorite.is-active {
  background: rgba(247, 105, 43, 0.14);
  border-color: rgba(247, 105, 43, 0.45);
  color: #ff8a4f;
}

.deal-rail__stock {
  flex-shrink: 0;
  padding: 8px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.deal-rail__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.deal-rail__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.deal-rail__trust img {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.deal-rail__buy {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.deal-rail__buy .qty {
  height: 48px;
}

.qty {
  display: inline-flex;
  align-items: center;
  background: var(--bg-elevated);
  border: none;
  height: 50px;
  padding: 0 9px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  width: fit-content;
}

.qty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  padding: 0;
  border: none;
  border-radius: 6px;
  color: var(--text-soft);
  background-color: var(--bg-panel-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.qty__btn:hover:not(:disabled) {
  background: var(--border-soft);
  color: var(--text);
}

.qty__btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.qty__value {
  width: 60px;
  border: none;
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.deal-rail__cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  background: var(--orange-hot);
  border-radius: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.deal-rail__cart:hover {
  background: #ff7a3d;
}

.deal-rail__cart img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.deal-rail__buy-now {
  width: 100%;
  height: 46px;
  margin-bottom: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.deal-rail__buy-now:hover {
  background: var(--bg-panel-soft);
}

/* Mobil sabit satın alma çubuğu (deal-rail kaydırılınca) */
.deal-rail-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  z-index: 1025;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--bg-panel) 92%, transparent);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -12px 32px rgba(21, 23, 24, 0.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.deal-rail-sticky.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.deal-rail-sticky__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.deal-rail-sticky__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.deal-rail-sticky__meta strong {
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.deal-rail-sticky__meta span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-rail-sticky__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.deal-rail-sticky__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 11px;
  background: var(--orange-hot);
  color: #fff;
  flex-shrink: 0;
}

.deal-rail-sticky__cart img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.deal-rail-sticky__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.deal-rail-sticky__buy:disabled,
.deal-rail-sticky__cart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.deal-offer {
  border-top: 1px solid var(--border-strong);
  padding-top: 12px;
}

.deal-offer summary {
  cursor: pointer;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.deal-offer summary::-webkit-details-marker {
  display: none;
}

.deal-offer summary::after {
  content: '+';
  float: right;
  color: var(--orange-hot);
  font-weight: 600;
}

.deal-offer[open] summary::after {
  content: '−';
}

.deal-offer__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.deal-offer__body label {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.deal-offer__row {
  display: flex;
  gap: 8px;
}

.deal-offer__row input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  font-size: 13px;
}

.deal-offer__row input:focus {
  border-color: var(--orange-hot);
}

.deal-offer__row button {
  height: 42px;
  padding: 0 14px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-border);
  border-radius: 10px;
  color: var(--orange-tint-fg);
  font-size: 12px;
  font-weight: 600;
}

.deal-offer__body p {
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.45;
}

.seller-rail {
  padding: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.seller-rail__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.seller-rail__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #4b5fd4;
  border-radius: 8px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
}

.seller-rail__avatar--image {
  overflow: hidden;
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.seller-rail__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seller-rail__head > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.seller-rail__head strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.seller-rail__head strong a {
  color: inherit;
}

.seller-rail__head strong a:hover {
  color: var(--orange-hot);
}

.seller-rail__head span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.seller-rail__follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-border);
  border-radius: 10px;
  color: var(--orange-tint-fg);
  font-size: 18px;
  font-weight: 600;
}

.seller-rail__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.seller-rail__stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  background: var(--bg-elevated);
  border-radius: 10px;
}

.seller-rail__stats strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.seller-rail__stats span {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
}

.seller-rail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.seller-rail__actions button,
.seller-rail__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.seller-rail__actions button:hover,
.seller-rail__actions a:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.delivery-rail {
  padding: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.delivery-rail h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.delivery-rail ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.delivery-rail li {
  position: relative;
  padding-left: 36px;
  list-style: none;
  counter-increment: step;
}

.delivery-rail li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 600;
}

.delivery-rail strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.delivery-rail span {
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .listing-detail__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 14px;
  }
  .detail-overview {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
  }
  .listing-hero-card__title {
    font-size: 24px;
  }
  .deal-rail__price strong {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .listing-detail {
    padding: 16px 0 56px;
  }
  .listing-detail__layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .listing-detail__main,
  .listing-detail__side {
    display: contents;
  }
  .listing-detail__side {
    position: static;
    top: auto;
  }
  .listing-hero-card {
    order: 1;
  }
  .deal-rail {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .deal-rail__price {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .deal-rail__price-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .deal-rail__favorite {
    min-height: 40px;
  }
  .deal-rail__stock {
    white-space: normal;
    text-align: center;
  }
  .deal-rail__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
  }
  .deal-rail__trust span {
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
  }
  .deal-rail__trust img {
    width: 16px;
    height: 16px;
  }
  .deal-rail__buy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .deal-rail__buy--has-qty {
    grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
    align-items: stretch;
  }
  .deal-rail__buy .qty {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
  .deal-rail__cart,
  .deal-rail__buy-now {
    width: 100%;
    min-height: 48px;
  }
  .deal-rail__buy-now {
    margin-bottom: 10px;
  }
  .detail-overview {
    order: 3;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .seller-rail {
    order: 4;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .listing-detail .detail-panel:not(.listing-hero-card):not(.detail-overview) {
    order: 5;
  }
  .delivery-rail {
    order: 6;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-panel {
    padding: 18px;
  }
}

@media (max-width: 700px) {
  .detail-overview {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .detail-overview__media {
    max-width: none;
    width: 100%;
  }
  .detail-screenshot {
    max-width: none;
    margin: 0;
  }
  .detail-media__thumbs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .detail-media__thumbs::-webkit-scrollbar {
    display: none;
  }
  .detail-media__thumbs button {
    flex: 0 0 auto;
  }
  .detail-rich-text {
    font-size: 13px;
  }
  .deal-rail__buy--has-qty {
    grid-template-columns: 1fr;
  }
  .deal-rail__price-meta {
    flex-wrap: wrap;
  }
  .listing-hero-card__title {
    font-size: 22px;
  }
  .listing-hero-card__top {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .deal-rail {
    padding: 16px;
  }
  .deal-rail__price strong {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .listing-detail {
    padding: 12px 0 48px;
  }
  .detail-panel {
    padding: 14px;
    border-radius: 12px;
  }
  .detail-panel__title {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .listing-hero-card__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .listing-hero-card__tags {
    font-size: 11px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .listing-hero-card__chips {
    gap: 6px;
  }
  .listing-hero-card__chips span {
    height: 26px;
    padding: 0 9px;
    font-size: 10px;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .spec-item {
    padding: 10px 12px;
  }
  .spec-item__value {
    font-size: 12px;
  }
  .spec-item__value--tags a {
    height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }
  .detail-screenshot {
    max-width: none;
    border-radius: 10px;
  }
  .detail-media__thumbs button {
    width: 52px;
    height: 52px;
  }
  .detail-description p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .deal-rail {
    padding: 14px;
    border-radius: 14px;
  }
  .deal-rail__price {
    gap: 10px;
    margin-bottom: 14px;
  }
  .deal-rail__price strong {
    font-size: 26px;
  }
  .deal-rail__stock {
    align-self: stretch;
    width: 100%;
  }
  .deal-rail__trust {
    margin-bottom: 14px;
    padding: 10px;
    gap: 6px;
  }
  .deal-rail__trust span {
    font-size: 10px;
  }
  .deal-rail__buy-now {
    height: 48px;
    font-size: 14px;
  }
  .deal-offer__row {
    flex-direction: column;
  }
  .deal-offer__row button {
    width: 100%;
  }
  .seller-rail {
    padding: 14px;
  }
  .seller-rail__head {
    margin-bottom: 12px;
  }
  .seller-rail__head span {
    font-size: 10px;
  }
  .seller-rail__actions {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .seller-rail__actions button,
  .seller-rail__actions a {
    height: 36px;
    font-size: 11px;
    padding: 0 4px;
  }
  .delivery-rail {
    padding: 14px;
  }
  .delivery-rail h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

@media (max-width: 380px) {
  .deal-rail__trust {
    grid-template-columns: 1fr;
  }
  .deal-rail__trust span {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .deal-rail-sticky__inner {
    gap: 8px;
  }
  .deal-rail-sticky__meta strong {
    font-size: 16px;
  }
  .deal-rail-sticky__buy {
    min-width: 96px;
    padding: 0 12px;
    font-size: 12px;
  }
  .seller-rail__actions {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .listing-hero-card__title {
    font-size: 17px;
  }
}

.auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 90px 20px;
  width: 100%;
  min-width: 0;
}

.auth__card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px 32px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
  min-width: 0;
}

.auth__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.auth__logo img {
  height: 40px;
  width: auto;
}

.auth__title {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
}

.auth__subtitle {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.auth__alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: -8px 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, #d64545 40%, transparent);
  background: color-mix(in srgb, #d64545 12%, transparent);
  color: #ff8e8e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.auth__alert svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

html[data-theme='light'] .auth__alert {
  color: #b42318;
}

.auth__alert--ok {
  border-color: color-mix(in srgb, #1f9d6c 40%, transparent);
  background: color-mix(in srgb, #1f9d6c 14%, transparent);
  color: #4ade80;
}

html[data-theme='light'] .auth__alert--ok {
  color: #067647;
}

.auth__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.auth-field__label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.auth-field__forgot {
  margin-bottom: 8px;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.auth-field__forgot:hover {
  color: #ff8a52;
}

.auth-field__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-dim);
  transition: border-color 0.15s ease;
}

.auth-field__wrap:focus-within {
  border-color: var(--orange-hot);
}

.auth-field__wrap img,
.auth-field__wrap svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.auth-field__wrap input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.auth-field__wrap input::placeholder {
  color: var(--text-dim);
}

.auth-field__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.auth-field__toggle:hover {
  color: var(--text);
}

.auth-field__toggle svg,
.auth-field__eye {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.auth-field__eye--hide {
  display: none;
}

.auth-field__toggle.is-visible .auth-field__eye--show {
  display: none;
}

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

.auth-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.auth-remember input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-remember input:checked + .filter-check__box {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
}

.auth-remember input:checked + .filter-check__box::after {
  content: '';
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(1);
}

.auth__result .alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, #d64545 40%, transparent);
  background: color-mix(in srgb, #d64545 12%, transparent);
  color: #ff8e8e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

html[data-theme='light'] .auth__result .alert {
  color: #b42318;
}

.auth__result .alert-success {
  border-color: color-mix(in srgb, #1f9d6c 40%, transparent);
  background: color-mix(in srgb, #1f9d6c 14%, transparent);
  color: #4ade80;
}

html[data-theme='light'] .auth__result .alert-success {
  color: #067647;
}

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

.auth-dashboard__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--text);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.auth-dashboard__item:hover {
  border-color: color-mix(in srgb, var(--orange-hot) 35%, var(--border-soft));
  background: var(--bg-panel-soft);
}

.auth-dashboard__item strong {
  font-size: 14px;
  font-weight: 600;
}

.auth-dashboard__item span {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .auth-dashboard {
    grid-template-columns: 1fr;
  }
}

.auth--register .auth__card {
  max-width: 520px;
}

.auth-field__split {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.4fr);
  gap: 10px;
}

.auth-field__wrap--select {
  padding: 0;
}

.auth-field__select {
  width: 100%;
  height: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
  user-select: none;
}

.auth-terms input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-terms input:checked + .filter-check__box {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
}

.auth-terms input:checked + .filter-check__box::after {
  content: '';
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(1);
}

.auth-terms a {
  color: var(--orange-hot);
  font-weight: 600;
}

.auth-terms a:hover {
  color: #ff8a52;
}

@media (max-width: 520px) {
  .auth-field__split {
    grid-template-columns: 1fr;
  }
}

.auth__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin-top: 4px;
  background: var(--orange-hot);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.auth__submit:hover {
  background: #ff7a3d;
}

.auth__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth__divider::before,
.auth__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

.auth__socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.auth-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.auth-social:hover {
  background: var(--bg-panel-soft);
  border-color: var(--border);
  color: var(--text);
}

.auth__signup {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.auth__signup a {
  color: var(--orange-hot);
  font-weight: 600;
  transition: color 0.15s ease;
}

.auth__signup a:hover {
  color: #ff8a52;
}

.auth__footer {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.auth__footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.auth__footer img,
.auth__footer svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .auth {
    padding: 48px 16px 40px;
    gap: 18px;
  }
  .auth__card {
    padding: 28px 22px 24px;
    border-radius: 16px;
  }
  .auth__title {
    font-size: 22px;
  }
  .auth__subtitle {
    margin-bottom: 22px;
    font-size: 13px;
  }
  .auth__footer {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .auth {
    padding: 28px 12px 32px;
    gap: 16px;
  }
  .auth__card {
    padding: 24px 16px 20px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
  .auth__title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .auth__subtitle {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
  }
  .auth__form {
    gap: 16px;
  }
  .auth-field__label {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .auth-field__forgot {
    font-size: 11px;
    margin-bottom: 6px;
    white-space: nowrap;
  }
  .auth-field__wrap {
    height: 46px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 9px;
  }
  .auth-field__wrap input {
    font-size: 13px;
  }
  .auth-field__wrap input::placeholder {
    font-size: 12px;
  }
  .auth-remember {
    font-size: 12px;
    gap: 8px;
  }
  .auth__submit {
    height: 48px;
    font-size: 14px;
    gap: 8px;
  }
  .auth__divider {
    margin: 20px 0;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
  }
  .auth__socials {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .auth-social {
    height: 44px;
    font-size: 13px;
    gap: 8px;
  }
  .auth__signup {
    margin-top: 18px;
    font-size: 12px;
  }
  .auth__footer {
    gap: 14px 20px;
    font-size: 11px;
    width: 100%;
    max-width: 440px;
  }
  .auth__footer span {
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .auth {
    padding: 20px 10px 28px;
  }
  .auth__card {
    padding: 20px 14px 18px;
  }
  .auth__title {
    font-size: 18px;
  }
  .auth-field__row {
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .auth-field__forgot {
    margin-left: auto;
  }
  .auth__footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.account-page {
  padding: 24px 0 80px;
}

.account-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.account-nav-mobile,
.account-sidebar-backdrop,
.account-sidebar__mobile-head {
  display: none;
}

body.is-account-nav-open {
  overflow: hidden;
}

.account-sidebar,
.account-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.account-sidebar {
  position: sticky;
  top: 20px;
  padding: 16px 12px 14px;
}

.account-sidebar__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 4px 14px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.account-sidebar__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--orange-hot);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.account-sidebar__avatar--image {
  overflow: hidden;
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.account-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-sidebar__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.account-sidebar__meta strong {
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-sidebar__meta span,
.account-sidebar__meta small {
  overflow: hidden;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-sidebar__title {
  display: block;
  padding: 0 10px 12px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.account-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.account-nav__item:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.account-nav__item.is-active {
  background: var(--orange-tint);
  color: var(--orange-tint-text);
}

.account-nav__item.is-active::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--orange-hot);
}

.account-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.account-nav__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.account-nav__icon i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.account-nav__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.account-nav__item:hover .account-nav__icon {
  color: var(--text-soft);
}

.account-nav__item.is-active .account-nav__icon {
  color: var(--orange-tint-fg);
}

.account-nav__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-nav__toggle {
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.account-nav__toggle .account-nav__label {
  flex: 1;
  min-width: 0;
}

.account-nav__chevron {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--text-dim);
  transition: transform 0.2s ease;
}

.account-nav__group.is-open .account-nav__chevron {
  transform: rotate(180deg);
}

.account-nav__group.is-open > .account-nav__toggle,
.account-nav__toggle:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.account-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
}

.account-nav__subitem {
  display: block;
  padding: 8px 12px 8px 28px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.account-nav__subitem:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.account-nav__subitem.is-active {
  background: var(--orange-tint);
  color: var(--orange-tint-text);
}

.account-panel__heading--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-sidebar__logout {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 16px 12px 4px;
  border-top: 1px solid var(--border-strong);
  color: #f28b66;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.account-sidebar__logout:hover {
  color: #ff9f7a;
}

.account-sidebar__logout span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  font-size: 18px;
  line-height: 1;
}

.account-sidebar__logout svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.account-sidebar__logout-form {
  margin: 0;
}

button.account-sidebar__logout,
a.account-sidebar__logout {
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.account-sidebar--admin .account-nav {
  overflow: auto;
  padding-right: 2px;
}

.account-sidebar--admin .account-nav__item {
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
}

.account-nav__label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
}

.account-nav__count {
  flex: 0 0 auto;
  min-width: 22px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.account-nav__count.is-hot {
  background: var(--orange-tint);
  border-color: var(--orange-tint-border);
  color: var(--orange-tint-fg);
}

.account-nav__count.is-ok {
  background: rgba(21, 154, 76, 0.16);
  border-color: rgba(21, 154, 76, 0.35);
  color: #159a4c;
}

.account-nav__count.is-danger {
  background: rgba(214, 69, 69, 0.14);
  border-color: rgba(214, 69, 69, 0.35);
  color: #d64545;
}

.account-nav__counts {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.account-sidebar__section {
  display: block;
  margin: 14px 8px 6px;
  padding: 0 4px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-sidebar--admin {
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.account-nav__item.is-active .account-nav__label {
  color: inherit;
}

.account-nav__item.is-active .account-nav__count:not(.is-hot) {
  background: var(--orange-tint-chip);
  border-color: transparent;
  color: var(--orange-tint-text);
}

.account-table-wrap {
  overflow-x: auto;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
}

.account-table th,
.account-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
}

.account-table th {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-table td {
  color: var(--text-soft);
}

.account-table td strong {
  color: var(--text);
  font-weight: 600;
}

.account-table tbody tr:last-child td {
  border-bottom: 0;
}

.account-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.account-status--ok {
  background: rgba(21, 154, 76, 0.12);
  color: #159a4c;
}

.account-status--warn {
  background: rgba(196, 125, 10, 0.14);
  color: #c47d0a;
}

.account-status--danger {
  background: rgba(214, 69, 69, 0.12);
  color: #d64545;
}

.account-status--neutral {
  background: var(--bg-elevated);
  color: var(--text-dim);
}

.account-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.account-panel {
  padding: 26px;
}

.account-panel__heading {
  margin-bottom: 24px;
}

.account-panel__heading h1 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.account-panel__heading p {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.account-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 10px;
}

.account-section-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-border);
  border-radius: 9px;
  color: var(--orange-hot);
}

.account-section-title__icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.account-section-title__icon--danger {
  background: color-mix(in srgb, var(--red) 12%, transparent);
  border-color: color-mix(in srgb, var(--red) 28%, transparent);
  color: var(--red);
}

.account-section-title h2 {
  color: var(--text);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 0;
}

.account-section-title p {
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 0;
}

.account-section-title__link {
  margin-left: auto;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 600;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border-soft);
}

.announcement:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.announcement__badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  margin-bottom: 7px;
  padding: 0 8px;
  background: var(--orange-tint);
  border-radius: 999px;
  color: var(--orange-tint-fg);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.announcement__badge--green {
  background: rgba(24, 211, 166, 0.12);
  color: var(--teal);
}

.announcement h3 {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.announcement p,
.announcement time {
  color: var(--text-dim);
  font-size: 12px;
}

.announcement time {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .account-page {
    padding: 16px 0 56px;
  }
  .account-page .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .account-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .account-nav-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 10px;
    z-index: 90;
    order: 1;
    padding: 10px 12px;
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .account-nav-mobile__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--bg-elevated);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }
  .account-nav-mobile__toggle svg {
    color: var(--orange-hot);
  }
  .account-nav-mobile__title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .account-nav-mobile__title small {
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .account-nav-mobile__title strong {
    overflow: hidden;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .account-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  body.is-account-nav-open .account-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  /* Sayfa içi hesap menüsü (sol drawer). Offcanvas içindeki kopyaya uygulanmaz. */
  .account-sidebar:not(.account-sidebar--offcanvas) {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1100;
    width: min(300px, 88vw);
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.24s ease;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.28);
  }
  body.is-account-nav-open .account-sidebar:not(.account-sidebar--offcanvas) {
    transform: translateX(0);
  }
  /* Bootstrap #offcanvasRight içindeki menü: normal akışta görünsün */
  .account-sidebar--offcanvas,
  .offcanvas .account-sidebar {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    z-index: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
  }
  .account-sidebar--offcanvas .account-sidebar__mobile-head,
  .offcanvas .account-sidebar__mobile-head {
    display: none;
  }
  /* Panelim offcanvas, sayfa drawer'ının (z-index 1100) üstünde kalsın */
  #offcanvasRight {
    z-index: 1120;
  }
  body:has(#offcanvasRight.show) .offcanvas-backdrop {
    z-index: 1110;
  }
  .account-sidebar:not(.account-sidebar--offcanvas) .account-sidebar__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 14px 14px 12px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-soft);
  }
  .account-sidebar__mobile-head strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
  }
  .account-sidebar__mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: var(--bg-elevated);
    color: var(--text-soft);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .account-sidebar__user {
    margin: 12px 12px 10px;
    padding: 10px;
  }
  .account-sidebar__title {
    padding: 0 14px 10px;
  }
  .account-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 8px 8px;
    overflow: visible;
  }
  .account-nav__item {
    flex: initial;
    min-height: 46px;
    padding: 9px 12px;
    font-size: 13px;
    white-space: normal;
  }
  .account-nav__item.is-active::before {
    display: block;
    left: -8px;
  }
  .account-nav__icon {
    width: 20px;
    height: 20px;
  }
  .account-nav__sub {
    padding-left: 12px;
  }
  .account-nav__subitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .account-sidebar__logout-form {
    padding: 0 8px 12px;
  }
  .account-sidebar__logout {
    margin-top: 8px;
    padding: 14px 12px 6px;
    justify-content: flex-start;
  }
  .account-content {
    order: 2;
    min-width: 0;
  }
  .account-panel {
    padding: 18px 16px;
  }
  .account-section-title {
    flex-wrap: wrap;
  }
  .account-section-title__link {
    width: 100%;
    margin-left: 54px;
  }
}

@media (max-width: 700px) {
  .account-panel__heading h1 {
    font-size: 22px;
  }
  .account-section-title {
    flex-wrap: wrap;
    gap: 10px;
  }
  .account-section-title h2 {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .account-page {
    padding: 12px 0 48px;
  }
  .account-page .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .account-nav-mobile {
    top: 6px;
    padding: 8px 10px;
  }
  .account-panel {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .account-panel__heading h1 {
    font-size: 20px;
  }
  .announcement {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .account-nav-mobile__title strong {
    font-size: 14px;
  }
}

.settings-form {
  padding-top: 22px;
}

.settings-form__hint {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.settings-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.settings-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.settings-field--full {
  grid-column: 1 / -1;
}

.settings-field label,
.settings-field__label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.settings-field input:not([type='file']),
.settings-field select,
.settings-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.15s ease;
}

.settings-field textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}

.settings-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b9198' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.settings-field input::placeholder,
.settings-field textarea::placeholder {
  color: var(--text-dim);
}

.settings-field input:not([type='file']):focus,
.settings-field select:focus,
.settings-field textarea:focus {
  border-color: var(--orange-hot);
}

.settings-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.settings-btn--primary {
  background: var(--orange-hot);
  color: #ffffff;
}

.settings-btn--primary:hover {
  background: #ff7a3d;
}

.settings-btn--danger {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: var(--red);
}

.settings-btn--danger:hover {
  background: #3a2020;
}

.settings-btn--ghost {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.settings-btn--ghost:hover {
  border-color: var(--orange-tint-border);
  color: var(--orange-tint-fg);
}

.account-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.settings-form__feedback:empty {
  display: none;
}

.settings-form__feedback .alert {
  margin-bottom: 14px;
}

.settings-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.settings-summary li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}

.settings-summary span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings-summary strong,
.settings-summary__inline {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.settings-summary__inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.settings-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.settings-status.is-ok {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.settings-status.is-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.settings-records {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.settings-record {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.settings-record__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.settings-record__main strong {
  color: var(--text);
  font-size: 14px;
}

.settings-record__main span,
.settings-record__main small {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}

.settings-record__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.settings-inline-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.settings-inline-field--split {
  grid-template-columns: 120px minmax(0, 1fr) auto;
}

.settings-iban-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.settings-iban-field span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.settings-tabs__btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.settings-tabs__btn.is-active {
  border-color: var(--orange-tint-border);
  background: var(--orange-tint);
  color: var(--orange-tint-fg);
}

.settings-tab-panel[hidden] {
  display: none !important;
}

.settings-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.settings-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.settings-radio input {
  margin: 0;
}

.settings-subtitle {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.settings-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.settings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.settings-table th,
.settings-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.settings-table th {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-elevated);
}

.settings-table tr:last-child td {
  border-bottom: 0;
}

.settings-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  text-align: center;
}

.settings-empty h2 {
  margin: 0;
  font-size: 22px;
}

.settings-empty p {
  margin: 0;
  color: var(--text-dim);
}

.settings-form__grid--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .settings-summary {
    grid-template-columns: 1fr;
  }
  .settings-inline-field--split {
    grid-template-columns: 1fr;
  }
  .settings-record {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .settings-form__grid--thirds {
    grid-template-columns: 1fr;
  }
}

.settings-avatar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.settings-avatar--admin {
  margin-bottom: 18px;
}

.settings-avatar__preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--orange-hot) 14%, var(--bg-panel));
  border: 2px solid var(--border-soft);
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.settings-avatar__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-avatar__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.settings-avatar__body strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.settings-avatar__body p {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.5;
}

.settings-avatar__upload {
  max-width: 420px;
}

.settings-avatar__remove {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.settings-avatar__remove input {
  accent-color: var(--orange-hot);
}

.settings-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.settings-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  cursor: pointer;
}

.settings-toggle > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.settings-toggle strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.settings-toggle small {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.45;
}

.settings-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.settings-toggle__switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 46px;
  background: var(--border-strong);
  border-radius: 999px;
  transition: background 0.15s ease;
}

.settings-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.15s ease;
}

.settings-toggle input:checked + .settings-toggle__switch {
  background: var(--orange-hot);
}

.settings-toggle input:checked + .settings-toggle__switch::after {
  transform: translateX(20px);
}

.settings-danger__text {
  margin: 18px 0 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .settings-form {
    padding-top: 16px;
  }
  .settings-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .settings-form__actions {
    flex-direction: column;
    justify-content: stretch;
    gap: 10px;
  }
  .settings-btn {
    width: 100%;
  }
  .settings-toggle {
    padding: 14px;
    gap: 12px;
    align-items: flex-start;
  }
  .settings-toggle strong {
    font-size: 13px;
  }
  .settings-toggle small {
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .settings-field input:not([type='file']),
  .settings-field select,
  .settings-field textarea {
    font-size: 13px;
    min-height: 44px;
  }
  .settings-field textarea {
    min-height: 100px;
  }
  .settings-danger__text {
    font-size: 12px;
  }
}

.file-upload {
  width: 100%;
}

.file-upload__control {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.file-upload__control:hover {
  border-color: var(--orange-tint-fg);
  background: color-mix(in srgb, var(--orange-hot) 6%, var(--bg-elevated));
}

.file-upload__control:has(.file-upload__input:focus-visible) {
  border-color: var(--orange-hot);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange-hot) 18%, transparent);
}

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

.file-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--orange-tint);
  color: var(--orange-tint-fg);
  border: 1px solid var(--orange-tint-border);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.file-upload__name {
  flex: 1;
  min-width: 0;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload__control.is-selected .file-upload__name {
  color: var(--text);
}

.nav-bar {
  position: relative;
  z-index: 50;
}

.nav-bar__inner {
  position: relative;
}

.nav-cats__mega {
  position: static;
}

.nav-cats__mega::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  height: 14px;
}

.nav-cats__mega:hover::after,
.nav-cats__mega:focus-within::after {
  display: block;
}

.nav-cats__chevron {
  width: 9px;
  height: 9px;
  margin-left: 2px;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 20px;
  right: 20px;
  z-index: 100;
  visibility: hidden;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  opacity: 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 20px;
}

.nav-cats__mega:hover .mega-menu,
.nav-cats__mega:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cats__mega:hover .nav-cats__chevron,
.nav-cats__mega:focus-within .nav-cats__chevron {
  transform: rotate(180deg);
}

.mega-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-strong);
}

.mega-menu__header > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-menu__eyebrow {
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-menu__header strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.mega-menu__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-border);
  border-radius: 9px;
  color: var(--orange-tint-fg);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.mega-menu__all:hover {
  background: rgba(247, 105, 43, 0.2);
}

.mega-menu__all img {
  width: 10px;
  height: 10px;
}

.mega-menu__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.mega-menu__column {
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid var(--border-strong);
}

.mega-menu__column:first-child {
  padding-left: 0;
}

.mega-menu__column:last-child {
  padding-right: 0;
  border-right: none;
}

.mega-menu__category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mega-menu__category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
}

.mega-menu__category-icon--social {
  background: #351922;
}

.mega-menu__category-icon--games {
  background: #342a19;
}

.mega-menu__category-icon--license {
  background: rgba(75, 95, 212, 0.14);
}

.mega-menu__category-icon--digital {
  background: #17312c;
}

.mega-menu__category-icon img {
  width: 22px;
  height: 22px;
}

.mega-menu__category > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mega-menu__category strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.mega-menu__category small {
  overflow: hidden;
  color: #737981;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 33px;
  padding-left: 13px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 550;
  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.mega-menu__links a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
  transition: background 0.15s ease;
}

.mega-menu__links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.mega-menu__links a:hover::before {
  background: var(--orange-hot);
}

.mega-menu__promo {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 245px;
  padding: 20px;
  background: radial-gradient(circle at 90% 5%, rgba(247, 105, 43, 0.28), transparent 42%), linear-gradient(145deg, #29221f 0%, var(--bg-panel) 60%);
  border: 1px solid #493126;
  border-radius: 12px;
}

.mega-menu__promo::after {
  content: 'HS';
  position: absolute;
  top: 5px;
  right: -9px;
  color: rgba(247, 105, 43, 0.07);
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.mega-menu__promo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 9px;
  background: var(--orange-hot);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.mega-menu__promo strong {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.mega-menu__promo small {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.mega-menu__promo-link {
  position: relative;
  z-index: 1;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 600;
}

.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-height: 48px;
  padding: 10px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-strong);
}

.mega-menu__footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.mega-menu__footer img {
  width: 16px;
  height: 16px;
}

@media (min-width: 1201px) {
  .nav-cats {
    overflow: visible;
  }
}

@media (max-width: 1200px) {
  .mega-menu {
    display: none;
  }
  .nav-cats__chevron {
    display: none;
  }
}

.nav-cats__dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  z-index: 110;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  width: 230px;
  padding: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  opacity: 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 16px;
}

.nav-dropdown--right {
  right: -8px;
  left: auto;
}

.nav-cats__dropdown:hover .nav-dropdown,
.nav-cats__dropdown:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cats__dropdown:hover .nav-cats__chevron,
.nav-cats__dropdown:focus-within .nav-cats__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__title {
  display: block;
  margin-bottom: 5px;
  padding: 7px 10px 11px;
  border-bottom: 1px solid var(--border-strong);
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  color: #a1a6ad;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    padding 0.15s ease;
}

.nav-dropdown > a > span {
  color: var(--text-dim);
  font-size: 17px;
  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.nav-dropdown > a:hover {
  padding-left: 13px;
  background: var(--bg-panel-soft);
  color: var(--text);
}

.nav-dropdown > a:hover > span {
  color: var(--orange-hot);
  transform: translateX(2px);
}

.nav-dropdown > .nav-dropdown__all {
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  background: var(--orange-tint);
  border: 1px solid #503024;
  color: var(--orange-tint-fg);
  font-weight: 600;
}

.nav-dropdown > .nav-dropdown__all:hover {
  padding-left: 10px;
  background: rgba(247, 105, 43, 0.2);
  color: #ff8350;
}

@media (max-width: 1200px) {
  .nav-dropdown {
    display: none;
  }
}

.cart-page {
  padding: 24px 0 80px;
}

.cart-empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: var(--bg-card);
}

.cart-empty p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.cart-page__title {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cart-page__title span {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.cart-checkout {
  min-width: 0;
  grid-column: 1;
}

.cart-addon {
  margin-bottom: 10px;
  margin-top: -4px;
}

.cart-item + .cart-addon {
  margin-top: -6px;
  margin-bottom: 12px;
}

.cart-item__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 90px;
}

.cart-item__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-header);
}

.cart-summary__checkout--secondary {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.cart-summary__checkout--secondary:hover {
  background: var(--bg-body);
}

.cart-summary__premium {
  color: var(--text-dim);
  line-height: 1.45;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px 16px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.cart-item__media {
  position: relative;
  display: block;
  width: 120px;
  flex: 0 0 120px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-header);
}

.cart-item__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__badge {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  background: var(--orange-hot);
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-item__badge img {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}

.cart-item__badge--timed {
  background: var(--bg-panel-soft);
  color: var(--text-soft);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.cart-item__category {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 550;
}

.cart-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-item__title a {
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.cart-item__title a:hover {
  color: var(--orange-hot);
}

.cart-item__info .qty {
  margin-top: 2px;
}

.cart-item__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  align-self: stretch;
  flex-shrink: 0;
}

.cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: auto;
  border-radius: 7px;
  color: var(--text-dim);
  font-size: 13px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.cart-item__remove:hover {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
}

.cart-item__old {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.cart-item__price {
  color: var(--teal);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cart-summary {
  position: sticky;
  top: 20px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.cart-summary__title {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cart-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary__row dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.cart-summary__row dd {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-summary__row--discount dd {
  color: var(--teal);
}

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

.cart-summary__total span {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.cart-summary__total strong {
  color: var(--orange-hot);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cart-summary__coupon {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.cart-summary__coupon input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  outline: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.cart-summary__coupon input::placeholder {
  color: var(--text-dim);
}

.cart-summary__coupon input:focus {
  border-color: var(--orange-hot);
}

.cart-summary__coupon button {
  height: 44px;
  padding: 0 16px;
  background: var(--bg-panel-soft);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.cart-summary__coupon button:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.cart-summary__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin-bottom: 14px;
  background: var(--orange-hot);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-summary__checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-summary__checkout:hover {
  background: #ff7a3d;
}

.cart-summary__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.cart-summary__note img {
  width: 13px;
  height: 13px;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .cart-page {
    padding: 16px 0 56px;
  }
  .cart-page__title {
    margin-bottom: 18px;
    font-size: 26px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cart-summary {
    position: static;
    order: 2;
  }
  .cart-items {
    order: 1;
  }
}

@media (max-width: 700px) {
  .cart-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    grid-template-areas:
      'media info'
      'media pricing';
    align-items: start;
    gap: 12px 14px;
    padding: 14px;
  }
  .cart-item__media {
    grid-area: media;
    width: 100px;
    flex: none;
    flex-basis: auto;
  }
  .cart-item__info {
    grid-area: info;
    gap: 6px;
  }
  .cart-item__pricing {
    grid-area: pricing;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }
  .cart-item__remove {
    margin-bottom: 0;
    order: -1;
  }
  .cart-item__title {
    font-size: 14px;
  }
  .cart-item__info .qty {
    height: 40px;
    padding: 0 6px;
  }
  .cart-item__info .qty__btn {
    width: 28px;
    height: 28px;
  }
  .cart-item__info .qty__value {
    width: 40px;
    font-size: 12px;
  }
  .cart-item__price {
    font-size: 18px;
  }
  .cart-summary {
    padding: 18px 16px;
  }
  .cart-summary__title {
    font-size: 18px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .cart-summary__total strong {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .cart-page {
    padding: 12px 0 48px;
  }
  .cart-page__title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .cart-page__title span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
  }
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 12px;
    border-radius: 12px;
  }
  .cart-item__media {
    width: 84px;
    border-radius: 8px;
  }
  .cart-item__badge {
    top: 5px;
    left: 5px;
    height: 20px;
    padding: 0 6px;
    font-size: 9px;
    gap: 3px;
  }
  .cart-item__category {
    font-size: 11px;
  }
  .cart-item__title {
    font-size: 13px;
  }
  .cart-item__old {
    font-size: 12px;
  }
  .cart-item__price {
    font-size: 16px;
  }
  .cart-summary {
    padding: 16px 14px;
    border-radius: 12px;
  }
  .cart-summary__title {
    font-size: 17px;
  }
  .cart-summary__row dt,
  .cart-summary__row dd {
    font-size: 12px;
  }
  .cart-summary__total span {
    font-size: 13px;
  }
  .cart-summary__total strong {
    font-size: 20px;
  }
  .cart-summary__coupon {
    flex-direction: column;
    gap: 8px;
  }
  .cart-summary__coupon button {
    width: 100%;
  }
  .cart-summary__checkout {
    height: 48px;
    font-size: 14px;
  }
  .cart-summary__note {
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }
}

@media (max-width: 380px) {
  .cart-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      'media'
      'info'
      'pricing';
  }
  .cart-item__media {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 16 / 10;
  }
  .cart-item__pricing {
    justify-content: space-between;
  }
}

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

.seller-page {
  padding-bottom: 80px;
  overflow-x: clip;
}

.seller-hero {
  position: relative;
  margin-bottom: 28px;
  overflow-x: clip;
}

.seller-hero__banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-header);
}

.seller-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.9);
}

.seller-hero__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(21, 23, 24, 0.15), rgba(21, 23, 24, 0.92) 88%), linear-gradient(90deg, rgba(21, 23, 24, 0.55), transparent 42%);
  pointer-events: none;
}

.seller-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-top: -72px;
  padding-bottom: 8px;
  min-width: 0;
}

.seller-hero__profile {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex: 1 1 320px;
  min-width: 0;
}

.seller-hero__avatar {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 3px solid var(--bg-body);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.seller-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-hero__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-panel);
}

.seller-hero__member-id {
  font-size: 0.8125rem;
}

.seller-item__media-fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.seller-stats--compact li {
  padding: 8px 0;
}

.seller-member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seller-member-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 12px 10px;
  background: var(--bg-body);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.seller-member-stat:hover {
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg-body) 88%, var(--text) 12%);
}

.seller-member-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1;
}

.seller-member-stat__icon--activity {
  background: rgba(74, 144, 226, 0.14);
  color: #4a90e2;
}

.seller-member-stat__icon--member {
  background: rgba(24, 201, 158, 0.14);
  color: var(--teal);
}

.seller-member-stat__icon--location {
  background: rgba(34, 197, 94, 0.14);
  color: #22c55e;
}

.seller-member-stat__icon--views {
  background: color-mix(in srgb, var(--text-dim) 18%, transparent);
  color: var(--text-soft);
}

.seller-member-stat__icon--followers {
  background: rgba(239, 68, 68, 0.14);
  color: #ef4444;
}

.seller-member-stat__icon--buy {
  background: rgba(59, 130, 246, 0.14);
  color: #3b82f6;
}

.seller-member-stat__icon--cancel {
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
}

.seller-member-stat__icon--warning {
  background: rgba(239, 68, 68, 0.14);
  color: #ef4444;
}

.seller-member-stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.seller-member-stat__label {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.seller-member-stat__value {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.seller-hero__verified {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border: 2px solid var(--bg-body);
  border-radius: 50%;
  color: #0c1210;
}

.seller-hero__id-badge {
  position: absolute;
  left: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #3b82f6;
  border: 2px solid var(--bg-body);
  border-radius: 50%;
  color: #ffffff;
}

.seller-hero__id-badge svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.seller-hero__identity-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, #3b82f6 16%, transparent);
  border: 1px solid color-mix(in srgb, #3b82f6 35%, transparent);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.seller-hero__info {
  padding-bottom: 6px;
  flex: 1 1 0;
  min-width: 0;
}

.seller-hero__name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.seller-hero__name-row h1 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.seller-hero__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background: rgba(247, 105, 43, 0.16);
  border: 1px solid rgba(247, 105, 43, 0.45);
  border-radius: 999px;
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.seller-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.seller-hero__rating,
.seller-hero__joined {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  min-width: 0;
  white-space: nowrap;
}

.seller-hero__rating {
  color: var(--teal);
}

.seller-hero__rating em {
  color: var(--text-dim);
  font-style: normal;
  font-weight: 500;
}

.seller-hero__rating svg,
.seller-hero__joined svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.seller-hero__btn svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.seller-stats__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.seller-listings__filter svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.seller-hero__verified svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.seller-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
  flex: 0 1 auto;
  margin-left: auto;
}

.seller-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.seller-hero__btn--ghost {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.seller-hero__btn--ghost:hover {
  border-color: var(--text-dim);
  background: var(--bg-panel-soft);
}

.seller-hero__btn--primary {
  background: var(--orange-hot);
  border: 1px solid var(--orange-hot);
  color: #fff;
}

.seller-hero__btn--primary:hover {
  background: #ff7d42;
  border-color: #ff7d42;
}

.seller-page__body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.seller-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.seller-card {
  padding: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.seller-card__title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.seller-trust {
  margin: 4px 0 24px;
  padding: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.seller-trust__head {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seller-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
}

.seller-trust__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.seller-trust__row span {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.seller-trust__row strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.seller-trust__bar {
  overflow: hidden;
  height: 7px;
  background: var(--border-strong, rgba(127, 127, 127, 0.22));
  border-radius: 999px;
}

.seller-trust__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #3ee0b5);
}

.seller-trust__item[data-level='mid'] .seller-trust__bar i {
  background: linear-gradient(90deg, #e0a106, #f0c14b);
}

.seller-trust__item[data-level='low'] .seller-trust__bar i {
  background: linear-gradient(90deg, #d4533f, #f07a68);
}

.seller-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
}

.seller-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  padding: 0 9px;
  background: var(--bg-body);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.seller-trust-pill b {
  color: var(--text);
  font-weight: 800;
}

.seller-trust-pill[data-level='high'] {
  border-color: color-mix(in srgb, var(--teal) 35%, var(--border-soft));
}

.seller-trust-pill[data-level='mid'] {
  border-color: color-mix(in srgb, #e0a106 40%, var(--border-soft));
}

.seller-trust-pill[data-level='low'] {
  border-color: color-mix(in srgb, #d4533f 40%, var(--border-soft));
}

.seller-score-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.seller-score-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.seller-score-row__head label,
.seller-score-row__head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.seller-score-row__head strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.seller-score-picks {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
}

.seller-score-pick {
  margin: 0;
  cursor: pointer;
}

.seller-score-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seller-score-pick span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  background: var(--bg-body);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.seller-score-pick:hover span {
  border-color: var(--teal);
  color: var(--text);
}

.seller-score-pick input:checked + span,
.seller-score-pick input:focus-visible + span {
  background: color-mix(in srgb, var(--teal) 18%, var(--bg-panel));
  border-color: var(--teal);
  color: var(--text);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--teal) 22%, transparent);
}

.seller-score-pick[data-score='1'] input:checked + span,
.seller-score-pick[data-score='2'] input:checked + span,
.seller-score-pick[data-score='3'] input:checked + span {
  background: color-mix(in srgb, #d4533f 16%, var(--bg-panel));
  border-color: #d4533f;
}

.seller-score-pick[data-score='4'] input:checked + span,
.seller-score-pick[data-score='5'] input:checked + span,
.seller-score-pick[data-score='6'] input:checked + span,
.seller-score-pick[data-score='7'] input:checked + span {
  background: color-mix(in srgb, #e0a106 16%, var(--bg-panel));
  border-color: #e0a106;
}

@media (max-width: 575px) {
  .seller-trust__grid {
    grid-template-columns: 1fr;
  }
  .seller-score-pick span {
    height: 30px;
    font-size: 11px;
    border-radius: 7px;
  }
}

.member-frame {
  --member-frame: var(--border-soft);
  --member-frame-glow: transparent;
  position: relative;
  border: 2px solid var(--member-frame) !important;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--member-frame) 32%, transparent),
    0 10px 26px var(--member-frame-glow);
}

.member-frame--bronze {
  --member-frame: #e23b3b;
  --member-frame-glow: rgba(226, 59, 59, 0.28);
}

.member-frame--silver {
  --member-frame: #f27a21;
  --member-frame-glow: rgba(242, 122, 33, 0.28);
}

.member-frame--gold {
  --member-frame: #e0b422;
  --member-frame-glow: rgba(224, 180, 34, 0.34);
}

.member-frame--platin {
  --member-frame: #16c98a;
  --member-frame-glow: rgba(22, 201, 138, 0.28);
}

.member-frame__mark {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.product-card .member-frame__mark {
  top: auto;
  bottom: 10px;
}

.member-frame__mark--bronze {
  background: linear-gradient(180deg, #ff5d5d, #c81e1e);
}

.member-frame__mark--silver {
  background: linear-gradient(180deg, #ff9a3c, #e26510);
}

.member-frame__mark--gold {
  background: linear-gradient(180deg, #f3d15a, #c99612);
  color: #3b2a00;
}

.member-frame__mark--platin {
  background: linear-gradient(180deg, #3ee0b5, #0f9f7f);
}

.seller-hero.member-frame,
.seller-hero__avatar.member-frame,
.seller-rail__avatar.member-frame {
  box-shadow: none;
}

.seller-hero.member-frame {
  border: 0 !important;
}

.seller-hero.member-frame .seller-hero__banner {
  box-shadow: inset 0 -4px 0 var(--member-frame);
}

.seller-hero__avatar.member-frame {
  border-color: var(--member-frame);
  outline: 3px solid color-mix(in srgb, var(--member-frame) 88%, #fff 12%);
  outline-offset: 3px;
  box-shadow: 0 10px 28px var(--member-frame-glow);
}

.seller-rail.member-frame,
.listing-hero-card.member-frame,
.detail-panel.member-frame {
  border-width: 2px;
}

.seller-rail__avatar.member-frame {
  border: 2px solid var(--member-frame) !important;
  outline: 2px solid color-mix(in srgb, var(--member-frame) 70%, transparent);
  outline-offset: 2px;
}

.listing-card.member-frame,
.seller-item.member-frame,
.product-card.member-frame,
.category-list__item.member-frame,
.featured-seller-card.member-frame,
.product-showcase.member-frame {
  overflow: visible;
}

.seller-item.member-frame,
.product-card.member-frame {
  overflow: hidden;
}

.seller-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: #f5c542;
  line-height: 1;
}

.seller-rec-badge svg {
  display: block;
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 6px rgba(245, 197, 66, 0.55));
}

.seller-rec-badge em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f5c542;
  white-space: nowrap;
}

.seller-rec-badge--icon em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.seller-rec-badge--full {
  height: 26px;
  padding: 0 9px 0 7px;
  background: color-mix(in srgb, #f5c542 16%, var(--bg-panel));
  border: 1px solid color-mix(in srgb, #f5c542 45%, var(--border-soft));
  border-radius: 999px;
}

.seller-hero__name-row .seller-rec-badge--full {
  margin-left: 2px;
}

.listing-card__seller-name .seller-rec-badge {
  margin-left: 2px;
}

.market-slider .seller-name,
.market-slider .post-user-info strong,
.category-list__info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.listing-hero-card.member-frame {
  overflow: hidden;
}

.seller-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seller-stats li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.seller-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
}

.seller-stats__icon--sales {
  background: var(--orange-tint);
  color: var(--orange-tint-fg);
}

.seller-stats__icon--success {
  background: rgba(24, 201, 158, 0.14);
  color: var(--teal);
}

.seller-stats__icon--delivery {
  background: rgba(74, 144, 226, 0.14);
  color: #4a90e2;
}

.seller-stats li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.seller-stats span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.seller-stats strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.seller-stats__bar {
  width: 100%;
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
  background: var(--border-strong);
  border-radius: 999px;
}

.seller-stats__bar i {
  display: block;
  width: var(--value, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #3ee0b5);
  border-radius: inherit;
}

.seller-about__text {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.seller-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-about__tags span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  background: var(--bg-body);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.seller-listings__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  min-width: 0;
}

.seller-listings__toolbar h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  min-width: 0;
}

.seller-listings__toolbar h2 span {
  color: var(--text-dim);
  font-weight: 600;
}

.seller-listings--tabs {
  min-width: 0;
}

.seller-card--tabs {
  padding: 20px 20px 24px;
}

.seller-tabs {
  border: 0;
  gap: 6px;
  flex-wrap: wrap;
}

.seller-tabs .nav-link {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  margin-bottom: 0;
}

.seller-tabs .nav-link:hover {
  color: var(--text);
  border-color: var(--border);
}

.seller-tabs .nav-link.active {
  background: var(--bg-panel);
  border-color: var(--border);
  color: var(--text);
}

.seller-tabs__count {
  color: var(--text-dim);
  font-weight: 600;
}

.seller-listings__toolbar--compact {
  justify-content: flex-end;
  margin-bottom: 16px;
}

.seller-listings__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seller-listings__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-soft);
  cursor: pointer;
}

.seller-listings__filter:hover {
  color: var(--text);
  border-color: var(--border);
}

.seller-listings__sort {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.seller-listings__sort select {
  appearance: none;
  height: 40px;
  padding: 0 36px 0 14px;
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.seller-listings__sort img {
  position: absolute;
  right: 12px;
  pointer-events: none;
  opacity: 0.7;
}

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

.seller-listings {
  min-width: 0;
}

.seller-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}

.seller-item:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.seller-item__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-header);
}

.seller-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.seller-item:hover .seller-item__media img {
  transform: scale(1.04);
}

.seller-item__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 9px;
  background: rgba(247, 105, 43, 0.95);
  border-radius: 7px;
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.seller-item__badge img {
  width: 11px;
  height: 11px;
  filter: brightness(0) invert(1);
}

.seller-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  flex: 1;
}

.seller-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.seller-item__meta > span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.seller-item__meta em {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.seller-item__meta em.is-safe {
  background: rgba(24, 201, 158, 0.14);
  color: var(--teal);
}

.seller-item__title {
  margin: 0;
  flex: 1;
}

.seller-item__title a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.seller-item__title a:hover {
  color: var(--orange-hot);
}

.seller-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.seller-item__footer > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.seller-item__footer span {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.seller-item__footer strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.seller-item__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--orange-hot);
  border-radius: 10px;
  transition: background 0.15s ease;
}

.seller-item__cart:hover {
  background: #ff7d42;
}

.seller-item__cart img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.seller-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.seller-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--bg-body);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.seller-pagination__btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--border);
  color: var(--text);
}

.seller-pagination__btn.is-active {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  color: #fff;
}

.seller-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.seller-pagination__dots {
  color: var(--text-dim);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .seller-page__body {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
  }
  .seller-listings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .seller-hero__name-row h1 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .seller-page {
    padding-bottom: 56px;
  }
  .seller-hero {
    margin-bottom: 20px;
  }
  .seller-page__body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .seller-hero__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: -56px;
  }
  .seller-hero__profile {
    width: 100%;
  }
  .seller-hero__avatar {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    border-radius: 16px;
  }
  .seller-hero__name-row h1 {
    font-size: 24px;
  }
  .seller-hero__actions {
    width: 100%;
    margin-left: 0;
  }
  .seller-hero__btn {
    flex: 1;
    min-width: 0;
  }
  .seller-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }
  .seller-listings__toolbar h2 {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .seller-hero__banner {
    height: 180px;
  }
  .seller-hero__banner::after {
    height: 180px;
  }
  .seller-hero__content {
    margin-top: -48px;
  }
  .seller-hero__avatar {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }
  .seller-hero__name-row h1 {
    font-size: 22px;
  }
  .seller-hero__meta {
    gap: 8px 12px;
  }
  .seller-hero__rating,
  .seller-hero__joined {
    white-space: normal;
    flex-wrap: wrap;
  }
  .seller-sidebar {
    grid-template-columns: 1fr;
  }
  .seller-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .seller-stats li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 10px 6px;
    background: var(--bg-body);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
  }
  .seller-stats li > div {
    align-items: center;
  }
  .seller-stats strong {
    font-size: 16px;
  }
  .seller-stats span {
    font-size: 11px;
    line-height: 1.25;
  }
  .seller-stats__bar {
    margin-top: 4px;
  }
  .seller-listings__toolbar {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
  }
  .seller-listings__actions {
    width: 100%;
  }
  .seller-listings__sort {
    flex: 1;
    min-width: 0;
  }
  .seller-listings__sort select {
    width: 100%;
  }
  .seller-item__body {
    padding: 12px;
    gap: 8px;
  }
  .seller-item__title a {
    font-size: 13px;
  }
  .seller-item__footer strong {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .seller-page {
    padding-bottom: 48px;
  }
  .seller-hero__banner {
    height: 150px;
  }
  .seller-hero__banner::after {
    height: 150px;
  }
  .seller-hero__content {
    margin-top: -44px;
    gap: 14px;
  }
  .seller-hero__profile {
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .seller-hero__avatar {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 14px;
    border-width: 2px;
  }
  .seller-hero__verified {
    width: 20px;
    height: 20px;
    right: 4px;
    bottom: 4px;
  }
  .seller-hero__name-row {
    margin-bottom: 6px;
  }
  .seller-hero__name-row h1 {
    font-size: 20px;
  }
  .seller-hero__rating em {
    display: none;
  }
  .seller-hero__actions {
    gap: 8px;
    padding-bottom: 4px;
  }
  .seller-hero__btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
    gap: 6px;
  }
  .seller-hero__btn svg {
    width: 14px;
    height: 14px;
  }
  .seller-card {
    padding: 14px;
    border-radius: 12px;
  }
  .seller-card__title {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .seller-about__text {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .seller-listings__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .seller-listings__toolbar h2 {
    font-size: 17px;
  }
  .seller-listings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .seller-item {
    border-radius: 12px;
  }
  .seller-item__badge {
    top: 8px;
    right: 8px;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
    gap: 3px;
  }
  .seller-item__badge img {
    width: 9px;
    height: 9px;
  }
  .seller-item__body {
    padding: 10px;
  }
  .seller-item__meta > span {
    font-size: 10px;
  }
  .seller-item__meta em {
    height: 20px;
    padding: 0 6px;
    font-size: 9px;
  }
  .seller-item__title a {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .seller-item__footer strong {
    font-size: 14px;
  }
  .seller-item__cart {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .seller-item__cart img {
    width: 14px;
    height: 14px;
  }
  .seller-pagination {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    padding: 10px;
  }
  .seller-pagination__btn {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }
}

@media (max-width: 380px) {
  .seller-stats {
    grid-template-columns: 1fr;
  }
  .seller-stats li {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .seller-stats li > div {
    align-items: flex-start;
  }
  .seller-hero__actions {
    flex-direction: column;
  }
  .seller-hero__btn {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .hero-slide {
    min-height: 460px;
    height: 460px;
  }
  .hero-slide__content {
    max-width: 520px;
    padding: 28px 24px 70px 48px;
  }
  .hero-slide__badge-wrap {
    left: -48px;
    gap: 20px;
    margin-bottom: 28px;
    font-size: 16px;
  }
  .hero-slide__badge {
    width: 96px;
    height: 52px;
    padding: 0 18px;
  }
  .hero-slide__title {
    font-size: 28px;
    line-height: 1.25;
  }
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    padding: 20px 18px;
  }
  .features-bar__item:nth-child(2) {
    border-right: none;
  }
  .features-bar__item:nth-child(1),
  .features-bar__item:nth-child(2) {
    padding-bottom: 18px;
    border-bottom: 1px solid #2a2a2a;
  }
  .featured-listings__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 14px;
  }
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-card--advantages {
    width: 380px;
    min-width: 320px;
  }
  .trust-card__title {
    font-size: 32px;
  }
  .trust-card__badge img {
    width: 220px;
  }
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 16px;
  }
  .top-bar__badge span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 42vw;
  }
  .top-bar__theme span {
    display: none;
  }
  .top-bar__actions {
    gap: 14px;
  }
  .main-header__inner {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 0;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
  }
  .header-actions {
    gap: 8px;
  }
  .icon-btn {
    width: 44px;
    height: 44px;
  }
  .user-btn {
    min-width: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  .user-btn__text,
  .user-btn__chevron {
    display: none;
  }
  .user-btn__avatar-wrap {
    width: 32px;
    height: 32px;
  }
  .nav-bar {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 40px 0 36px;
  }
  .hero-slider {
    border-radius: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .hero-slider::after {
    top: 6.5px;
    height: 4px;
  }
  .hero-slide {
    min-height: 400px;
    height: 400px;
  }
  .hero-slide__bg {
    object-position: 70% center;
  }
  .hero-slide__content {
    max-width: 100%;
    padding: 24px 20px 64px 20px;
    justify-content: flex-end;
  }
  .hero-slide__badge-wrap {
    left: -20px;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
  }
  .hero-slide__badge {
    width: 78px;
    height: 44px;
    padding: 0 14px;
  }
  .hero-slide__badge img {
    width: 20px;
    height: 20px;
  }
  .hero-slide__title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero-slide__text {
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .hero-slide__apps span {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .hero-slide__apps img {
    height: 24px;
  }
  .hero-slide__avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .hero-slide__sponsored {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .hero-slide__price {
    min-height: 32px;
    font-size: 14px;
  }
  .hero-slider__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    min-height: 44px;
  }
  .hero-slider__tabs::-webkit-scrollbar {
    display: none;
  }
  .hero-slider__tab {
    flex: 0 0 auto;
    padding: 12px 14px;
    font-size: 12px;
  }
  .features-bar {
    margin-top: 28px;
    border-radius: 16px;
  }
  .features-bar__item {
    padding: 6px 10px;
    gap: 10px;
  }
  .features-bar__icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .features-bar__title {
    font-size: 14px;
  }
  .features-bar__text {
    font-size: 12px;
    line-height: 1.35;
  }
  .social-services {
    padding: 4px 0 64px;
  }
  .social-card {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
  }
  .social-card img {
    width: 30px;
    height: 30px;
  }
  .social-card span {
    font-size: 11px;
  }
  .featured-listings {
    padding: 8px 0 72px;
  }
  .featured-listings__toolbar {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 14px 14px;
    margin-bottom: 40px;
  }
  .featured-listings__title-wrap {
    flex: 1 1 0;
    border-right: none;
    padding-right: 0;
    min-width: 0;
  }
  .featured-listings__title strong,
  .featured-listings__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .featured-listings__icon {
    width: 48px;
    height: 48px;
  }
  .featured-listings__tabs {
    order: 3;
    flex: 1 1 100%;
    justify-self: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .featured-listings__tabs::-webkit-scrollbar {
    display: none;
  }
  .featured-tab {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    flex: 0 0 auto;
  }
  .featured-tab__icon,
  .featured-tab svg {
    width: 18px;
    height: 18px;
  }
  .featured-listings__market {
    flex: 0 0 auto;
    margin-left: auto;
    justify-self: end;
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
  .featured-listings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 12px;
    padding-top: 16px;
  }
  .listing-card__badge {
    top: -14px;
    max-width: calc(100% - 8px);
    padding: 0 10px;
    font-size: 11px;
    height: 30px;
    gap: 5px;
  }
  .listing-cards-grid .listing-card__badge {
    top: 10px;
    left: 10px;
    transform: none;
    height: 28px;
  }
  .listing-card__badge img {
    width: 12px;
    height: 16px;
  }
  .listing-card__meta {
    padding: 16px 10px 8px;
    font-size: 11px;
  }
  .listing-card__body {
    padding: 12px;
    gap: 12px;
  }
  .listing-card__name {
    font-size: 13px;
    min-height: 36px;
  }
  .listing-card__price {
    height: 42px;
    font-size: 13px;
    max-width: none;
    flex: 1;
  }
  .btn-view-more {
    max-width: 280px;
    height: 52px;
    margin-top: 36px;
    font-size: 15px;
  }
  .trust__grid {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
  }
  .trust-card--advantages {
    width: 100%;
    min-width: 0;
  }
  .trust-card--satisfaction {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }
  .trust-card__content {
    max-width: none;
    padding: 0;
  }
  .trust-card__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .trust-card__text {
    font-size: 14px;
    line-height: 1.55;
  }
  .trust-card__media {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .trust-card__badges {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trust-card__badge {
    margin-bottom: 12px;
    justify-content: center;
  }
  .trust-card__badge img {
    width: min(260px, 100%);
  }
  .trust-card__badge--sikayetvar {
    right: 0;
  }
  .trust-card__visual {
    width: min(190px, 55%);
  }
  .trust-card--advantages-content {
    max-width: 360px;
    padding: 0 16px 28px;
    margin-top: 20px;
  }
  .faq__grid {
    flex-direction: column;
    gap: 12px;
  }
  .faq__panel {
    padding: 40px 16px 16px;
    border-radius: 14px;
  }
  .faq__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .faq__trigger {
    min-height: 60px;
    gap: 12px;
    padding: 10px 12px;
  }
  .faq__question {
    font-size: 14px;
  }
  .faq__answer > p {
    padding: 0 12px 0 68px;
    font-size: 13px;
  }
  .service-detail__panel {
    padding: 18px 16px 24px;
    border-radius: 14px;
  }
  .service-detail__expand {
    width: 48px;
    height: 48px;
  }
  .service-detail__expand img {
    width: 24px;
    height: 24px;
  }
  .service-detail__content {
    max-height: 140px;
  }
  .blog__header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }
  .blog__title {
    font-size: 24px;
  }
  .blog__all {
    height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }
  .blog-card {
    padding: 7px 7px;
  }
  .site-footer__top {
    flex-wrap: wrap;
    gap: 16px;
  }
  .trust-card__visual {
    display: none;
  }
  .site-footer__nav {
    padding: 8px 14px 18px;
    min-height: 0;
    border-radius: 14px;
    position: relative;
  }
  .site-footer__panels {
    padding-top: 24px;
    max-height: 220px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-footer__panels::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(23, 26, 27, 0) 0%, #171a1b 78%);
    transition: opacity 0.25s ease;
  }
  .site-footer__nav.is-expanded .site-footer__panels {
    max-height: none;
    overflow: visible;
  }
  .site-footer__nav.is-expanded .site-footer__panels::after {
    opacity: 0;
    pointer-events: none;
  }
  .site-footer__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    margin-top: 14px;
    padding: 0 16px;
    background: #1c1e21;
    border: 1px solid #2a2c30;
    border-radius: 10px;
    color: #d0d4d8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition:
      background 0.15s ease,
      color 0.15s ease;
  }
  .site-footer__more:hover {
    background: #24262a;
    color: #ffffff;
  }
  .site-footer__more img {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(0.85);
  }
  .site-footer__nav.is-expanded .site-footer__more img {
    transform: rotate(180deg);
  }
  .site-footer__more[hidden] {
    display: none;
  }
  .site-footer__links {
    gap: 16px;
  }
  .site-footer__links a {
    font-size: 14px;
  }
  .footer-contact {
    gap: 12px;
  }
  .footer-contact__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .footer-contact__text strong {
    font-size: 16px;
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .hero-slide {
    height: auto;
    min-height: 320px;
  }
  .hero-slide__content {
    min-height: 320px;
    padding: 40px 16px 60px 16px;
    justify-content: flex-start;
  }
  .hero-slide__badge-wrap {
    left: -16px;
    margin-bottom: 14px;
    font-size: 13px;
    gap: 12px;
  }
  .hero-slide__title {
    font-size: 22px;
  }
  .features-bar {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 10px;
    margin-top: 20px;
  }
  .features-bar__item {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
    padding: 14px 10px;
  }
  .features-bar__item:nth-child(1),
  .features-bar__item:nth-child(2) {
    padding-bottom: 14px;
  }
  .features-bar__item:last-child {
    border-bottom: none;
  }
  .featured-listings__toolbar {
    margin-bottom: 40px;
  }
  .featured-listings__title span {
    display: none;
  }
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer__contact {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 12px;
  }
  .top-bar__inner {
    min-height: 36px;
    gap: 10px;
  }
  .top-bar__badge {
    font-size: 12px;
    gap: 6px;
  }
  .top-bar__badge span {
    max-width: 52vw;
  }
  .brand__logo {
    height: 34px;
  }
  .hero {
    padding: 32px 0 28px;
  }
  .hero-slider {
    border-radius: 12px;
  }
  .hero-slide__content {
    min-height: 320px;
    padding: 18px 14px 56px 14px;
  }
  .hero-slide__badge-wrap {
    left: -14px;
    margin-bottom: 12px;
  }
  .hero-slide__badge {
    width: 64px;
    height: 38px;
    padding: 0 12px;
  }
  .hero-slide__title {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero-slide__text {
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-slide__apps {
    gap: 8px;
  }
  .hero-slide__apps span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .hero-slider__tab {
    padding: 10px 12px;
    font-size: 11px;
  }
  .social-services {
    padding: 0 0 48px;
  }
  .social-marquee__group {
    gap: 12px;
    padding-right: 12px;
  }
  .social-card {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    gap: 6px;
    border-radius: 8px;
  }
  .featured-listings {
    padding: 4px 0 56px;
  }
  .featured-listings__toolbar {
    padding: 12px;
    margin-bottom: 28px;
    border-radius: 8px;
  }
  .featured-listings__title-wrap {
    flex: 1 1 100%;
  }
  .featured-listings__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }
  .featured-listings__icon img {
    width: 18px;
    height: 18px;
  }
  .featured-listings__title strong {
    font-size: 14px;
  }
  .featured-listings__market {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    order: 2;
  }
  .featured-listings__tabs {
    order: 3;
  }
  .featured-tab {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
  .featured-listings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
    padding-top: 14px;
  }
  .listing-cards-grid .listing-card__footer {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 12px 12px;
  }
  .listing-cards-grid .listing-card__price {
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
  }
  .listing-cards-grid .listing-card__cart-btn {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    height: 36px;
    padding: 0;
    flex-shrink: 0;
    gap: 0;
  }
  .listing-cards-grid .listing-card__cart-btn span {
    display: none;
  }
  .listing-cards-grid .listing-card__cart-btn i {
    font-size: 15px;
  }
  .listing-cards-grid .listing-card__seller {
    padding: 12px;
  }
  .listing-cards-grid .listing-card__name {
    padding: 10px 12px 0;
    min-height: 40px;
    font-size: 13px;
  }
  .listing-cards-grid .listing-card__badge {
    top: 10px;
    left: 10px;
    height: 28px;
    font-size: 10px;
  }
  .btn-view-more {
    max-width: 100%;
    height: 50px;
    margin-top: 28px;
    font-size: 14px;
    padding: 0 40px 0 18px;
  }
  .trust__grid {
    margin-bottom: 48px;
  }
  .trust-card--satisfaction {
    padding: 20px 16px;
  }
  .trust-card__title {
    font-size: 24px;
  }
  .trust-card--advantages-title {
    font-size: 22px;
  }
  .trust-card--advantages-text {
    font-size: 14px;
  }
  .faq {
    padding: 8px 0 36px;
  }
  .faq__icon {
    width: 36px;
    height: 36px;
  }
  .faq__icon img {
    width: 36px;
    height: 36px;
  }
  .faq__answer > p {
    padding-left: 16px;
    padding-right: 16px;
  }
  .service-detail {
    padding: 4px 0 36px;
  }
  .service-detail__more {
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
  .blog {
    padding: 8px 0 40px;
  }
  .blog__title {
    font-size: 22px;
  }
  .blog__all {
    width: 100%;
    justify-content: center;
  }
  .site-footer {
    padding: 28px 0 36px;
  }
  .site-footer__social {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 380px) {
  .listing-card__footer {
    flex-wrap: nowrap;
  }
  .listing-card__price {
    width: fit-content;
    max-width: 100%;
    flex: 0 0 auto;
    margin-left: 0;
  }
  .hero-slide__title {
    font-size: 18px;
  }
  .user-btn {
    width: 40px;
    height: 40px;
  }
  .icon-btn {
    width: 40px;
    height: 40px;
  }
}

html[data-theme='light'] .search__field {
  background: var(--bg-input);
  border-color: var(--border-soft);
}

html[data-theme='light'] .search__field input {
  color: var(--text);
}

html[data-theme='light'] .search__field input::placeholder {
  color: var(--text-dim);
}

html[data-theme='light'] .icon-btn,
html[data-theme='light'] .user-btn {
  background: var(--bg-btn);
  border-color: var(--border-soft);
  color: var(--text);
}

html[data-theme='light'] .icon-btn--notify {
  border-color: rgba(247, 105, 43, 0.45);
}

html[data-theme='light'] .icon-btn--notify .icon-btn__inner {
  background: #ffe8dc;
}

html[data-theme='light'] .icon-btn--cart {
  border-color: rgba(15, 159, 127, 0.45);
}

html[data-theme='light'] .icon-btn--cart span {
  background: #d9f5ee;
}

html[data-theme='light'] .icon-btn--messages {
  border-color: rgba(124, 58, 237, 0.35);
}

html[data-theme='light'] .icon-btn--messages .icon-btn__inner {
  background: #ede9fe;
  color: #6d28d9;
}

html[data-theme='light'] .icon-btn--messages .icon-btn__badge {
  background: #7c3aed;
  box-shadow: 0 0 0 2px var(--bg-header);
}

html[data-theme='light'] .user-btn__avatar-wrap {
  background: #e8ecf8;
}

html[data-theme='light'] .nav-cats__item {
  color: var(--text);
}

html[data-theme='light'] .nav-bar {
  background: var(--bg-nav);
  border-bottom-color: var(--border-soft);
}

html[data-theme='light'] .nav-cats__icon {
  border-color: var(--border-soft);
}

html[data-theme='light'] .nav-cats > li:nth-child(1) .nav-cats__icon {
  background: #fff0e8;
  border-color: #f5d1bf;
}

html[data-theme='light'] .nav-cats > li:nth-child(2) .nav-cats__icon {
  background: #fce8ee;
  border-color: #f3cbd7;
}

html[data-theme='light'] .nav-cats > li:nth-child(3) .nav-cats__icon {
  background: #fff3d9;
  border-color: #f1dfb7;
}

html[data-theme='light'] .nav-cats > li:nth-child(4) .nav-cats__icon {
  background: #e8edff;
  border-color: #cad4fa;
}

html[data-theme='light'] .nav-cats > li:nth-child(5) .nav-cats__icon {
  background: #e2f6f0;
  border-color: #bfe8dc;
}

html[data-theme='light'] .nav-cats > li:nth-child(6) .nav-cats__icon {
  background: #e6f3fa;
  border-color: #c5e1ef;
}

html[data-theme='light'] .nav-cats > li:nth-child(7) .nav-cats__icon {
  background: #eceff3;
  border-color: #d5dae1;
}

html[data-theme='light'] .nav-cats__icon--marketplace {
  color: #5f6b76;
}

html[data-theme='light'] .nav-links a,
html[data-theme='light'] .nav-links__trigger {
  color: var(--text-soft);
}

html[data-theme='light'] .nav-links a:hover,
html[data-theme='light'] .nav-links__trigger:hover {
  color: var(--text);
}

html[data-theme='light'] .nav-dropdown,
html[data-theme='light'] .mega-menu {
  background: #ffffff;
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
  color: var(--text);
}

html[data-theme='light'] .nav-dropdown > a,
html[data-theme='light'] .mega-menu a {
  color: var(--text-dim);
}

html[data-theme='light'] .mega-menu__header {
  background: #f7f9fb;
  border-bottom-color: var(--border-soft);
}

html[data-theme='light'] .mega-menu__header strong,
html[data-theme='light'] .mega-menu__category strong {
  color: var(--text);
}

html[data-theme='light'] .mega-menu__eyebrow {
  color: var(--orange-hot);
}

html[data-theme='light'] .mega-menu__all {
  background: #fff0e8;
  border-color: #f5c7b1;
  color: #d95018;
}

html[data-theme='light'] .mega-menu__all:hover {
  background: #ffe4d6;
  color: #bc4112;
}

html[data-theme='light'] .mega-menu__body {
  background: #ffffff;
}

html[data-theme='light'] .mega-menu__column {
  border-right-color: var(--border-soft);
}

html[data-theme='light'] .mega-menu__category small {
  color: var(--text-dim);
}

html[data-theme='light'] .mega-menu__category-icon--social {
  background: #fce8ee;
}

html[data-theme='light'] .mega-menu__category-icon--games {
  background: #fff3d9;
}

html[data-theme='light'] .mega-menu__category-icon--license {
  background: #e8edff;
}

html[data-theme='light'] .mega-menu__category-icon--digital {
  background: #e2f6f0;
}

html[data-theme='light'] .mega-menu__links a {
  color: var(--text-muted);
}

html[data-theme='light'] .mega-menu__links a::before {
  background: #aab2bb;
}

html[data-theme='light'] .mega-menu__links a:hover {
  color: var(--text);
}

html[data-theme='light'] .mega-menu__links a:hover::before {
  background: var(--orange-hot);
}

html[data-theme='light'] .mega-menu__promo {
  background: radial-gradient(circle at 90% 5%, rgba(247, 105, 43, 0.2), transparent 42%), linear-gradient(145deg, #fff7f2 0%, #f8fafc 60%);
  border-color: #f0cbb9;
}

html[data-theme='light'] .mega-menu__promo::after {
  color: rgba(247, 105, 43, 0.1);
}

html[data-theme='light'] .mega-menu__promo strong {
  color: var(--text);
}

html[data-theme='light'] .mega-menu__promo small {
  color: var(--text-muted);
}

html[data-theme='light'] .mega-menu__promo-link {
  color: #d95018;
}

html[data-theme='light'] .mega-menu__footer {
  background: #f7f9fb;
  border-top-color: var(--border-soft);
}

html[data-theme='light'] .mega-menu__footer span {
  color: var(--text-dim);
}

html[data-theme='light'] .nav-dropdown > a:hover {
  background: #f3f5f7;
  color: var(--text);
}

html[data-theme='light'] .nav-dropdown > .nav-dropdown__all {
  background: #fff0e8;
  border-color: #f5c7b1;
  color: #d95018;
}

html[data-theme='light'] .nav-dropdown > .nav-dropdown__all:hover {
  background: #ffe4d6;
  border-color: #efad8d;
  color: #bc4112;
}

html[data-theme='light'] .hero-slider {
  background: #e8ecf1;
}

html[data-theme='light'] .hero-slider__tabs {
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(21, 23, 24, 0.06);
  backdrop-filter: blur(8px);
}

html[data-theme='light'] .hero-slider__tab {
  color: var(--text-muted);
}

html[data-theme='light'] .hero-slider__tab:hover {
  color: var(--text);
  background: rgba(21, 23, 24, 0.04);
}

html[data-theme='light'] .features-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .features-bar__item {
  border-right-color: var(--border-soft);
}

html[data-theme='light'] .features-bar__title {
  color: var(--text);
}

html[data-theme='light'] .features-bar__text {
  color: var(--text-muted);
}

html[data-theme='light'] .features-bar__item:nth-child(1) .features-bar__icon {
  background: #e7f7f2;
}

html[data-theme='light'] .features-bar__item:nth-child(2) .features-bar__icon {
  background: #e3eef5;
}

html[data-theme='light'] .features-bar__item:nth-child(3) .features-bar__icon {
  background: #f5efe3;
}

html[data-theme='light'] .features-bar__item:nth-child(4) .features-bar__icon {
  background: #f6e8e2;
}

@media (max-width: 700px) {
  html[data-theme='light'] .features-bar__item {
    border-bottom-color: var(--border-soft);
  }
}

@media (max-width: 1200px) {
  html[data-theme='light'] .features-bar__item:nth-child(1),
  html[data-theme='light'] .features-bar__item:nth-child(2) {
    border-bottom-color: var(--border-soft);
  }
}

html[data-theme='light'] .featured-listings__toolbar {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .featured-listings__title-wrap {
  border-right-color: var(--border-soft);
}

html[data-theme='light'] .featured-listings__title strong {
  color: var(--text);
}

html[data-theme='light'] .featured-listings__title span {
  color: var(--text-dim);
}

html[data-theme='light'] .featured-tab {
  color: var(--text-dim);
}

html[data-theme='light'] .featured-tab:hover {
  color: var(--text);
}

html[data-theme='light'] .featured-tab.is-active {
  background: #4b5fd4;
  color: #ffffff;
}

html[data-theme='light'] .featured-listings__market {
  background: var(--orange-tint);
  border-color: var(--orange-tint-border);
  color: var(--orange-tint-fg);
}

html[data-theme='light'] .featured-listings__market:hover {
  background: color-mix(in srgb, var(--orange-hot) 20%, #ffffff);
  border-color: color-mix(in srgb, var(--orange-hot) 45%, #ffffff);
}

html[data-theme='light'] .featured-listings__market img {
  filter: none;
  opacity: 1;
}

html[data-theme='light'] .listing-card {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .listing-cards-grid .listing-card {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(21, 23, 24, 0.08);
}

html[data-theme='light'] .listing-cards-grid .listing-card__body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

html[data-theme='light'] .listing-cards-grid .listing-card__seller-name {
  background: #f3f6f9;
  border-color: var(--border-soft);
  color: var(--text);
}

html[data-theme='light'] .listing-cards-grid .listing-card__rating {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.24);
  color: var(--text);
}

html[data-theme='light'] .listing-cards-grid .listing-card__footer {
  background: #f3f6f9;
}

html[data-theme='light'] .listing-cards-grid .listing-card__price {
  background: rgba(24, 211, 166, 0.1);
  border-color: rgba(24, 211, 166, 0.24);
  color: #0f9b7d;
}

html[data-theme='light'] .listing-card__cart-btn,
html[data-theme='light'] .listing-cards-grid .listing-card__cart-btn {
  border-color: rgba(247, 105, 43, 0.35);
  background: rgba(247, 105, 43, 0.1);
  color: #e85d1f;
}

html[data-theme='light'] .listing-card__cart-btn:hover:not(:disabled),
html[data-theme='light'] .listing-cards-grid .listing-card__cart-btn:hover:not(:disabled) {
  border-color: #f7692b;
  background: #f7692b;
  color: #ffffff;
}

html[data-theme='dark'] .listing-card__cart-btn,
html[data-theme='dark'] .listing-cards-grid .listing-card__cart-btn {
  border-color: rgba(247, 105, 43, 0.45);
  background: rgba(247, 105, 43, 0.16);
  color: #ff8a4c;
}

html[data-theme='dark'] .listing-card__cart-btn:hover:not(:disabled),
html[data-theme='dark'] .listing-cards-grid .listing-card__cart-btn:hover:not(:disabled) {
  border-color: #f7692b;
  background: #f7692b;
  color: #ffffff;
}

html[data-theme='light'] .listing-cards-grid .listing-card__meta {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, rgba(15, 18, 22, 0.82) 100%);
}

html[data-theme='light'] .listing-card__media {
  background: #e8ecf1;
}

html[data-theme='light'] .listing-card__name a {
  color: var(--text);
}

html[data-theme='light'] .listing-card__price {
  background: #e7f7f2;
  color: var(--teal);
}

html[data-theme='light'] .btn-view-more {
  background: var(--bg-panel);
  border-color: var(--teal);
  color: var(--teal);
}

html[data-theme='light'] .btn-view-more:hover {
  background: rgba(15, 159, 127, 0.08);
}

html[data-theme='light'] .trust-card {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .trust-card__title,
html[data-theme='light'] .trust-card--advantages-title {
  color: var(--text);
}

html[data-theme='light'] .trust-card__text,
html[data-theme='light'] .trust-card--advantages-text {
  color: var(--text-muted);
}

html[data-theme='light'] .faq__panel {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .faq__badge {
  background: #f3f5f7;
  border-color: var(--border-soft);
  color: var(--text-dim);
}

html[data-theme='light'] .faq__title {
  color: var(--text);
}

html[data-theme='light'] .faq__item {
  background: var(--bg-elevated);
  border-color: var(--border-soft);
}

html[data-theme='light'] .faq__item:hover,
html[data-theme='light'] .faq__item.is-open {
  background: #eef1f5;
  border-color: var(--border-strong);
}

html[data-theme='light'] .faq__question {
  color: var(--text);
}

html[data-theme='light'] .faq__answer > p {
  color: var(--text-muted);
}

html[data-theme='light'] .service-detail__panel {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .service-detail__badge,
html[data-theme='light'] .service-detail__expand {
  background: var(--bg-elevated);
  border-color: var(--border-soft);
  color: var(--text-dim);
}

html[data-theme='light'] .service-detail__content h3 {
  color: var(--text);
}

html[data-theme='light'] .service-detail__content p {
  color: var(--text-muted);
}

html[data-theme='light'] .service-detail__fade {
  background: linear-gradient(180deg, transparent 0%, var(--bg-panel) 72%);
}

html[data-theme='light'] .blog__title {
  color: var(--text);
}

html[data-theme='light'] .blog__all {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  color: var(--text-dim);
}

html[data-theme='light'] .blog__all:hover {
  background: #eef1f5;
  color: var(--text);
}

html[data-theme='light'] .blog-card {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .blog-card__media {
  background: #e8ecf1;
}

html[data-theme='light'] .blog-card__name a {
  color: var(--text);
}

html[data-theme='light'] .blog-card__excerpt {
  color: var(--text-muted);
}

html[data-theme='light'] .blog-detail__related-item {
  background: #f7f9fb;
}

html[data-theme='light'] .blog-detail__related-item:hover {
  background: #ffffff;
}

html[data-theme='light'] .site-footer__nav {
  background: var(--bg-footer-nav);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .site-footer__tabs {
  border-bottom-color: var(--border-soft);
}

html[data-theme='light'] .site-footer__tab {
  color: var(--text-dim);
}

html[data-theme='light'] .site-footer__tab.is-active {
  color: var(--text);
}

html[data-theme='light'] .site-footer__tab img {
  filter: brightness(0);
  opacity: 0.45;
}

html[data-theme='light'] .site-footer__tab:hover img {
  opacity: 0.6;
}

html[data-theme='light'] .site-footer__tab.is-active img {
  filter: brightness(0);
  opacity: 0.9;
}

html[data-theme='light'] .site-footer__tab.is-active::after {
  background: var(--orange-hot);
}

html[data-theme='light'] .site-footer__links a {
  color: var(--text-dim);
}

html[data-theme='light'] .site-footer__links a:hover {
  color: var(--text);
}

html[data-theme='light'] .site-footer__social {
  background: var(--bg-panel);
  border-color: var(--border-soft);
}

html[data-theme='light'] .site-footer__social:hover {
  background: #eef1f5;
}

html[data-theme='light'] .site-footer__social svg {
  color: var(--text-muted);
}

html[data-theme='light'] .site-footer__social:hover svg {
  color: var(--text);
}

html[data-theme='light'] .site-footer__panels::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
}

html[data-theme='light'] .site-footer__more {
  background: var(--bg-elevated);
  border-color: var(--border-soft);
  color: var(--text-dim);
}

html[data-theme='light'] .site-footer__more:hover {
  background: #e8ecf1;
  color: var(--text);
}

html[data-theme='light'] .site-footer__more img {
  filter: none;
  opacity: 0.7;
}

html[data-theme='light'] .footer-contact__text strong {
  color: var(--text);
}

html[data-theme='light'] .footer-contact__text span {
  color: var(--text-dim);
}

html[data-theme='dark'] .top-bar__theme-icon--sun {
  filter: none;
}

html[data-theme='light'] .top-bar__theme-icon--moon,
.top-bar__theme-icon--moon {
  filter: none;
}

html[data-theme='light'] .brand__logo,
html[data-theme='light'] .site-footer__logo {
  filter: none;
}

html[data-theme='light'] .breadcrumb img,
html[data-theme='light'] .category-sort img {
  filter: brightness(0) saturate(100%);
  opacity: 0.4;
}

html[data-theme='light'] .category-filters,
html[data-theme='light'] .category-toolbar {
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .category-sort select {
  color: var(--text);
  background: var(--bg-input);
}

html[data-theme='light'] .category-filters-toggle {
  background: var(--bg-panel);
  color: var(--text);
}

html[data-theme='light'] .category-filters__close {
  background: var(--bg-input);
  color: var(--text-muted);
}

html[data-theme='light'] .filter-check__box {
  background: var(--bg-input);
  border-color: var(--border);
}

html[data-theme='light'] .filter-price input {
  background: var(--bg-input);
}

html[data-theme='light'] .category-toolbar__actions .featured-listings__tabs {
  background: var(--bg-elevated);
}

html[data-theme='light'] .category-content .listing-card {
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .detail-panel,
html[data-theme='light'] .seller-rail,
html[data-theme='light'] .delivery-rail {
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .deal-rail {
  background: linear-gradient(180deg, rgba(247, 105, 43, 0.1), transparent 38%), var(--bg-panel);
  border-color: rgba(247, 105, 43, 0.28);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .listing-hero-card__chips span,
html[data-theme='light'] .spec-item,
html[data-theme='light'] .deal-rail__stock,
html[data-theme='light'] .deal-rail__trust,
html[data-theme='light'] .seller-rail__stats > div,
html[data-theme='light'] .deal-offer__row input {
  background: var(--bg-input);
}

html[data-theme='light'] .spec-item__value--tags a {
  background: var(--bg-panel);
}

html[data-theme='light'] .deal-rail__buy-now,
html[data-theme='light'] .seller-rail__actions button,
html[data-theme='light'] .seller-rail__actions a {
  background: var(--bg-input);
  color: var(--text);
}

html[data-theme='light'] .deal-rail__buy-now:hover,
html[data-theme='light'] .seller-rail__actions button:hover,
html[data-theme='light'] .seller-rail__actions a:hover {
  background: #e8ecf1;
}

html[data-theme='light'] .qty {
  background: var(--bg-elevated);
}

html[data-theme='light'] .qty__btn {
  background: #e8ecf1;
  color: var(--text-dim);
}

html[data-theme='light'] .qty__btn:hover:not(:disabled) {
  background: #dde3ea;
  color: var(--text);
}

html[data-theme='light'] .qty__value {
  border-color: var(--border-soft);
  color: var(--text);
}

html[data-theme='light'] .deal-rail__trust img {
  filter: brightness(0) saturate(100%);
  opacity: 0.55;
}

html[data-theme='light'] .detail-screenshot {
  background: #e8ecf1;
}

html[data-theme='light'] .detail-media__thumbs button {
  border-color: var(--border);
}

html[data-theme='light'] .delivery-rail li::before {
  background: var(--bg-input);
}

html[data-theme='light'] .cart-item,
html[data-theme='light'] .cart-summary {
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .cart-item__media {
  background: #e8ecf1;
}

html[data-theme='light'] .cart-item__badge--timed {
  background: #e8ecf1;
  color: var(--text-muted);
}

html[data-theme='light'] .cart-summary__coupon input {
  background: var(--bg-input);
}

html[data-theme='light'] .cart-summary__coupon button {
  background: var(--bg-input);
  color: var(--text);
}

html[data-theme='light'] .cart-summary__coupon button:hover {
  background: #e8ecf1;
}

html[data-theme='light'] .cart-summary__note img {
  filter: brightness(0) saturate(100%);
  opacity: 0.45;
}

html[data-theme='light'] .auth__card {
  background: var(--bg-panel);
  box-shadow: 0 18px 48px rgba(21, 23, 24, 0.1);
}

html[data-theme='light'] .auth-field__wrap,
html[data-theme='light'] .auth-social {
  background: var(--bg-input);
}

html[data-theme='light'] .auth-social {
  color: var(--text);
}

html[data-theme='light'] .auth-social:hover {
  background: #e8ecf1;
}

html[data-theme='light'] .auth-field__wrap img,
html[data-theme='light'] .auth-field__wrap svg,
html[data-theme='light'] .auth-field__toggle svg,
html[data-theme='light'] .auth__footer img,
html[data-theme='light'] .auth__footer svg {
  filter: brightness(0) saturate(100%);
  opacity: 0.45;
}

html[data-theme='light'] .auth-remember .filter-check__box {
  background: var(--bg-input);
  border-color: var(--border);
}

html[data-theme='light'] .account-sidebar,
html[data-theme='light'] .account-nav-mobile,
html[data-theme='light'] .account-panel {
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .account-nav-mobile__toggle,
html[data-theme='light'] .account-sidebar__mobile-close {
  background: var(--bg-input);
  border-color: var(--border-soft);
}

html[data-theme='light'] .account-sidebar__user,
html[data-theme='light'] .account-nav__item:hover,
html[data-theme='light'] .settings-field input:not([type='file']),
html[data-theme='light'] .settings-field select,
html[data-theme='light'] .settings-field textarea,
html[data-theme='light'] .settings-toggle {
  background: var(--bg-input);
}

html[data-theme='light'] .settings-field input:not([type='file']),
html[data-theme='light'] .settings-field select,
html[data-theme='light'] .settings-field textarea {
  color: var(--text);
  border-color: var(--border);
}

html[data-theme='light'] .settings-btn--ghost {
  background: var(--bg-input);
  border-color: var(--border);
  color: var(--text);
}

html[data-theme='light'] .account-nav__icon {
  color: var(--text-dim);
}

html[data-theme='light'] .account-nav__item.is-active .account-nav__icon,
html[data-theme='light'] .account-nav__item.is-active {
  color: var(--orange-hot);
}

html[data-theme='light'] .account-sidebar__logout {
  color: #e07a4f;
}

html[data-theme='light'] .settings-field label,
html[data-theme='light'] .settings-field__label,
html[data-theme='light'] .filter-group__title {
  color: var(--text-muted);
}

html[data-theme='light'] .seller-card,
html[data-theme='light'] .seller-trust,
html[data-theme='light'] .seller-listings__toolbar,
html[data-theme='light'] .seller-item,
html[data-theme='light'] .seller-pagination {
  background: var(--bg-panel);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .seller-hero__banner::after {
  background: linear-gradient(180deg, rgba(243, 245, 247, 0.08), rgba(243, 245, 247, 0.94) 88%), linear-gradient(90deg, rgba(243, 245, 247, 0.5), transparent 42%);
}

html[data-theme='light'] .seller-hero__banner img {
  opacity: 0.85;
  filter: saturate(1);
}

html[data-theme='light'] .seller-hero__avatar {
  border-color: var(--bg-body);
  box-shadow: 0 10px 28px rgba(21, 23, 24, 0.12);
}

html[data-theme='light'] .seller-hero__name-row h1,
html[data-theme='light'] .seller-card__title,
html[data-theme='light'] .seller-listings__toolbar h2,
html[data-theme='light'] .seller-stats strong,
html[data-theme='light'] .seller-about__text {
  color: var(--text);
}

html[data-theme='light'] .seller-hero__meta,
html[data-theme='light'] .seller-stats span,
html[data-theme='light'] .seller-listings__toolbar h2 span {
  color: var(--text-muted);
}

html[data-theme='light'] .seller-hero__btn--ghost,
html[data-theme='light'] .seller-listings__filter,
html[data-theme='light'] .seller-pagination a,
html[data-theme='light'] .seller-pagination button {
  background: var(--bg-panel);
  border-color: var(--border);
  color: var(--text);
}

html[data-theme='light'] .seller-stats__icon,
html[data-theme='light'] .seller-about__tags span {
  background: var(--bg-input);
  border-color: var(--border-soft);
  color: var(--text-muted);
}

html[data-theme='light'] .seller-stats__bar {
  background: var(--bg-input);
}

html[data-theme='light'] .seller-page .listing-card {
  box-shadow: var(--shadow-panel);
}

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

.legal-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}

.legal-page__nav {
  position: sticky;
  top: 24px;
  padding: 14px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
}

.legal-page__nav-label {
  margin: 0 0 8px;
  padding: 0 8px 10px;
  border-bottom: 1px solid var(--border-strong);
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-page__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-page__nav a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.legal-page__nav a:hover {
  background: var(--bg-panel-soft);
  color: var(--text);
}

.legal-page__nav a.is-active {
  background: var(--orange-tint);
  color: var(--orange-tint-fg);
}

.legal-page__content {
  padding: 28px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
}

.legal-page__content h1 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-page__body {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.legal-page__body > *:first-child {
  margin-top: 0;
}

.legal-page__body > *:last-child {
  margin-bottom: 0;
}

.legal-page__body h2,
.legal-page__body h3 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
}

.legal-page__body h2:first-child,
.legal-page__body h3:first-child {
  margin-top: 0;
}

.legal-page__body p {
  margin: 0 0 12px;
}

.legal-page__body ul,
.legal-page__body ol {
  margin: 0 0 12px;
  padding-left: 1.25em;
}

.legal-page__body a {
  color: var(--orange-hot);
}

.legal-page__body blockquote {
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--orange-hot);
  color: var(--text-soft);
}

.legal-page__body .container,
.legal-page__body .row,
.legal-page__body [class*='col-'] {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: none !important;
}

.legal-page__body section.container {
  margin: 0 !important;
  padding: 0 !important;
}

.legal-page__body h1 {
  display: none;
}

.legal-page__body h5,
.legal-page__body h6,
.legal-page__body .h5,
.legal-page__body .h6 {
  margin: 20px 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.legal-page__body .h6 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}

.legal-page__body hr {
  display: none;
}

.legal-page__body .text-body-secondary {
  color: var(--text-dim) !important;
}

.legal-page__body .table-responsive {
  overflow-x: auto;
  margin: 0 0 16px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}

.legal-page__body table.table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 13px;
  background: transparent;
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
  --bs-table-color: var(--text-soft);
  --bs-table-border-color: var(--border-soft);
}

.legal-page__body table.table th,
.legal-page__body table.table td {
  padding: 10px 12px;
  border: 1px solid var(--border-soft) !important;
  vertical-align: top;
  color: var(--text-soft);
}

.legal-page__body table.table th,
.legal-page__body table.table td b,
.legal-page__body table.table td strong {
  color: var(--text);
}

.legal-page__body table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(255, 255, 255, 0.02);
}

.legal-page__section + .legal-page__section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border-strong);
}

.legal-page__section h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
}

.legal-page__section p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .legal-page__nav {
    position: static;
  }
  .legal-page__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .legal-page__content {
    padding: 22px 18px;
  }
  .legal-page__content h1 {
    font-size: 24px;
  }
}

html[data-theme='light'] .legal-page__nav,
html[data-theme='light'] .legal-page__content {
  background: #ffffff;
  border-color: var(--border-soft);
  box-shadow: var(--shadow-panel);
}

html[data-theme='light'] .legal-page__nav-label,
html[data-theme='light'] .legal-page__section + .legal-page__section {
  border-color: var(--border-soft);
}

html[data-theme='light'] .legal-page__nav a.is-active {
  background: #fff0e8;
  color: #d95018;
}

.account-section-title--plain {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.account-section-title--plain h1 {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

.settings-field__hint,
.settings-field__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.settings-field__hint {
  color: var(--text-dim);
}

.settings-field__error {
  color: var(--red);
}

.account-nav__subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.icon-btn--sales span {
  position: relative;
  display: inline-flex;
}

.buyer-request-panel .account-section-title {
  margin-bottom: 18px;
}

.buyer-request-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.buyer-request-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.buyer-request-path span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
}

.buyer-request-path em {
  font-style: normal;
  color: var(--text-dim);
}

.buyer-request-note {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--blue) 10%, var(--bg-elevated));
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--border-soft));
}

.buyer-request-note--soft {
  background: color-mix(in srgb, var(--orange-hot) 10%, var(--bg-elevated));
  border-color: color-mix(in srgb, var(--orange-hot) 24%, var(--border-soft));
}

.buyer-request-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.buyer-request-note li + li {
  margin-top: 6px;
}

.buyer-request-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.buyer-request-note strong {
  color: var(--text);
  font-weight: 700;
}

.buyer-request-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.buyer-request-cat {
  min-width: 0;
}

.buyer-request-cat__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 148px;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text);
  text-align: left;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.buyer-request-cat__card:hover {
  border-color: color-mix(in srgb, var(--cat-color, var(--orange-hot)) 45%, var(--border-soft));
  background: color-mix(in srgb, var(--cat-color, var(--orange-hot)) 8%, var(--bg-elevated));
  transform: translateY(-1px);
}

.buyer-request-cat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--cat-color, var(--orange-hot)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color, var(--orange-hot)) 28%, transparent);
  color: var(--cat-color, var(--orange-hot));
}

.buyer-request-cat__icon .cat-icon,
.buyer-request-cat__icon img,
.buyer-request-cat__icon i,
.buyer-request-cat__icon svg {
  width: 22px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
}

.buyer-request-cat__card strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.buyer-request-cat__card > span:last-child {
  margin-top: auto;
  color: var(--orange-hot);
  font-size: 12px;
  font-weight: 700;
}

.buyer-request-form-card {
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.buyer-request-form-card .settings-form {
  padding-top: 4px;
}

.buyer-request-counter {
  color: var(--text-dim);
  font-size: 12px;
}

.buyer-request-counter strong {
  color: var(--text-soft);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .buyer-request-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .buyer-request-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buyer-request-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .buyer-request-form-card {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .buyer-request-cats {
    grid-template-columns: 1fr;
  }
  .buyer-request-cat__card {
    min-height: 120px;
  }
}

html[data-theme='light'] .buyer-request-note {
  background: color-mix(in srgb, var(--blue) 8%, #ffffff);
}

html[data-theme='light'] .buyer-request-note--soft {
  background: color-mix(in srgb, var(--orange-hot) 8%, #ffffff);
}

html[data-theme='light'] .buyer-request-form-card,
html[data-theme='light'] .buyer-request-cat__card {
  background: #ffffff;
}

.buyer-campaign-form {
  margin-bottom: 18px;
}

.hdr-nav-builder {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text);
}

.hdr-nav-builder__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-panel);
}

.hdr-nav-builder__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hdr-nav-builder__title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hdr-nav-builder__desc {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hdr-nav-builder__stats {
  display: flex;
  gap: 10px;
}

.hdr-nav-builder__stat {
  min-width: 84px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-panel-soft);
  text-align: center;
}

.hdr-nav-builder__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--orange-hot);
}

.hdr-nav-builder__stat span {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hdr-nav-builder__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

@media (max-width: 991.98px) {
  .hdr-nav-builder__grid {
    grid-template-columns: 1fr;
  }
}

.hdr-nav-panel {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-panel);
  overflow: hidden;
}

.hdr-nav-panel--active {
  box-shadow: var(--shadow-panel);
}

.hdr-nav-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.hdr-nav-panel__head strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.hdr-nav-panel__head small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hdr-nav-panel__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--orange-tint-border);
  background: var(--orange-tint-chip);
  color: var(--orange-tint-fg);
  font-size: 0.75rem;
  font-weight: 700;
}

.hdr-nav-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 220px);
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-input);
  color: var(--text-muted);
}

.hdr-nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
}

.hdr-nav-search input::placeholder {
  color: var(--text-dim);
}

.hdr-nav-panel__body {
  position: relative;
  flex: 1;
  padding: 12px;
  background: var(--bg-panel);
}

.hdr-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 280px;
}

.hdr-nav-item {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-panel-soft);
  color: var(--text);
  text-align: left;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.hdr-nav-item:hover {
  border-color: var(--orange-tint-border);
  background: var(--bg-elevated);
}

.hdr-nav-item--pool {
  grid-template-columns: auto 1fr auto;
  cursor: pointer;
}

.hdr-nav-item--pool:hover {
  background: var(--orange-tint-chip);
}

.hdr-nav-item--ghost {
  opacity: 0.5;
  border-style: dashed;
  border-color: var(--orange-tint-border);
  background: var(--orange-tint-chip);
}

.hdr-nav-item--chosen {
  border-color: var(--orange-hot);
  box-shadow: var(--shadow-panel);
}

.hdr-nav-item--drag {
  opacity: 1;
  cursor: grabbing;
}

.hdr-nav-item__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--text-dim);
  cursor: grab;
  user-select: none;
}

.hdr-nav-item__handle:hover {
  background: var(--bg-input);
  color: var(--text);
}

.hdr-nav-item__handle:active {
  cursor: grabbing;
}

.hdr-nav-item__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid var(--orange-tint-border);
  background: var(--orange-tint-chip);
  color: var(--orange-tint-fg);
  font-size: 0.78rem;
  font-weight: 800;
}

.hdr-nav-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-input);
  color: var(--orange-hot);
  font-size: 1rem;
}

.hdr-nav-item__fallback {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.hdr-nav-item__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hdr-nav-item__meta strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.hdr-nav-item__meta small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.hdr-nav-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-btn);
  color: var(--text-muted);
  transition: 0.15s ease;
}

.hdr-nav-item__action--remove:hover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.12);
  color: var(--red);
}

.hdr-nav-item__add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--orange-tint-border);
  background: var(--orange-tint-chip);
  color: var(--orange-tint-fg);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.hdr-nav-empty {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px dashed var(--border-strong);
  border-radius: 14px;
  background: var(--bg-elevated);
  color: var(--text);
  text-align: center;
  padding: 24px;
  pointer-events: none;
}

.hdr-nav-empty strong {
  color: var(--text);
  font-size: 0.95rem;
}

.hdr-nav-empty span {
  max-width: 240px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hdr-nav-builder__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.hdr-nav-builder__tip {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hdr-nav-builder__save {
  min-width: 220px;
}

.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 1;
}

.cat-icon__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-icon--font i {
  line-height: 1;
}

.cat-icon-field__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-panel-soft);
  overflow: hidden;
}

.cat-icon-field__thumb img,
.cat-icon-field__svg-preview img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cat-icon-field__svg-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-panel-soft);
  padding: 6px;
}

/* Reklam ve üyelik paketleri */
.promo-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.promo-page--guest {
  max-width: 960px;
  margin: 0 auto;
}

.promo-hero {
  padding: 24px 26px;
}

.promo-panel + .promo-panel {
  margin-top: 0;
}

.promo-membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promo-membership-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.promo-membership-card:hover {
  border-color: color-mix(in srgb, var(--pkg-color, var(--orange-hot)) 40%, var(--border-soft));
  background: color-mix(in srgb, var(--pkg-color, var(--orange-hot)) 6%, var(--bg-elevated));
  transform: translateY(-1px);
}

.promo-membership-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-membership-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--pkg-color, var(--orange-hot)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--pkg-color, var(--orange-hot)) 28%, transparent);
  color: var(--pkg-color, var(--orange-hot));
}

.promo-membership-card__icon .cat-icon,
.promo-membership-card__icon img,
.promo-membership-card__icon i,
.promo-membership-card__icon svg {
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 1;
}

.promo-membership-card__title {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.promo-membership-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-membership-card__btn {
  width: 100%;
  gap: 8px;
}

.promo-field-label {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.promo-select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}

.promo-select:focus {
  outline: none;
  border-color: var(--orange-tint-border);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange-hot) 18%, transparent);
}

.promo-package__detail {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.promo-package__detail ul {
  margin: 0;
  padding-left: 18px;
}

.promo-package__detail li + li {
  margin-top: 4px;
}

.promo-package__detail p {
  margin: 0 0 8px;
}

.promo-package__detail p:last-child {
  margin-bottom: 0;
}

.promo-package__detail strong {
  color: var(--text);
  font-weight: 700;
}

.promo-rules {
  margin-bottom: 0;
}

.promo-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.promo-contact p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.promo-contact strong {
  color: var(--text);
  font-weight: 700;
}

.promo-btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: #16a34a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.promo-btn--whatsapp:hover {
  background: #15803d;
  color: #ffffff;
}

.promo-banner-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-banner-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.promo-banner-card__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.promo-banner-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--pkg-color, var(--blue)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--pkg-color, var(--blue)) 28%, transparent);
  color: var(--pkg-color, var(--blue));
}

.promo-banner-card__icon .cat-icon,
.promo-banner-card__icon img,
.promo-banner-card__icon i,
.promo-banner-card__icon svg {
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 1;
}

.promo-banner-card__title {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.promo-banner-card__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-banner-card__btn {
  width: 100%;
  gap: 8px;
}

.promo-banner-card__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.promo-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 12%, var(--bg-panel));
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--border-soft));
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.promo-stock strong {
  color: var(--text);
  font-weight: 700;
}

.promo-stock.is-low {
  background: color-mix(in srgb, var(--orange-hot) 12%, var(--bg-panel));
  border-color: color-mix(in srgb, var(--orange-hot) 28%, var(--border-soft));
  color: var(--orange-tint-fg);
}

.promo-stock.is-empty {
  background: color-mix(in srgb, var(--red) 12%, var(--bg-panel));
  border-color: color-mix(in srgb, var(--red) 28%, var(--border-soft));
  color: var(--red);
}

.promo-banner-card__body {
  min-width: 0;
  padding-top: 4px;
}

@media (max-width: 900px) {
  .promo-banner-card {
    grid-template-columns: 1fr;
  }

  .promo-membership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .promo-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-btn--whatsapp {
    width: 100%;
    justify-content: center;
  }
}

html[data-theme='light'] .promo-membership-card,
html[data-theme='light'] .promo-banner-card,
html[data-theme='light'] .promo-contact {
  background: #ffffff;
}

html[data-theme='light'] .promo-select {
  background-color: #ffffff;
}

/* ——— Mesajlar ——— */
.messages-page {
  padding-bottom: 48px;
}

.messages-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: min(760px, calc(100dvh - 200px));
}

.messages-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
}

.messages-card__head h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.messages-card__head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.messages-card__badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.messages-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  flex: 1;
  min-height: 420px;
  max-height: min(640px, calc(100dvh - 280px));
}

/* Sohbet listesi dar ekranlarda çekmeceye dönüşür; geniş ekranda bu parçalar gizli */
.messages-shell__backdrop,
.messages-sidebar__mobile-head,
.messages-chat__threads-toggle {
  display: none;
}

.messages-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-soft);
  background: var(--bg-panel);
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.messages-sidebar__search {
  padding: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.messages-sidebar__search input {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--bg-input);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.messages-sidebar__search input:focus {
  outline: none;
  border-color: var(--orange-hot);
}

.messages-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  overflow: auto;
  flex: 1;
}

.messages-sidebar__empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.messages-thread__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: background 0.15s ease;
}

.messages-thread__btn:hover,
.messages-thread.is-active .messages-thread__btn {
  background: var(--bg-elevated);
}

.messages-thread.is-active .messages-thread__btn {
  box-shadow: inset 3px 0 0 var(--orange-hot);
}

.messages-thread.is-blocked .messages-thread__btn {
  opacity: 0.55;
}

.messages-thread__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-hot);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}

.messages-thread__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.messages-thread__body {
  flex: 1;
  min-width: 0;
}

.messages-thread__body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messages-thread__body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messages-thread__badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--orange-hot);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.messages-chat {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  background: var(--bg-panel-soft);
}

.messages-chat__empty {
  flex: 1;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px 28px;
  color: var(--text-dim);
}

.messages-chat__empty strong {
  font-size: 18px;
  color: var(--text);
}

.messages-chat__empty p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}

.messages-chat__empty-icon {
  margin: 0 auto 4px;
  color: var(--orange-hot);
  opacity: 0.9;
}

.messages-chat__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.messages-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-panel);
  flex-shrink: 0;
}

.messages-chat__partner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.messages-chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-hot);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}

.messages-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.messages-chat__partner-meta {
  min-width: 0;
}

.messages-chat__partner-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.messages-chat__partner-meta span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.messages-chat__partner-meta .is-online {
  color: var(--green);
  font-weight: 500;
}

.messages-chat__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.messages-chat__sms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 8px 0 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--orange-hot) 38%, var(--border-soft));
  background: color-mix(in srgb, var(--orange-hot) 12%, var(--bg-panel));
  color: var(--orange-hot);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}

.messages-chat__sms:hover {
  border-color: var(--orange-hot);
  background: color-mix(in srgb, var(--orange-hot) 20%, var(--bg-panel));
  color: var(--orange-hot);
}

.messages-chat__sms:disabled,
.messages-menu__dropdown button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.messages-chat__sms i {
  font-size: 16px;
}

.messages-chat__sms-price {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--orange-hot);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

html[data-theme='dark'] .messages-chat__sms {
  border-color: color-mix(in srgb, var(--orange-hot) 46%, var(--border));
  background: color-mix(in srgb, var(--orange-hot) 16%, var(--bg-elevated));
  color: #ff8d52;
}

html[data-theme='dark'] .messages-chat__sms:hover {
  border-color: #ff8d52;
  background: color-mix(in srgb, var(--orange-hot) 26%, var(--bg-elevated));
  color: #ffb07a;
}

html[data-theme='dark'] .messages-chat__sms-price {
  background: #f7692b;
  color: #fff;
}

.auto-stock-box__content {
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--bg-panel);
  color: var(--text);
}

html[data-theme='light'] .auto-stock-box__content {
  background: #fff;
}

html[data-theme='dark'] .auto-stock-box__content {
  background: color-mix(in srgb, var(--bg-elevated) 88%, #000);
  border-color: color-mix(in srgb, var(--border) 80%, #fff 8%);
}

.messages-sms-result {
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.messages-sms-result.is-success {
  border-color: var(--green);
  color: var(--green);
}

.messages-sms-result.is-error {
  border-color: var(--red);
  color: var(--red);
}

.messages-menu {
  position: relative;
  flex-shrink: 0;
}

.messages-menu__toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.messages-menu__toggle:hover {
  border-color: var(--orange-hot);
  color: var(--orange-hot);
}

.messages-menu__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-panel);
  z-index: 30;
  padding: 6px;
}

.messages-menu__dropdown button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.messages-menu__dropdown button:hover {
  background: var(--bg-elevated);
}

.messages-chat__staff,
.messages-chat__listing {
  margin: 12px 16px 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
  flex-shrink: 0;
}

.messages-chat__staff {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.messages-chat__listing {
  background: rgba(56, 189, 248, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.messages-chat__listing a {
  color: var(--blue);
  font-weight: 600;
}

.messages-chat__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background: linear-gradient(180deg, var(--bg-panel-soft) 0%, var(--bg-panel) 100%);
}

.messages-chat__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: min-content;
}

.message-bubble {
  display: flex;
  gap: 10px;
  max-width: min(78%, 560px);
}

.message-bubble.is-mine {
  margin-left: auto;
  flex-direction: row-reverse;
}

.message-bubble__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
  color: var(--text-muted);
}

.message-bubble__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-bubble__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.message-bubble__box {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--text);
}

.message-bubble:not(.is-mine) .message-bubble__box {
  background: var(--bg-input);
  border: 1px solid var(--border-soft);
  border-bottom-left-radius: 4px;
}

.message-bubble.is-mine .message-bubble__box {
  background: rgba(247, 105, 43, 0.15);
  border: 1px solid rgba(247, 105, 43, 0.35);
  border-bottom-right-radius: 4px;
}

.message-bubble.is-deleted .message-bubble__box {
  font-style: italic;
  opacity: 0.75;
}

.message-bubble__listing {
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-dim);
}

.message-bubble__listing a {
  color: var(--blue);
}

.message-bubble__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.message-bubble__attachment img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}

.message-bubble__attachment-file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text);
  text-decoration: none;
}

.message-bubble__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  padding: 0 4px;
}

.message-bubble.is-mine .message-bubble__meta {
  justify-content: flex-end;
}

.message-bubble__read.is-read {
  color: var(--green);
}

.message-bubble__read.is-unread {
  color: var(--red);
}

.messages-compose__blocked {
  margin: 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--red);
  font-size: 13px;
  line-height: 1.45;
  flex-shrink: 0;
}

.messages-compose {
  border-top: 1px solid var(--border-soft);
  padding: 14px 16px 16px;
  background: var(--bg-panel);
  flex-shrink: 0;
}

.messages-compose__row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.messages-compose__attach {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.messages-compose__attach:hover {
  border-color: var(--orange-hot);
  color: var(--orange-hot);
}

.messages-compose textarea {
  flex: 1;
  min-height: 44px;
  max-height: 140px;
  resize: none;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 11px 14px;
  background: var(--bg-input);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
}

.messages-compose textarea:focus {
  outline: none;
  border-color: var(--orange-hot);
}

.messages-compose textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.messages-compose__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 108px;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--orange-hot);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    opacity 0.15s ease,
    transform 0.1s ease;
}

.messages-compose__send:hover:not(:disabled) {
  filter: brightness(1.06);
}

.messages-compose__send:active:not(:disabled) {
  transform: scale(0.98);
}

.messages-compose__send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.messages-compose__send svg {
  flex-shrink: 0;
}

.messages-compose__hint,
.messages-compose__error {
  margin: 8px 0 0;
  font-size: 12px;
}

.messages-compose__hint {
  color: var(--text-dim);
}

.messages-compose__error {
  color: var(--red);
}

.messages-compose__files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.messages-compose__file-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-muted);
}

.messages-compose__file-chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1;
}

.messages-thread form {
  display: block;
  margin: 0;
}

.messages-compose__file-count {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  padding: 4px 2px 0;
}

.messages-sidebar__list,
.messages-chat__body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.messages-page .messages-chat__empty .settings-btn {
  margin-top: 8px;
}

/* ——— Mesajlar: dar ekran ———
   Sohbet, kalan ekranı dolduran bir uygulama kabuğu olur. Site alt bilgisi,
   kategori şeridi ve arama alanı gizlenir; yazma alanı her zaman görünür. */
@media (max-width: 900px) {
  body.is-messages-page .top-bar,
  body.is-messages-page .nav-bar,
  body.is-messages-page .site-footer {
    display: none !important;
  }

  body.is-messages-page .search {
    display: none;
  }

  body.is-messages-page .main-header__inner {
    flex-wrap: nowrap;
    min-height: 56px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body.is-messages-page {
    padding-bottom: 0;
  }

  body.is-messages-app {
    display: flex;
    flex-direction: column;
    height: var(--messages-vvh, 100dvh);
    overflow: hidden;
    overscroll-behavior: none;
  }

  html:has(body.is-messages-app) {
    height: 100%;
    overflow: hidden;
  }

  body.is-messages-app .site-header {
    flex-shrink: 0;
  }

  body.is-messages-app .messages-page {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  body.is-messages-app .messages-page .container {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  body.is-messages-page:not(.is-messages-app) .messages-page {
    padding: 16px 12px 24px;
    min-height: calc(var(--messages-vvh, 100dvh) - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .messages-card[data-messages-app] {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  body.is-messages-app .messages-card__head {
    display: none;
  }

  .messages-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  /* Liste, sohbetin üzerine soldan kayan bir çekmece olur */
  .messages-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: min(88%, 320px);
    max-height: none;
    border-right: 1px solid var(--border-soft);
    border-bottom: 0;
    box-shadow: var(--shadow-panel);
    transform: translateX(-100%);
    visibility: hidden;
    transition:
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .messages-shell.is-threads-open .messages-sidebar {
    transform: none;
    visibility: visible;
  }

  .messages-shell__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 15;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .messages-shell.is-threads-open .messages-shell__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .messages-sidebar__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid var(--border-soft);
  }

  .messages-sidebar__mobile-head strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
  }

  .messages-sidebar__close {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--bg-elevated);
    color: var(--text-muted);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .messages-chat {
    min-height: 0;
    height: 100%;
  }

  .messages-chat__panel {
    height: 100%;
  }

  /* Çekmeceyi açan buton, sohbet başlığının en solunda */
  .messages-chat__threads-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
  }

  .messages-chat__threads-toggle:hover {
    border-color: var(--orange-hot);
    color: var(--orange-hot);
  }

  .messages-chat__threads-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--orange-hot);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
}

/* ——— Mesajlar: telefon ——— */
@media (max-width: 767.98px) {
  /* Tabbar gövde padding'ini geri ver (900px kuralı 0 yapmıştı) */
  body.is-messages-page,
  body.is-messages-app {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  body.is-messages-app .messages-page {
    padding: 0;
  }

  .messages-page {
    padding-bottom: 24px;
  }

  .messages-card__head {
    padding: 14px 16px;
  }

  .messages-card__head h1 {
    font-size: 18px;
  }

  .messages-card__head p {
    display: none;
  }

  .messages-card__badge {
    padding: 5px 10px;
    font-size: 11px;
  }

  .messages-chat__head {
    gap: 8px;
    padding: 10px 12px;
  }

  .messages-chat__partner {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .messages-chat__avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  /* SMS butonu menüde duruyor, başlıkta yer kaplamasın */
  .messages-chat__sms {
    display: none;
  }

  .messages-chat__body {
    padding: 12px;
  }

  .messages-chat__staff,
  .messages-chat__listing {
    padding: 8px 12px;
    font-size: 12px;
  }

  .message-bubble {
    max-width: 88%;
    gap: 8px;
  }

  .message-bubble__box {
    padding: 9px 12px;
    font-size: 14px;
  }

  .message-bubble__avatar {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .messages-compose {
    padding: 10px 12px 12px;
  }

  .messages-compose__row {
    gap: 8px;
  }

  .messages-compose__attach {
    width: 44px;
    height: 44px;
  }

  .messages-compose textarea {
    font-size: 16px;
    min-height: 44px;
    max-height: 120px;
  }

  .messages-compose__hint-desktop {
    display: none;
  }

  body.is-messages-app .messages-compose__hint {
    display: none;
  }

  .messages-compose__hint {
    margin-top: 6px;
    font-size: 11px;
  }

  .messages-menu__dropdown {
    z-index: 40;
    min-width: min(220px, calc(100vw - 24px));
  }
}

@media (max-width: 480px) {
  .messages-compose__send-text {
    display: none;
  }

  .messages-compose__send {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .message-bubble {
    max-width: 92%;
  }

  .message-bubble__attachment img {
    width: 92px;
    height: 92px;
  }
}

.hero-ad-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-ad-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.hero-ad-stat span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.hero-ad-stat strong {
  color: var(--text);
  font-size: 18px;
}

.hero-ad-login {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.hero-ad-login p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-ad-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-ad-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-ad-type input,
.hero-ad-listing input,
.hero-ad-pkg input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-ad-type,
.hero-ad-listing,
.hero-ad-pkg {
  position: relative;
  display: block;
  cursor: pointer;
}

.hero-ad-type__card,
.hero-ad-listing__card,
.hero-ad-pkg__card {
  display: flex;
  gap: 12px;
  min-height: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.hero-ad-type__card {
  flex-direction: column;
}

.hero-ad-type__card i {
  font-size: 22px;
  color: var(--orange-hot);
}

.hero-ad-type__card strong,
.hero-ad-listing__meta strong,
.hero-ad-pkg__card strong {
  color: var(--text);
  font-size: 15px;
}

.hero-ad-type__card small,
.hero-ad-listing__meta small,
.hero-ad-profile small {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
}

.hero-ad-type input:checked + .hero-ad-type__card,
.hero-ad-listing input:checked + .hero-ad-listing__card,
.hero-ad-pkg input:checked + .hero-ad-pkg__card {
  border-color: var(--orange-hot);
  background: color-mix(in srgb, var(--orange-hot) 8%, var(--bg-elevated));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange-hot) 16%, transparent);
}

.hero-ad-block h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.hero-ad-listings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 360px;
  overflow: auto;
}

.hero-ad-listing__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-panel);
  color: var(--text-dim);
}

.hero-ad-listing__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ad-listing__meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.hero-ad-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.hero-ad-profile img,
.hero-ad-profile__fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-ad-profile__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-hot);
  color: #fff;
  font-weight: 700;
}

.hero-ad-profile div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-ad-pkgs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-ad-pkg__card {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-ad-pkg__card span {
  color: var(--orange-hot);
  font-size: 18px;
  font-weight: 700;
}

.hero-ad-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.hero-ad-pay small {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
}

.hero-ad-pay strong {
  color: var(--text);
  font-size: 22px;
}

.hero-ad-empty {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

.hero-ad-table-wrap {
  overflow-x: auto;
}

.hero-ad-table {
  width: 100%;
  border-collapse: collapse;
}

.hero-ad-table th,
.hero-ad-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 13px;
  text-align: left;
}

.hero-ad-table th {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.hero-ad-status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.hero-ad-status.is-on {
  background: color-mix(in srgb, #16a34a 16%, transparent);
  color: #16a34a;
}

.hero-ad-hint {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.hero-ad-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.hero-ad-field span {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.hero-ad-field input,
.hero-ad-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-panel);
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.hero-ad-field textarea {
  min-height: 88px;
  resize: vertical;
}

/* ---------- Mobil alt menü (tabbar) ---------- */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: color-mix(in srgb, var(--bg-panel) 88%, transparent);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -10px 28px rgba(21, 23, 24, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-tabbar__inner {
  display: flex;
  align-items: stretch;
  gap: 2px;
  min-height: 60px;
  padding: 4px 6px 6px;
}

.mobile-tabbar__item {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  min-height: 52px;
  padding: 6px 2px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-tabbar__item:hover,
.mobile-tabbar__item:focus-visible {
  color: var(--orange-hot);
  background: color-mix(in srgb, var(--orange-hot) 10%, transparent);
  outline: none;
}

.mobile-tabbar__item:active {
  color: var(--orange-hot);
  background: color-mix(in srgb, var(--orange-hot) 14%, transparent);
  transform: translateY(0.5px);
}

.mobile-tabbar__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  line-height: 1;
}

.mobile-tabbar__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-tabbar__label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.mobile-tabbar__badge {
  position: absolute;
  top: -5px;
  right: -9px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 1.5px solid var(--bg-panel);
  border-radius: 999px;
  background: var(--orange-hot);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--orange-hot) 35%, transparent);
}

.mobile-tabbar__badge--cart {
  background: var(--teal);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--teal) 35%, transparent);
}

.mobile-tabbar__badge[hidden] {
  display: none !important;
}

html[data-theme='dark'] .mobile-tabbar {
  background: color-mix(in srgb, var(--bg-panel) 82%, transparent);
  border-top-color: var(--border);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.45);
}

html[data-theme='dark'] .mobile-tabbar__item {
  color: var(--text-muted);
}

html[data-theme='dark'] .mobile-tabbar__item:hover,
html[data-theme='dark'] .mobile-tabbar__item:focus-visible,
html[data-theme='dark'] .mobile-tabbar__item:active {
  color: #ff8d52;
  background: color-mix(in srgb, var(--orange-hot) 16%, transparent);
}

html[data-theme='dark'] .mobile-tabbar__badge {
  border-color: var(--bg-panel);
}

html[data-theme='light'] .mobile-tabbar {
  background: color-mix(in srgb, #ffffff 90%, transparent);
  box-shadow: 0 -8px 24px rgba(21, 23, 24, 0.1);
}

@media (min-width: 768px) {
  .mobile-tabbar {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .mobile-tabbar {
    display: block;
  }
}

.hero-ad-field input:focus,
.hero-ad-field textarea:focus {
  outline: none;
  border-color: var(--orange-hot);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange-hot) 18%, transparent);
}

.hero-ad-field small {
  color: var(--text-dim);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 700px) {
  .hero-ad-types,
  .hero-ad-listings,
  .hero-ad-pkgs {
    grid-template-columns: 1fr;
  }
}
