/* custom-buttons.css - Стили для кнопок покупки */

/* Контейнер для кнопок в карточке товара */
.card-buttons,
.buttons-container {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-top: 10px;
}

/* Основная кнопка USDT (желтая) */
.buy-now-btn,
.usdt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #EFC40A;
  color: #000;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

.buy-now-btn:hover,
.usdt-btn:hover {
  filter: brightness(1.1);
}

.usdt-icon,
.buy-now-btn i {
  font-size: 14px;
}

/* Кнопка криптовалют (темная) */
.crypto-btn,
.shoppy-btn {
  background: #000;
  color: #EFC40A;
  border: 1px solid #EFC40A;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
  min-width: 80px;
}

.crypto-btn:hover,
.shoppy-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #FFD700;
}

/* Стилизация содержимого кнопки */
.btn-text {
  display: block;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.crypto-text {
  display: block;
  font-size: 9px;
  line-height: 1;
}

/* Стили для кнопок внутри карточки товара */
.product-card .buttons-container,
.product-card .card-buttons {
  position: relative;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  z-index: 3;
  border-radius: 5px;
}

/* Стили для меток типа почты/домена и т.д. */
.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #EFC40A;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* Стили для флага страны */
.country-icon,
.country-badge,
.global-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #EFC40A;
}

.country-icon img,
.country-badge img,
.global-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .buy-now-btn,
  .usdt-btn {
    font-size: 10px;
    padding: 7px 8px;
  }
  
  .crypto-btn,
  .shoppy-btn {
    font-size: 10px;
    padding: 7px 8px;
  }
}