/* Robux Slider Styles */
#rbx {
  --primary: #ffa538;
  --thumb: 24px;
  --track: 8px;
  --stroke: #e6e9ef;
  --text: #222;
  --muted: #5b6270;
}

/* labels as in screenshot */
#rbx .label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px 4px
}

#rbx .label {
  font-weight: 700;
  color: #2b3240
}

#rbx .rate-line {
  font-size: 13px;
  color: var(--muted);
  margin-left: 12px;
  white-space: nowrap
}

/* two fields row */
#rbx .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start
}

#rbx .field {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--stroke);
  border-radius: 16px;
  padding: 20px 48px 20px 20px;
  display: flex;
  align-items: center;
  min-height: 72px;
}

#rbx .field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 800;
  font-size: 30px;
  color: #1d2430;
  letter-spacing: .2px;
}

#rbx .field .suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d2430;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#rbx .icon {
  width: 13px;
  height: 20px;
  vertical-align: -6px
}

/* resolve (кратно 40) — теперь под полями и работает и для ₽, и для R$ */
#rbx .resolve {
  display: none;
  margin-top: 10px;
  gap: 10px;
  align-items: center
}

#rbx .badge {
  font-size: 13px;
  color: var(--muted)
}

#rbx .btn {
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #181d27;
  border-radius: 10px;
  padding: .6rem 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 14px;
}

#rbx .btn:active {
  transform: translateY(1px)
}

/* slider */
#rbx .slider {
  position: relative;
  height: var(--thumb);
  /*margin: 18px 0 8px*/
}

#rbx .bar {
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%);
  height: var(--track);
  background: #eee;
  border-radius: 999px;
  overflow: hidden
}

#rbx .bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  background: var(--primary)
}

#rbx input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--thumb);
  background: transparent;
  margin: 0;
  cursor: pointer;
  outline: none;
  z-index: 2
}

#rbx input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--thumb);
  height: var(--thumb);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .2), 0 0 0 99px #fff inset
}

#rbx input[type="range"]::-moz-range-thumb {
  width: var(--thumb);
  height: var(--thumb);
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .2), 0 0 0 99px #fff inset
}

#rbx .labels {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 12px
}

/* presets */
#rbx .quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px
}

#rbx .quick .btn {
  padding: 10px 12px
}

/* трек поверх рисок */
#rbx .bar {
  z-index: 1;
}

/* РИСКИ ПОД ТРЕКОМ — чистые вертикальные линии */
/* Риски: идеально делятся по всей ширине и бьют оба края */
#rbx .slider::after {
  /* базовые настройки */
  --tick-thickness: 1px;
  --tick-height: 5px;
  --tick-color: #d4d4d4;

  /* эти три переменные можно держать у контейнера .rbx (у тебя уже есть min/max/step в JS);
    тут зададим прямо в CSS для наглядности */
  --min: 300;
  --max: 10000;
  --step: 485;

  /* сколько интервалов между рисками (не количество рисок, а ПРОМЕЖУТКОВ): */
  --intervals: calc((var(--max) - var(--min)) / var(--step));
  /* ширина одного интервала (процент от ширины трека) так,
    чтобы левая и правая риски попали точно в края */
  --tick-gap: calc((100% - var(--tick-thickness)) / var(--intervals));

  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + var(--track)/2 + 4px);
  height: var(--tick-height);
  pointer-events: none;
  z-index: 0;

  /* 1) левая крайняя риска */
  /* 2) правая крайняя риска */
  /* 3) повторяющиеся внутренние риски с точным шагом */
  background:
    linear-gradient(var(--tick-color), var(--tick-color)) left / var(--tick-thickness) 100% no-repeat,
    linear-gradient(var(--tick-color), var(--tick-color)) right / var(--tick-thickness) 100% no-repeat,
    repeating-linear-gradient(to right,
      var(--tick-color) 0 var(--tick-thickness),
      transparent var(--tick-thickness) var(--tick-gap)) left / 100% 100% repeat-x;
}

/* Testimonials (same padding/structure as FAQ and other sections) */
.testimonials {
  width: 100%;
  max-width: 100%;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-top: 1px solid #f0f0f0;
  box-sizing: border-box;
  overflow: hidden;
}

.testimonials__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0 32px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 1440px) {
  .testimonials__inner { 
    padding: 0 116px; 
  }
}

.testimonials__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  color: var(--card-item-text-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonials__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.testimonials__subtitle {
  margin: 0 0 44px;
  font-size: 16px;
  color: #666;
}

.testimonials__link {
  color: #FF8E53;
  text-decoration: none;
  font-weight: 600;
}
.testimonials__link:hover {
  text-decoration: underline;
}

.testimonials__carousel {
  position: relative;
  margin-top: 0;
  padding: 0;
}

.testimonials__viewport {
  overflow: visible;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 10px 4px;
}

.tcard {
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #E9ECEF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.tcard__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.tcard__content {
  flex: 1;
  min-width: 0;
}

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

.tcard__nameBlock {
  flex: 1;
  min-width: 0;
}

.tcard__name {
  font-size: 16px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 6px;
}

.tcard__purchase {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tcard__robuxIcon {
  flex-shrink: 0;
  vertical-align: middle;
}

.tcard__stars {
  font-size: 14px;
  color: #FFD700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.tcard__text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .tcard__text {
    font-size: 12px !important;
  }
}

.testimonials__nav {
  display: none;
}

.testimonials__more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .testimonials__track {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Styles */
#mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 !important;
  z-index: 1002;
  margin-left: 20px;
}

#mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  transform-origin: center;
}

#mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

#mobile-menu-toggle span:nth-child(2) {
  top: 11px;
}

#mobile-menu-toggle span:nth-child(3) {
  top: 22px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 0;
  visibility: visible;
  pointer-events: auto;
}

/* Fix header width for all screens */
._container_1oxsh_1 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

._menu_1oxsh_17 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* ========== MOBILE HEADER ========== */
@media (max-width: 768px) {
  ._container_1oxsh_1 {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 1003 !important;
  }

  ._menu_1oxsh_17 {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0;
    height: 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    z-index: 1003 !important;
  }

  ._left_1oxsh_30 {
    flex: 0 0 auto !important;
    gap: 0 !important;
  }

  ._logoWrapper_1oxsh_47 {
    padding: 0 !important;
  }

  ._logo_1oxsh_47,
  ._logo-sized {
    height: 28px !important;
    width: auto !important;
    max-width: 120px !important;
    min-width: auto !important;
    object-fit: contain !important;
  }

  ._nav_1oxsh_71 {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #fff !important;
    flex-direction: column !important;
    transition: right 0.3s ease !important;
    z-index: 1001 !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
    padding-top: 80px !important;
  }

  ._nav_1oxsh_71.active {
    display: flex !important;
    right: 0 !important;
  }

  ._nav_1oxsh_71 a {
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100% !important;
  }

  ._nav_1oxsh_71 a:last-child {
    border-bottom: none !important;
  }

  ._nav_1oxsh_71 ._container_1smve_1 {
    padding: 18px 24px !important;
    font-size: 16px !important;
    width: 100% !important;
    text-align: left !important;
  }

  ._right_1oxsh_76 {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding-right: 0 !important;
    flex: 0 0 auto !important;
  }

  ._button__secondary_1pt14_413._button-styled {
    padding: 8px 14px !important;
    font-size: 12px !important;
    height: 20px !important;
    white-space: nowrap !important;
  }

  #mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    width: 28px !important;
    height: 22px !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1002 !important;
  }

  #mobile-menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    background: #333 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    left: 0 !important;
  }

  #mobile-menu-toggle span:nth-child(1) {
    top: 0 !important;
  }

  #mobile-menu-toggle span:nth-child(2) {
    top: 9px !important;
  }

  #mobile-menu-toggle span:nth-child(3) {
    top: 18px !important;
  }

  #mobile-menu-toggle.active span:nth-child(1) {
    top: 9px !important;
    transform: rotate(45deg) !important;
  }

  #mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }

  #mobile-menu-toggle.active span:nth-child(3) {
    top: 9px !important;
    transform: rotate(-45deg) !important;
  }
}

._title_13mon_88 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

._title_13mon_88 h2 {
  text-align: left;
}

._accentLines_13mon_123 {
  flex-shrink: 0;
}

/* Show accent lines on mobile with adjusted position */
@media screen and (max-width: 768px) {
  ._accentLines_13mon_123 {
    display: block !important;
    left: -25px !important;
  }
}

/* Position for "Топ курс" badge in "Ты получаешь" field */
._container_183wr_64 {
  position: relative !important;
}

/* Fix margin-top for input fields */
._currency_183wr_303,
._input_183wr_301,
._textShadow_183wr_302 {
  margin-top: 18px !important;
}

/* Adjust badge on mobile */
@media (max-width: 768px) {
  ._container_183wr_64 ._tag_71pr6_44 {
    font-size: 11px !important;
    padding: 6px 10px !important;
    right: 14px !important;
    border-radius: 6px !important;
  }
  
  ._container_183wr_64 ._tag_71pr6_44 ._text_htxe7_1 {
    font-size: 12px !important;
  }
  
  /* Smaller robux icon in "В наличии" badge on mobile */
  ._tagInstock_71pr6_83 svg {
    width: 12px !important;
    height: 12px !important;
  }
  
  /* Better currency display on mobile */
  ._currency_183wr_303 {
    font-size: 16px !important;
    padding-left: 4px !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }
  
  /* Ensure center container has proper display */
  ._center_183wr_193 {
    align-items: center !important;
    gap: 0 !important;
  }
}

/* Fix spacing in delivery message */
._comprassion_71pr6_169 {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

._comprassionText_71pr6_183 {
  justify-content: flex-start !important;
  gap: 4px;
  text-align: left;
  align-items: center !important;
  flex-wrap: wrap !important;
  word-break: break-word !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow-wrap: break-word !important;
}

._comprassionValue_71pr6_199 {
  flex-shrink: 0 !important;
  max-width: calc(100% - 100px) !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Ensure SVG doesn't cause overflow */
._comprassionValue_71pr6_199 svg,
._rbxIcon_71pr6_127 {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
}

#robuxAmount {
  display: inline-block !important;
  max-width: 100px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* Ensure parent container constrains width */
._buyingContainerBottom_71pr6_141 {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Ensure all parent containers are constrained */
._container_71pr6_1,
._buyingContainer_1m4tu_62,
._buyingContainerTop_1m4tu_98 {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Doggy background on desktop only */
@media (min-width: 769px) {
  ._buyingContainer_1m4tu_62 {
    background-image: url(/_nuxt/doggy.png) !important;
    background-position-x: 93%;
    background-position-y: 20px;
    background-size: 69px;
    background-repeat: no-repeat;
  }
}

._content_71pr6_18 {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Custom style for "Мои покупки" button */
._button__secondary_1pt14_413._button-styled {
  background: #ffffff !important;
  color: #2c3e50 !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  border: 1.5px solid #e5e7eb !important;
  height: 28px;
}

._button__secondary_1pt14_413._button-styled:hover {
  background: #f8f9fa !important;
  color: #1a202c !important;
  border-color: #d1d5db !important;
  box-shadow: none !important;
}

._button__secondary_1pt14_413._button-styled:active {
  background: #f1f3f5 !important;
  box-shadow: none !important;
}

/* Center the payment form */
._wrapper_1q96l_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

._container_1m4tu_1 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

._textContainer_1m4tu_34 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

._textContainer_1m4tu_34 h1 {
  font-size: 32px !important;
}

/* Top Buyers Cards Section - Compact & Beautiful */
._topBuyersSection {
  width: 100%;
  margin: 40px 0 0;
  padding-left: 30px;
  padding-right: 30px;
}

._topBuyersSection ._title_13mon_88 {
  margin-bottom: 10px;
}

._topBuyersGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  justify-content: center;
  padding: 0 20px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  ._topBuyersGrid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 !important;
  }
}

._buyerCard {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border: 2px solid #E9ECEF;
  border-radius: 16px;
  padding: 12px 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  width: 100%;
  position: relative;
  overflow: hidden;
}

._buyerCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;

  opacity: 0;
  transition: opacity 0.3s ease;
}


._buyerCard:hover::before {
  opacity: 1;
}

._buyerAvatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

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

._buyerName {
  font-size: 14px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._buyerAmount {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  color: #4A5568;
}

._robuxIcon {
  flex-shrink: 0;
}

/* Hide desktop-only badge (separate badge above inputs) on mobile */
@media (max-width: 768px) {
  .desktop-only-badge {
    display: none !important;
  }
}

/* Hide inline badge on DESKTOP, show separate badge instead */
@media (min-width: 769px) {
  ._container_183wr_64 ._tag_71pr6_44._tagConverting_71pr6_87 {
    display: none !important;
  }
}

@media (max-width: 610px) {
  /* Doggy background only on mobile */
  ._wrapper_1q96l_1 {
    background-image: url(/_nuxt/doggy.png) !important;
    background-position-x: 99%;
    background-position-y: 95px;
    background-size: 110px;
    background-repeat: no-repeat;
  }
}

/* ========== MOBILE CONTENT ========== */
@media (max-width: 768px) {
  /* Inputs vertical on mobile */
  ._inputs_71pr6_54 {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Top Buyers / Recent Purchases - limit to 4 items */
  ._topBuyersSection {
    margin-top: 24px;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
  }

  ._topBuyersSection ._title_13mon_88 {
    padding: 0 !important;
  }

  ._topBuyersGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  /* Hide 5th-8th buyer cards on mobile */
  ._buyerCard:nth-child(n+5) {
    display: none !important;
  }

  ._buyerCard {
    width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    gap: 8px !important;
  }

  ._buyerAvatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  ._buyerName {
    font-weight: 500;
    color: #999999;
    font-size: 11px !important;
  }

  ._buyerAmount {
    font-size: 11px !important;
    font-weight: 600;
  }

  /* Remove padding/bg/border from buying container */
  ._buyingContainer_1m4tu_62 {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Fix comparison text overflow */
  ._comprassion_71pr6_169 {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 12px !important;
  }

  ._comprassionText_71pr6_183 {
    flex-wrap: wrap !important;
    word-break: break-word !important;
    font-size: 14px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    line-height: 1.4 !important;
  }

  ._comprassionValue_71pr6_199 {
    flex-shrink: 0 !important;
  }

  ._buyingContainerBottom_71pr6_141 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Input font-size 18px (prevents zoom on iOS) */
  ._input_183wr_301,
  #v-0-17-0,
  #v-0-17-2 {
    font-size: 18px !important;
    padding-right: 0 !important;
  }

  ._textShadow_183wr_302,
  ._textShadow_183wr_302._textShadow__size_l_183wr_521 {
    font-size: 18px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  ._container_183wr_64 {
    padding: 8px 16px !important;
  }

  ._label_183wr_212 {
    font-size: 12px !important;
  }

  ._currency_183wr_303 {
    padding-left: 3px !important;
  }

  /* Main content */
  ._textContainer_1m4tu_34 {
    margin-top: 24px;
    padding: 0 16px;
  }

  ._textContainer_1m4tu_34 h1 {
    font-size: 22px !important;
  }

  ._textSecondary_1m4tu_120 {
    font-size: 14px;
  }

  ._container_1m4tu_1 {
    padding: 0 16px;
    box-sizing: border-box;
  }

  ._buyingContainer_1m4tu_62 {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Testimonials */
  .testimonials {
    padding: 48px 0 40px;
    overflow: hidden;
  }

  .testimonials__inner {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .testimonials__title {
    font-size: 20px;
  }

  .testimonials__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .tcard {
    padding: 16px;
  }

  .tcard__avatar {
    width: 44px;
    height: 44px;
  }

  .testimonials__more {
    margin-top: 24px;
  }

  .testimonials__more button {
    width: 100%;
  }
}

/* Desktop input field font size improvements */
@media (min-width: 1024px) {
  ._container_183wr_64 {
    font-size: 18px !important;
  }

  ._label_183wr_212 {
    font-size: 18px !important;
  }

  ._label_183wr_212._float_183wr_256 {
    font-size: 12px !important;
  }

  ._input_183wr_301,
  ._textShadow_183wr_302,
  ._currency_183wr_303 {
    font-size: 19px !important;
  }

  #v-0-17-0,
  #v-0-17-2 {
    font-size: 19px !important;
  }
}

/* FAQ Section Styles */
.faq-section {
  width: 100%;
  max-width: 100%;
  padding: 70px 0 60px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.faq-section__title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faq-section__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.faq-section__subtitle {
  margin: 0;
  font-size: 16px;
  color: #666;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.faq-section__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 18px;
  color: #111;
  line-height: 18px;
}

.faq-section__q::-webkit-details-marker { display: none; }
.faq-section__q::marker { content: ""; }

.faq-section__q::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section__item[open] .faq-section__q::after {
  transform: rotate(180deg);
}

.faq-section__a {
  overflow: hidden;
}

.faq-section__a-inner {
  padding: 0 24px 20px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 768px) {
  .faq-section__a-inner {
    padding: 0 !important;
  }
}

/* View all Q&A link */
.faq-section__more {
  margin-top: 24px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.faq-section__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  color: #4891ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq-section__more-btn:hover {
  color: #3578e0;
  transform: none;
}

.faq-section__more-btn svg {
  transition: transform 0.2s ease;
}

.faq-section__more-btn:hover svg {
  transform: translateX(4px);
}

/* Contact Card */
.faq-section__contact {
  margin-top: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.faq-section__avatars {
  display: flex;
  align-items: center;
}

.faq-section__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
  border: 3px solid #fff;
  margin-left: -16px;
}

.faq-section__avatar:first-child {
  margin-left: 0;
}

.faq-section__contact-body {
  flex: 1;
  min-width: 200px;
}

.faq-section__contact-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin: 0 0 4px;
}

.faq-section__contact-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.faq-section__contact-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(34, 158, 217, 0.3);
  color: #229ED9;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-section__contact-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
  border-color: rgba(34, 158, 217, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 158, 217, 0.15);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 48px 0 40px;
  }

  .faq-section__inner {
    padding: 0 16px;
  }

  .faq-section__title {
    font-size: 24px;
  }

  .faq-section__q {
    font-size: 15px;
    padding: 16px 20px;
  }

  .faq-section__item[open] .faq-section__a {
    padding: 0 20px 16px;
  }

  .faq-section__contact {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
  }

  .faq-section__contact-btn {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .faq-section__more-btn {
    width: auto;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    box-sizing: border-box;
  }
}

/* Footer Styles */
.landing-footer {
  background: #ffffff;
  padding: 80px 0 44px;
  width: 100%;
  min-width: 100%;
  position: relative;
  z-index: 100;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #f0f0f0;
}

.footer-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px !important;
  box-sizing: border-box;
}

@media (min-width: 744px) {
  .footer-content {
    padding: 0 36px !important;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    padding: 0 48px !important;
  }
}

@media (min-width: 1440px) {
  .footer-content {
    padding: 0 68px !important;
  }
}

@media (min-width: 1771px) {
  .footer-content {
    padding: 0 116px !important;
  }
}

/* Main Grid: 3 Columns */
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  margin-bottom: 28px;
  align-items: start;
}

/* Headings */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

/* Left Column: Brand & Info */
.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-decoration: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.copyright-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.brand-description {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.footer-right {
  justify-self: end;
  max-width: 360px;
}

@media (max-width: 900px) {
  .footer-right {
    justify-self: start;
    max-width: 100%;
  }
}

/* Right Column: Cooperation */
.coop-text {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  color: #229ED9;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.coop-btn:hover {
  background: #f9f9f9;
  border-color: #d0d0d0;
  transform: translateY(-1px);
}

/* Telegram Support Variant */
.support-btn {
  border-color: rgba(34, 158, 217, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.support-btn svg {
  color: #229ED9;
}

.support-btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
  border-color: rgba(34, 158, 217, 0.45);
}

/* Bottom Bar: Legal */
.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #999;
  font-size: 13px;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.legal-link {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #666;
}

.separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #d1d5db;
  border-radius: 50%;
  margin: 0 4px;
  vertical-align: middle;
}

/* Page layout - footer at bottom */
html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  background: #fafafa;
  margin: 0 !important;
  padding: 0 !important;
}

#__nuxt {
  height: auto !important;
  min-height: 100% !important;
  overflow: visible !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.app-wrapper {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
  height: auto !important;
  overflow: visible !important;
  background: #fafafa;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.app-content,
.app-content.hasHeader {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  flex: 1 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

._container_157ys_1,
._container_157ys_1._fullHeight_157ys_11 {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

._content_1p9sr_10 {
  overflow: visible !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

._container_1p9sr_1 {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

._wrapper_1q96l_1 {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.landing-footer {
  flex-shrink: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  box-sizing: border-box !important;
}

/* Mobile Footer */
@media (max-width: 900px) {
  .landing-footer {
    padding: 48px 0 32px;
  }

  .footer-content {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo img {
    max-height: 32px;
  }

  .copyright-text,
  .brand-description,
  .coop-text {
    font-size: 13px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    gap: 8px;
  }

  .legal-link {
    font-size: 12px;
  }

  .coop-btn,
  .support-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* CRITICAL FIXES - Override everything */

/* Fix #1: Add bottom spacing to FAQ "Go to other questions" link */
.faq-section__inner .faq-section__more {
  margin-top: 24px !important;
  margin-bottom: 32px !important;
  padding-bottom: 16px !important;
}

/* Fix #2: Fix Recent Purchases - keep all in 1 row */
._topBuyersSection {
  width: 100% !important;
  margin: 40px 0 0 !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* Desktop: normal grid, all 8 cards */
._topBuyersSection ._topBuyersGrid {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 16px !important;
  padding: 0 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

._topBuyersSection ._buyerCard {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: none !important;
  box-sizing: border-box !important;
}

/* Medium screens: flex + overflow hidden */
@media (min-width: 769px) and (max-width: 1439px) {
  ._topBuyersSection {
    overflow: hidden !important;
  }
  
  ._topBuyersSection ._topBuyersGrid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    padding: 0 20px !important;
  }
  
  ._topBuyersSection ._buyerCard {
    min-width: 190px !important;
    max-width: 220px !important;
    flex-shrink: 0 !important;
  }
}

/* Mobile: 2x2 grid */
@media (max-width: 768px) {
  ._topBuyersSection {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  ._topBuyersSection ._topBuyersGrid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }
  
  ._topBuyersSection ._buyerCard {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  
  ._topBuyersSection ._buyerCard:nth-child(n+5) {
    display: none !important;
  }
}

/* FAQ PAGE CATEGORY TITLES */
.faq-section__category-title {
  font-size: 24px;
  font-weight: 700;
  margin: 56px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2937;
}

.faq-section__category-title:first-of-type {
  margin-top: 0;
}

.faq-section__category-title svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #FE9920;
}

@media (max-width: 768px) {
  .faq-section__category-title {
    font-size: 20px;
    gap: 10px;
    margin: 40px 0 20px;
  }
  
  .faq-section__category-title svg {
    width: 20px;
    height: 20px;
  }
}