:root {
  --blue: #268bf3;
  --blue-dark: #167ee9;
  --ink: #202838;
  --muted: #8b96ab;
  --line: #e7ebf2;
  --page: #f6f7f9;
  --soft: #f1f3f7;
  --green: #39a22e;
  --page-gutter: 70px;
  --layout-width: calc(100vw - var(--page-gutter) - var(--page-gutter));
  --layout-scale: calc(var(--layout-width) / 1298px);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --focus-ring: 0 0 0 4px rgba(38, 139, 243, 0.18);
  --hover-shadow: 0 16px 34px rgba(23, 31, 45, 0.12);
  --blue-shadow: 0 10px 22px rgba(38, 139, 243, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: #fff;
}

body {
  margin: 0;
  min-width: 1180px;
  background: #fff;
  color: var(--ink);
  font-family: "Montserrat", "SF Pro Display", "SF Pro Text", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

body.preloader-active {
  overflow: hidden;
}

.page-preloader {
  --preloader-dot: #a9cff7;
  --preloader-dot-active: #268bf3;
  --preloader-text: #268bf3;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.page-preloader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.preloader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 28px;
}

.preloader-dots span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--preloader-dot);
  transform: scale(1);
  opacity: 0.78;
  animation: preloader-dot-cycle 1.15s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  will-change: transform, opacity, background-color;
}

.preloader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.preloader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.preloader-text {
  color: var(--preloader-text);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  animation: preloader-text-breathe 1.15s ease-in-out infinite;
}

@keyframes preloader-dot-cycle {
  0% {
    background: var(--preloader-dot);
    opacity: 0.72;
    transform: scale(1);
  }

  15% {
    background: var(--preloader-dot-active);
    opacity: 1;
    transform: scale(1.45);
  }

  31% {
    background: var(--preloader-dot-active);
    opacity: 1;
    transform: scale(1.45);
  }

  100% {
    background: var(--preloader-dot);
    opacity: 0.72;
    transform: scale(1);
  }
}

@keyframes preloader-text-breathe {
  0%,
  100% {
    opacity: 0.72;
  }

  45% {
    opacity: 1;
  }
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(38, 139, 243, 0.42);
  outline-offset: 3px;
}

img {
  display: block;
}

.shell {
  width: 1298px;
  margin-inline: auto;
  zoom: var(--layout-scale);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  margin-inline: auto;
  height: calc(var(--layout-width) / 13.2449);
  background: #fff;
  border-bottom: 1px solid #edf0f5;
}

main {
  width: 100%;
  min-height: calc(100vh - (var(--layout-width) / 13.2449));
  margin-inline: auto;
  padding-top: calc(var(--layout-width) / 72.1111);
  padding-bottom: calc(var(--layout-width) / 46.3571);
  background: #fff;
}

.header-inner {
  height: 98px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo-link {
  width: 138px;
  height: 48px;
  flex: 0 0 auto;
}

.logo-link img,
.site-footer .footer-top img {
  width: 138px;
  height: 48px;
  object-fit: contain;
}

.logo-link img {
  transition: transform 0.24s var(--ease-out), filter 0.24s ease;
}

.logo-link:hover img {
  transform: scale(1.02);
}

.theme-switch {
  width: 24px;
  height: 48px;
  margin-left: -7px;
  border-radius: 13px;
  background: #edf3fb;
  padding: 2px;
  display: grid;
  gap: 2px;
}

.theme-btn {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
}

.theme-btn:hover:not(.is-active) {
  background: rgba(38, 139, 243, 0.12);
}

.theme-btn.is-active {
  background: var(--blue);
}

.theme-btn img {
  width: 12px;
  height: 12px;
}

.theme-btn.is-active img {
  filter: brightness(0) invert(1);
}

.catalog-btn {
  height: 48px;
  min-width: 130px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(38, 139, 243, 0.2);
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-btn img {
  width: 20px;
  height: 20px;
}

.search-form {
  position: relative;
  height: 48px;
  flex: 1 1 auto;
  min-width: 530px;
  margin-left: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  transition: box-shadow 0.2s ease, background-color 0.36s ease;
}

.search-form::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 54px;
  bottom: 2px;
  left: 2px;
  border-radius: 8px 14px 14px 8px;
  background: #fff;
  z-index: 0;
}

.search-form input {
  position: relative;
  z-index: 1;
  appearance: none;
  height: 100%;
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}

.search-form input::placeholder {
  color: #8b96ab;
}

.search-form:focus-within {
  box-shadow: var(--focus-ring);
}

.search-form input:focus-visible,
.form-field input:focus-visible,
.amount-control input:focus-visible {
  outline: 0;
}

.search-favorite {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin-right: 9px;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef2f7;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.search-favorite img {
  width: 14px;
  height: 13px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s ease, filter 0.2s ease;
}

.search-submit {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 48px;
  border: 0;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease;
}

.search-submit svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s var(--ease-out);
}

.bonus-btn {
  width: 60px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
}

.bonus-btn img {
  width: 60px;
  height: 44px;
  transition: transform 0.22s var(--ease-out), filter 0.22s ease;
}

.profile-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: #f0f3f8;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-btn img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s ease, filter 0.2s ease;
}

.catalog-btn:hover,
.pay-btn:hover,
.side-card button:hover,
.product-body button:hover {
  background: var(--blue-dark);
  box-shadow: var(--blue-shadow);
}

.search-submit:hover {
  background: var(--blue-dark);
}

.search-submit:hover svg {
  transform: scale(1.08);
}

.search-favorite:hover,
.profile-btn:hover {
  background: #e4ebf5;
  box-shadow: 0 8px 18px rgba(23, 31, 45, 0.1);
}

.search-favorite:hover img,
.profile-btn:hover img {
  transform: scale(1.08);
}

.bonus-btn:hover img {
  transform: translateY(-2px) rotate(-3deg);
}

.catalog-btn:active,
.search-submit:active,
.search-favorite:active,
.bonus-btn:active,
.profile-btn:active,
.pay-btn:active,
.side-card button:active,
.product-body button:active,
.promo-inside:active,
.promo-small:active,
.chip:active,
.show-all:active {
  transform: translateY(0) scale(0.98);
}

.hero-section {
  position: relative;
  height: 284px;
  margin-top: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18, 47, 86, 0.08);
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.7s var(--ease-out), filter 0.35s ease;
  will-change: transform;
}

.hero-section:hover .hero-img {
  filter: saturate(1.04);
}

.hero-arrows {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 126px;
  height: 56px;
  border: 2px solid #e5e9f1;
  border-radius: 999px;
  background: #f7f8fa;
  z-index: 2;
  box-shadow: 0 10px 22px rgba(23, 31, 45, 0.08);
}

.hero-arrows button {
  position: absolute;
  top: 0;
  width: 61px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #141923;
  padding: 0;
  z-index: 2;
  transition: transform 0.2s var(--ease-out), color 0.2s ease;
}

.hero-arrows button:first-of-type {
  left: 0;
}

.hero-arrows button:last-of-type {
  right: 0;
}

.hero-arrows svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s var(--ease-out);
}

.hero-arrows path {
  stroke-width: 2.8;
}

.hero-arrows button:hover {
  color: var(--blue);
  transform: scale(1.06);
}

.hero-arrows button:first-of-type:hover svg {
  transform: translateX(-2px);
}

.hero-arrows button:last-of-type:hover svg {
  transform: translateX(2px);
}

.hero-dots {
  position: absolute;
  right: 17px;
  bottom: 13px;
  display: flex;
  gap: 9px;
}

.hero-dots span {
  width: 33px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.24s var(--ease-out), background-color 0.24s ease;
}

.hero-dots span:first-child {
  background: #fff;
}

.hero-dots span:nth-child(n + 4) {
  display: none;
}

.services-card {
  height: 274px;
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(25, 35, 55, 0.06);
  padding: 24px 21px 24px;
}

.services-row {
  height: 134px;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  column-gap: 23px;
  border-bottom: 1px solid var(--line);
}

.service-item {
  min-width: 0;
  height: 116px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #333842;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.16s ease;
}

.service-item img {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(32, 40, 56, 0.12);
  outline: 0 solid transparent;
  outline-offset: 0;
  transition: outline-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out), filter 0.2s ease;
}

.service-item span {
  max-width: 98px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-item:hover,
.service-item.is-active {
  color: var(--blue);
}

.service-item:hover img,
.service-item.is-active img {
  outline: 3px solid var(--blue);
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.28);
}

.service-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.more-service .more-icon {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  border: 2px solid #dfe5ef;
  background: #f3f6fa;
  display: grid;
  place-items: center;
  color: #8792a7;
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.more-service .more-icon .more-icon-img {
  width: 28px;
  height: 21px;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
  object-fit: contain;
  transition: none;
}

.more-service:hover .more-icon .more-icon-img {
  box-shadow: none;
  outline: 0;
  transform: none;
}

.more-service:hover .more-icon {
  transform: scale(1.03);
  border-color: rgba(38, 139, 243, 0.45);
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.16);
}

.more-service > span:last-child {
  color: #8b96ab;
}

.topup-row {
  height: 92px;
  padding-top: 17px;
  display: grid;
  grid-template-columns: 309px 309px 370px 1fr;
  align-items: start;
  gap: 16px;
}

.topup-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topup-info > img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}

.topup-info:hover > img {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(38, 139, 243, 0.16);
}

.topup-title {
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.topup-title span {
  height: 22px;
  min-width: 33px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #60b642;
  color: #fff;
  font-size: 12px;
}

.promo-small {
  height: 25px;
  border: 0;
  border-radius: 7px;
  background: #e8f3ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.promo-small svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease-out);
}

.promo-small:hover {
  background: #dff0ff;
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.14);
}

.promo-small:hover svg {
  transform: rotate(180deg);
}

.form-field {
  height: 64px;
  border-radius: 10px;
  background: #f0f2f6;
  display: flex;
  align-items: center;
  color: #96a0b3;
  font-weight: 700;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out), color 0.2s ease;
}

.form-field:focus-within {
  box-shadow: var(--focus-ring);
}

.form-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #323846;
  font: inherit;
  letter-spacing: 0;
}

.form-field input::placeholder {
  color: #8d98ac;
  opacity: 1;
}

.login-field {
  gap: 17px;
  padding: 0 22px;
}

.login-field > img {
  width: 20px;
  height: 20px;
}

.login-field input {
  flex: 1;
  height: 100%;
}

.field-info {
  margin-left: auto;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  background: #a9b3c2;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.field-info img {
  width: 5px;
  height: 12px;
}

.amount-field {
  gap: 13px;
  padding: 0 14px 0 18px;
}

.currency-icon {
  width: var(--currency-icon-width, 12px);
  height: var(--currency-icon-height, 12px);
  display: block;
  background: currentColor;
  -webkit-mask-image: var(--currency-icon-mask);
  mask-image: var(--currency-icon-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.currency-icon-dollar {
  --currency-icon-mask: url("./assets/currency-dollar.svg");
  --currency-icon-width: 10px;
  --currency-icon-height: 16px;
}

.currency-icon-tenge {
  --currency-icon-mask: url("./assets/currency-tenge.svg");
  --currency-icon-width: 10px;
  --currency-icon-height: 12px;
}

.currency-icon-ruble {
  --currency-icon-mask: url("./assets/currency-ruble.svg");
  --currency-icon-width: 12px;
  --currency-icon-height: 12px;
}

.currency-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7c879a;
  color: #fff;
  display: grid;
  place-items: center;
}

.currency-mark .currency-icon-ruble {
  width: 11px;
  height: 11px;
  transform: translate(0.5px, -0.5px);
}

.amount-field small {
  display: block;
  margin-bottom: 2px;
  color: #9aa4b7;
  font-size: 13px;
  line-height: 1;
}

.amount-control {
  min-width: 78px;
  display: block;
}

.amount-value {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #323846;
}

.amount-control input {
  width: 40px;
  height: 22px;
  padding: 0;
  color: #323846;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.currency-tabs {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.currency-tabs button {
  appearance: none;
  width: 37px;
  height: 37px;
  border: 0;
  border-radius: 8px;
  background: #e3e7ee;
  color: #7f8a9f;
  display: grid;
  place-items: center;
  padding: 0;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.currency-tabs button.is-active {
  background: var(--blue);
  color: #fff;
}

.currency-tabs button:hover {
  box-shadow: 0 7px 15px rgba(23, 31, 45, 0.1);
}

.currency-tabs button.is-active:hover {
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.22);
}

.pay-btn {
  height: 64px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  font-size: 17px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-section {
  margin-top: 20px;
}

.popular-section {
  margin-top: 15px;
}

.section-head {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.compact-head {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head h2 img {
  width: 26px;
  height: 26px;
  transition: transform 0.24s var(--ease-out), filter 0.24s ease;
}

.section-head:hover h2 img {
  transform: scale(1.08) rotate(-4deg);
}

.chip-row {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compact-head .chip-row {
  margin-left: 108px;
}

.chip {
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: #eceff4;
  color: #9aa4b7;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.chip img {
  width: 14px;
  height: 14px;
  opacity: 1;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s var(--ease-out);
}

.chip.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 14px rgba(38, 139, 243, 0.22);
}

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

.chip:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 14px rgba(38, 139, 243, 0.22);
}

.chip:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: scale(1.06);
}

.chip.is-active:hover {
  color: #fff;
  box-shadow: 0 10px 20px rgba(38, 139, 243, 0.26);
}

.show-all {
  height: 36px;
  min-width: 134px;
  border: 0;
  border-radius: 9px;
  background: #eff1f5;
  color: #202838;
  padding: 0 18px;
  font-weight: 700;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.show-all:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.18);
}

.mobile-show-all {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

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

.product-card {
  height: 319px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 31, 45, 0.07);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, background-color 0.36s ease;
  will-change: transform;
}

.product-card:hover {
  box-shadow: var(--hover-shadow);
}

.product-cover {
  position: relative;
  height: 164px;
  overflow: hidden;
}

.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s var(--ease-out), filter 0.24s ease;
}

.product-card:hover .product-cover img {
  filter: saturate(1.06);
}

.discount {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 30px;
  border-radius: 0 13px 0 9px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 6px 12px rgba(20, 24, 36, 0.16);
}

.discount.red {
  background: #ff4249;
}

.discount.orange {
  background: #ff8a00;
}

.discount.green {
  background: #3c9b2f;
}

.product-body {
  padding: 11px 14px 14px;
}

.product-body h3 {
  height: 44px;
  margin: 0 0 9px;
  color: #111720;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.product-body h3 span {
  color: #ff5b2a;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.price-line strong {
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.price-line del {
  color: #a5adba;
  font-size: 12px;
  font-weight: 700;
}

.product-body button {
  width: 100%;
  height: 43px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.blogger-section {
  margin-top: 20px;
}

.blogger-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 337px;
  gap: 16px;
  align-items: start;
}

.blogger-card,
.side-card,
.article-card,
.review-card,
.site-footer {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(25, 35, 55, 0.06);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, background-color 0.36s ease;
}

.blogger-card {
  height: 604px;
  padding: 20px;
}

.blogger-card-head {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blogger-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
}

.blogger-author img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease;
}

.promo-inside {
  height: 49px;
  min-width: 237px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px 0 75px;
  font-size: 15px;
  font-weight: 800;
  overflow: visible;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.promo-inside > img {
  position: absolute;
  left: -4px;
  top: -10px;
  width: 64px;
  height: 69px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.24s var(--ease-out), filter 0.24s ease;
}

.promo-inside:hover {
  background: var(--blue-dark);
  box-shadow: var(--blue-shadow);
}

.promo-inside:hover > img {
  transform: translateX(4px) rotate(5deg) scale(1.04);
}

.blogger-banner {
  width: 100%;
  height: 418px;
  margin-top: 18px;
  border-radius: 10px;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s var(--ease-out);
}

.blogger-card:hover .blogger-author img {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(38, 139, 243, 0.18);
}

.blogger-card:hover .blogger-banner {
  filter: saturate(1.06) contrast(1.02);
}

.blogger-stats {
  height: 51px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 306px 267px 1fr;
  gap: 14px;
  align-items: center;
}

.coupon-stat,
.stat-item {
  height: 51px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202838;
  font-weight: 800;
}

.coupon-stat {
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0 14px 0 16px;
}

.coupon-text,
.stat-item {
  line-height: 1.1;
}

.stat-text {
  min-width: 0;
  display: block;
}

.stat-icon {
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 900;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.coupon-stat .stat-icon {
  width: 22px;
  height: 22px;
  background: transparent;
  color: #fff;
}

.stat-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.coupon-stat .stat-icon img {
  width: 20px;
  height: 20px;
}

.coupon-copy {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease;
}

.coupon-copy::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.78);
  pointer-events: none;
}

.coupon-copy img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 0.2s var(--ease-out);
}

.coupon-stat:hover .coupon-copy {
  animation: copy-pop 0.42s var(--ease-out);
  background: rgba(255, 255, 255, 0.22);
}

.coupon-stat:hover .coupon-copy::after {
  animation: copy-ring 0.42s ease-out;
}

.coupon-stat:hover .coupon-copy img {
  transform: scale(0.92) rotate(-8deg);
}

.stat-item:hover .stat-icon {
  transform: scale(1.04);
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.14);
}

@keyframes copy-pop {
  0% {
    transform: scale(1);
  }

  38% {
    transform: scale(0.9);
  }

  72% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes copy-ring {
  0% {
    opacity: 0.55;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.stat-item b,
.coupon-text b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.stat-item small {
  display: block;
  color: #9aa4b7;
  font-size: 14px;
  font-weight: 700;
}

.stat-item.wide b {
  font-size: 16px;
}

.blogger-side {
  display: grid;
  gap: 18px;
}

.side-card {
  height: 293px;
  padding: 20px;
}

.side-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-title img {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.24s var(--ease-out), filter 0.24s ease;
}

.keys-side .side-title img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  object-fit: contain;
}

.side-title b {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.side-title span {
  color: #8f98aa;
  font-size: 15px;
  font-weight: 700;
}

.side-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.side-features div {
  height: 80px;
  border-radius: 10px;
  background: #f0f2f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.side-features img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.side-features b {
  color: #4c5668;
  font-size: 15px;
}

.side-card button {
  width: 100%;
  height: 56px;
  margin-top: 17px;
  border: 0;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.side-card:hover {
  box-shadow: var(--hover-shadow);
}

.side-card:hover .side-title img {
  transform: scale(1.03);
  filter: saturate(1.06);
}

.side-features div:hover {
  box-shadow: 0 8px 18px rgba(23, 31, 45, 0.08);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 29px;
}

.thumb-row img,
.thumb-row span {
  width: 64px;
  height: 64px;
  border-radius: 9px;
  object-fit: cover;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background-color 0.2s ease;
}

.thumb-row img:hover,
.thumb-row span:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(23, 31, 45, 0.1);
}

.thumb-row span {
  background: #eff1f5;
  color: #8e99ab;
  display: grid;
  place-items: center;
  font-weight: 1000;
}

.other-products {
  margin-top: 20px;
}

.articles-section {
  margin-top: 25px;
}

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

.article-card {
  height: 346px;
  overflow: hidden;
  border-radius: 10px;
}

.article-card:hover {
  box-shadow: var(--hover-shadow);
}

.article-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s var(--ease-out), filter 0.24s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.article-image span {
  position: absolute;
  top: 16px;
  left: 20px;
  height: 30px;
  min-width: 74px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  font-size: 13px;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease;
}

.article-card:hover .article-image span {
  background: var(--blue-dark);
}

.article-card h3 {
  height: 48px;
  margin: 18px 20px 14px;
  color: #111720;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 1000;
}

.article-meta {
  display: flex;
  gap: 5px;
  padding-left: 20px;
}

.article-meta span {
  height: 32px;
  border-radius: 7px;
  background: #e9edf4;
  color: #76829b;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out);
}

.article-meta img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.reviews-section {
  margin-top: 21px;
}

.reviews-head {
  height: 42px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.reviews-head h2 {
  height: 27px;
}

.reviews-head p {
  margin: 3px 0 0 41px;
  color: #8e98aa;
  font-weight: 700;
}

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

.review-card {
  height: 270px;
  padding: 22px 20px 20px;
}

.review-card:hover {
  box-shadow: var(--hover-shadow);
}

.review-top {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-top > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease;
}

.review-card:hover .review-top > img {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(38, 139, 243, 0.16);
}

.review-top b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1;
  font-weight: 1000;
}

.review-top span {
  color: var(--blue);
  letter-spacing: 1px;
  font-weight: 900;
}

.review-top span strong {
  color: #1c2433;
  margin-left: 8px;
  letter-spacing: 0;
}

.review-top time {
  align-self: start;
  color: #8e98aa;
  font-weight: 700;
  padding-top: 7px;
}

.review-text {
  height: 95px;
  margin: 14px 0 16px;
  border-radius: 13px;
  background: #eef0f4;
  color: #647085;
  padding: 18px 17px;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out);
}

.review-card:hover .review-text {
  color: #536078;
}

.review-product {
  display: grid;
  grid-template-columns: 64px 1fr 56px;
  align-items: center;
  gap: 10px;
}

.review-product img {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.24s var(--ease-out), filter 0.24s ease;
}

.review-product b {
  color: #111720;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 1000;
}

.review-product > span {
  height: 34px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 1000;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease;
}

.review-card:hover .review-product img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.review-card:hover .review-product > span {
  background: var(--blue-dark);
}

.site-footer {
  height: 234px;
  margin-top: 20px;
  margin-bottom: 28px;
  padding: 25px 24px 22px;
}

.footer-top,
.footer-mid,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  height: 55px;
  border-bottom: 1px solid var(--line);
}

.footer-top nav,
.footer-bottom nav,
.footer-social,
.payments {
  display: flex;
  align-items: center;
}

.footer-top nav {
  gap: 31px;
}

.footer-top a {
  color: #354052;
  text-decoration: none;
  font-weight: 1000;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.footer-top a:hover,
.footer-bottom a:hover,
.footer-social .footer-channel:hover {
  color: var(--blue);
}

.footer-mid {
  height: 79px;
  border-bottom: 1px solid var(--line);
}

.footer-social {
  gap: 12px;
}

.footer-social b {
  margin-right: 3px;
  font-size: 16px;
  font-weight: 1000;
}

.footer-social .social-icon {
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: #f0f3f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social .social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter 0.2s ease, transform 0.2s var(--ease-out), opacity 0.2s ease;
}

.footer-social .social-icon:hover {
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(38, 139, 243, 0.22);
}

.footer-social .social-icon:hover img {
  transform: scale(1.07);
  filter: brightness(0) invert(1);
}

.footer-social .social-icon[aria-label="TikTok"] img {
  width: 14px;
  height: 17px;
}

.footer-social .footer-channel {
  background: transparent;
  color: var(--blue);
  min-width: auto;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 1000;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.payments {
  gap: 10px;
}

.payments span {
  height: 28px;
  min-width: 62px;
  border: 1px solid #dfe4ed;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 5px rgba(18, 26, 42, 0.05);
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payments img {
  max-width: 39px;
  max-height: 18px;
  object-fit: contain;
  transition: filter 0.2s ease, transform 0.2s var(--ease-out);
}

.payments span:hover {
  border-color: rgba(38, 139, 243, 0.38);
  box-shadow: 0 7px 15px rgba(23, 31, 45, 0.08);
}

.payments span:hover img {
  transform: scale(1.04);
}

.footer-bottom {
  height: 53px;
  color: #76829b;
  font-weight: 800;
}

.footer-bottom nav {
  gap: 32px;
}

.footer-bottom a {
  color: #76829b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

main > .shell {
  animation: section-in 0.32s ease-out both;
}

main > .shell:nth-child(1) {
  animation-delay: 0s;
}

main > .shell:nth-child(2) {
  animation-delay: 0.02s;
}

main > .shell:nth-child(3) {
  animation-delay: 0.04s;
}

main > .shell:nth-child(4) {
  animation-delay: 0.06s;
}

main > .shell:nth-child(5) {
  animation-delay: 0.08s;
}

main > .shell:nth-child(n + 6) {
  animation-delay: 0.1s;
}

@keyframes section-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body,
main,
.site-header,
.theme-switch,
.theme-btn,
.search-form::before,
.search-favorite,
.profile-btn,
.hero-arrows,
.services-card,
.product-card,
.blogger-card,
.side-card,
.article-card,
.review-card,
.site-footer,
.form-field,
.currency-tabs button,
.chip,
.show-all,
.promo-small,
.more-service .more-icon,
.side-features div,
.thumb-row span,
.article-meta span,
.review-text,
.footer-social .social-icon,
.stat-icon,
.coupon-copy,
.payments span {
  transition: background-color 0.36s ease, color 0.36s ease, border-color 0.36s ease, box-shadow 0.36s ease, transform 0.24s var(--ease-out), filter 0.24s ease, opacity 0.24s ease;
}

.theme-btn img {
  transition: filter 0.36s ease, transform 0.36s ease;
}

body.theme-animating .theme-btn.is-active img {
  animation: theme-icon-pop 0.46s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes theme-icon-pop {
  0% {
    transform: scale(0.62) rotate(-28deg);
    opacity: 0.35;
  }

  65% {
    transform: scale(1.16) rotate(8deg);
    opacity: 1;
  }

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

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f7fb;
  --muted: #96a1b2;
  --line: #2b333f;
  --soft: #242c37;
  --green: #54c74e;
  --hover-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  --focus-ring: 0 0 0 4px rgba(38, 139, 243, 0.24);
}

html[data-theme="dark"],
html[data-theme="dark"] body,
html[data-theme="dark"] main {
  background: #11161d;
  color: #f4f7fb;
}

html[data-theme="dark"] .page-preloader {
  --preloader-dot: #254b78;
  --preloader-dot-active: #4a9cff;
  --preloader-text: #4a9cff;
  background: #11161d;
}

html[data-theme="dark"] .site-header {
  background: #151b23;
  border-bottom-color: #252d38;
}

html[data-theme="dark"] .hero-section {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .theme-switch {
  background: #222a35;
}

html[data-theme="dark"] .theme-btn:not(.is-active) {
  background: transparent;
}

html[data-theme="dark"] .search-form::before {
  background: #1d242e;
}

html[data-theme="dark"] .search-form input,
html[data-theme="dark"] .form-field input,
html[data-theme="dark"] .amount-control input {
  color: #f4f7fb;
}

html[data-theme="dark"] .search-form input::placeholder,
html[data-theme="dark"] .form-field input::placeholder {
  color: #8f9aab;
}

html[data-theme="dark"] .search-favorite,
html[data-theme="dark"] .profile-btn,
html[data-theme="dark"] .hero-arrows,
html[data-theme="dark"] .show-all,
html[data-theme="dark"] .chip,
html[data-theme="dark"] .form-field,
html[data-theme="dark"] .currency-tabs button,
html[data-theme="dark"] .more-service .more-icon,
html[data-theme="dark"] .promo-small,
html[data-theme="dark"] .side-features div,
html[data-theme="dark"] .thumb-row span,
html[data-theme="dark"] .article-meta span,
html[data-theme="dark"] .review-text,
html[data-theme="dark"] .footer-social .social-icon,
html[data-theme="dark"] .stat-icon,
html[data-theme="dark"] .payments span {
  background: #242c37;
}

html[data-theme="dark"] .coupon-stat .stat-icon {
  background: transparent;
}

html[data-theme="dark"] .coupon-copy {
  background: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .hero-arrows button {
  color: #f4f7fb;
}

html[data-theme="dark"] .hero-arrows,
html[data-theme="dark"] .more-service .more-icon,
html[data-theme="dark"] .payments span {
  border-color: #313a47;
}

html[data-theme="dark"] .services-card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .blogger-card,
html[data-theme="dark"] .side-card,
html[data-theme="dark"] .article-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .site-footer {
  background: #1a2029;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .services-row,
html[data-theme="dark"] .footer-top,
html[data-theme="dark"] .footer-mid {
  border-color: #2b333f;
}

html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .service-item,
html[data-theme="dark"] .topup-title,
html[data-theme="dark"] .show-all,
html[data-theme="dark"] .product-body h3,
html[data-theme="dark"] .side-title b,
html[data-theme="dark"] .stat-item,
html[data-theme="dark"] .article-card h3,
html[data-theme="dark"] .review-top b,
html[data-theme="dark"] .review-top span strong,
html[data-theme="dark"] .review-product b,
html[data-theme="dark"] .footer-social b,
html[data-theme="dark"] .footer-top a {
  color: #f4f7fb;
}

html[data-theme="dark"] .service-item span,
html[data-theme="dark"] .chip,
html[data-theme="dark"] .form-field,
html[data-theme="dark"] .amount-field small,
html[data-theme="dark"] .side-title span,
html[data-theme="dark"] .stat-item small,
html[data-theme="dark"] .more-service > span:last-child,
html[data-theme="dark"] .article-meta span,
html[data-theme="dark"] .reviews-head p,
html[data-theme="dark"] .review-top time,
html[data-theme="dark"] .review-text,
html[data-theme="dark"] .footer-bottom,
html[data-theme="dark"] .footer-bottom a,
html[data-theme="dark"] .price-line del {
  color: #8f9aab;
}

html[data-theme="dark"] .service-item:hover,
html[data-theme="dark"] .service-item.is-active,
html[data-theme="dark"] .footer-social .footer-channel {
  color: var(--blue);
}

html[data-theme="dark"] .footer-top a:hover,
html[data-theme="dark"] .footer-bottom a:hover,
html[data-theme="dark"] .footer-social .footer-channel:hover {
  color: var(--blue);
}

html[data-theme="dark"] .chip:hover {
  background: var(--blue);
  color: #fff;
}

html[data-theme="dark"] .promo-small {
  color: #65b1ff;
}

html[data-theme="dark"] .search-favorite:hover,
html[data-theme="dark"] .profile-btn:hover,
html[data-theme="dark"] .currency-tabs button:hover,
html[data-theme="dark"] .side-features div:hover {
  background: #2b3543;
}

html[data-theme="dark"] .promo-small:hover {
  background: #203a55;
  color: #8bc5ff;
}

html[data-theme="dark"] .side-features b {
  color: #f4f7fb;
}

html[data-theme="dark"] .search-favorite img,
html[data-theme="dark"] .profile-btn img {
  opacity: 0.86;
}

html[data-theme="dark"] .theme-btn.is-active img,
html[data-theme="dark"] .chip.is-active img {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .payments img[alt="VISA"] {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .footer-social .social-icon[aria-label="TikTok"] img {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .currency-mark {
  background: #7f8a9c;
}

html[data-theme="dark"] .currency-tabs button.is-active,
html[data-theme="dark"] .chip.is-active {
  background: var(--blue);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  main > .shell {
    animation: none;
  }

  body,
  main,
  .site-header,
  .theme-switch,
  .theme-btn,
  .search-form::before,
  .search-favorite,
  .profile-btn,
  .hero-arrows,
  .services-card,
  .product-card,
  .blogger-card,
  .side-card,
  .article-card,
  .review-card,
  .site-footer,
  .form-field,
  .currency-tabs button,
  .chip,
  .show-all,
  .promo-small,
  .more-service .more-icon,
  .side-features div,
  .thumb-row span,
  .article-meta span,
  .review-text,
  .footer-social .social-icon,
  .payments span,
  .theme-btn img {
    transition: none;
  }

  body.theme-animating .theme-btn.is-active img {
    animation: none;
  }
}

@media (max-width: 1240px) {
  body {
    min-width: 1080px;
  }

  :root {
    --page-gutter: 48px;
  }

  .header-inner {
    gap: 18px;
  }

  .search-form {
    margin-left: 24px;
  }

  .services-row {
    column-gap: 14px;
  }

  .topup-row {
    grid-template-columns: 275px 1fr 330px 190px;
  }

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

  .blogger-stats {
    grid-template-columns: 285px 230px 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 0px;
    --layout-width: 100vw;
    --layout-scale: 1;
    --mobile-gutter: 5.5px;
  }

  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body {
    background: #fff;
    font-size: 14px;
  }

  .shell {
    width: auto;
    margin-inline: var(--mobile-gutter);
    zoom: 1;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: 81px;
    background: #fff;
  }

  .header-inner {
    width: auto;
    height: 81px;
    margin-inline: var(--mobile-gutter);
    gap: 8px;
  }

  .logo-link {
    width: clamp(132px, 34vw, 146px);
    height: 52px;
  }

  .logo-link img,
  .site-footer .footer-top img {
    width: clamp(132px, 34vw, 146px);
    height: 52px;
  }

  .theme-switch {
    width: 24px;
    height: 52px;
    margin-left: 0;
    flex: 0 0 auto;
    position: relative;
  }

  .theme-switch::before {
    content: "";
    position: absolute;
    inset: -8px -6px;
  }

  .catalog-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 10px;
    padding: 0;
    flex: 0 0 auto;
  }

  .header-inner .catalog-btn {
    display: none;
  }

  .catalog-btn span,
  .search-form {
    display: none;
  }

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

  .bonus-btn {
    width: 56px;
    height: 44px;
    margin-left: auto;
  }

  .bonus-btn img {
    width: 56px;
    height: 44px;
  }

  .profile-btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  main {
    min-height: auto;
    padding-top: 103px;
    padding-bottom: calc(89px + env(safe-area-inset-bottom));
    background: #fff;
  }

  main > .shell {
    animation: section-in 0.22s ease-out both;
  }

  .hero-section {
    height: clamp(178px, 50.5vw, 233px);
    margin-top: 0;
    margin-bottom: 37px;
    border-radius: 10px;
    overflow: visible;
    box-shadow: none;
  }

  .hero-img {
    border-radius: inherit;
    object-fit: fill;
    object-position: center;
  }

  .hero-section:hover .hero-img {
    filter: none;
  }

  .hero-arrows {
    display: none;
  }

  .hero-dots {
    right: auto;
    left: 50%;
    bottom: -22px;
    gap: 7px;
    transform: translateX(-50%);
  }

  .hero-dots span {
    display: block;
    width: 24px;
    height: 5px;
    background: #cfd5df;
  }

  .hero-dots span:first-child {
    background: #7f8a9f;
  }

  .services-card {
    height: auto;
    margin-top: 0;
    padding: 22px 23px 24px;
    border-radius: 18px;
  }

  .services-row {
    height: 107px;
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--line);
  }

  .services-row::-webkit-scrollbar {
    display: none;
  }

  .services-row .service-item:nth-child(n + 5):not(.more-service) {
    display: flex;
  }

  .service-item {
    flex: 0 0 66px;
    height: 92px;
    gap: 8px;
    font-size: 13px;
    line-height: 1.05;
  }

  .service-item img,
  .more-service .more-icon {
    width: 66px;
    height: 66px;
    border-radius: 11px;
  }

  .service-item span {
    max-width: 68px;
  }

  .more-service .more-icon .more-icon-img {
    width: 28px;
    height: 21px;
  }

  .topup-row {
    height: auto;
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .topup-info {
    min-height: 82px;
  }

  .topup-info > img {
    width: 82px;
    height: 82px;
    border-radius: 12px;
  }

  .topup-title {
    min-height: 30px;
    gap: 8px;
    font-size: 20px;
    line-height: 1.1;
  }

  .topup-title span {
    height: 24px;
    min-width: 37px;
    font-size: 13px;
  }

  .promo-small {
    height: 31px;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
  }

  .form-field {
    height: 75px;
    border-radius: 12px;
  }

  .login-field {
    gap: 18px;
    padding: 0 21px;
  }

  .login-field > img {
    width: 20px;
    height: 20px;
  }

  .login-field input,
  .amount-control input {
    font-size: 20px;
  }

  .field-info {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .amount-field {
    gap: 14px;
    padding: 0 18px;
  }

  .currency-mark {
    width: 24px;
    height: 24px;
  }

  .amount-field small {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .amount-value {
    height: 25px;
  }

  .amount-control {
    min-width: 96px;
  }

  .currency-tabs {
    gap: 8px;
  }

  .currency-tabs button {
    width: 43px;
    height: 43px;
    border-radius: 9px;
  }

  .pay-btn {
    height: 75px;
    border-radius: 12px;
    font-size: 20px;
  }

  .product-section,
  .articles-section,
  .reviews-section {
    width: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
  }

  .popular-section {
    margin-top: 21px;
  }

  main > .product-section:not(.popular-section):not(.other-products) {
    display: none;
  }

  .product-section .section-head,
  .articles-section .section-head,
  .reviews-section .section-head {
    display: contents;
  }

  .section-head h2 {
    width: 100%;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1;
    gap: 10px;
    order: 1;
  }

  .section-head h2 img {
    width: 29px;
    height: 29px;
  }

  .chip-row {
    width: calc(100vw - var(--mobile-gutter));
    margin: 0 calc(-1 * var(--mobile-gutter)) 18px 0;
    order: 2;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .chip-row::-webkit-scrollbar {
    display: none;
  }

  .compact-head .chip-row {
    margin-left: 0;
  }

  .chip {
    height: 39px;
    border-radius: 9px;
    padding: 0 18px;
    gap: 8px;
    flex: 0 0 auto;
    font-size: 16px;
  }

  .chip img {
    width: 16px;
    height: 16px;
  }

  .product-grid {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-grid .product-card:nth-child(n + 3) {
    display: none;
  }

  .product-card {
    height: auto;
    min-height: 0;
    border-radius: 14px;
  }

  .product-cover {
    height: clamp(145px, 39.5vw, 178px);
  }

  .discount {
    width: 68px;
    height: 34px;
    border-radius: 0 12px 0 11px;
    font-size: 14px;
  }

  .product-body {
    padding: 12px 12px 12px;
  }

  .product-body h3 {
    height: 52px;
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 1.25;
  }

  .price-line {
    gap: 9px;
    margin-bottom: 16px;
  }

  .price-line strong {
    font-size: 24px;
  }

  .price-line del {
    font-size: 13px;
  }

  .product-body button {
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
  }

  .show-all,
  .mobile-show-all {
    order: 4;
    display: flex;
    width: 100%;
    height: 52px;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f0f2f6;
    color: #202838;
    font-size: 16px;
  }

  .blogger-section {
    margin-top: 24px;
  }

  .blogger-section .section-head {
    height: auto;
    margin-bottom: 16px;
  }

  .blogger-section .section-head .show-all {
    display: none;
  }

  .blogger-layout {
    display: block;
  }

  .blogger-card {
    height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .blogger-card-head {
    height: 58px;
    gap: 12px;
    justify-content: space-between;
  }

  .blogger-author {
    min-width: 0;
    flex: 1 1 0;
    gap: 8px;
    font-size: clamp(15px, 3.6vw, 16px);
    line-height: 1.02;
  }

  .blogger-author strong {
    display: block;
    max-width: 104px;
    white-space: normal;
  }

  .blogger-author img {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .promo-inside {
    height: 52px;
    min-width: clamp(142px, 38vw, 176px);
    flex: 0 0 clamp(142px, 38vw, 176px);
    border-radius: 10px;
    padding: 0 8px 0 clamp(58px, 15vw, 66px);
    justify-content: flex-start;
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.05;
  }

  .promo-inside > img {
    left: -4px;
    top: -8px;
    width: 70px;
    height: 68px;
  }

  .blogger-banner {
    height: clamp(176px, 46vw, 210px);
    margin-top: 18px;
    border-radius: 8px;
  }

  .blogger-stats {
    height: auto;
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .coupon-stat {
    height: 53px;
    padding: 0 14px 0 17px;
    border-radius: 8px;
  }

  .stat-item {
    height: 58px;
    gap: 14px;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .coupon-stat .stat-icon {
    width: 22px;
    height: 22px;
  }

  .stat-item b,
  .coupon-text b {
    font-size: 18px;
  }

  .stat-item small {
    font-size: 17px;
  }

  .stat-item.wide b {
    font-size: 18px;
  }

  .blogger-side {
    display: none;
  }

  .other-products {
    margin-top: 24px;
  }

  .article-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-grid .article-card:nth-child(n + 2) {
    display: none;
  }

  .article-card {
    height: auto;
    border-radius: 14px;
  }

  .article-image {
    height: clamp(210px, 56vw, 257px);
  }

  .article-image span {
    top: 18px;
    left: 18px;
    height: 32px;
    min-width: 78px;
    font-size: 14px;
  }

  .article-card h3 {
    height: auto;
    margin: 16px 14px 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  .article-meta {
    gap: 8px;
    padding: 0 14px 16px;
  }

  .article-meta span {
    height: 38px;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
  }

  .reviews-head p {
    margin: -8px 0 16px 48px;
    color: #9aa4b7;
    font-size: 15px;
    line-height: 1.35;
    order: 2;
  }

  .reviews-head > div {
    display: contents;
  }

  .review-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-grid .review-card:nth-child(n + 2) {
    display: none;
  }

  .review-card {
    height: auto;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .review-top {
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
  }

  .review-top > img {
    width: 56px;
    height: 56px;
  }

  .review-top b {
    font-size: 20px;
  }

  .review-top time {
    font-size: 15px;
  }

  .review-text {
    height: auto;
    margin: 18px 0;
    padding: 20px 18px;
    border-radius: 14px;
    font-size: 17px;
    line-height: 1.45;
  }

  .review-product {
    grid-template-columns: 64px 1fr 66px;
    gap: 10px;
  }

  .review-product b {
    font-size: 16px;
  }

  .review-product > span {
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .site-footer {
    height: auto;
    margin: 24px var(--mobile-gutter) 0;
    padding: 28px 30px 24px;
    border-radius: 20px;
    overflow: hidden;
  }

  .footer-top,
  .footer-mid,
  .footer-bottom {
    display: block;
    height: auto;
    border: 0;
  }

  .footer-top img {
    margin-bottom: 24px;
  }

  .footer-top nav {
    display: grid;
    gap: 13px;
  }

  .footer-top a {
    font-size: 18px;
  }

  .footer-mid {
    margin-top: 28px;
  }

  .footer-social {
    display: grid;
    grid-template-columns: 1fr 48px 48px;
    grid-template-rows: 48px 48px;
    gap: 18px 12px;
    align-items: center;
  }

  .footer-social b {
    grid-column: 1;
    grid-row: 1;
    font-size: 17px;
  }

  .footer-social .footer-channel {
    grid-column: 1;
    grid-row: 2;
    padding: 0;
    font-size: 17px;
  }

  .footer-social .social-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .footer-social .social-icon[aria-label="VK"] {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-social .social-icon[aria-label="Telegram"] {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-social .social-icon[aria-label="TikTok"] {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-social .social-icon[aria-label="YouTube"] {
    grid-column: 3;
    grid-row: 2;
  }

  .payments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  .payments span {
    height: 48px;
    min-width: 0;
    border-radius: 9px;
  }

  .footer-bottom {
    margin-top: 36px;
  }

  .footer-bottom nav {
    display: grid;
    gap: 22px;
  }

  .footer-bottom a {
    font-size: 16px;
  }

  .footer-bottom span {
    display: block;
    margin-top: 22px;
    font-size: 15px;
  }

  html[data-theme="dark"] .site-header,
  html[data-theme="dark"] body,
  html[data-theme="dark"] main {
    background: #11161d;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: calc(65px + env(safe-area-inset-bottom));
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid #e8ecf3;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -10px 28px rgba(25, 35, 55, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    border-radius: 12px;
    color: #8b96ab;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    text-decoration: none;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--blue);
    background: #edf6ff;
  }

  .mobile-bottom-nav a:hover {
    color: var(--blue);
  }

  html[data-theme="dark"] .mobile-bottom-nav {
    border-top-color: #2b333f;
    background: rgba(21, 27, 35, 0.94);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.24);
  }

  html[data-theme="dark"] .mobile-bottom-nav a {
    color: #8f9aab;
  }

  html[data-theme="dark"] .mobile-bottom-nav a.is-active,
  html[data-theme="dark"] .mobile-bottom-nav a:hover {
    color: #65b1ff;
  }

  html[data-theme="dark"] .mobile-bottom-nav a.is-active {
    background: #203a55;
  }
}

@media (max-width: 400px) {
  :root {
    --mobile-gutter: 5.5px;
  }

  .shell {
    margin-inline: var(--mobile-gutter);
  }

  .header-inner {
    margin-inline: var(--mobile-gutter);
    gap: 5px;
  }

  .logo-link {
    width: 120px;
    height: 46px;
  }

  .logo-link img,
  .site-footer .footer-top img {
    width: 120px;
    height: 46px;
  }

  .catalog-btn,
  .profile-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .bonus-btn {
    width: 50px;
    height: 38px;
  }

  .bonus-btn img {
    width: 50px;
    height: 38px;
  }

  .hero-section {
    margin-bottom: 34px;
  }

  .services-card {
    padding: 18px 14px 22px;
  }

  .services-row {
    gap: 8px;
  }

  .service-item {
    flex-basis: 52px;
    font-size: 12px;
  }

  .service-item img,
  .more-service .more-icon {
    width: 52px;
    height: 52px;
  }

  .topup-row > * {
    min-width: 0;
    width: 100%;
  }

  .topup-info {
    min-width: 0;
    min-height: 72px;
    gap: 10px;
  }

  .topup-info > img {
    width: 72px;
    height: 72px;
  }

  .topup-info > div {
    min-width: 0;
    flex: 1 1 auto;
  }

  .topup-title {
    gap: 6px;
    font-size: 17px;
  }

  .topup-title span {
    height: 22px;
    min-width: 34px;
    padding: 0 7px;
    font-size: 12px;
  }

  .promo-small {
    max-width: 100%;
    padding: 0 11px;
    font-size: 14px;
  }

  .form-field {
    width: 100%;
  }

  .login-field,
  .amount-field {
    padding-left: 16px;
    padding-right: 16px;
  }

  .login-field input,
  .amount-control input {
    font-size: 18px;
  }

  .amount-field {
    gap: 11px;
  }

  .amount-control {
    min-width: 80px;
  }

  .currency-tabs {
    gap: 6px;
  }

  .currency-tabs button {
    width: 39px;
    height: 39px;
  }

  .chip-row {
    width: calc(100vw - var(--mobile-gutter));
    margin-right: calc(-1 * var(--mobile-gutter));
  }

  .chip {
    height: 38px;
    padding: 0 14px;
    font-size: 15px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-body {
    padding: 11px 10px 11px;
  }

  .product-body h3 {
    font-size: 12px;
  }

  .price-line strong {
    font-size: 22px;
  }

  .product-body button {
    height: 48px;
  }

  .blogger-card {
    padding: 18px;
  }

  .blogger-card-head {
    gap: 8px;
  }

  .blogger-author {
    font-size: 14px;
    gap: 8px;
  }

  .blogger-author img {
    width: 46px;
    height: 46px;
  }

  .blogger-author strong {
    max-width: 86px;
  }

  .promo-inside {
    min-width: 142px;
    flex-basis: 142px;
    padding-left: 59px;
    padding-right: 7px;
    font-size: 13px;
  }

  .promo-inside > img {
    left: -5px;
    width: 64px;
    height: 62px;
  }

  .blogger-banner {
    height: clamp(142px, 42vw, 174px);
  }

  .stat-item b,
  .coupon-text b,
  .stat-item.wide b {
    font-size: 16px;
  }

  .stat-item small {
    font-size: 15px;
  }

  .review-top {
    grid-template-columns: 50px 1fr;
  }

  .review-top > img {
    width: 50px;
    height: 50px;
  }

  .review-top time {
    grid-column: 2;
    margin-top: -6px;
    padding-top: 0;
  }

  .review-product {
    grid-template-columns: 56px 1fr 58px;
  }

  .review-product img {
    width: 56px;
    height: 42px;
  }

  .review-product b {
    font-size: 14px;
  }

  .review-product > span {
    height: 38px;
    font-size: 14px;
  }
}
