.go-ah-container.go-ah-small-listing {
  margin: 1rem 0;
}

.go-ah-small-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.go-ah-small-merchants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.go-ah-small-merchant {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.go-ah-merchant-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.go-ah-merchant-price,
.go-ah-merchant-button {
  text-align: center;
}

.go-ah-merchant-info img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.go-ah-merchant-name {
  font-weight: 500;
}

.go-ah-price {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .go-ah-small-merchant {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .go-ah-btn-row {
    margin-left: 0;
    width: 100%;
  }

  .go-ah-merchant-name {
    font-size: 0.8rem;
  }

  .go-ah-price {
    font-size: 0.8rem;
  }
}
