/* ОБЩИЙ КОНТЕЙНЕР */
.purchase-wrapper {
  display: flex;
  max-width: 1100px;
  height: 90vh;
  margin: 40px auto;
  background: #1c1c1c;
  border: 1px solid #272727;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* ЛЕВАЯ ЧАСТЬ */
.purchase-left {
  width: 70%;
  position: relative;
  background: #111;
  border-right: 1px solid #272727;
  display: none;
}

.purchase-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-left .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* ПРАВАЯ ЧАСТЬ */
.purchase-right {
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* ШАПКА */
.purchase-header {
  padding: 20px;
  border-bottom: 1px solid #272727;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.purchase-header h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.close-btn {
  background: transparent;
  border: none;
  color: #777;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: 0.2s;
}

.close-btn:hover {
  background: #111;
  color: #fff;
}

/* КОНТЕНТ */
.purchase-content {
  padding: 24px;
  overflow-y: auto;
}

.section {
  margin-bottom: 40px;
}

.section-title {
  color: #777;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* КАРТОЧКИ МЕТОДОВ ОПЛАТЫ */
.method-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #272727;
  border-radius: 14px;
  background: #0b0b0b;
  margin-bottom: 10px;
  transition: 0.2s;
}

.method-card:hover {
  border-color: #3a3a3a;
  background: #111;
}

.method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.method-icon.green {
  background: rgba(0,255,0,0.1);
  color: #4ade80;
}

.method-icon.orange {
  background: rgba(255,140,0,0.1);
  color: #ff9f43;
}

.method-info {
  flex: 1;
}

.method-name {
  color: #fff;
  font-weight: 600;
}

.method-desc {
  color: #777;
  font-size: 12px;
}

.method-buy {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.method-buy:hover {
  background: #e5e5e5;
}

/* РЕСЕЛЛЕРЫ */
.reseller-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #272727;
  border-radius: 14px;
  background: #0b0b0b;
  margin-bottom: 10px;
  transition: 0.2s;
}

.reseller-card:hover {
  border-color: #3a3a3a;
  background: #0b0b0b;
}

.reseller-card img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.reseller-info {
  flex: 1;
}

.reseller-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.reseller-desc {
  color: #777;
  font-size: 11px;
}

.reseller-arrow {
  color: #777;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.2s;
}

.reseller-card:hover .reseller-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* АДАПТИВ */
@media (min-width: 900px) {
  .purchase-left {
    display: block;
  }
  .purchase-right {
    width: 50%;
  }
}

/* КАСТОМНЫЙ СКРОЛЛБАР */
.purchase-content::-webkit-scrollbar {
  width: 6px;
}

.purchase-content::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

.purchase-content::-webkit-scrollbar-track {
  background: #111;
}
